 :root {
            --brand-yellow: #fdb400;
            --brand-yellow-light: #ffd166;
            --brand-blue: #03156d;
            --brand-blue-light: #0a2a9c;
            --brand-blue-dark: #010a35;
            --text-color: #222;
            --text-light: #6b7280;
            --bg-gray: #f5f7fa;
            --bg-white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
            --border-radius: 16px;
            --transition: all 0.3s ease;
        }

       

        /* HERO BANNER CONTAINER */
        .banner-hero-section {
            position: relative;
            width: 100%;
            height: 25vh; /* Short for 4:1 banners */
            min-height: 150px;
            margin: 0;
            padding: 0;
            overflow: hidden;
            /*background: var(--brand-blue-dark);*/
        }

        /* SLIDER WRAPPER */
        .banner-slides-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* INDIVIDUAL SLIDES */
        .banner-slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            /*background: var(--brand-blue-dark);*/
        }

        .banner-slide-item.banner-active {
            opacity: 1;
            z-index: 1;
        }

        /* BANNER IMAGES - Optimized for 1584x396 (4:1 ratio) */
        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center top;
            display: block;
        }
        
      
        /* Navigation Controls */
        .banner-nav-controls {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 20;
        }

        .banner-nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }

        .banner-nav-dot.banner-dot-active {
            background: var(--brand-yellow);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(253, 180, 0, 0.5);
        }

        /* ARROW CONTROLS */
        .banner-arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(3, 21, 109, 0.7);
            color: var(--brand-yellow);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: var(--transition);
            border: 2px solid var(--brand-yellow);
            font-size: 18px;
            font-weight: bold;
        }

        .banner-arrow-btn:hover {
            background: var(--brand-yellow);
            color: var(--brand-blue);
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .banner-prev-arrow {
            left: 20px;
        }

        .banner-next-arrow {
            right: 20px;
        }

        /* RESPONSIVE ADJUSTMENTS FOR SLIDER */
        @media (max-width: 768px) {
            .banner-hero-section {
                height: 20vh;
                min-height: 120px;
            }
            
            .banner-arrow-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            
            .banner-prev-arrow {
                left: 15px;
            }
            
            .banner-next-arrow {
                right: 15px;
            }
        }

        @media (max-width: 576px) {
            .banner-hero-section {
                height: 18vh;
                min-height: 100px;
            }
            
            .banner-arrow-btn {
                display: none;
            }
        }

        @media (orientation: landscape) {
            .banner-hero-section {
                height: 35vh;
            }
        }

        /* ========== HERO SECTION (After Slider) ========== */
        .content-hero-section {
            width: 100%;
            padding: 30px 12px;
            background: var(--bg-gray);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-block;
            background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-light));
            color: var(--brand-blue-dark);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-transform: uppercase;
            box-shadow: var(--shadow);
            border: 1px solid rgba(253, 180, 0, 0.2);
        }

        /* Main Heading */
        .hero-heading {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--brand-blue);
            max-width: 800px;
        }

        .hero-heading .highlight {
            color: var(--brand-yellow);
            position: relative;
            display: inline-block;
        }

        .hero-heading .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(253, 180, 0, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        /* Subheading */
        .hero-subheading {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 700px;
        }

        /* CTA Buttons Container */
        .hero-cta-container {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Primary CTA Button */
        .cta-button-primary {
            background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-light));
            color: var(--brand-blue-dark);
            border: none;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .cta-button-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
        }

        .cta-button-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            color: var(--brand-blue);
        }

        .cta-button-primary:hover::before {
            left: 100%;
        }

        .cta-button-primary:active {
            transform: translateY(-2px);
        }

        /* Secondary CTA Button */
        .cta-button-secondary {
            background: transparent;
            color: var(--brand-blue);
            border: 2px solid var(--brand-blue);
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cta-button-secondary:hover {
            background: var(--brand-blue);
            color: var(--bg-white);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--brand-blue);
        }

        /* Stats Section */
        .hero-stats {
            display: flex;
            gap: 60px;
            margin-top: 40px;
            flex-wrap: wrap;
            justify-content: center;
            background: var(--bg-white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(3, 21, 109, 0.1);
        }

       

        /* Decorative Elements */
        .hero-decoration {
            position: absolute;
            z-index: 1;
        }

        .decoration-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(3, 21, 109, 0.05) 0%, rgba(3, 21, 109, 0.01) 70%);
            position: absolute;
            top: -150px;
            right: -100px;
            border: 1px solid rgba(3, 21, 109, 0.05);
        }

        .decoration-square {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(253, 180, 0, 0.05) 0%, rgba(255, 209, 102, 0.02) 100%);
            position: absolute;
            bottom: -100px;
            left: -50px;
            transform: rotate(45deg);
            border: 1px solid rgba(253, 180, 0, 0.05);
        }

        /* RESPONSIVE ADJUSTMENTS FOR HERO SECTION */
        @media (max-width: 992px) {
            .hero-heading {
                font-size: 2.8rem;
            }
            
            .content-hero-section {
                padding: 80px 20px;
            }
            
            .stat-number {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .hero-heading {
                font-size: 2.4rem;
            }
            
            .hero-subheading {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }
            
            .cta-button-primary,
            .cta-button-secondary {
                padding: 16px 35px;
                font-size: 1rem;
            }
            
            .hero-stats {
                gap: 40px;
                padding: 25px;
            }
            
            .stat-item:not(:last-child)::after {
                right: -20px;
            }
        }

        @media (max-width: 576px) {
            .content-hero-section {
                padding: 60px 20px;
            }
            
            .hero-heading {
                font-size: 2rem;
            }
            
            .hero-subheading {
                font-size: 1rem;
                margin-bottom: 35px;
            }
            
            .hero-cta-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 300px;
                gap: 15px;
            }
            
            .cta-button-primary,
            .cta-button-secondary {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
            }
            
            .hero-stats {
                gap: 20px;
                padding: 20px;
                margin-top: 30px;
            }
            
            .stat-item {
                padding: 10px;
            }
            
            .stat-item:not(:last-child)::after {
                display: none;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
            
            .hero-badge {
                padding: 8px 20px;
                font-size: 13px;
            }
        }

        /* Animation for hero entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-container > * {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .hero-badge { animation-delay: 0.1s; }
        .hero-heading { animation-delay: 0.2s; }
        .hero-subheading { animation-delay: 0.3s; }
        .hero-cta-container { animation-delay: 0.4s; }
        .hero-stats { animation-delay: 0.5s; }
        
        
        
        
        
        /* FIXED: BANNER IMAGES - NO CROPPING ON DESKTOP */


/* For desktop/large screens - full image display */
@media (min-width: 1024px) {
    .banner-hero-section {
        height: 450px; /* Taller for desktop */
    }
    
    .banner-image {
        object-fit: contain; /* Ensures no cropping */
    }
}


/* Additional styles for messages */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.success-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.success-content i {
  color: #155724;
  font-size: 1.5rem;
  margin-top: 2px;
}

.success-content h4 {
  color: #155724;
  margin: 0 0 5px 0;
}

.success-content p {
  color: #155724;
  margin: 0;
  opacity: 0.9;
}
.refresh-countdown {
  margin-top: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  color: #155724;
}

.countdown-number {
  font-weight: bold;
  color: #0d8b3f;
  font-size: 1.1rem;
}
.error-message {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.error-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.error-content i {
  color: #721c24;
  font-size: 1.5rem;
  margin-top: 2px;
}

.error-content h4 {
  color: #721c24;
  margin: 0 0 5px 0;
}

.error-content p {
  color: #721c24;
  margin: 0;
  opacity: 0.9;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Desktop */
  @media (min-width: 769px) {
    #loginIcon {
      display: none !important;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    #loginBtn {
      display: none !important;
    }
  }
  
  
  /* ========== MODAL RESPONSIVE FIXES ========== */

/* ========== RENAMED MODAL CLASSES (to avoid conflicts) ========== */

/* Modal Base Styles - Renamed */
.edu-course-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.edu-course-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.edu-course-modal-card {
  background: white;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.edu-course-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.edu-course-modal-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(90deg);
}

.edu-close-icon {
  stroke: #333;
}

/* Modal Content Layout */
.edu-modal-content-wrapper {
  display: flex;
  min-height: 500px;
}

/* Left Column */
.edu-modal-left-column {
  flex: 1;
  padding: 30px;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
}

/* Desktop Course Header */
.edu-desktop-course-header {
  margin-bottom: 30px;
}

.edu-course-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.edu-modal-course-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.edu-course-difficulty {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edu-course-difficulty.beginner {
  background: #d1fae5;
  color: #065f46;
}

.edu-course-difficulty.intermediate {
  background: #fef3c7;
  color: #92400e;
}

.edu-course-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.edu-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Course Features */
.edu-course-features-section {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}

.edu-features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.edu-features-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-features-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.edu-features-toggle.active .edu-toggle-icon {
  transform: rotate(180deg);
}

.edu-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.edu-course-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

.edu-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

.edu-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-yellow-light);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.edu-feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.edu-feature-text {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.4;
}

.edu-features-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.edu-features-count {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Right Column */
.edu-modal-right-column {
  flex: 0 0 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Price Section */
.edu-desktop-price-section {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.edu-price-display {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edu-price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-price-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.edu-price-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-light));
  color: var(--brand-blue-dark);
}

.edu-price-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edu-original-price {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.edu-current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
}

.edu-price-savings {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  padding: 6px 12px;
  background: #d1fae5;
  border-radius: 20px;
  display: inline-block;
  margin-top: 5px;
}

/* Enrollment Stats */
.edu-enrollment-stats {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.edu-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.edu-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.edu-stat-icon-wrapper {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.edu-stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.edu-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
}

.edu-stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
}

/* CTA Section */
.edu-cta-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edu-course-cta-btn {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  color: white;
  border: none;
  padding: 20px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.edu-course-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(3, 21, 109, 0.2);
}

.edu-course-cta-btn:active {
  transform: translateY(0);
}

.edu-btn-icon {
  font-size: 1.5rem;
}

.edu-btn-text {
  flex: 1;
  margin: 0 15px;
  text-align: left;
}

.edu-btn-text-main {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.edu-btn-text-sub {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.edu-btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.edu-course-cta-btn:hover .edu-btn-arrow {
  transform: translateX(5px);
}

.edu-payment-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.edu-payment-icons {
  display: flex;
  gap: 15px;
}

.edu-payment-text {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Course Guarantee */
.edu-course-guarantee {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.edu-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.edu-guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-guarantee-icon {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.edu-guarantee-text {
  font-size: 0.85rem;
  color: #475569;
}

/* ========== MOBILE SPECIFIC STYLES ========== */

/* Mobile Header (Hidden on Desktop) */
.edu-mobile-course-header {
  display: none;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.edu-mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.edu-mobile-course-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.edu-mobile-course-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-light));
  color: var(--brand-blue-dark);
  white-space: nowrap;
}

.edu-mobile-price-display {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.edu-mobile-current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.edu-mobile-original-price {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Mobile Bottom Bar (Hidden on Desktop) */
.edu-mobile-bottom-bar {
  display: none;
  position: sticky;
  bottom: 0;
  background: white;
  padding: 15px 20px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.edu-mobile-price-summary {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.edu-mobile-price-label {
  font-size: 1rem;
  color: #6b7280;
}

.edu-mobile-bottom-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.edu-mobile-cta-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.edu-mobile-cta-btn:hover {
  transform: translateY(-2px);
}

.edu-mobile-btn-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.edu-mobile-btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* ========== FLOATING IMAGES FOR HERO SECTION ========== */

.floating-images-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-image:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Floating Image Positions and Sizes */
.floating-image-1 {
  width: 180px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-image-2 {
  width: 220px;
  height: 150px;
  top: 15%;
  right: 8%;
  animation-delay: 0.5s;
}

.floating-image-3 {
  width: 160px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 1s;
}

.floating-image-4 {
  width: 200px;
  height: 140px;
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

.floating-image-5 {
  width: 140px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.8s;
  z-index: 2;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Update Hero Section for Floating Images */
.hero-container {
  position: relative;
  z-index: 3;
}

/* Add overlay to floating images for better text readability */
.floating-images-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(245, 247, 250, 0.1) 0%,
    rgba(245, 247, 250, 0.3) 50%,
    rgba(245, 247, 250, 0.7) 100%);
  z-index: 1;
}

.floating-image {
  z-index: 2;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .edu-course-modal-card {
    max-width: 95%;
  }
  
  .edu-modal-content-wrapper {
    flex-direction: column;
  }
  
  .edu-modal-left-column {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 25px;
  }
  
  .edu-modal-right-column {
    flex: 0 0 auto;
    width: 100%;
    padding: 25px;
  }
  
  .edu-course-features-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    max-height: 250px;
  }
  
  .edu-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Adjust floating images for tablet */
  .floating-image-1, .floating-image-3 {
    left: 3%;
  }
  
  .floating-image-2, .floating-image-4 {
    right: 3%;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .edu-course-modal {
    padding: 0;
    align-items: flex-end;
  }
  
  .edu-course-modal-card {
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    margin: 0;
    max-width: 100%;
    animation: modalSlideUpMobile 0.4s ease;
  }
  
  @keyframes modalSlideUpMobile {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  /* Hide desktop elements */
  .edu-desktop-course-header,
  .edu-desktop-price-section {
    display: none;
  }
  
  /* Show mobile elements */
  .edu-mobile-course-header {
    display: block;
  }
  
  .edu-modal-left-column,
  .edu-modal-right-column {
    padding: 20px;
  }
  
  .edu-modal-left-column {
    padding-top: 0;
  }
  
  .edu-course-features-list {
    grid-template-columns: 1fr;
    max-height: none;
  }
  
  .edu-course-features-list:not(.expanded) {
    max-height: 200px;
    overflow: hidden;
  }
  
  .edu-features-toggle {
    display: block;
  }
  
  .edu-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .edu-stat-item {
    gap: 6px;
  }
  
  .edu-stat-icon-wrapper {
    width: 36px;
    height: 36px;
  }
  
  .edu-stat-value {
    font-size: 1rem;
  }
  
  .edu-guarantee-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .edu-course-cta-btn {
    display: none;
  }
  
  .edu-mobile-bottom-bar {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .edu-mobile-cta-btn {
    min-width: 140px;
  }
  
  /* Adjust floating images for mobile */
  .floating-images-container {
    min-height: 300px;
  }
  
  .floating-image {
    width: 120px !important;
    height: 80px !important;
  }
  
  .floating-image-1 {
    top: 5%;
    left: 2%;
  }
  
  .floating-image-2 {
    top: 10%;
    right: 2%;
  }
  
  .floating-image-3 {
    bottom: 15%;
    left: 5%;
  }
  
  .floating-image-4 {
    bottom: 10%;
    right: 5%;
  }
  
  .floating-image-5 {
    width: 100px !important;
    height: 70px !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .edu-modal-course-title {
    font-size: 1.4rem;
  }
  
  .edu-course-features-section {
    padding: 15px;
  }
  
  .edu-features-title {
    font-size: 1.1rem;
  }
  
  .edu-mobile-course-title {
    font-size: 1.1rem;
  }
  
  .edu-mobile-current-price {
    font-size: 1.5rem;
  }
  
  .edu-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .edu-stat-label {
    font-size: 0.75rem;
  }
  
  .edu-payment-options {
    text-align: center;
  }
  
  .edu-mobile-bottom-bar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .edu-mobile-cta-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  /* Hide some floating images on very small screens */
  .floating-image-4,
  .floating-image-5 {
    display: none;
  }
  
  .floating-image {
    opacity: 0.7;
  }
}

/* Update Hero Section HTML with Floating Images */

 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        /* Updated class name: main-wrapper */
        .main-wrapper {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 30px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            /*background-color: #fdfdfd;*/
            color: #222;
        }
        
        /* Updated class name: page-header */
        .page-header {
            text-align: center;
            margin-bottom: 70px;
            padding-top: 30px;
            width: 100%;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 350;
            letter-spacing: -1.2px;
            color: #111;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #4f46e5, #8b5cf6);
        }
        
        .page-header p {
            font-size: 1.15rem;
            color: #666;
            max-width: 550px;
            margin: 30px auto 0;
            font-weight: 300;
        }
        
        /* Updated class name: team-section */
        .team-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin-bottom: 80px;
            width: 100%;
        }
        
        /* Updated class name: team-member */
        .team-member {
            flex: 0 1 440px;
            min-width: 300px;
            max-width: 440px;
            background: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .team-member:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        /* Updated class name: member-photo */
        .member-photo {
            height: 340px;
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.7s ease;
        }
        
        .team-member:hover .member-photo img {
            transform: scale(1.08);
        }
        
        /* Updated class name: member-details */
        .member-details {
            padding: 32px;
            width: 100%;
        }
        
        /* Updated class name: member-position */
        .member-position {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #4f46e5;
            letter-spacing: 1.2px;
            margin-bottom: 12px;
            text-transform: uppercase;
            background: rgba(79, 70, 229, 0.08);
            padding: 6px 12px;
            border-radius: 20px;
        }
        
        /* Updated class name: member-name */
        .member-name {
            font-size: 1.9rem;
            font-weight: 500;
            color: #111;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        
        /* Updated class name: member-description */
        .member-description {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 300;
        }
        
        /* Updated class name: member-links */
        .member-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        
        .member-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f8f9fa;
            color: #555;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .member-links a:hover {
            background: linear-gradient(135deg, #4f46e5, #8b5cf6);
            color: white;
            transform: scale(1.1);
        }
        
        /* Mobile Slider - Updated class names */
        .mobile-team-slider {
            display: none;
            width: 100%;
            max-width: 440px;
            position: relative;
            margin: 0 auto 50px;
        }
        
        .slider-viewport {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            width: 100%;
        }
        
        .slider-items {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 100%;
        }
        
        .slider-item {
            min-width: 100%;
            background: white;
            width: 100%;
            flex-shrink: 0;
        }
        
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
            width: 100%;
        }
        
        .slider-indicator {
            width: 36px;
            height: 4px;
            border-radius: 2px;
            background-color: #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-indicator:hover {
            background-color: #c7d2fe;
        }
        
        .slider-indicator.active {
            background: linear-gradient(90deg, #4f46e5, #8b5cf6);
            width: 48px;
        }
        
        /* Auto-slide indicator */
        .auto-slide-progress {
            width: 100%;
            height: 3px;
            background-color: #f0f0f0;
            margin-top: 25px;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4f46e5, #8b5cf6);
            width: 50%;
            transition: transform 0.5s ease;
            border-radius: 2px;
        }
        
        /* Updated class name: page-footer */
        .page-footer {
            text-align: center;
            margin-top: 60px;
            padding: 25px;
            color: #999;
            font-size: 0.9rem;
            border-top: 1px solid #f0f0f0;
            width: 100%;
            font-weight: 300;
        }
        
        /* Animation for slide transition */
        @keyframes fadeIn {
            from { opacity: 0.7; }
            to { opacity: 1; }
        }
        
        .slider-item {
            animation: fadeIn 0.5s ease;
        }
        
        /* Placeholder image styling for missing images */
        .member-photo img[src*=".jpeg"]:not([src*="https"]),
        .member-photo img[src*=".jpg"]:not([src*="https"]),
        .member-photo img[src*=".png"]:not([src*="https"]) {
            background-color: #f0f0f0;
            position: relative;
        }
        
        .member-photo img[src*=".jpeg"]:not([src*="https"])::after,
        .member-photo img[src*=".jpg"]:not([src*="https"])::after,
        .member-photo img[src*=".png"]:not([src*="https"])::after {
            content: "Image not found";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #888;
            font-size: 0.9rem;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 992px) {
            .main-wrapper {
                padding: 25px 15px;
            }
            
            .team-section {
                gap: 40px;
            }
            
            .page-header h1 {
                font-size: 2.6rem;
            }
            
            .team-member {
                flex: 0 1 400px;
            }
        }
        
        @media (max-width: 850px) {
            .team-member {
                flex: 0 1 350px;
            }
            
            .member-photo {
                height: 320px;
            }
        }
        
        @media (max-width: 768px) {
            .main-wrapper {
                padding: 20px 15px;
            }
            
            .page-header {
                margin-bottom: 50px;
            }
            
            .page-header h1 {
                font-size: 2.3rem;
            }
            
            .team-member {
                flex: 0 1 320px;
            }
            
            .member-name {
                font-size: 1.7rem;
            }
            
            .member-photo {
                height: 300px;
            }
        }
        
        @media (max-width: 700px) {
            .team-section {
                max-width: 440px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .team-member {
                flex: 1;
                max-width: 100%;
            }
            
            .member-photo {
                height: 320px;
            }
        }
        
        @media (max-width: 576px) {
            .main-wrapper {
                padding: 15px 12px;
            }
            
            .page-header {
                margin-bottom: 40px;
                padding-top: 10px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .page-header p {
                font-size: 1.05rem;
                padding: 0 10px;
            }
            
            .team-section {
                display: none;
            }
            
            .mobile-team-slider {
                display: block;
                padding: 0 5px;
            }
            
            .member-photo {
                height: 280px;
            }
            
            .member-details {
                padding: 25px;
            }
            
            /* Ensure images aren't cropped on mobile */
            .member-photo img {
                object-fit: contain;
                object-position: center;
            }
            
            .slider-item .member-photo img {
                object-fit: contain;
                object-position: center;
            }
            
            /* Update progress bar width for 2 slides */
            .progress-fill {
                width: 50%;
            }
            
            .slider-viewport {
                width: calc(100% - 10px);
                margin: 0 auto;
            }
        }
        
        @media (max-width: 400px) {
            .main-wrapper {
                padding: 12px 10px;
            }
            
            .member-photo {
                height: 250px;
            }
            
            .member-name {
                font-size: 1.6rem;
            }
            
            .member-details {
                padding: 20px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 350px) {
            .member-photo {
                height: 220px;
            }
            
            .member-name {
                font-size: 1.5rem;
            }
            
            .member-description {
                font-size: 0.95rem;
            }
        }
    