body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
}

/* Animated Grid Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(19, 140, 210, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 140, 210, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Decorative Motion Graphics */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 140, 210, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

/* Additional Motion Elements */
.hero .motion-graphic-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 180, 142, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 12s ease-in-out infinite reverse;
  z-index: 1;
}

.hero .motion-graphic-2 {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(103, 190, 202, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 18s ease-in-out infinite;
  z-index: 1;
}

.hero .motion-graphic-3 {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(19, 140, 210, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 10s ease-in-out infinite;
  z-index: 1;
}

.hero .motion-graphic-4 {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(103, 190, 202, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 14s ease-in-out infinite reverse;
  z-index: 1;
}

.hero .motion-graphic-5 {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(26, 180, 142, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 16s ease-in-out infinite;
  z-index: 1;
}

/* Animated Lines */
.hero .motion-line-1 {
  position: absolute;
  top: 15%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(19, 140, 210, 0.3), transparent);
  animation: lineMove 8s ease-in-out infinite;
  z-index: 1;
}

.hero .motion-line-2 {
  position: absolute;
  bottom: 25%;
  right: 0;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 180, 142, 0.3), transparent);
  animation: lineMove 10s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes lineMove {
  0%, 100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(50px) scaleX(1.5);
    opacity: 0.6;
  }
}

/* Particle Effects */
.hero .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(19, 140, 210, 0.4);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
  z-index: 1;
}

.hero .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero .particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 2s; }
.hero .particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.hero .particle:nth-child(4) { top: 30%; right: 15%; animation-delay: 1s; }
.hero .particle:nth-child(5) { top: 50%; right: 25%; animation-delay: 3s; }
.hero .particle:nth-child(6) { bottom: 20%; right: 10%; animation-delay: 5s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-10px);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-30px) translateX(-20px);
    opacity: 0.8;
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-headline-hindi {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-headline-english {
  background: linear-gradient(180deg, #138cd2 0%, #1ab48e 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-subheadline-hindi {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #138cd2 0%, #1ab48e 100%);
  border: none;
  padding: 16px 45px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(19, 140, 210, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(19, 140, 210, 0.7);
  color: #fff;
}

.btn-secondary-cta {
  background: transparent;
  border: 2px solid #138cd2;
  padding: 16px 45px;
  border-radius: 8px;
  color: #138cd2;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-cta:hover {
  background: rgba(19, 140, 210, 0.1);
  transform: translateY(-3px);
  color: #138cd2;
  border-color: #1ab48e;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.trust-badge {
  background: rgba(19, 140, 210, 0.08);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(19, 140, 210, 0.12);
  transform: translateY(-3px);
  border-color: rgba(19, 140, 210, 0.4);
  box-shadow: 0 5px 15px rgba(19, 140, 210, 0.2);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.trust-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.hero-animated-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 50px;
  color: rgba(19, 140, 210, 0.2);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(19, 140, 210, 0.2));
  transition: all 0.3s ease;
}

.floating-icon:hover {
  color: rgba(19, 140, 210, 0.4);
  transform: scale(1.2);
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: rgba(19, 140, 210, 0.25);
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  color: rgba(26, 180, 142, 0.25);
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  color: rgba(103, 190, 202, 0.25);
}

.floating-icon:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
  color: rgba(19, 140, 210, 0.2);
}

.floating-icon:nth-child(5) {
  bottom: 40%;
  left: 40%;
  animation-delay: 3s;
  color: rgba(26, 180, 142, 0.2);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.student-photos {
  display: flex;
  justify-content: center;
  gap: -10px;
  margin-top: 30px;
}

.student-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(19, 140, 210, 0.3);
  object-fit: cover;
  margin-left: -15px;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.student-photo:first-child {
  margin-left: 0;
}

.gradient-text {
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
 background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 90px;
  font-weight: 800;
}

.sub-title {
  font-size: 70px;
  font-weight: 900;
  margin-top: -15px;
}




.logos {
  opacity: 0.75;
  filter: grayscale(100%);
}

.step {
  text-align: center;
  margin: 50px 0;
  position: relative;
}
.step-circle {
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-weight: 700;
}

.divider-line {
  height: 400px;
  width: 2px;
  background: rgba(103, 190, 202, 0.5);
  margin: auto;
}

p {
  
  font-size: 12px;
  margin-bottom:0;
}

header {
  position: absolute;
  top: 20px;
  width: 100%;
}

.nav-link {
  color: #1a1a1a !important;
  opacity: 0.85;
  margin: 0 10px;
  font-weight: 500;
}
.nav-link:hover {
  opacity: 1;
  color: #138cd2 !important;
}

 .feature-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, #138cd2, #67beca);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 15px rgba(19, 140, 210, 0.6);
        flex-shrink: 0;
    }

    .feature-icon::after {
        content: '✓';
        font-size: 14px;
        font-weight: bold;
    }

 

/* Companies Section */
    .companies {
        padding: 64px;
        text-align: center;
        border-top: 1px solid rgba(19, 140, 210, 0.1);
    }

    .companies-title {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #1a1a1a;
        margin-bottom:32px;
    }

    .companies-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 48px;    
    }

    .company-logo {
        width: 120px;
        height: 60px;
        background: rgba(19, 140, 210, 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.3s;
        border: 1px solid rgba(19, 140, 210, 0.1);
    }

    .company-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
        border-color: rgba(19, 140, 210, 0.3);
    }

 /* Process timeline */
    .process-section {
        padding: 96px;
        position: relative;
        border-top: 1px solid rgba(19, 140, 210, 0.1);;
    }

    .process-text{
        color: #a0aec0;
        font-size: 50px;
    }
    .gradient-text-2 {
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
 background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 600;
}

    .process-timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom, transparent,#138cd2, #67beca, transparent);
        transform: translateX(-50%);
        z-index: 0;
    }

    

    .process-step {
        margin-bottom: 64px;
        position: relative;
        z-index: 1;
    }

    .process-step:nth-child(odd) .step-content {
        margin-left: auto;
        padding-left: 64px;
    }

    .process-step:nth-child(even) .step-content {
        padding-right: 64px;
    }



    .step-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 24px;
        border: 2px solid transparent;
        background-clip: padding-box;
        box-shadow: 0 0 15px rgba(19, 140, 210, 0.5);
        z-index: 2;
    }

    .step-number::before {
        content: '';
        position: absolute;
        top: -2px;
        bottom: -2px;
        left: -2px;
        right: -2px;
        background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
        border-radius: 50%;
        z-index: -1;
    }


    .step-content {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid rgba(19, 140, 210, 0.2);
        width: 45%;
        box-shadow: 0 4px 20px rgba(19, 140, 210, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

     .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(19, 140, 210, 0.25);
        border-color: rgba(19, 140, 210, 0.4);
    }

    @media (max-width: 768px) {

         .step-number {
            left: 30px;
        }

        .step-content {
            width: calc(100% - 80px);
        }

         .process-timeline::before {
            left: 30px;
        }

         .process-step:nth-child(odd) .step-content,
        .process-step:nth-child(even) .step-content {
            padding-left: 64px;
            padding-right: 0;
            margin-left: 70px;
        }
    }

     @media (max-width: 576px) {
  .gradient-text {
    font-size: 40px;
  }
  
  .sub-title {
    font-size: 32px;
  }
  
  .hero {
    padding: 160px 0 60px;
    min-height: auto;
  }

  .hero-headline-hindi {
    font-size: 28px;
  }

  .hero-headline-english {
    font-size: 24px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-subheadline-hindi {
    font-size: 15px;
  }

  .btn-primary-cta, .btn-secondary-cta {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    gap: 15px;
    margin-top: 30px;
  }

  .trust-badge {
    padding: 12px 18px;
    flex: 1;
    min-width: 140px;
  }

  .trust-badge-text {
    font-size: 12px;
  }
  
  
  .companies-grid {
    gap: 16px;
  }
  
  .company-logo {
    width: 85px;
    height: 45px;
    font-size: 13px;
  }

 

  
  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    padding-left: 30px;
            padding-right: 0;
            margin-left: 65px;
  }
  
  .step-number {
    left: 25px;
    width: 45px;
    height: 45px;
  }
  
  .process-section {
    padding: 48px 0;
  }

 
}

    @media (max-width: 400px) {
  .gradient-text {
    font-size: 34px;
  }
  
  .sub-title {
    font-size: 28px;
  }
  
  .company-logo {
    width: 70px;
    height: 40px;
    font-size: 12px;
  }
  
  
}


    .navbar-collapse {
        backdrop-filter: blur(8px);
        border-radius: 8px;
        padding: 12px;
    }

    .navbar-toggler:focus {
    box-shadow: none;
    }


/*Courses*/

/* Companies Section */
    .courses {
        padding: 64px;
        text-align: center;
        border-top: 1px solid rgba(19, 140, 210, 0.1);
    }

    
    

    

    .company-logo {
        width: 120px;
        height: 60px;
        background: rgba(19, 140, 210, 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.3s;
        border: 1px solid rgba(19, 140, 210, 0.1);
    }

    .company-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
        border-color: rgba(19, 140, 210, 0.3);
    }

   


/* SECTION 2: Problem-Solution Strip */
.problem-solution-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(26, 180, 142, 0.03) 100%);
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  position: relative;
  overflow: hidden;
}

