:root {
  --primary-color: #00c853;
  --secondary-color: #056a31;
  --third-color: rgba(16, 185, 129, 1);
  --lighter-green-color: #94d3a2;
  --dark-color: rgb(0, 41, 0);
}
span {
  color: var(--secondary-color); /* 1 is full opacity */
}
.span-style-1 {
  color: black;
}
.span-style-2 {
  color: black;
  font-weight: bold;
}
.span-style-3 {
  color: var(--third-color);
}
.span-style-4 {
  color: white;
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in-left {
  animation: fade-in-left 1s ease-out forwards;
}

.animate-reveal {
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.white-text {
  color: white !important;
}

/* ============================== custom cards start ===================================  */
/*=================================== 3*3 grid code start ================================= */
.ai-feature-section {
  font-family: "Inter", sans-serif;
  /* background: linear-gradient(135deg, #f0fdf4, #d1fae5); */
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.ai-feature-container {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ai-feature-card {
  background: white;
  border-radius: 20px;
  padding: 90px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-feature-icon {
  font-size: 3.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ai-feature-title {
  color: #1f2937;
  margin-bottom: 15px;
  font-size: 1.7rem;
  transition: color 0.3s ease;
}

.ai-feature-description {
  color: #6b7280;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.ai-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
 background: linear-gradient(to bottom right, var(--primary-color), #e1b9f5);
}


.ai-feature-card:hover .ai-feature-icon {
  color: white;
  transform: scale(1.1);
}

.ai-feature-card:hover .ai-feature-title {
  color: white;
}

.ai-feature-card:hover .ai-feature-description {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
  .ai-feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-feature-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-feature-card {
    padding: 30px 20px;
  }
}
/* =========================== 3*3 Grids end ========================================  */

/* =============================== 2*2 grid start =========================================   */
.webdev-features-section {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.webdev-features-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.webdev-features-card {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
}

.webdev-features-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.webdev-features-title {
  color: #111827;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.webdev-features-description {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
}

.webdev-features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-bottom: 4px solid var(--primary-color);
}

.webdev-features-card:hover .webdev-features-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-color);
}

.webdev-features-card:hover .webdev-features-title {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .webdev-features-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .webdev-features-card {
    padding: 30px 25px;
  }

  .webdev-features-icon {
    font-size: 3rem;
  }
}
/* =================================== 2*2 grid end ===================================== */
/* ================================== button css start====================================    */
.button-3 {
  appearance: none;
  background-color: var(--primary-color);
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: var(--secondary-color);
}

.button-3:focus {
  box-shadow: rgba(46, 164, 79, 0.4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  background-color: var(--lighter-green-color);
  border-color: rgba(27, 31, 35, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.button-3:active {
  background-color: var(--secondary-color);
  box-shadow: rgba(20, 70, 32, 0.2) 0 1px 0 inset;
}

/* =========================white button below ===========================  */
/* CSS */
.button-47 {
  align-items: center;
  background: #ffffff;
  border: 0 solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  color: #1a202c;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  height: 45px;
  justify-content: center;
  line-height: 24px;
  overflow-wrap: break-word;
  padding: 24px;
  text-decoration: none;
  width: auto;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/* ============================= Button css end ==========================================  */

.padding-responsive {
  padding: 2rem; /* Default for desktop */
}

.padding-responsive-invert {
  padding: 0rem; /* Default for desktop */
}

@media (max-width: 640px) {
  .padding-responsive {
    padding: 0cqw; /* Default for desktop */
  }
  .padding-responsive-invert {
    padding: 2rem; /* Mobile */
  }
}

/* ============================== Custom Card css end ====================================  */
/* ================================= get started section start =================================  */

.get-started-strip {
  background: linear-gradient(135deg, var(--primary-color) 0%, #009624 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 10px;
  /* z-index: 9;
      bottom: -100px; */
  box-shadow: 0 15px 35px rgba(0, 150, 36, 0.3);
}

.strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 4rem;
  position: relative;
  z-index: 2;
}

/* Animated background elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
  width: 250px;
  height: 250px;
  top: -125px;
  right: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.bg-circle:nth-child(2) {
  width: 350px;
  height: 350px;
  bottom: -175px;
  right: 25%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.bg-circle:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
  animation-duration: 12s;
}

.bg-circle:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.strip-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(rgba(255, 255, 255, 0.07) 2px, transparent 2px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  z-index: 1;
}

.hexagon-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 1;
}

/* Left content side */
.content-left {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.icon-container {
  position: relative;
  margin-right: 20px;
}

.rocket-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
}

.rocket-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transform: scale(0.9);
  z-index: -1;
  animation: pulse-ring 2s infinite ease-in-out;
}

.text-content h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.text-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
}

/* Right CTA side */
.cta-right {
  position: relative;
  z-index: 3;
}

.action-button {
  position: relative;
  display: inline-block;
}

.action-button a {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  background: #fff;
  color: #009624;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.action-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
  z-index: -1;
}

.action-button a:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  color: #007722;
}

.action-button a:hover::before {
  transform: translateX(100%);
}

.action-button a .arrow-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.action-button a:hover .arrow-icon {
  transform: translateX(5px);
}

.action-button a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #007722;
  transition: width 0.3s ease;
}

.action-button a:hover::after {
  width: 80%;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .strip-container {
    padding: 2.5rem 3rem;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .rocket-icon {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .strip-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .content-left {
    flex-direction: column;
  }

  .icon-container {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .text-content p {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .text-content h2 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .action-button a {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}

/* ================================ Contact form started =============================  */
.contact-section {
  max-width: 1300px;
  margin: "0 0 4rem 0";
  padding: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.contact-container {
  display: flex;
  min-height: 550px;
}

/* Left Side - Form */
.form-side {
  flex: 1;
  padding: 3.5rem;
  position: relative;
  z-index: 2;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.form-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.form-header h2:hover::after {
  width: 100%;
}

.form-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 450px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  outline: none;
  color: #333;
}

.form-control:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 200, 83, 0.1);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  color: #888;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  background: #fff;
  padding: 0 0.5rem;
}

.form-control::placeholder {
  color: transparent;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #009624 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 150, 36, 0.2);
  position: relative;
  overflow: hidden;
  outline: none;
  margin-top: 1rem;
}

.submit-btn .btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 150, 36, 0.3);
}

.submit-btn:hover::before {
  transform: translateX(100%);
}

/* Right Side - Info */
.info-side {
  width: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #009624 100%);
  color: white;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.info-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.info-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.info-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.info-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}

.info-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.info-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-content {
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.info-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Input Focus Styles */
.input-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.form-control:focus ~ .input-focus-effect {
  width: 100%;
}

/* Form Field Animations */
.form-group {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group:nth-child(3) {
  animation-delay: 0.3s;
}

.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

.submit-btn {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .info-side {
    width: 100%;
    padding: 3rem 2.5rem;
  }

  .info-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .info-item {
    width: calc(50% - 0.75rem);
    margin-bottom: 0;
  }

  .social-media {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .form-side {
    padding: 2.5rem 2rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .info-side {
    padding: 2.5rem 2rem;
  }

  .info-content {
    flex-direction: column;
  }

  .info-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .info-header h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .form-side {
    padding: 2rem 1.5rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .submit-btn {
    width: 100%;
  }
}

/* =============================== Contact Form End ==================================  */

/* ========================= get started section end ==============================  */

/* ========================= package and price cards css start =============================  */

.custom_pkg_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Packages section styles */
.custom_pkg_section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.custom_pkg_card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.custom_pkg_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #00b67a;
}

.custom_pkg_card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #00b67a;
  transition: all 0.3s ease;
  opacity: 0;
}

.custom_pkg_card:hover:before {
  opacity: 1;
}

.custom_pkg_icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 182, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.custom_pkg_icon svg {
  width: 30px;
  height: 30px;
  fill: #00b67a;
}

.custom_pkg_title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.custom_pkg_subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.custom_pkg_price {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.custom_pkg_yearly {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.custom_pkg_features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.custom_pkg_feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.custom_pkg_check {
  color: #00b67a;
  margin-right: 10px;
  flex-shrink: 0;
}

.custom_pkg_btn {
  display: inline-block;
  background-color: #00b67a;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.custom_pkg_btn:hover {
  background-color: #009966;
}

/* Gold package highlight */
.custom_pkg_card_gold {
  border: 2px solid #00b67a;
}

.custom_pkg_card_gold:before {
  opacity: 1;
}

/* ========================= package and price cards css ends =============================  */

/* =========================== testimonial section css start =================================== */

.als_testimonials_container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 40px 20px; */
}

.als_testimonials_heading {
  text-align: center;
  margin-bottom: 50px;
}

.als_testimonials_title {
  font-size: 36px;
  font-weight: 700;
  /* color: #333; */
  margin-bottom: 15px;
}

.als_testimonials_subtitle {
  font-size: 16px;
  color: #666;
}

.als_testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.als_testimonial_card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid #e0e0e0;
}

.als_testimonial_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.als_testimonial_stars {
  margin-bottom: 20px;
  color: #ffc107;
  font-size: 20px;
}

.als_testimonial_content {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.als_testimonial_author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.als_testimonial_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #00b67a;
  font-weight: bold;
}

.als_testimonial_info {
  flex: 1;
}

.als_testimonial_name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.als_testimonial_position {
  font-size: 14px;
  color: #666;
}

/* Before element for hover effect */
.als_testimonial_card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #00b67a;
  opacity: 0;
  transition: all 0.3s ease;
}

.als_testimonial_card:hover:before {
  opacity: 1;
}

/* Media query for tablets */
@media screen and (max-width: 992px) {
  .als_testimonials_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .als_testimonials_title {
    font-size: 32px;
  }
}

/* Media query for smaller tablets */
@media screen and (max-width: 768px) {
  .als_testimonials_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .overlap-section-2 {
    padding: 20px 0px;
    min-height: 270px;
  }
  .als_testimonials_container {
    padding: 0px 0px;
  }

  .als_testimonials_title {
    font-size: 28px;
  }

  .als_testimonial_card {
    padding: 25px;
  }
}

/* Media query for mobile */
@media screen and (max-width: 480px) {
  .als_testimonials_title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .als_testimonials_subtitle {
    font-size: 14px;
  }

  .als_testimonials_heading {
    margin-bottom: 30px;
  }

  .als_testimonial_card {
    padding: 20px;
    border-radius: 8px;
  }

  .als_testimonial_content {
    font-size: 14px;
    line-height: 1.5;
  }

  .als_testimonial_img {
    width: 40px;
    height: 40px;
  }

  .als_testimonial_name {
    font-size: 16px;
  }

  .als_testimonial_position {
    font-size: 12px;
  }
}

/* Fix for very small devices */
@media screen and (max-width: 360px) {
  .als_testimonials_grid {
    grid-template-columns: 1fr;
  }

  .als_testimonial_card {
    min-width: auto;
  }
}

/* =========================== testimonial section css end =================================== */

/* ===================================== seo stats section css start ====================================== */
.seo_custom_section {
  background: #00c853;
  background: linear-gradient(135deg, #00c853 0%, #009624 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.2);
  min-height: 500px;
}

.seo_custom_content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 5;
  align-items: center; /* Vertically center content */
}

.seo_custom_text {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.seo_custom_title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.seo_custom_description {
  /*font-size: 1.1rem;*/
  color: rgba(255, 255, 255, 0.9);
  /*line-height: 1.6;*/
  margin-bottom: 30px;
}

.seo_custom_email_form {
  display: flex;
  margin-bottom: 30px;
  gap: 10px; /* Added gap between input and button */
}

.seo_custom_email_input {
  background: white;
  /* flex: 1; */
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.7rem;
}

.seo_custom_submit_button {
  /* background-color: #00602e; */
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px; /* Made button rounded to match input */
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.seo_custom_submit_button:hover {
  background-color: #004c24;
}

.seo_custom_features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.seo_custom_feature {
  display: flex;
  align-items: center;
  color: white;
  margin-right: 15px;
  margin-bottom: 10px;
}

.seo_custom_feature_icon {
  margin-right: 8px;
  color: #e0f2f1;
}

.seo_custom_charts_container {
  border-radius: 10px;
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.seo_custom_chart {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.seo_custom_chart:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.seo_custom_chart img {
  width: 100%;
  height: auto;
}

/* Grid Dots Background - Made more visible */
.seo_custom_dot_grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.112) 1.5px,
    transparent 1.5px
  ); /* Increased dot size and opacity */
  background-size: 20px 20px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 2;
}

/* Floating Circles */
.seo_custom_floating_circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.seo_custom_circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1); /* Made circles more visible */
  animation: seo_custom_float 20s infinite linear;
}

.seo_custom_circle_1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
  animation-duration: 30s;
}

.seo_custom_circle_2 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: -50px;
  animation-duration: 25s;
  animation-delay: 2s;
}

.seo_custom_circle_3 {
  width: 350px;
  height: 350px;
  bottom: -150px;
  right: 20%;
  animation-duration: 35s;
  animation-delay: 5s;
}

.seo_custom_circle_4 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: 3s;
}

@keyframes seo_custom_float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, 20px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 30px) rotate(-3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Enhanced Responsive styles */
@media (max-width: 992px) {
  .seo_custom_content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .seo_custom_title {
    font-size: 2.3rem;
  }

  .seo_custom_chart {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .seo_custom_section {
    padding: 40px 20px;
  }

  .seo_custom_content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo_custom_text {
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .seo_custom_charts_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .seo_custom_email_form {
    flex-direction: column;
    gap: 15px;
  }

  .seo_custom_email_input {
    width: 100%;
  }

  .seo_custom_submit_button {
    width: 100%;
  }

  .seo_custom_features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .seo_custom_title {
    font-size: 2rem;
  }

  .seo_custom_description {
    font-size: 1rem;
  }

  .seo_custom_section {
    padding: 30px 15px;
  }

  .seo_custom_feature {
    font-size: 0.9rem;
  }
}
/* ===================================== seo stats section css end ====================================== */

/* ====================================== client logo portfolio css start ===================================== */

.logo-carousel-container {
  position: relative;
  max-width: 100%;
  padding: 20px 0;
  overflow: hidden;
  /* background-color: #000; */
}

.logo-carousel {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.logo-item img {
  max-width: 85%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.1);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #00c853;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
  background-color: #00a844;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    margin: 0 10px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    width: 100px;
    margin: 0 8px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ====================================== client logo portfolio css end ===================================== */
/* ========================================= timeline css start ==============================================  */
/* Custom unique class names to avoid CSS conflicts */
.aw-timeline-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.aw-timeline-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

.aw-timeline-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.aw-timeline-title {
  font-size: 2.5rem;
  color: #0b5345;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* .aw-timeline-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: #00B140;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.8s ease;
    } */

.aw-timeline-title.aw-animate::after {
  transform: scaleX(1);
}

.aw-timeline-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.aw-timeline {
  position: relative;
}

.aw-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #00b140;
  transform: translateX(-50%);
  height: 0;
  transition: height 1.5s ease;
}

.aw-timeline.aw-animate::before {
  height: 100%;
}

.aw-timeline-item {
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.aw-timeline-item.aw-animate {
  opacity: 1;
  transform: translateY(0);
}

.aw-timeline-item:nth-child(odd) .aw-timeline-content {
  margin-left: auto;
  margin-right: 50px;
  text-align: right;
}

.aw-timeline-item:nth-child(even) .aw-timeline-content {
  margin-left: 50px;
  text-align: left;
}

.aw-timeline-content {
  width: 45%;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aw-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.aw-timeline-year-marker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #fff;
  border: 4px solid #00b140;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(0, 177, 64, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aw-timeline-year-marker:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 0 8px rgba(0, 177, 64, 0.3);
}

.aw-timeline-year-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0b5345;
}

.aw-timeline-years {
  font-size: 0.9rem;
  color: #00b140;
}

.aw-timeline-content-title {
  color: #00b140;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.aw-timeline-content-text {
  line-height: 1.6;
}

/* Improved connector styles */
.aw-timeline-connector {
  position: absolute;
  top: 50px;
  height: 2px;
  background: #00b140;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s ease;
}

.aw-timeline-connector.aw-animate {
  opacity: 1;
}

.aw-timeline-item:nth-child(odd) .aw-timeline-connector {
  right: calc(55% - 10px);
  left: auto;
  width: 0;
}

.aw-timeline-item:nth-child(odd) .aw-timeline-connector.aw-animate {
  width: calc(5% + 10px);
}

.aw-timeline-item:nth-child(even) .aw-timeline-connector {
  left: calc(55% - 10px);
  right: auto;
  width: 0;
}

.aw-timeline-item:nth-child(even) .aw-timeline-connector.aw-animate {
  width: calc(5% + 10px);
}

/* Improved responsive styles */
@media (max-width: 1024px) {
  .aw-timeline::before {
    left: 40px;
  }

  .aw-timeline-item {
    margin-left: 0;
    margin-bottom: 70px;
  }

  .aw-timeline-item:nth-child(odd) .aw-timeline-content,
  .aw-timeline-item:nth-child(even) .aw-timeline-content {
    width: calc(100% - 90px);
    margin-left: 90px;
    margin-right: 0;
    text-align: left;
  }

  .aw-timeline-year-marker {
    left: 40px;
    transform: translateX(-50%);
  }

  .aw-timeline-year-marker:hover {
    transform: translateX(-50%) scale(1.1);
  }

  .aw-timeline-item:nth-child(odd) .aw-timeline-connector,
  .aw-timeline-item:nth-child(even) .aw-timeline-connector {
    left: 55px;
    right: auto;
    width: 0;
  }

  .aw-timeline-item:nth-child(odd) .aw-timeline-connector.aw-animate,
  .aw-timeline-item:nth-child(even) .aw-timeline-connector.aw-animate {
    width: 35px;
  }
}

@media (max-width: 768px) {
  .aw-timeline-title {
    font-size: 2rem;
  }

  .aw-timeline-content {
    padding: 20px;
  }

  .aw-timeline-item {
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .aw-timeline-content {
    width: calc(100% - 70px);
    margin-left: 70px;
    padding: 15px;
  }

  .aw-timeline-year-marker {
    width: 80px;
    height: 80px;
    left: 30px;
  }

  .aw-timeline-year-text {
    font-size: 1.4rem;
  }

  .aw-timeline-years {
    font-size: 0.7rem;
  }

  .aw-timeline::before {
    left: 30px;
  }

  .aw-timeline-item:nth-child(odd) .aw-timeline-connector,
  .aw-timeline-item:nth-child(even) .aw-timeline-connector {
    left: 45px;
  }

  .aw-timeline-content-title {
    font-size: 1.3rem;
  }

  .aw-timeline-container {
    padding: 10px;
  }

  .aw-timeline-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* ========================================= timeline css end ==============================================  */

/* ========================================== blog page css start ===========================================  */

.alw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.alw-max-w-7xl {
  max-width: 1280px;
}

.alw-container a {
  text-decoration: none;
  color: #333;
}

.alw-container h2 {
  line-height: 25px;
}

/* Main Content */
.alw-main-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}

/* Blog Posts */
.alw-blog-posts {
  flex: 0 0 70%;
}

.alw-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 30px;
}

.alw-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.alw-post-card:hover {
  transform: translateY(-5px);
}

.alw-post-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.alw-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alw-post-card:hover .alw-post-image img {
  transform: scale(1.05);
}

.alw-date-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #2e8b57;
  color: white !important;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.alw-post-content {
  padding: 20px;
}

.alw-post-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  height: 56px;
}

.alw-post-excerpt {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.alw-post-meta {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
}

.alw-author {
  display: flex;
  align-items: center;
}

.alw-comments {
  display: flex;
  align-items: center;
}

.alw-read-more {
  display: inline-block;
  color: #2e8b57;
  font-weight: bold;
  transition: color 0.3s ease;
}

.alw-read-more:hover {
  color: #236943;
  text-decoration: underline;
}

/* Sidebar */
.alw-sidebar {
  flex: 0 0 25%;
}

.alw-sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alw-widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2a2a2a;
  border-bottom: 2px solid #2e8b57;
  padding-bottom: 8px;
}

.alw-search-form {
  display: flex;
}

.alw-search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.alw-search-button {
  background: #2e8b57;
  border: none;
  color: white;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.alw-search-button:hover {
  background-color: #236943;
}

.alw-service-list {
  list-style: none;
  padding: 0;
}

.alw-service-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  display: flex;
}

.alw-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.alw-service-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.alw-service-content {
  flex: 1;
}

.alw-service-title {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.alw-service-title:hover {
  color: #2e8b57;
}

.alw-service-date {
  color: #888;
  font-size: 12px;
}

/* Pagination */
.alw-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.alw-pagination-item {
  margin: 0 5px;
  padding: 8px 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #333;
  transition: all 0.3s ease;
}

.alw-pagination-item:hover,
.alw-pagination-item.active {
  background-color: #2e8b57;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .alw-post-grid {
    grid-template-columns: 1fr;
  }

  .alw-main-content {
    flex-direction: column;
  }

  .alw-blog-posts,
  .alw-sidebar {
    flex: 0 0 100%;
  }

  .alw-sidebar {
    margin-top: 30px;
  }
}

.alw-no-posts {
  text-align: center;
  padding: 40px 0;
  color: #666;
}
/* ========================================== rgb strip start ========================================== */
.rainbow-hr-container {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  margin: 20px 0;
}

.rainbow-hr-strip {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 200%;
  background: linear-gradient(
    to right,

    #ff69b4,
    /* Hot Pink */ #32cd32,
    /* Lime Green */ #00fa9a,

    /* Medium Spring Green */ #ff69b4,

    /* Hot Pink (repeat) */ #32cd32,
    /* Lime Green (repeat) */ #00fa9a /* Medium Spring Green (repeat) */
  );
  animation: rainbow-hr-animation 3s linear infinite;
}

@keyframes rainbow-hr-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ========================================== rgb strip end ========================================== */
/* ========================================== blog page css end ===========================================  */
/* ========================================== blog details page css start =====================================  */

.alwbd-hero-section-main {
  min-height: 500px !important;
}

@media (max-width: 480px) {
  .alwbd-hero-section-main {
    min-height: 60vh !important;
    padding-top: 0px !important;
  }
}

/* Custom Blog Detail Styles with unique class names */
.alwbd-container a {
  text-decoration: none;
  color: #333;
}

/* Main Content */
.alwbd-main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

/* Single Blog Post */
.alwbd-single-blog {
  flex: 0 0 70%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.alwbd-blog-header {
  position: relative;
}

.alwbd-blog-header img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.alwbd-blog-header .alwbd-date-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #2e8b57;
  color: white !important;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.alwbd-blog-content {
  padding: 30px;
}

.alwbd-blog-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.alwbd-blog-meta {
  display: flex;
  margin-bottom: 20px;
  color: #888;
  font-size: 14px;
}

.alwbd-blog-meta div {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.alwbd-blog-meta i {
  color: #2e8b57;
  margin-right: 5px;
}

.alwbd-blog-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.alwbd-blog-text h3 {
  margin: 25px 0 15px;
  color: #2a2a2a;
}

.alwbd-blog-text ul,
.alwbd-blog-text ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.alwbd-blog-text li {
  margin-bottom: 10px;
}

.alwbd-blog-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.alwbd-tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 13px;
}

.alwbd-tag:hover {
  background: #e0e0e0;
}

/* Sidebar */
.alwbd-sidebar {
  flex: 0 0 25%;
}

.alwbd-sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alwbd-widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2a2a2a;
  border-bottom: 2px solid #2e8b57;
  padding-bottom: 8px;
}

.alwbd-search-form {
  display: flex;
}

.alwbd-search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.alwbd-search-button {
  background: #2e8b57;
  border: none;
  color: white;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.alwbd-service-list {
  list-style: none;
}

.alwbd-service-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  display: flex;
}

.alwbd-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.alwbd-service-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.alwbd-service-content {
  flex: 1;
}

.alwbd-service-title {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.alwbd-service-date {
  color: #888;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .alwbd-main-content {
    flex-direction: column;
  }

  .alwbd-single-blog,
  .alwbd-sidebar {
    flex: 0 0 100%;
  }

  .alwbd-sidebar {
    margin-top: 30px;
  }
}

/* Comments section styles with unique class names */
.alwbd-comments-section {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.alwbd-comments-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2a2a2a;
}

.alwbd-comments-list {
  margin-bottom: 40px;
}

.alwbd-comment-item {
  display: flex;
  margin-bottom: 30px;
  animation-duration: 0.6s;
}

.alwbd-comment-avatar {
  width: 50px;
  height: 50px;
  background-color: #2e8b57;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.alwbd-comment-content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.alwbd-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.alwbd-commenter-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.alwbd-comment-date {
  font-size: 12px;
  color: #888;
}

.alwbd-comment-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  word-break: break-word;
}

.alwbd-reply-button {
  background-color: transparent;
  color: #2e8b57;
  border: 1px solid #2e8b57;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.alwbd-reply-button:hover {
  background-color: #2e8b57;
  color: white;
}

.alwbd-replies-container {
  margin-top: 20px;
  margin-left: 20px;
}

.alwbd-reply-item {
  display: flex;
  margin-bottom: 20px;
  animation-duration: 0.6s;
}

.alwbd-reply-avatar {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #4a7d5a;
}

.alwbd-reply-content {
  flex: 1;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.alwbd-reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.alwbd-replier-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.alwbd-reply-date {
  font-size: 11px;
  color: #888;
}

.alwbd-reply-text {
  font-size: 14px;
  line-height: 1.5;
}

.alwbd-no-comments {
  text-align: center;
  color: #888;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-size: 16px;
}

/* Comment form styles */
.alwbd-comment-form-container {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation-duration: 0.8s;
}

.alwbd-form-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.alwbd-form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.alwbd-form-group {
  margin-bottom: 20px;
  padding: 0 10px;
  flex: 0 0 100%;
}

.alwbd-form-row .alwbd-form-group {
  flex: 0 0 50%;
}

.alwbd-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
}

.alwbd-required {
  color: #e53935;
}

.alwbd-input,
.alwbd-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.alwbd-input:focus,
.alwbd-textarea:focus {
  border-color: #2e8b57;
  outline: none;
}

.alwbd-submit-button,
.alwbd-submit-reply {
  background-color: #2e8b57;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.alwbd-submit-reply {
  padding: 8px 15px;
  font-size: 14px;
}

.alwbd-submit-button:hover,
.alwbd-submit-reply:hover {
  background-color: #236b41;
}

.alwbd-form-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}

.alwbd-success-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.alwbd-error-message {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.alwbd-reply-form-container {
  margin-top: 15px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 6px;
  animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease;
}

.animate-slideIn {
  animation: slideInRight 0.6s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .alwbd-form-row .alwbd-form-group {
    flex: 0 0 100%;
  }

  .alwbd-comment-item,
  .alwbd-reply-item {
    flex-direction: column;
  }

  .alwbd-comment-avatar,
  .alwbd-reply-avatar {
    margin-bottom: 10px;
  }

  .alwbd-replies-container {
    margin-left: 10px;
  }
}

/* ========================================== blog details page css end =====================================  */
/*======================================= portfolio case study css start  ===================================*/
/* Main section styling */
.portfolio-section-gap {
  padding: 80px 0;
}

.portfolio-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.portfolio-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-title-center {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

/* Portfolio grid layout */
.portfolio-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 0px;
  margin-top: 30px;
}

/* Card styling */
.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  text-decoration: none;
  height: 320px;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: scale(1.05); /* Zoom in slightly */
}

.portfolio-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-content-wrapper {
  opacity: 1;
}

.portfolio-logo-image {
  width: auto;
  height: 65px;
  margin: 0 auto 15px;
  display: block;
}

.portfolio-red-line {
  height: 2px;
  width: 40px;
  background-color: #e74c3c;
  margin: 15px auto;
}

.portfolio-card-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .portfolio-grid-container {
    grid-template-columns: 1fr;
  }
}

/* ============================ grid uneven ==============================  */

/* Graphics Portfolio Section */
.graphics-portfolio-section {
  padding: 48px 24px;
}

/* Header styling */
.graphics-header-container {
  text-align: center;
  margin-bottom: 40px;
}

.graphics-main-heading {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.graphics-subtitle {
  color: #6b7280;
  margin-top: 16px;
}

/* Grid layout */
.graphics-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Column styling */
.graphics-gallery-column {
  display: grid;
  gap: 16px;
}

/* Image/Video container */
.graphics-media-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.graphics-media-container:hover {
  transform: scale(1.02);
}

/* Media styling */
.graphics-media-item {
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Image overlay for titles */
.graphics-media-container::before {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

.graphics-media-container:hover::before {
  opacity: 1;
}

/* Button styling */
.graphics-button-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.graphics-load-more-button {
  background-color: #4b5563;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.graphics-load-more-button:hover {
  background-color: #374151;
}

/* Responsive media queries */
@media (min-width: 768px) {
  .graphics-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .graphics-main-heading {
    font-size: 4.5rem;
  }
}
/*======================================= portfolio case study css end  ===================================*/
/*======================================= other page ball movement start  ===================================*/
.shape-area img {
      z-index: -10;
      transition: all 0.3s ease;
    }

    .shape-area img.one {
      animation: floatOne 6s ease-in-out infinite;
    }

    .shape-area img.two {
      animation: floatTwo 8s ease-in-out infinite;
    }

    .shape-area img.three {
      animation: floatThree 7s ease-in-out infinite;
    }

    .shape-area img.four {
      animation: floatFour 9s ease-in-out infinite;
    }

    @keyframes floatOne {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(15px, -10px);
      }

      50% {
        transform: translate(5px, -20px);
      }

      75% {
        transform: translate(-10px, -5px);
      }
    }

    @keyframes floatTwo {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-15px, 10px);
      }

      50% {
        transform: translate(-5px, 20px);
      }

      75% {
        transform: translate(10px, 5px);
      }
    }

    @keyframes floatThree {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(20px, 10px);
      }

      50% {
        transform: translate(10px, -15px);
      }

      75% {
        transform: translate(-5px, 10px);
      }
    }

    @keyframes floatFour {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-10px, -15px);
      }

      50% {
        transform: translate(-20px, -5px);
      }

      75% {
        transform: translate(5px, -10px);
      }
    }
