/* Business Management Hero Section - Left Aligned with Zoom Fixes */

/* Initial transparent navbar */
.navbar {
    background: transparent !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding-left: max(15px, 5%);
    padding-right: max(15px, 5%);
}

/* Sticky navbar when scrolled */
.navbar.sticky-top {
    position: fixed !important;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Initial navbar text color (white on hero) */
.navbar .navbar-brand h2 {
    color: #ffffff !important;
}

.navbar .navbar-nav .nav-link {
    color: #ffffff !important;
}

/* Sticky navbar text color (blue when white background) */
.navbar.sticky-top .navbar-brand h2 {
    color: #06a3da !important;
}

.navbar.sticky-top .navbar-nav .nav-link {
    color: #091e3e !important;
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #06a3da !important;
}

/* Adjust hero section padding when navbar is sticky */
body.sticky-navbar .hero {
    padding-top: 150px;
}

/* For mobile view */
@media (max-width: 991.98px) {
    .navbar {
        position: relative;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    .navbar.sticky-top {
        position: relative !important;
        box-shadow: none;
    }
    
    body.sticky-navbar .hero-section {
        padding-top: 130px;
    }
}

.business-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/seo-hero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Changed from height to min-height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 120px 0 80px; /* Increased top padding, added bottom padding */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: max(20px, 8%); /* Responsive left padding */
    padding-right: max(20px, 5%); /* Responsive right padding */
}

.hero-content {
    max-width: 800px; /* Slightly reduced for better containment */
    text-align: left;
    padding: 30px 0; /* Removed horizontal padding, now handled by container */
    animation: fadeInLeft 1s ease-out;
    position: relative;
    width: 100%;
    margin-left: 0; /* Reset margin */
    
}

/* Left alignment specific class */
.hero-content.left-aligned {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-title {
   
    /* font-weight: 600; */
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    font-size: clamp(1.5rem, 5vw, 4rem) !important;  /* Responsive font size */
     font-size: 2.5rem !important;
}

.title-part-1 {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    white-space: normal; /* Changed from nowrap to normal */
    word-wrap: break-word;
}

.title-part-2 {
    color: #06a3da;
    /* font-weight: 700; */
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

/* .hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    margin: 0 0 25px 0;
    border-radius: 2px;
} */

.hero-description {
   
    font-size: clamp(1rem, 2vw, 1.2rem); /* Responsive font size */
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0 0 30px 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    text-align: left;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
}
/* CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0;
    flex-wrap: wrap;
    width: 100%;
}

/* Common Button Style */
.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px; /* Same as previous hero */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}

/* Primary Button */
.hero-cta-primary {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.hero-cta-primary:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary (Outline) Button */
.hero-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-cta-secondary:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .business-hero-section {
        min-height: 90vh;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .hero-cta-buttons {
        gap: 18px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 12px 28px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .business-hero-section {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-overlay {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 0;
    }
    
    .hero-title {
        padding-top: 0;
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .hero-divider {
        width: 60px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 25px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: auto;
        min-width: 220px;
        max-width: 100%;
        padding: 12px 28px;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .business-hero-section {
        padding: 70px 0 40px;
    }
    
    .hero-overlay {
        padding-top: 10px;
    }
    
    .hero-content {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .hero-description {
        margin-bottom: 25px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-cta-buttons {
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 200px;
        padding: 11px 24px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 400px) {
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-cta-primary i,
    .hero-cta-secondary i {
        font-size: 0.9rem;
    }
}

/* For very wide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero-description {
        max-width: 800px;
    }
}

/* Fix for iOS/Safari mobile viewport issues */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .business-hero-section {
            min-height: -webkit-fill-available;
        }
    }
}

/* Ensure buttons never get cut off at any zoom level */
@media screen and (max-width: 500px) and (min-resolution: 1.5dppx) {
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 160px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* What We Do Section - Simplified */

/* .what-we-do-section .container,
.what-we-do-section .services-container,
.what-we-do-section .wrapper,
.what-we-do-section .content {
  max-width: 1400px !important;
  width: 100% !important;
} */

.what-we-do-section {
   padding: 50px 0 50px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-title-main {
  /* font-size: 2.8rem;
    font-weight: 700; */
  color: #091e3e;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  text-align: left;
}

.company-name-subtitle {
  /* font-size: 1.6rem; */
  /* font-weight: 500; */
  color: #06a6e0;
  margin-bottom: 15px;
}

.section-tagline {
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  /* text-align: center; */

  max-width: 1200px; /* Controls how wide it can go */
}

/* Content Area */
.what-we-do-content {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.what-we-do-content p {
  /* font-size: 1.1rem; */
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.what-we-do-highlight {
  margin: 20px 0;
}

.what-we-do-highlight p {
  margin-bottom: 0;
  /* font-size: 1.1rem; */
  color: #444;
}

/* Image Container */
.what-we-do-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(6, 166, 224, 0.12);
  border: 2px solid rgba(6, 166, 224, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 400px;
}

.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(6, 166, 224, 0.2);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 166, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0d6efd;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .what-we-do-section {
    padding: 70px 0;
  }

  .section-title-main {
    font-size: 2.2rem;
  }

  .company-name-subtitle {
    font-size: 1.3rem;
  }

  .what-we-do-content {
    margin-bottom: 30px;
    min-height: 350px;
  }

  .image-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 60px 0;
  }

  .section-title-main {
    font-size: 2rem;
  }

  .what-we-do-content {
    min-height: 320px;
  }

  .what-we-do-content p {
    font-size: 1rem;
  }

  .image-container {
    min-height: 320px;
  }
}


/* SEO Services Section with Custom Colors */
.seo-services-section {
 padding: 50px 0 50px 0;
  background: #e6f8fe;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.1rem;
  color: #091e3e;
  margin-bottom: 5px; 
  font-weight: 700;
  /* line-height: 1.15;         */
  position: relative;
  /* padding-bottom: 8px;  */
  display: inline-block;
}

/* Single underline line centered under heading */
/* .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #091e3e, #06a3da);
    border-radius: 2px;
} */

/* Paragraph with increased width */
.section-subtitle {
  font-size: 1rem !important;
  text-align: center !important;
}

/* Services Grid */
.services-grid {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card with Custom Border Radius and Colors */
.service-card {
  background: white;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(9, 30, 62, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid #eaeaea;

  /* Custom Border Radius */
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;

  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(9, 30, 62, 0.15);
  border-color: #06a3da;
}

/* Decorative corner accents using your color scheme */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #091e3e, #06a3da);
  border-bottom-right-radius: 100%;
  opacity: 0.1;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06a3da, #091e3e);
  border-top-left-radius: 100%;
  opacity: 0.1;
  z-index: 0;
}

/* Card Content */
.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #091e3e, #06a3da);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(6, 163, 218, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(6, 163, 218, 0.3);
}

.card-title {
  font-size: 1.4rem;
  color: #091e3e;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.card-description {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    max-width: 800px;
    font-size: 1.05rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .seo-services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    max-width: 700px;
    font-size: 1rem;
    padding: 0 15px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .section-title::after {
    width: 100px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.3rem;
  }
}
.section-title::before {
  display: none !important;
}


/* SEO Benefits Section */
.seo-benefits-section {
  padding: 50px 0 50px 0;
  background: #f2f2f2;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  overflow: hidden;
}

/* Benefits Header */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title {
  color: #091e3e;
  margin-bottom: 5px;
  line-height: 1.2;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.benefits-subtitle {
  color: #555;
  line-height: 1.7;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Benefits Grid - 4 cards per row */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 30px;
}

/* Benefit Cards with Animations */
.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(6, 166, 224, 0.1);
  border: 2px solid rgba(6, 166, 224, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
}

.benefit-card.animate-card {
  animation: cardFloatIn 0.6s ease forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}
.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}
.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}
.benefit-card:nth-child(7) {
  animation-delay: 0.7s;
}
.benefit-card:nth-child(8) {
  animation-delay: 0.8s;
}

.benefit-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 166, 224, 0.25);
  border-color: #06a6e0;
}

/* Animated wave effect on hover */
.card-wave {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(6, 166, 224, 0.05));
  z-index: -1;
  transition: bottom 0.6s ease;
}

.benefit-card:hover .card-wave {
  bottom: 0;
}

/* Icon animation */
.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06a6e0, #0984c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(6, 166, 224, 0.3);
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(6, 166, 224, 0.4);
  animation: iconPulse 2s infinite;
}

.benefit-card-title {
  font-size: 1.3rem;
  color: #091e3e;
  margin-bottom: 18px;
  /* font-weight: 700; */
  line-height: 1.3;
  text-align: center;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-title {
  color: #06a6e0;
}

.benefit-card-text {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  text-align: left;
  transition: color 0.3s ease;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes iconPulse {
  0% {
    box-shadow: 0 8px 20px rgba(6, 166, 224, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(6, 166, 224, 0.5);
  }
  100% {
    box-shadow: 0 8px 20px rgba(6, 166, 224, 0.3);
  }
}

/* Glow effect on hover */
.benefit-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #06a6e0, #0984c9, #06a6e0);
  border-radius: 17px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
  opacity: 0.3;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% {
    filter: blur(0px);
  }
  50% {
    filter: blur(5px);
  }
  100% {
    filter: blur(0px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    gap: 25px;
  }

  .container {
    max-width: 1100px;
  }
}

@media (max-width: 992px) {
  .benefits-title {
    font-size: 2.4rem;
  }

  .benefits-subtitle {
    max-width: 800px;
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    gap: 25px;
  }

  .benefit-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .seo-benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 2.1rem;
  }

  .benefits-subtitle {
    max-width: 700px;
    font-size: 1rem;
    padding: 0 15px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .benefit-card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-title {
    font-size: 1.9rem;
  }

  .benefits-title::after {
    width: 120px;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  .benefit-card-title {
    font-size: 1.3rem;
  }
}

/* Fixed SEO Comparison Table Section */
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --light-text: #ffffff;
  --lighter-dark: #1a3a6c; /* Lighter version of dark for better visibility */
}

.comparison-table-section {
   padding: 50px 0 50px 0;
  background: var(--light);
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

/* Table Header */
.table-header {
  text-align: center;
  margin-bottom: 50px;
}

.table-title {
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.2;
  position: relative;
}

/* .table-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
} */

.table-subtitle {
  /* font-size: 1.1rem; */
  color: #555;
  line-height: 1.7;
  /* margin: 20px auto 0; */
  /* max-width: 1000px; */
  text-align: center;
}

/* Simple Table */
.simple-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(9, 30, 62, 0.1);
  border: 2px solid var(--dark);
  margin-bottom: 10px;
}

/* Table Rows */
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dde4f0;
  transition: all 0.3s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:not(.header-row):hover {
  background-color: #f8fbff;
  transform: translateX(5px);
}

/* Header Row - FIXED FOR BETTER VISIBILITY */
.header-row {
  background: var(--dark);
  color: white;
}

.header-row .table-cell {
  padding: 30px 20px;
  text-align: center;
}

/* Category Header - LIGHTER COLOR FOR BETTER VISIBILITY */
.category-header {
  background: var(--lighter-dark); /* Using lighter blue */
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.category-header h3 {
  /* font-size: 1.5rem;
    font-weight: 700; */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-text); /* White text */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for better contrast */
}

/* Header Content */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25); /* More visible icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5); /* Added border for visibility */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header-row h3 {
  font-size: 1.5rem;
  /* font-weight: 700; */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-badge {
  background: rgba(255, 255, 255, 0.25); /* More visible badge */
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Column Headers */
.traditional-header {
  background: linear-gradient(
    135deg,
    var(--primary),
    #0a8ec2
  ); /* Gradient for Traditional SEO */
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.ai-header {
  background: linear-gradient(
    135deg,
    var(--secondary),
    #2a9c4a
  ); /* Gradient for AI SEO */
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

/* Table Cells */
.table-cell {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  min-height: 100px;
}

/* Category Cell */
.category-cell {
  background: #f8fafd;
  border-right: 2px solid #e1e8f0;
  justify-content: center;
  text-align: center;
}

.category-cell h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

/* Traditional and AI Cells */
.traditional-cell {
  background: rgba(6, 163, 218, 0.05);
  border-right: 2px solid #e1e8f0;
}

.ai-cell {
  background: rgba(52, 173, 84, 0.05);
}

/* Cell Content */
.cell-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.cell-content i {
  font-size: 1.4rem;
  margin-top: 5px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.traditional-cell .cell-content i {
  color: var(--primary);
  border: 2px solid var(--primary);
}

.ai-cell .cell-content i {
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cell-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .table-title {
    font-size: 2.2rem;
  }

  .table-subtitle {
    max-width: 600px;
    font-size: 1.05rem;
  }

  .header-row h3 {
    font-size: 1.3rem;
  }

  .category-header h3 {
    font-size: 1.3rem;
  }

  .category-cell h4 {
    font-size: 1.1rem;
  }

  .cell-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .comparison-table-section {
    padding: 60px 0;
  }

  .table-title {
    font-size: 1.9rem;
  }

  .table-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .simple-table {
    border-radius: 12px;
    overflow: visible;
  }

  .table-row {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e1e8f0;
  }

  .table-row.header-row {
    display: none;
  }

  .table-cell {
    padding: 20px;
    min-height: auto;
    border: none !important;
  }

  .category-cell {
    background: var(--lighter-dark); /* Use lighter color on mobile too */
    justify-content: center;
    border-bottom: 3px solid var(--primary);
  }

  .category-cell h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .traditional-cell {
    background: white;
    border-top: 4px solid var(--primary) !important;
  }

  .ai-cell {
    background: white;
    border-top: 4px solid var(--secondary) !important;
  }

  .cell-content {
    align-items: center;
  }

  .cell-content i {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* Add column labels for mobile */
  .traditional-cell::before {
    content: "Traditional SEO";
    display: block;
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .ai-cell::before {
    content: "AI SEO";
    display: block;
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .traditional-cell,
  .ai-cell {
    position: relative;
    padding-top: 35px;
  }
}

@media (max-width: 576px) {
  .table-title {
    font-size: 1.7rem;
  }

  .table-title::after {
    width: 100px;
  }

  .table-subtitle {
    font-size: 0.95rem;
  }

  .table-cell {
    padding: 15px;
  }

  .cell-content {
    gap: 12px;
  }

  .cell-content i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .cell-content p {
    font-size: 0.9rem;
  }

  .category-cell h4 {
    font-size: 1.1rem;
  }

  .traditional-cell::before,
  .ai-cell::before {
    font-size: 0.7rem;
    padding: 4px 12px;
    left: 15px;
  }

  .traditional-cell,
  .ai-cell {
    padding-top: 30px;
  }
}

/* SEO Company CTA Section */
.seo-cta-section {
   padding: 50px 0 50px 0;
  background: linear-gradient(135deg, #0ea5e9 0%);
  position: relative;
  overflow: hidden;
}

.seo-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.seo-cta-wrapper {
  position: relative;
  z-index: 2;
}

/* Left Side Content */
.seo-cta-content {
  padding-right: 30px;
}

.seo-cta-title {
  /* font-size: 2.6rem;
    font-weight: 700; */
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.seo-cta-description {
  /* font-size: 1.1rem; */
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 90%;
}

/* Button on Left Side */
.seo-cta-button {
  margin-top: 30px;
}

.seo-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: pulseButton 2s ease-in-out infinite;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  position: relative;
  overflow: hidden;
}

.seo-btn i {
  font-size: 1.2rem;
}

.seo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

@keyframes pulseButton {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}

.seo-btn:hover {
  animation: none;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.seo-btn:hover::before {
  left: 100%;
}

/* Right Side Icon Section */
.seo-icon-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.seo-icon-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

/* Main Search Icon */
.seo-main-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -55%) rotate(5deg);
  }
}

/* Pulse Rings */
.seo-icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.ring-2 {
  width: 250px;
  height: 250px;
  animation-delay: 1s;
}

.ring-3 {
  width: 300px;
  height: 300px;
  animation-delay: 2s;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Floating SEO Icons */
.floating-seo-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #3b82f6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: floatAround 8s ease-in-out infinite;
}

.icon-google {
  top: 20%;
  left: 20%;
  background: #4285f4;
  color: white;
  animation-delay: 0s;
}

.icon-ranking {
  top: 20%;
  right: 20%;
  background: #10b981;
  color: white;
  animation-delay: 1s;
}

.icon-content {
  bottom: 20%;
  left: 20%;
  background: #f59e0b;
  color: white;
  animation-delay: 2s;
}

.icon-analytics {
  bottom: 20%;
  right: 20%;
  background: #8b5cf6;
  color: white;
  animation-delay: 3s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(15px) rotate(270deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .seo-cta-section {
    padding: 60px 0;
  }

  .seo-cta-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }

  .seo-cta-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .seo-cta-title {
    font-size: 2.2rem;
  }

  .seo-cta-button {
    margin-top: 25px;
  }

  .seo-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .seo-icon-container {
    width: 260px;
    height: 260px;
  }

  .seo-main-icon {
    width: 85px;
    height: 85px;
    font-size: 2.2rem;
  }

  .ring-1 {
    width: 170px;
    height: 170px;
  }

  .ring-2 {
    width: 210px;
    height: 210px;
  }

  .ring-3 {
    width: 260px;
    height: 260px;
  }

  .floating-seo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .seo-cta-title {
    font-size: 1.9rem;
  }

  .seo-cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .seo-btn {
    padding: 13px 30px;
    font-size: 0.95rem;
  }

  .seo-icon-container {
    width: 220px;
    height: 220px;
  }

  .seo-main-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 20px;
  }

  .ring-1 {
    width: 140px;
    height: 140px;
  }

  .ring-2 {
    width: 180px;
    height: 180px;
  }

  .ring-3 {
    width: 220px;
    height: 220px;
  }

  .floating-seo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .seo-cta-section {
    padding: 50px 0;
  }

  .seo-cta-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .seo-cta-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .seo-cta-button {
    margin-top: 20px;
  }

  .seo-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .seo-icon-container {
    width: 180px;
    height: 180px;
  }

  .seo-main-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 15px;
  }

  .ring-1 {
    width: 110px;
    height: 110px;
  }

  .ring-2 {
    width: 140px;
    height: 140px;
  }

  .ring-3 {
    width: 180px;
    height: 180px;
  }

  .floating-seo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* Modern SEO Services Section */
.modern-services-section {
   padding: 50px 0 50px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.modern-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.section-intro {
  text-align: center;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 5px;
  background: #091e3e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/* .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 2px;
} */

.section-lead {
  /* font-size: 1.2rem; */
  color: #475569;
  line-height: 1.7;
  /* margin-top: 30px; */
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
  border-color: #0ea5e9;
}

.service-box:hover::before {
  transform: scaleX(1);
}

/* Service Header */
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.service-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e2e8f0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-box:hover .service-number {
  color: #0ea5e9;
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon-box {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

/* Service Content */
.service-title {
  font-size: 1.4rem;
  /* font-weight: 700; */
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-text {
  /* font-size: 0.95rem; */
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Individual Service Colors */
.service-box:nth-child(1) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  color: #0ea5e9;
}

.service-box:nth-child(2) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  color: #10b981;
}

.service-box:nth-child(3) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(217, 119, 6, 0.1) 100%
  );
  color: #f59e0b;
}

.service-box:nth-child(4) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  color: #8b5cf6;
}

.service-box:nth-child(5) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  color: #ef4444;
}

.service-box:nth-child(6) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1) 0%,
    rgba(8, 145, 178, 0.1) 100%
  );
  color: #06b6d4;
}

.service-box:nth-child(7) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1) 0%,
    rgba(219, 39, 119, 0.1) 100%
  );
  color: #ec4899;
}

.service-box:nth-child(8) .service-icon-box {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1) 0%,
    rgba(234, 88, 12, 0.1) 100%
  );
  color: #f97316;
}

.service-box:nth-child(1):hover .service-icon-box {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
}

.service-box:nth-child(2):hover .service-icon-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-box:nth-child(3):hover .service-icon-box {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-box:nth-child(4):hover .service-icon-box {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-box:nth-child(5):hover .service-icon-box {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-box:nth-child(6):hover .service-icon-box {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-box:nth-child(7):hover .service-icon-box {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-box:nth-child(8):hover .service-icon-box {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .modern-services-section {
    padding: 70px 0;
  }

  .section-heading {
    font-size: 2.3rem;
  }

  .section-lead {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }

  .service-box {
    padding: 30px 25px;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .modern-services-section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-lead {
    font-size: 1rem;
  }

  .service-header {
    margin-bottom: 20px;
  }

  .service-icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-number {
    font-size: 1.3rem;
  }
}

/* SEO Process Steps Section */
.seo-process-steps {
   /*padding: 50px 0 50px 0;*/
  padding-top: 50px;
  background: #e6f8fe;
  position: relative;
  overflow: hidden;
}

.seo-process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(14, 165, 233, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.steps-intro {
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.steps-heading {
  color: #091e3e;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

/* .steps-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 3px;
} */

.steps-subtitle {
  color: #475569;
  line-height: 1.7;
}

/* Process Timeline */
.process-flow {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #e2e8f0, #cbd5e1, #e2e8f0);
  z-index: 1;
}

.seo-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.seo-step:nth-child(1) {
  animation-delay: 0.1s;
}
.seo-step:nth-child(2) {
  animation-delay: 0.3s;
}
.seo-step:nth-child(3) {
  animation-delay: 0.5s;
}
.seo-step:nth-child(4) {
  animation-delay: 0.7s;
}
.seo-step:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-indicator {
  position: relative;
  z-index: 2;
  margin-right: 40px;
  flex-shrink: 0;
}

.step-indicator span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0ea5e9;
  border: 3px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
  transition: all 0.4s ease;
}

.seo-step:hover .step-indicator span {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  border-color: #0ea5e9;
  transform: scale(1.05);
}

.step-details {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.seo-step:hover .step-details {
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
  border-color: #0ea5e9;
}

.step-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.step-name {
  font-size: 1.6rem;
  /* font-weight: 700; */
  color: #091e3e;
  margin: 0;
}

.step-visual {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.seo-step:hover .step-visual {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  transform: rotate(10deg);
}

.step-summary {
  /* font-size: 1.05rem; */
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
}

.step-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-tag {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
}

.seo-step:hover .highlight-tag {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  border-color: transparent;
}

/* Different colors for each step */
.seo-step:nth-child(1) .step-indicator span,
.seo-step:nth-child(1) .step-visual {
  color: #0ea5e9;
}

.seo-step:nth-child(2) .step-indicator span,
.seo-step:nth-child(2) .step-visual {
  color: #10b981;
}

.seo-step:nth-child(3) .step-indicator span,
.seo-step:nth-child(3) .step-visual {
  color: #f59e0b;
}

.seo-step:nth-child(4) .step-indicator span,
.seo-step:nth-child(4) .step-visual {
  color: #8b5cf6;
}

.seo-step:nth-child(5) .step-indicator span,
.seo-step:nth-child(5) .step-visual {
  color: #ef4444;
}

.seo-step:nth-child(1):hover .step-indicator span,
.seo-step:nth-child(1):hover .step-visual {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
}

.seo-step:nth-child(2):hover .step-indicator span,
.seo-step:nth-child(2):hover .step-visual {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.seo-step:nth-child(3):hover .step-indicator span,
.seo-step:nth-child(3):hover .step-visual {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.seo-step:nth-child(4):hover .step-indicator span,
.seo-step:nth-child(4):hover .step-visual {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.seo-step:nth-child(5):hover .step-indicator span,
.seo-step:nth-child(5):hover .step-visual {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Color-specific hover effects for tags */
.seo-step:nth-child(1):hover .highlight-tag {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
}

.seo-step:nth-child(2):hover .highlight-tag {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.seo-step:nth-child(3):hover .highlight-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.seo-step:nth-child(4):hover .highlight-tag {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.seo-step:nth-child(5):hover .highlight-tag {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .seo-process-steps {
    padding: 80px 0;
  }

  .steps-heading {
    font-size: 2.5rem;
  }

  .process-flow::before {
    left: 40px;
  }

  .step-indicator {
    margin-right: 30px;
  }

  .step-indicator span {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .step-details {
    padding: 30px;
  }

  .step-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .seo-process-steps {
    padding: 60px 0;
  }

  .steps-heading {
    font-size: 2.2rem;
  }

  .steps-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .process-flow::before {
    display: none;
  }

  .seo-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-indicator {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .step-title-row {
    flex-direction: column;
    gap: 15px;
  }

  .step-highlights {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .steps-heading {
    font-size: 1.8rem;
  }

  .step-details {
    padding: 25px 20px;
  }

  .step-name {
    font-size: 1.4rem;
  }

  .step-summary {
    font-size: 1rem;
  }

  .step-visual {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .highlight-tag {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
}

/* Why Choose GKIS for SEO Section Styles */
.why-choose-section {
  padding: 50px 0 50px 0;
  /* background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); */
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  /* font-size: 3rem;
    font-weight: 800; */
  color: #091e3e;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-header .highlight {
  color: #06a3da;
  position: relative;
  display: inline-block;
}

.section-header .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(6, 163, 218, 0.2);
  z-index: -1;
  border-radius: 4px;
  animation: underlinePulse 2s infinite;
}

.section-subtitle {
  color: #475569;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  /* margin-bottom: 20px; */
}

.reason-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(6, 163, 218, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(6, 163, 218, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.reason-card:nth-child(1) {
  animation-delay: 0.1s;
}
.reason-card:nth-child(2) {
  animation-delay: 0.2s;
}
.reason-card:nth-child(3) {
  animation-delay: 0.3s;
}
.reason-card:nth-child(4) {
  animation-delay: 0.4s;
}
.reason-card:nth-child(5) {
  animation-delay: 0.5s;
}
.reason-card:nth-child(6) {
  animation-delay: 0.6s;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #06a3da, #0ea5e9);
  z-index: 2;
  transition: height 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(6, 163, 218, 0.15);
}

.reason-card:hover::before {
  height: 8px;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #06a3da, #0284c7);
  box-shadow: 0 10px 25px rgba(6, 163, 218, 0.3);
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06a3da, #38bdf8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: white;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(6, 163, 218, 0.2);
}

.reason-card h3 {
  font-size: 1.6rem;
  color: #0c4a6e;
  margin-bottom: 20px;
  /* font-weight: 700; */
}

.reason-card p {
  color: #475569;
  line-height: 1.7;
  /* font-size: 1.05rem; */
}

/* Decoration circles */
.reason-decoration {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: -1;
}

.decoration-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(6, 163, 218, 0.05);
  position: absolute;
  top: 0;
  right: 0;
}

.decoration-circle:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 30px;
  right: 40px;
  background: rgba(6, 163, 218, 0.08);
}

.reason-card:hover .decoration-circle:nth-child(1) {
  animation: circleFloat 3s infinite ease-in-out;
}

.reason-card:hover .decoration-circle:nth-child(2) {
  animation: circleFloat 3s infinite ease-in-out 0.5s;
}

/* Background elements */
.background-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 163, 218, 0.05);
  z-index: 1;
}

.element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: float 25s infinite ease-in-out;
}

.element-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: float 20s infinite ease-in-out reverse;
}

.element-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes underlinePulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleX(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes circleFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -10px);
  }
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reason-card {
    padding: 35px 25px;
  }

  .reason-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 18px;
  }

  .cta-button {
    padding: 16px 35px;
    font-size: 1.1rem;
  }

  .element-1,
  .element-2,
  .element-3 {
    display: none; /* Hide background elements on mobile for better performance */
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .reason-card h3 {
    font-size: 1.4rem;
  }

  .reason-card p {
    font-size: 1rem;
  }
}

/* Tailored SEO Plans Section Styles */
.seo-plans-section {
  padding: 50px 0;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}

/* .seo-plans-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
} */

.seo-plans-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.seo-plans-section .section-header h2 {
  /* font-size: 2.5rem;
    font-weight: 800; */
  color: #091e3e;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.seo-plans-section .section-header .highlight {
  color: #091e3e;
  position: relative;
  display: inline-block;
}

.seo-plans-section .section-header .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(6, 163, 218, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.seo-plans-section .section-subtitle {
  /* font-size: 1.15rem; */
  color: #475569;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
  /* font-weight: 500; */
}

/* Plans Container - Adjusted for smaller cards */
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.plan-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(6, 163, 218, 0.08);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(6, 163, 218, 0.1);
  height: 100%; /* Added to ensure equal height */
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}
.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}
.plan-card:nth-child(3) {
  animation-delay: 0.3s;
}
.plan-card:nth-child(4) {
  animation-delay: 0.4s;
}
.plan-card:nth-child(5) {
  animation-delay: 0.5s;
}
.plan-card:nth-child(6) {
  animation-delay: 0.6s;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.15);
  border-color: rgba(6, 163, 218, 0.3);
}

.plan-card.featured {
  border: 2px solid #06a3da;
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.plan-ribbon {
  position: absolute;
  top: 12px;
  right: -30px;
  background: linear-gradient(90deg, #06a3da, #0284c7);
  color: white;
  padding: 6px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 3px 10px rgba(6, 163, 218, 0.3);
}

/* Plan Header - Made more compact */
.plan-header {
  padding: 25px 25px 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid rgba(6, 163, 218, 0.1);
  text-align: center;
  flex-shrink: 0; /* Prevent header from shrinking */
}

.plan-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #06a3da, #38bdf8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 15px rgba(6, 163, 218, 0.2);
  transition: all 0.3s ease;
}

.plan-card:hover .plan-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #0284c7, #06a3da);
}

.plan-header h3 {
  font-size: 1.4rem;
  color: #0c4a6e;
  margin-bottom: 8px;
  font-weight: 700;
}

.plan-badge {
  display: inline-block;
  background: rgba(6, 163, 218, 0.1);
  color: #06a3da;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Plan Content - Made more compact */
.plan-content {
  padding: 20px 25px;
  flex-grow: 1; /* Allow content to fill remaining space */
  display: flex;
  flex-direction: column;
}

.plan-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1; /* Allow paragraph to grow */
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0; /* Keep features list at bottom */
}

.plan-features li {
  padding: 8px 0;
  color: #475569;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(6, 163, 218, 0.05);
  font-size: 0.9rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: #06a3da;
  margin-right: 10px;
  margin-top: 2px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .plans-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .plan-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .seo-plans-section {
    padding: 60px 0;
  }

  .seo-plans-section .section-header h2 {
    font-size: 2rem;
  }

  .seo-plans-section .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .plans-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .seo-plans-section .section-header h2 {
    font-size: 1.8rem;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .plan-content {
    padding: 18px 20px;
  }

  .plan-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .plan-features li {
    font-size: 0.85rem;
  }
}


/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq {
  padding: 50px 0 50px 0;
  background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
  position: relative;
  margin-bottom: 0;
}

/* Remove any unwanted margin/padding after FAQ */
.faq + * {
  margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}

/* FAQ Header */
.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.faq__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #68a4c4, #06a3da);
  border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.faq__title-part--first {
  color: #091e3e;
}

/* Second part of heading - "Questions" */
.faq__title-part--second {
  color: #06a3da;
}

/* FAQ Item - Individual boxes with spacing */
.faq__item {
  margin-bottom: 14px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
  box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
  border: 1px solid #d1ecff;
  overflow: hidden;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item--active {
  background: linear-gradient(
    90deg,
    rgba(6, 163, 218, 0.03),
    rgba(104, 164, 196, 0.03)
  );
  box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  min-height: 70px;
  transition: all 0.3s ease;
  padding: 0 30px;
}

/* Question Content */
.faq__question-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* FAQ Title */
.faq__question-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #091e3e;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
}

.faq__question:hover .faq__question-title {
  color: #0480b8;
}

.faq__item--active .faq__question-title {
  color: #06a3da;
  font-weight: 700;
}

/* FAQ Icon */
.faq__icon {
  color: #091e3e;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 163, 218, 0.08);
  border: 1px solid rgba(6, 163, 218, 0.1);
  margin-left: 15px;
}

.faq__item--active .faq__icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq__question:hover .faq__icon {
  background: rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.15);
  transform: scale(1.05);
}

/* FAQ Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 30px;
  position: relative;
  line-height: 1.6;
  background: rgba(6, 163, 218, 0.02);
  border-top: 1px solid transparent;
}

.faq__answer::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #68a4c4, #06a3da);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq__item--active .faq__answer {
  max-height: 400px;
  padding: 25px 30px;
  border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq__item--active .faq__answer::before {
  opacity: 1;
}

.faq__answer-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 10px;
}

.faq__question:hover {
  transform: translateX(3px);
}

.faq__item--active .faq__question {
  transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq__item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq__item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq__item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq__item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq {
    padding: 40px 15px;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__title {
    font-size: 2rem;
    padding-bottom: 12px;
  }

  .faq__title::after {
    width: 80px;
    height: 2.5px;
  }

  .faq__item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq__question {
    min-height: 65px;
    padding: 0 20px;
  }

  .faq__question-title {
    font-size: 1rem;
  }

  .faq__icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .faq__answer {
    padding: 0 20px;
  }

  .faq__answer::before {
    left: 20px;
  }

  .faq__item--active .faq__answer {
    padding: 20px 20px;
    max-height: 500px;
  }

  .faq__answer-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .faq__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 30px 10px;
  }

  .faq__title {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }

  .faq__title::after {
    width: 60px;
    height: 2px;
  }

  .faq__item {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq__question {
    min-height: 60px;
    padding: 0 15px;
  }

  .faq__question-title {
    font-size: 0.95rem;
  }

  .faq__answer {
    padding: 0 15px;
  }

  .faq__answer::before {
    left: 15px;
  }

  .faq__item--active .faq__answer {
    padding: 15px 15px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* For larger screens */
@media (min-width: 1200px) {
  .faq__container {
    max-width: 900px;
  }
}

@media (min-width: 1400px) {
  .faq__container {
    max-width: 1000px;
  }

  .faq__item {
    margin-bottom: 18px;
  }
}