.problem-solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(19, 140, 210, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 180, 142, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-svg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.section-svg-icon {
  width: 100%;
  height: 100%;
}

.problem-solution-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(19, 140, 210, 0.1);
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
}

.problem-side, .solution-side {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.problem-side {
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.12) 0%, rgba(103, 190, 202, 0.1) 100%);
  border-right: 3px solid rgba(19, 140, 210, 0.4);
  position: relative;
}

.problem-side::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 140, 210, 0.6) 0%, rgba(103, 190, 202, 0.6) 100%);
  z-index: 2;
}

.solution-side {
  background: linear-gradient(135deg, rgba(26, 180, 142, 0.18) 0%, rgba(22, 163, 74, 0.12) 100%);
  border-left: 3px solid rgba(26, 180, 142, 0.4);
  position: relative;
}

.solution-side::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 180, 142, 0.6) 0%, rgba(22, 163, 74, 0.6) 100%);
  z-index: 2;
}

.problem-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 140, 210, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatCircle 20s ease-in-out infinite;
}

.solution-side::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 180, 142, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatCircle 18s ease-in-out infinite reverse;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title-icon {
  width: 50px;
  height: 50px;
  color: currentColor;
  flex-shrink: 0;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.problem-title, .solution-title {
  font-size: 36px;
  font-weight: 900;
  margin: 20px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.problem-title {
  color: #138cd2;
  background: linear-gradient(135deg, #138cd2 0%, #67beca 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.problem-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  border-radius: 2px;
}

.solution-title {
  color: #1ab48e;
  background: linear-gradient(135deg, #1ab48e 0%, #16a34a 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.solution-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1ab48e, #16a34a);
  border-radius: 2px;
}

.problem-item, .solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.problem-item:hover, .solution-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-item:hover {
  border-color: rgba(19, 140, 210, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.solution-item:hover {
  border-color: rgba(26, 180, 142, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.problem-text, .solution-text {
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  flex: 1;
}

.problem-text {
  color: #1a1a1a;
}

.solution-text {
  color: #1a1a1a;
}

.problem-icon-wrapper, .solution-icon-wrapper {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.problem-icon-wrapper {
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.12), rgba(103, 190, 202, 0.12));
  border: 2px solid rgba(19, 140, 210, 0.25);
}

.problem-item:hover .problem-icon-wrapper {
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  border-color: rgba(19, 140, 210, 0.4);
  transform: scale(1.05) rotate(5deg);
}

.solution-icon-wrapper {
  background: linear-gradient(135deg, rgba(26, 180, 142, 0.12), rgba(22, 163, 74, 0.12));
  border: 2px solid rgba(26, 180, 142, 0.25);
}

.solution-item:hover .solution-icon-wrapper {
  background: linear-gradient(135deg, rgba(26, 180, 142, 0.2), rgba(22, 163, 74, 0.2));
  border-color: rgba(26, 180, 142, 0.4);
  transform: scale(1.05) rotate(-5deg);
}

.problem-icon, .solution-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.problem-icon {
  fill: none;
}

.problem-item:hover .problem-icon {
  transform: scale(1.1);
}

.solution-icon {
  fill: none;
}

.solution-item:hover .solution-icon {
  transform: scale(1.1);
}

.problem-solution-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.problem-solution-cta-btn {
  background: linear-gradient(135deg, #138cd2 0%, #1ab48e 100%);
  border: none;
  padding: 16px 45px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(19, 140, 210, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.problem-solution-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(19, 140, 210, 0.7);
  color: #fff;
}

.problem-solution-cta-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.problem-solution-cta-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .problem-solution-container {
    grid-template-columns: 1fr;
  }

  .problem-side {
    border-right: none;
    border-bottom: 2px solid rgba(19, 140, 210, 0.3);
  }

  .solution-side {
    border-left: none;
    border-top: 2px solid rgba(26, 180, 142, 0.3);
  }

  .problem-side, .solution-side {
    padding: 50px 30px;
  }
}

@media (max-width: 576px) {
  .problem-solution-section {
    padding: 60px 0;
  }

  .problem-side, .solution-side {
    padding: 40px 20px;
  }

  .problem-title, .solution-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .problem-item, .solution-item {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .problem-solution-cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* SECTION 3: Course Overview Carousel */
.courses-carousel-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.courses-carousel-title {
  text-align: center;
  margin-bottom: 60px;
}

.courses-carousel-title .section-title-wrapper {
  justify-content: center;
}

.courses-carousel-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.courses-carousel-title p {
  font-size: 18px;
  color: #2d3748;
}

.courses-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courses-carousel {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.courses-carousel::-webkit-scrollbar {
  height: 8px;
}

.courses-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.courses-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  border-radius: 10px;
}

.course-card {
  min-width: 900px;
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 20px 40px rgba(19, 140, 210, 0.3);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card.beginner {
  border-left: 4px solid #1ab48e;
}

.course-card.intermediate {
  border-left: 4px solid #138cd2;
}

.course-card.advanced {
  border-left: 4px solid #67beca;
}

.course-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.course-card-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.course-card-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.course-badge.popular {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  color: #fff;
}

.course-badge.beginner-friendly {
  background: linear-gradient(135deg, #1ab48e, #16a34a);
  color: #fff;
}

.course-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.4), rgba(103, 190, 202, 0.4));
}

.course-icon {
  font-size: 36px;
  color: #138cd2;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  color: #67beca;
  transform: scale(1.2);
}

.course-name {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.2;
}

.course-details {
  display: flex;
  gap: 25px;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

.course-duration, .course-fees {
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-modules {
  margin-bottom: 0;
}

.course-modules-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.course-module-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
}

.course-module-item:last-child {
  margin-bottom: 0;
}

.course-module-item i {
  color: #1ab48e;
  font-size: 12px;
}

.course-batch-date {
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: #138cd2;
  font-weight: 700;
}

.course-learn-more {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(19, 140, 210, 0.5);
  color: #138cd2;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.course-learn-more:hover {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  color: #fff;
  border-color: #138cd2;
  transform: translateY(-2px);
}

.course-roi-section {
  background: rgba(26, 180, 142, 0.1);
  border: 1px solid rgba(26, 180, 142, 0.3);
  border-radius: 14px;
  padding: 25px;
}

.course-roi-title {
  font-size: 14px;
  font-weight: 700;
  color: #1ab48e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-roi-stats {
  display: flex;
  gap: 30px;
  justify-content: space-around;
}

.course-roi-stat {
  text-align: center;
}

.course-roi-stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #1ab48e;
  margin-bottom: 5px;
  line-height: 1;
}

.course-roi-stat-label {
  font-size: 13px;
  color: #2d3748;
  font-weight: 500;
}

.course-results-list {
  background: rgba(19, 140, 210, 0.1);
  border-left: 3px solid #138cd2;
  border-radius: 12px;
  padding: 20px;
}

.course-results-title {
  font-size: 14px;
  font-weight: 700;
  color: #138cd2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

.course-result-item:last-child {
  margin-bottom: 0;
}

.course-result-item i {
  color: #1ab48e;
  font-size: 16px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  color: #138cd2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  border-color: #138cd2;
  transform: scale(1.1);
}

.carousel-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .courses-carousel-section {
    padding: 60px 0;
  }

  .courses-carousel-title h2 {
    font-size: 32px;
  }

  .course-card {
    min-width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .carousel-nav {
    display: none;
  }

.courses-carousel-section .carousel-nav {
  display: none;
}
}

@media (max-width: 576px) {
  .courses-carousel-title h2 {
    font-size: 28px;
  }

  .course-card {
    min-width: 100%;
    max-width: 100%;
    padding: 25px;
    gap: 25px;
  }

  .course-name {
    font-size: 24px;
  }

  .course-roi-stats {
    flex-direction: column;
    gap: 15px;
  }
    }
    
    .footer-newsletter-input{
        width:100%;
        margin-bottom:5px;
    }
    
    .footer-newsletter-btn{
        width:100%;
    }

/* SECTION 4: Video Testimonial Feature */
.video-testimonial-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.video-testimonial-title {
  text-align: center;
  margin-bottom: 60px;
}

.video-testimonial-title .section-title-wrapper {
  justify-content: center;
}

.video-testimonial-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-testimonial-title p {
  font-size: 18px;
  color: #2d3748;
}

.main-video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
}

.main-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.main-video-wrapper video,
.main-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  color: #fff;
}

.video-student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.video-student-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #138cd2;
  object-fit: cover;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.video-student-details h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.video-student-details p {
  font-size: 14px;
  color: #2d3748;
  margin: 0;
}

.video-salary-comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(26, 180, 142, 0.2);
  border: 1px solid rgba(26, 180, 142, 0.4);
  border-radius: 12px;
  padding: 15px 20px;
}

.salary-before, .salary-after {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.salary-before .salary-label {
  font-size: 12px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.salary-before .salary-value {
  font-size: 24px;
  font-weight: 800;
  color: #e53e3e;
}

.salary-arrow {
  font-size: 24px;
  color: #1ab48e;
}

.salary-after .salary-label {
  font-size: 12px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.salary-after .salary-value {
  font-size: 24px;
  font-weight: 800;
  color: #1ab48e;
}

.video-filter-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.video-filter-tag {
  padding: 8px 20px;
  border-radius: 25px;
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-filter-tag:hover,
.video-filter-tag.active {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  border-color: #138cd2;
  color: #fff;
}

.video-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.video-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 10px 30px rgba(19, 140, 210, 0.3);
}

.video-thumbnail-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  position: relative;
}

.video-thumbnail-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(19, 140, 210, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-button {
  background: #138cd2;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail-info {
  padding: 15px;
}

.video-thumbnail-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.video-thumbnail-role {
  font-size: 12px;
  color: #2d3748;
}

.video-stats-bar {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
}

.video-stat-item {
  text-align: center;
}

.video-stat-value {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-stat-label {
  font-size: 14px;
  color: #2d3748;
  font-weight: 500;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-wrapper video,
.video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-testimonial-section {
    padding: 60px 0;
  }

  .video-testimonial-title h2 {
    font-size: 32px;
  }

  .video-thumbnail-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .video-stats-bar {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }

  .video-salary-comparison {
    flex-direction: column;
    gap: 15px;
  }
}

/* SECTION 5: Why Una Students Choose Us */
.why-una-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  position: relative;
  overflow: hidden;
}

.why-una-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(103, 190, 202, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(19, 140, 210, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-una-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.why-una-title .section-title-wrapper {
  justify-content: center;
}

.why-una-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-una-title p {
  font-size: 18px;
  color: #2d3748;
}

.why-una-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-una-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.why-una-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-una-card:hover {
  transform: translateY(-10px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 20px 40px rgba(19, 140, 210, 0.3);
}

.why-una-card:hover::before {
  transform: scaleX(1);
}

.why-una-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.why-una-card:hover .why-una-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.4), rgba(103, 190, 202, 0.4));
}

.why-una-icon {
  font-size: 48px;
  color: #138cd2;
  transition: all 0.3s ease;
}

.why-una-card:hover .why-una-icon {
  color: #67beca;
  transform: scale(1.2);
}

.why-una-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.why-una-card p {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 15px;
}

.why-una-card .why-una-feature {
  font-size: 14px;
  color: #2d3748;
  font-style: italic;
}

.why-una-counter {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 15px;
  display: block;
}

@media (max-width: 992px) {
  .why-una-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-una-section {
    padding: 60px 0;
  }

  .why-una-title h2 {
    font-size: 32px;
  }

  .why-una-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-una-card {
    padding: 30px 25px;
  }
}

/* SECTION 6: Course Curriculum Preview */
.curriculum-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.curriculum-title {
  text-align: center;
  margin-bottom: 60px;
}

.curriculum-title .section-title-wrapper {
  justify-content: center;
}

.curriculum-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.curriculum-title p {
  font-size: 18px;
  color: #2d3748;
}

.curriculum-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.curriculum-tab {
  padding: 12px 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.curriculum-tab:hover {
  background: rgba(19, 140, 210, 0.15);
  color: #1a1a1a;
}

.curriculum-tab.active {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  border-color: #138cd2;
  color: #fff;
}

.curriculum-content {
  max-width: 1000px;
  margin: 0 auto;
}

.curriculum-tab-content {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.curriculum-tab-content.active {
  display: block;
}

.curriculum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.curriculum-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.curriculum-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2d3748;
}

.curriculum-info-item i {
  color: #138cd2;
}

.curriculum-download-btn {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid rgba(19, 140, 210, 0.5);
  border-radius: 8px;
  color: #138cd2;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.curriculum-download-btn:hover {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  color: #fff;
  border-color: #138cd2;
}

.curriculum-progress {
  margin-bottom: 30px;
}

.curriculum-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #2d3748;
}

.curriculum-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.curriculum-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #138cd2, #1ab48e);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.curriculum-modules {
  margin-bottom: 30px;
}

.curriculum-module {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.curriculum-module:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(19, 140, 210, 0.3);
}

.curriculum-module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.curriculum-module-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.curriculum-module-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.curriculum-module-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.curriculum-module-toggle {
  font-size: 20px;
  color: #2d3748;
  transition: transform 0.3s ease;
}

.curriculum-module.expanded .curriculum-module-toggle {
  transform: rotate(180deg);
}

.curriculum-module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.curriculum-module.expanded .curriculum-module-content {
  max-height: 1000px;
  margin-top: 20px;
}

.curriculum-module-description {
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.6;
}

.curriculum-module-topics {
  margin-bottom: 20px;
}

.curriculum-module-topics-title {
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.curriculum-topic-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #2d3748;
}

.curriculum-topic-item i {
  color: #1ab48e;
  font-size: 12px;
}

.curriculum-tools {
  margin-bottom: 20px;
}

.curriculum-tools-title {
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.curriculum-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.curriculum-tool {
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 13px;
  color: #138cd2;
  font-weight: 600;
}

.curriculum-project {
  background: rgba(26, 180, 142, 0.1);
  border-left: 3px solid #1ab48e;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.curriculum-project-title {
  font-size: 14px;
  font-weight: 700;
  color: #1ab48e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.curriculum-project-desc {
  font-size: 13px;
  color: #2d3748;
}

.curriculum-video-preview {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.curriculum-video-preview video {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .curriculum-section {
    padding: 60px 0;
  }

  .curriculum-title h2 {
    font-size: 32px;
  }

  .curriculum-tab-content {
    padding: 25px;
  }

  .curriculum-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .curriculum-module-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* SECTION 7: Live Batch Schedule & Countdown */
.batch-schedule-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  position: relative;
}

.batch-schedule-title {
  text-align: center;
  margin-bottom: 60px;
}

.batch-schedule-title .section-title-wrapper {
  justify-content: center;
}

.batch-schedule-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.batch-schedule-title p {
  font-size: 18px;
  color: #2d3748;
}

.batch-schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.countdown-container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.countdown-label {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-bottom: 30px;
}

.countdown-item {
  text-align: center;
  flex: 1;
}

.countdown-value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(180deg, #138cd2 0%, #1ab48e 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.countdown-label-item {
  font-size: 14px;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.batch-details-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.batch-details-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.batch-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(19, 140, 210, 0.1);
}

.batch-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.batch-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #138cd2;
  flex-shrink: 0;
}

.batch-detail-content {
  flex: 1;
}

.batch-detail-label {
  font-size: 13px;
  color: #718096;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.batch-detail-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.batch-seats {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.batch-seats.urgent {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
}

.batch-seats-label {
  font-size: 14px;
  color: #2d3748;
  margin-bottom: 8px;
}

.batch-seats-value {
  font-size: 32px;
  font-weight: 900;
  color: #e53e3e;
}

.batch-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  border: none;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(19, 140, 210, 0.5);
  transition: all 0.3s ease;
  margin-top: 30px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(19, 140, 210, 0.5);
  }
  50% {
    box-shadow: 0 8px 40px rgba(19, 140, 210, 0.8);
  }
}

.batch-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(19, 140, 210, 0.7);
}

.batch-photo-container {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.batch-photo-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.batch-photo-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.batch-photo {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-size: 18px;
}

@media (max-width: 992px) {
  .batch-schedule-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .batch-schedule-section {
    padding: 60px 0;
  }

  .batch-schedule-title h2 {
    font-size: 32px;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-value {
    font-size: 36px;
  }

  .countdown-container,
  .batch-details-card {
    padding: 30px 7px;
  }
}

/* SECTION 8: Instructor Showcase */
.instructor-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.instructor-title {
  text-align: center;
  margin-bottom: 60px;
}

.instructor-title .section-title-wrapper {
  justify-content: center;
}

.instructor-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instructor-title p {
  font-size: 18px;
  color: #2d3748;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.instructor-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instructor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-10px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 20px 40px rgba(19, 140, 210, 0.3);
}

.instructor-card:hover::before {
  transform: scaleX(1);
}

.instructor-card.expanded {
  transform: translateY(-10px);
}

.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid rgba(19, 140, 210, 0.3);
  object-fit: cover;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.instructor-card:hover .instructor-photo {
  border-color: #138cd2;
  transform: scale(1.05);
}

.instructor-name {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.instructor-credentials {
  font-size: 14px;
  color: #2d3748;
  text-align: center;
  margin-bottom: 15px;
}

.instructor-experience {
  text-align: center;
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 600;
}

.instructor-companies {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.instructor-company-logo {
  width: 50px;
  height: 30px;
  background: rgba(19, 140, 210, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #2d3748;
  border: 1px solid rgba(19, 140, 210, 0.2);
}

.instructor-linkedin {
  text-align: center;
  margin-bottom: 20px;
}

.instructor-linkedin a {
  color: #0a66c2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.instructor-linkedin a:hover {
  color: #0a66c2;
  transform: translateX(3px);
}

.instructor-view-demo {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(19, 140, 210, 0.5);
  border-radius: 8px;
  padding: 10px;
  color: #138cd2;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.instructor-view-demo:hover {
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  color: #fff;
  border-color: #138cd2;
}

.instructor-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.instructor-card.expanded .instructor-expanded-content {
  max-height: 500px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.instructor-philosophy {
  background: rgba(19, 140, 210, 0.1);
  border-left: 3px solid #138cd2;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  font-style: italic;
  color: #2d3748;
  line-height: 1.6;
}

.instructor-philosophy::before {
  content: '"';
  font-size: 32px;
  color: #138cd2;
  line-height: 0;
}

.instructor-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.instructor-rating-stars {
  color: #f6ad55;
  font-size: 18px;
}

.instructor-rating-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.instructor-rating-count {
  font-size: 14px;
  color: #2d3748;
}

.instructor-specializations {
  margin-top: 15px;
}

.instructor-specializations-title {
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.instructor-specialization-tag {
  display: inline-block;
  background: rgba(26, 180, 142, 0.1);
  border: 1px solid rgba(26, 180, 142, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #1ab48e;
  margin: 5px 5px 5px 0;
  font-weight: 600;
}

@media (max-width: 992px) {
  .instructor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .instructor-section {
    padding: 60px 0;
  }

  .instructor-title h2 {
    font-size: 32px;
  }

  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .instructor-card {
    padding: 25px;
  }
}

/* SECTION 9: Tools & Certifications */
.tools-certifications-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.tools-certifications-title {
  text-align: center;
  margin-bottom: 60px;
}

.tools-certifications-title .section-title-wrapper {
  justify-content: center;
}

.tools-certifications-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tools-certifications-title p {
  font-size: 18px;
  color: #2d3748;
}

.tools-banner-section {
  margin-bottom: 80px;
}

.tools-banner-label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tools-scroll-banner {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

.tools-scroll-banner::before,
.tools-scroll-banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.tools-scroll-banner::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.tools-scroll-banner::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.tools-scroll-content {
  display: flex;
  gap: 40px;
  animation: scrollTools 30s linear infinite;
  width: fit-content;
}

.tools-scroll-content:hover {
  animation-play-state: paused;
}

@keyframes scrollTools {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tool-logo-item {
  min-width: 150px;
  height: 80px;
  background: rgba(19, 140, 210, 0.05);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tool-logo-item:hover {
  background: rgba(19, 140, 210, 0.1);
  border-color: rgba(19, 140, 210, 0.5);
  transform: translateY(-5px);
  color: #1a1a1a;
}

.certifications-section {
  margin-top: 80px;
}

.certifications-label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.certification-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-8px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 15px 35px rgba(19, 140, 210, 0.3);
}

.certification-card:hover::before {
  transform: scaleX(1);
}

.certification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #138cd2;
  transition: all 0.3s ease;
}

.certification-card:hover .certification-icon {
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.4), rgba(103, 190, 202, 0.4));
  transform: scale(1.1);
}

.certification-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.certification-issuer {
  font-size: 14px;
  color: #2d3748;
  margin-bottom: 15px;
}

.certification-badge {
  display: inline-block;
  background: rgba(26, 180, 142, 0.1);
  border: 1px solid rgba(26, 180, 142, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #1ab48e;
  font-weight: 600;
}

@media (max-width: 992px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .tools-certifications-section {
    padding: 60px 0;
  }

  .tools-certifications-title h2 {
    font-size: 32px;
  }

  .tool-logo-item {
    min-width: 120px;
    height: 70px;
    font-size: 12px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* SECTION 11: FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title .section-title-wrapper {
  justify-content: center;
}

.faq-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-title p {
  font-size: 18px;
  color: #2d3748;
}

.faq-search-container {
  max-width: 600px;
  margin: 0 auto 50px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 18px 50px 18px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-search-input:focus {
  outline: none;
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 0 0 3px rgba(19, 140, 210, 0.1);
}

.faq-search-input::placeholder {
  color: #a0aec0;
}

.faq-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
  font-size: 20px;
  pointer-events: none;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(19, 140, 210, 0.3);
}

.faq-item.active {
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 5px 20px rgba(19, 140, 210, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(19, 140, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #138cd2;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: rgba(19, 140, 210, 0.4);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer-content {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.8;
  padding-top: 20px;
}

.faq-answer-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer-content li {
  margin-bottom: 10px;
}

.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  color: #718096;
  font-size: 18px;
  display: none;
}

.faq-no-results.show {
  display: block;
}

.faq-no-results-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title h2 {
    font-size: 32px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* SECTION 12: Social Proof Feed */
.social-proof-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.social-proof-title {
  text-align: center;
  margin-bottom: 60px;
}

.social-proof-title .section-title-wrapper {
  justify-content: center;
}

.social-proof-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-proof-title p {
  font-size: 18px;
  color: #2d3748;
}

.social-proof-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-proof-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 25px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-proof-tab:hover {
  border-color: rgba(19, 140, 210, 0.5);
  color: #1a1a1a;
}

.social-proof-tab.active {
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  border-color: rgba(19, 140, 210, 0.5);
  color: #1a1a1a;
}

.social-proof-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-proof-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.social-proof-item:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 10px 30px rgba(19, 140, 210, 0.2);
}

.social-proof-item:hover::before {
  transform: scaleX(1);
}

.social-proof-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.social-proof-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #138cd2, #67beca);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.social-proof-user-info {
  flex: 1;
}

.social-proof-user-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.social-proof-user-role {
  font-size: 13px;
  color: #718096;
}

.social-proof-platform {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.social-proof-platform.facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
}

.social-proof-platform.instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2));
  color: #e1306c;
}

.social-proof-platform.linkedin {
  background: rgba(0, 119, 181, 0.2);
  color: #0077b5;
}

.social-proof-platform.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.social-proof-content {
  color: #2d3748;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.social-proof-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  max-height: 200px;
  object-fit: cover;
}

.social-proof-stats {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.social-proof-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-size: 14px;
}

.social-proof-stat i {
  font-size: 16px;
}

.social-proof-time {
  font-size: 12px;
  color: #4a5568;
  margin-top: 10px;
}

.social-proof-badge {
  display: inline-block;
  background: rgba(26, 180, 142, 0.1);
  border: 1px solid rgba(26, 180, 142, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: #1ab48e;
  font-weight: 600;
  margin-left: 10px;
}

.social-proof-feed-content {
  display: none;
}

.social-proof-feed-content.active {
  display: grid;
}

@media (max-width: 992px) {
  .social-proof-feed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .social-proof-section {
    padding: 60px 0;
  }

  .social-proof-title h2 {
    font-size: 32px;
  }

  .social-proof-feed {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-proof-tabs {
    gap: 10px;
  }

  .social-proof-tab {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* SECTION 13: Demo Class CTA with Form */
.demo-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.1) 0%, rgba(103, 190, 202, 0.1) 100%);
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  position: relative;
  overflow: hidden;
}

.demo-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 140, 210, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.demo-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 190, 202, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.demo-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-cta-left {
  position: relative;
}

.demo-cta-badge {
  display: inline-block;
  background: rgba(26, 180, 142, 0.1);
  border: 1px solid rgba(26, 180, 142, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 14px;
  color: #1ab48e;
  font-weight: 600;
  margin-bottom: 20px;
}

.demo-cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.demo-cta-title .gradient-text {
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-cta-subtitle {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 30px;
  line-height: 1.6;
}

.demo-cta-benefits {
  margin-top: 40px;
}

.demo-cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.demo-cta-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 180, 142, 0.2);
  border: 1px solid rgba(26, 180, 142, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ab48e;
  font-size: 18px;
  flex-shrink: 0;
}

.demo-cta-benefit-text {
  font-size: 16px;
  color: #2d3748;
}

.demo-cta-form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(19, 140, 210, 0.15);
}

.demo-cta-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: center;
}

.demo-cta-form-subtitle {
  font-size: 14px;
  color: #718096;
  text-align: center;
  margin-bottom: 30px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-form-label .required {
  color: #138cd2;
}

.demo-form-input,
.demo-form-select {
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.demo-form-input:focus,
.demo-form-select:focus {
  outline: none;
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 0 0 3px rgba(19, 140, 210, 0.1);
}

.demo-form-input::placeholder {
  color: #718096;
}

.demo-form-submit-btn {
  padding: 18px 30px;
  background: linear-gradient(135deg, #138cd2 0%, #67beca 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.demo-form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.demo-form-submit-btn:hover::before {
  left: 100%;
}

.demo-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(19, 140, 210, 0.4);
}

.demo-form-submit-btn:active {
  transform: translateY(0);
}

.demo-form-privacy {
  font-size: 12px;
  color: #718096;
  text-align: center;
  margin-top: 15px;
}

.demo-form-privacy a {
  color: #138cd2;
  text-decoration: none;
}

.demo-form-privacy a:hover {
  text-decoration: underline;
}

.demo-cta-urgency {
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  text-align: center;
}

.demo-cta-urgency-text {
  font-size: 14px;
  color: #138cd2;
  font-weight: 600;
}

.demo-cta-urgency-text i {
  margin-right: 8px;
}

@media (max-width: 992px) {
  .demo-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .demo-cta-section {
    padding: 60px 0;
  }

  .demo-cta-title {
    font-size: 32px;
  }

  .demo-cta-subtitle {
    font-size: 18px;
  }

  .demo-cta-form-wrapper {
    padding: 30px 20px;
  }

  .demo-cta-form-title {
    font-size: 24px;
  }
  
}

/* SECTION 14: Footer */
.footer-section {
  background: #f8f9fa;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  padding: 80px 0 30px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  font-size: 15px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-column-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #138cd2, #67beca);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #2d3748;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #138cd2;
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(19, 140, 210, 0.1);
  border: 1px solid rgba(19, 140, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #138cd2;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-label {
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.footer-contact-value {
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
}

.footer-newsletter {
  background: rgba(19, 140, 210, 0.05);
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.footer-newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.footer-newsletter-text {
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background: #ffffff;
  border: 1px solid rgba(19, 140, 210, 0.2);
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 14px;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 0 0 3px rgba(19, 140, 210, 0.1);
}

.footer-newsletter-input::placeholder {
  color: #a0aec0;
}

.footer-newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #138cd2 0%, #67beca 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(19, 140, 210, 0.4);
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(19, 140, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d3748;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #138cd2 0%, #67beca 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(19, 140, 210, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(19, 140, 210, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #1a1a1a;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #138cd2;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Scroll Animations */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-rotate.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Stagger animations for child elements */
.scroll-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.scroll-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.scroll-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.scroll-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.scroll-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.scroll-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.scroll-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LEAD MAGNET LANDING PAGE STYLES
   ============================================ */

/* Lead Magnet Hero Section */
.lead-magnet-hero {
  position: relative;
  min-height: 90vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(26, 180, 142, 0.05) 100%);
  overflow: hidden;
}

.lead-magnet-hero-content {
  position: relative;
  z-index: 2;
}

.lead-magnet-content {
  padding-right: 40px;
}

.lead-magnet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.15), rgba(26, 180, 142, 0.15));
  border: 2px solid rgba(19, 140, 210, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #138cd2;
  margin-bottom: 25px;
}

.lead-magnet-badge i {
  font-size: 18px;
}

.lead-magnet-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.lead-magnet-title .gradient-text {
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
}

.lead-magnet-subtitle {
  font-size: 20px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 500;
}

.lead-magnet-benefits {
  margin-bottom: 40px;
}

.lead-magnet-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.lead-magnet-benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.15), rgba(26, 180, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ab48e;
  font-size: 16px;
}

.lead-magnet-benefit-text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.6;
}

.lead-magnet-benefit-text strong {
  color: #138cd2;
  font-weight: 700;
}

.lead-magnet-social-proof {
  margin-top: 40px;
}

.lead-magnet-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.lead-magnet-stat-item {
  text-align: center;
}

.lead-magnet-stat-value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.lead-magnet-stat-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

/* Lead Magnet Form */
.lead-magnet-form-wrapper {
  position: relative;
  z-index: 2;
}

.lead-magnet-form-card {
  background: #ffffff;
  border: 2px solid rgba(19, 140, 210, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(19, 140, 210, 0.15);
  position: sticky;
  top: 120px;
}

.lead-magnet-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.lead-magnet-form-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #138cd2;
}

.lead-magnet-form-icon svg {
  width: 36px;
  height: 36px;
}

.lead-magnet-form-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.lead-magnet-form-subtitle {
  font-size: 15px;
  color: #718096;
}

.lead-magnet-form-group {
  margin-bottom: 20px;
}

.lead-magnet-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.lead-magnet-form-label .required {
  color: #e53e3e;
}

.lead-magnet-form-input,
.lead-magnet-form-select {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
  border: 2px solid rgba(19, 140, 210, 0.2);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.lead-magnet-form-input:focus,
.lead-magnet-form-select:focus {
  outline: none;
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 0 0 4px rgba(19, 140, 210, 0.1);
}

.lead-magnet-form-input::placeholder {
  color: #a0aec0;
}

.lead-magnet-form-submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #138cd2 0%, #1ab48e 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 30px rgba(19, 140, 210, 0.4);
}

.lead-magnet-form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(19, 140, 210, 0.6);
}

.lead-magnet-form-privacy {
  text-align: center;
  font-size: 12px;
  color: #718096;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lead-magnet-form-privacy i {
  color: #1ab48e;
}

/* Lead Magnet Video Section */
.lead-magnet-video-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.lead-magnet-video-title {
  text-align: center;
  margin-bottom: 60px;
}

.lead-magnet-video-title .section-title-wrapper {
  justify-content: center;
}

.lead-magnet-video-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-magnet-video-title p {
  font-size: 18px;
  color: #2d3748;
}

.lead-magnet-video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.lead-magnet-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(19, 140, 210, 0.2);
  margin-bottom: 40px;
}

.lead-magnet-video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.lead-magnet-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lead-magnet-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 25px 30px;
}

.lead-magnet-video-info {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}

.lead-magnet-video-duration,
.lead-magnet-video-views {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.lead-magnet-video-duration i,
.lead-magnet-video-views i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.lead-magnet-video-content {
  margin-top: 50px;
}

.lead-magnet-video-description h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.lead-magnet-video-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-magnet-video-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(19, 140, 210, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.lead-magnet-video-point:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(19, 140, 210, 0.4);
  transform: translateX(5px);
}

.lead-magnet-video-point i {
  color: #1ab48e;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lead-magnet-video-point span {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.6;
  font-weight: 500;
}

/* Lead Magnet Preview Section */
.lead-magnet-preview-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.lead-magnet-preview-title {
  text-align: center;
  margin-bottom: 60px;
}

.lead-magnet-preview-title .section-title-wrapper {
  justify-content: center;
}

.lead-magnet-preview-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-magnet-preview-title p {
  font-size: 18px;
  color: #2d3748;
}

.lead-magnet-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lead-magnet-preview-item {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.lead-magnet-preview-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #138cd2, #67beca);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lead-magnet-preview-item:hover {
  transform: translateY(-10px);
  border-color: rgba(19, 140, 210, 0.5);
  box-shadow: 0 20px 40px rgba(19, 140, 210, 0.3);
}

.lead-magnet-preview-item:hover::before {
  transform: scaleX(1);
}

.lead-magnet-preview-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(103, 190, 202, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #138cd2;
  transition: all 0.3s ease;
}

.lead-magnet-preview-item:hover .lead-magnet-preview-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.4), rgba(103, 190, 202, 0.4));
}

.lead-magnet-preview-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.lead-magnet-preview-item p {
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lead-magnet-preview-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.15), rgba(26, 180, 142, 0.15));
  border: 1px solid rgba(19, 140, 210, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #138cd2;
}

/* Lead Magnet Why Section */
.lead-magnet-why-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(26, 180, 142, 0.03) 100%);
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.lead-magnet-why-image-wrapper {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.1), rgba(26, 180, 142, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(19, 140, 210, 0.2);
}

.lead-magnet-why-image-wrapper i {
  font-size: 120px;
  color: #138cd2;
  opacity: 0.3;
}

.lead-magnet-why-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.lead-magnet-why-text {
  padding-left: 40px;
}

.lead-magnet-why-subtitle {
  font-size: 18px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lead-magnet-why-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lead-magnet-why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.lead-magnet-why-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.15), rgba(26, 180, 142, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ab48e;
  font-size: 24px;
}

.lead-magnet-why-feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.lead-magnet-why-feature-content p {
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
}

/* Lead Magnet Testimonials Section */
.lead-magnet-testimonials-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.lead-magnet-testimonials-title {
  text-align: center;
  margin-bottom: 60px;
}

.lead-magnet-testimonials-title .section-title-wrapper {
  justify-content: center;
}

.lead-magnet-testimonials-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #138cd2 0%, #67beca 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-magnet-testimonials-title p {
  font-size: 18px;
  color: #2d3748;
}

.lead-magnet-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lead-magnet-testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(19, 140, 210, 0.2);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
}

.lead-magnet-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 140, 210, 0.4);
  box-shadow: 0 15px 35px rgba(19, 140, 210, 0.2);
}

.lead-magnet-testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: #ffc107;
  font-size: 18px;
}

.lead-magnet-testimonial-text {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.lead-magnet-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lead-magnet-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #138cd2, #1ab48e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.lead-magnet-testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.lead-magnet-testimonial-role {
  font-size: 13px;
  color: #718096;
}

/* Lead Magnet Final CTA */
.lead-magnet-final-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.1) 0%, rgba(26, 180, 142, 0.1) 100%);
  border-top: 1px solid rgba(19, 140, 210, 0.1);
}

