/* Desktop Navigation - Show by default */
.desktop-nav {
  display: flex !important;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #022c3b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #ff7a00;
}

.auth-buttons {
  display: flex !important;
}

.auth-buttons a {
  margin-left: 20px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  background: #ff7a00;
  color: white;
  transition: all 0.3s ease;
}

.auth-buttons a:hover {
  background: #e56a00;
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #022c3b;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  z-index: 9999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  padding: 30px 25px;
  border-bottom: 1px solid rgba(2, 44, 59, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-logo img {
  height: 60px;
  width: auto;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #022c3b;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
}

.sidebar-nav {
  padding: 20px 0;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin: 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  text-decoration: none;
  color: #022c3b;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.sidebar-nav a:hover {
  background: rgba(255, 122, 0, 0.1);
  border-left-color: #ff7a00;
  color: #ff7a00;
  transform: translateX(5px);
}

.sidebar-nav a i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.sidebar-cta {
  margin: 30px 25px;
  padding: 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.sidebar-cta h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 15px;
}

.sidebar-cta a {
  display: inline-block;
  background: white;
  color: #ff7a00;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sidebar-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

.hero {
  position: relative;
  background: url('assets/hero_sitting_7.jpg') center center/cover no-repeat;
  max-height: 70vh;
  min-height: 790px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding: 60px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); 
}

.hero-text h1 span {
   color: #ff7a00;
   text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
 
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #034a5a;
}

/* Large desktop screens - maintain aspect ratio */
@media (min-width: 1400px) {
  .hero {
    max-height: 600px; /* Fixed maximum height for very large screens */
    background-position: center 20%; /* Adjust to show more of the top portion */
  }
}

.cta-button {
  background: #022c3b;
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 44, 59, 0.3);
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 44, 59, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .desktop-nav {
    display: none !important;
  }

  .auth-buttons {
    display: none !important;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block !important;
  }

  /* Adjust header for mobile */
  header {
    padding: 15px 20px;
  }

  .logo img {
    height: 60px;
    width: auto;
  }

  /* Hero mobile adjustments */
  .hero {
    min-height: 400px;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 350px;
    padding: 30px 15px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .sidebar {
    width: 280px;
    left: -280px;
  }
}

/* Animation for mobile menu icon */
.mobile-menu-btn.active {
  transform: rotate(90deg);
}

/* Smooth transitions */
* {
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.course-tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.course-tabs div {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.course-tabs div:nth-child(odd) {
  background: #ff7a00;
}

.course-tabs div:nth-child(even) {
  background: #022c3b;
}

.learning-section {
  background: linear-gradient(135deg, #eaf8fb 0%, #f1f9fb 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.learning-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(2, 44, 59, 0.05) 100%);
  border-radius: 50%;
  z-index: 1;
}

.learning-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(2, 44, 59, 0.06) 0%, rgba(255, 122, 0, 0.04) 100%);
  border-radius: 50%;
  z-index: 1;
}

.learning-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #022c3b;
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #022c3b, #034a5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.learning-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  border-radius: 2px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.mentor-card {
  background: linear-gradient(145deg, #ffffff, #fafbfc);
  border-radius: 15px;
  box-shadow: 
    0 10px 30px rgba(2, 44, 59, 0.08),
    0 4px 20px rgba(2, 44, 59, 0.04);
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%; 
  padding: 20px;
}

.mentor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  z-index: 3;
}

.mentor-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(2, 44, 59, 0.15),
    0 10px 30px rgba(255, 122, 0, 0.1);
  border-color: rgba(255, 122, 0, 0.3);
}

.mentor-card:nth-child(1):hover::before {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.mentor-card:nth-child(2):hover::before {
  background: linear-gradient(135deg, #059669, #10b981);
}

.mentor-card:nth-child(3):hover::before {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.mentor-card img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.4s ease;
  position: relative;
}

.mentor-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mentor-card h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: #022c3b;
  line-height: 1.3;
  position: relative;
}

.mentor-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  border-radius: 2px;
}

.mentor-card ul {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
}

.mentor-card ul li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #4a5568;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
  transition: color 0.3s ease;
}