/*======================================= other page ball movement end  ===================================*/
/*======================================= home page css start  ===================================*/
  /* for home page  */
    .banner-2-shape img {
      z-index: -10;
      transition: all 0.3s ease;
    }

    .banner-2-shape img.one {
      animation: bannerFloatOne 7s ease-in-out infinite;
    }

    .banner-2-shape img.two {
      animation: bannerFloatTwo 9s ease-in-out infinite;
    }

    .banner-2-shape img.three {
      animation: bannerFloatThree 8s ease-in-out infinite;
    }

    .banner-2-shape img.four {
      animation: bannerFloatFour 10s ease-in-out infinite;
    }

    .banner-2-shape img.five {
      animation: bannerFloatFive 11s ease-in-out infinite;
    }

    @keyframes bannerFloatOne {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(18px, -12px);
      }

      50% {
        transform: translate(6px, -22px);
      }

      75% {
        transform: translate(-12px, -7px);
      }
    }

    @keyframes bannerFloatTwo {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-17px, 13px);
      }

      50% {
        transform: translate(-7px, 22px);
      }

      75% {
        transform: translate(13px, 8px);
      }
    }

    @keyframes bannerFloatThree {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(22px, 15px);
      }

      50% {
        transform: translate(12px, -17px);
      }

      75% {
        transform: translate(-8px, 12px);
      }
    }

    @keyframes bannerFloatFour {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-14px, -18px);
      }

      50% {
        transform: translate(-25px, -9px);
      }

      75% {
        transform: translate(7px, -15px);
      }
    }

    @keyframes bannerFloatFive {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(15px, 8px);
      }

      50% {
        transform: translate(-10px, 15px);
      }

      75% {
        transform: translate(-18px, -10px);
      }
    }
/*======================================= home page css end  ===================================*/