.lead-magnet-final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lead-magnet-final-cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(19, 140, 210, 0.2), rgba(26, 180, 142, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #138cd2;
}

.lead-magnet-final-cta-title {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.lead-magnet-final-cta-subtitle {
  font-size: 18px;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lead-magnet-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 50px;
  background: linear-gradient(135deg, #138cd2 0%, #1ab48e 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(19, 140, 210, 0.4);
}

.lead-magnet-final-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(19, 140, 210, 0.6);
  color: #fff;
}

.lead-magnet-final-cta-note {
  margin-top: 25px;
  font-size: 14px;
  color: #718096;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lead-magnet-final-cta-note i {
  color: #1ab48e;
}

.footer-links li a:before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    content: "\f285";
}

/* Responsive Styles for Lead Magnet */
@media (max-width: 992px) {
  .lead-magnet-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .lead-magnet-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .lead-magnet-title {
    font-size: 42px;
  }

  .lead-magnet-title .gradient-text {
    font-size: 42px;
  }

  .lead-magnet-form-card {
    position: relative;
    top: 0;
  }

  .lead-magnet-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-magnet-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-magnet-why-text {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .lead-magnet-title {
    font-size: 32px;
  }

  .lead-magnet-title .gradient-text {
    font-size: 32px;
  }

  .lead-magnet-subtitle {
    font-size: 18px;
  }

  .lead-magnet-preview-grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet-stats {
    justify-content: center;
  }

  .lead-magnet-final-cta-title {
    font-size: 32px;
  }

  .lead-magnet-video-title h2 {
    font-size: 32px;
  }

  .lead-magnet-video-info {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .lead-magnet-video-description h3 {
    font-size: 24px;
  }
  .lead-magnet-preview-title h2{
      font-size: 32px;
  }
}