.mentor-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7a00;
  font-weight: bold;
  font-size: 16px;
}

.mentor-card:hover ul li {
  color: #2d3748;
}

.learn-more-btn {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    width: 100%;
    text-align: center;
    text-decoration: none; 
    display: inline-block;
    margin-top: auto;
}

.learn-more-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;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  background: linear-gradient(135deg, #e56b00, #ff7a00);
}

.learn-more-btn:hover::before {
  left: 100%;
}

.learn-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

/* Card-specific accent colors on hover */
.mentor-card:nth-child(1):hover h3::after {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.mentor-card:nth-child(2):hover h3::after {
  background: linear-gradient(135deg, #059669, #10b981);
}

.mentor-card:nth-child(3):hover h3::after {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.mentor-card:nth-child(1):hover ul li::before {
  color: #4338ca;
}

.mentor-card:nth-child(2):hover ul li::before {
  color: #059669;
}

.mentor-card:nth-child(3):hover ul li::before {
  color: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
  .learning-section {
    padding: 60px 20px;
  }

  .learning-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .card-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .mentor-card {
    margin: 0 10px;
  }

  .card-content {
    padding: 25px;
  }

  .mentor-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .mentor-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mentor-card button {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .learning-section {
    padding: 50px 15px;
  }

  .learning-section h2 {
    font-size: 28px;
  }

  .card-container {
    gap: 25px;
  }

  .mentor-card {
    margin: 0 5px;
  }

  .card-content {
    padding: 20px;
  }
}

.differentiator-section {
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.differentiator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.differentiator-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.differentiator-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.differentiator-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.differentiator-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.differentiator-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.differentiator-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* STUDENT REVIEWS SECTION - SIMPLE MOBILE FIX */
        .student-reviews {
            background: linear-gradient(135deg, #eaf8fb 0%, #f0f9ff 100%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 20px;
        }

        .student-reviews h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #022c3b;
            margin-bottom: 16px;
            position: relative;
        }

        .student-reviews h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff7a00, #ff9533);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #4b5563;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* CAROUSEL CONTAINER - KEY FIX */
        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden; 
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* CAROUSEL TRACK - KEEP SIMPLE */
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        /* REVIEW CARDS - KEEP SIMPLE */
        .review-card {
            width: 100%;
            flex-shrink: 0;
            background: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            box-sizing: border-box;
            scroll-snap-align: center;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff7a00, #ff9533);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: rgba(255, 122, 0, 0.15);
            font-family: Georgia, serif;
            font-weight: bold;
        }

        .student-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #022c3b;
            margin-bottom: 8px;
        }

        .student-title {
            font-size: 1rem;
            color: #ff7a00;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 25px;
        }

        .star {
            color: #fbbf24;
            font-size: 20px;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #374151;
            font-style: italic;
            max-width: 500px;
            margin: 0 auto 20px;
            position: relative;
            padding: 0 30px;
        }

        .review-text::before {
            content: '"';
            font-size: 40px;
            color: #ff7a00;
            position: absolute;
            left: 0;
            top: -10px;
            font-family: Georgia, serif;
        }

        .review-text::after {
            content: '"';
            font-size: 40px;
            color: #ff7a00;
            position: absolute;
            right: 0;
            bottom: -20px;
            font-family: Georgia, serif;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .nav-btn {
            background: #ff7a00;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover:not(:disabled) {
            background: #e56b00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
        }

        .nav-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 122, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ff7a00;
            transform: scale(1.2);
        }

        .carousel-counter {
            color: #4b5563;
            font-size: 14px;
            font-weight: 600;
            background: white;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 122, 0, 0.3);
            min-width: 60px;
        }

        /* MOBILE - JUST ADJUST PADDING */
        @media (max-width: 768px) {
            .student-reviews {
                padding: 60px 20px;
            }

            .review-card {
                padding: 40px 20px; /* Just smaller padding */
            }

            .quote-icon {
                font-size: 40px;
                top: 15px;
                right: 15px;
            }

            .student-name {
                font-size: 1.3rem;
            }

            .student-title {
                font-size: 0.9rem;
            }

            .review-text {
                font-size: 1rem;
                padding: 0 15px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .carousel-nav {
                gap: 15px;
                margin-top: 25px;
            }
        }

        @media (max-width: 480px) {
            .student-reviews {
                padding: 50px 15px;
            }

            .review-card {
                padding: 30px 15px; /* Even smaller padding */
            }

            .student-name {
                font-size: 1.2rem;
            }

            .student-title {
                font-size: 0.85rem;
            }

            .review-text {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .carousel-nav {
                flex-wrap: wrap;
                gap: 10px;
            }

            .carousel-counter {
                order: 3;
                margin-top: 10px;
            }
        }

        /* CTA SECTION */
        .cta-call-to-action {
            background: linear-gradient(135deg, #f8fafc 0%, #eaf8fb 100%);
            padding: 100px 20px 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: clamp(40px, 8vw, 60px) clamp(30px, 6vw, 50px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .cta-container h3 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            color: #022c3b;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.3;
        }

        .cta-container p {
            color: #4b5563;
            margin-bottom: 30px;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.6;
            font-weight: 400;
        }

        .cta-button {
            background: linear-gradient(135deg, #022c3b, #034a5a);
            color: white;
            padding: clamp(14px, 3.5vw, 18px) clamp(28px, 6vw, 36px);
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            transition: all 0.4s ease;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(2, 44, 59, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(2, 44, 59, 0.4);
        }

        /* SEPARATE CTA SECTION */
        .cta-call-to-action {
            background: linear-gradient(135deg, #f8fafc 0%, #eaf8fb 100%);
            padding: 100px 20px 80px 20px; /* Increased top padding for separation */
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 40px; /* Added margin for extra separation */
        }

        .cta-call-to-action::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-call-to-action::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -15%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(2, 44, 59, 0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: clamp(40px, 8vw, 60px) clamp(30px, 6vw, 50px);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff7a00, #ff9533, #ff7a00);
            border-radius: 25px 25px 0 0;
        }

        .cta-container h3 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            color: #022c3b;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.3;
            background: linear-gradient(135deg, #022c3b, #ff7a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-container p {
            color: #4b5563;
            margin-bottom: 30px;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.6;
            font-weight: 400;
        }

        .cta-button {
            background: linear-gradient(135deg, #022c3b, #034a5a);
            color: white;
            padding: clamp(14px, 3.5vw, 18px) clamp(28px, 6vw, 36px);
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            display: inline-block;
            box-shadow: 0 10px 30px rgba(2, 44, 59, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(2, 44, 59, 0.4);
            background: linear-gradient(135deg, #034a5a, #ff7a00);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(-1px) scale(0.98);
        }

.getintouch-contact {
  background: linear-gradient(135deg, #eaf8fb, #f1f9fb);
  padding: 80px 20px;
  text-align: center;
}

.getintouch-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.getintouch-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #022c3b;
}

.getintouch-title span {
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.getintouch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.form-card,
.contact-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-card h3,
.contact-card h3 {
  color: #022c3b;
  font-size: 24px;
  margin-bottom: 20px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 14px;
  transition: border 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #ff7a00;
  outline: none;
  background: white;
}

form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #022c3b, #034a5a);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 44, 59, 0.3);
}

.contact-card p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #4a5568;
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.socials a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.1);
}

.site-footer {
  background: #022c3b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-wrapper {
    margin: 0 40px;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .feed-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .feed-header h3 {
    font-size: 24px;
  }

  .contact-container {
    flex-direction: column;
  }

  .student-reviews {
      padding: 60px 15px;
  }

  .student-reviews h2 {
      font-size: 32px;
  }

  .reviews-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .review-card {
      padding: 25px;
  }

  .review-header {
      flex-direction: column;
      text-align: center;
      margin-bottom: 15px;
  }

  .review-img {
      margin-right: 0;
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        margin: 0 10px;
    }
}
