/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-blue: #0055a5;
    --dark-blue: #003366;
    --light-blue: #4a90e2;
    --sky-blue: #87ceeb;
    --white: #ffffff;
    --gray-100: #f5f7fa;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
  }
  
  /* .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
  }
  
  .logo svg {
    color: var(--primary-blue);
  } */
  
  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .mobile-toggle span {
    background: var(--primary-blue);
  }

  .mobile-toggle.active span {
    background: var(--primary-blue) !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--sky-blue);
  }
  
  .navbar.scrolled .nav-links a {
    color: var(--gray-800);
  }
  
  .navbar.scrolled .nav-links a:hover {
    color: var(--primary-blue);
  }
  
  /* Page Header */
  .page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
  }
  
  .page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
  }
  
  .hero-video,
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 51, 102, 0.6);
    z-index: 1;
  }
  
  .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 20px;
  }
  
  .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    width: 100%;
  }
  
  .hero-tagline {
    font-size: 6.5rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  .hero-tagline-small {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
  }
  
  /* Sections */
  .section {
    padding: 5rem 0;
  }
  
  .section-gray {
    background: var(--gray-100);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
  }
  
  /* Home About Section */
  .home-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .home-about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
  }
  
  .home-about-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
  
  .home-about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  
  .home-about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  
  .home-about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: homeAboutFade 18s infinite;
  }
  
  .home-about-slide:nth-child(1) {
    animation-delay: 0s;
  }
  
  .home-about-slide:nth-child(2) {
    animation-delay: 6s;
  }
  
  .home-about-slide:nth-child(3) {
    animation-delay: 12s;
  }
  
  .home-about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Featured Courses Section */
  .featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .featured-course-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .featured-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .featured-course-card .training-icon {
    margin-bottom: 1.5rem;
  }
  
  .featured-course-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .featured-course-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .featured-course-card .training-features {
    margin-bottom: 1.5rem;
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    margin-top: auto;
  }
  
  .btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
  }
  
  /* Partners Section */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
  }
  
  .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: 150px;
  }
  
  .partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-align: center;
  }
  
  .partner-placeholder svg {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    opacity: 0.5;
  }
  
  .partner-placeholder p {
    font-size: 0.875rem;
    margin: 0;
  }
  
  /* Team Members Section */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .team-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .team-member-card:hover .team-member-image img {
    transform: scale(1.1);
  }
  
  .team-member-info {
    padding: 2rem;
    text-align: center;
  }
  
  .team-member-info h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .team-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
  
  .team-bio {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Success Story Section */
  .success-story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .success-story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
  }
  
  .success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .success-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 12px;
    color: var(--white);
  }
  
  .success-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .success-label {
    font-size: 1rem;
    opacity: 0.95;
  }
  
  .success-story-text p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  /* Testimonials Section */
  .testimonials-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
  }
  
  .testimonials-carousel {
    overflow: hidden;
    width: 100%;
  }
  
  .testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
  }
  
  .testimonial-card {
    background: #f3f4f6;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .testimonial-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .quote-icon {
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-text {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    margin-top: auto;
  }
  
  .testimonial-author strong {
    display: block;
    color: var(--dark-blue);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  
  .testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
  }
  
  /* Carousel Navigation Arrows */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-blue);
    box-shadow: var(--shadow);
  }
  
  .carousel-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
  }
  
  .carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  .carousel-arrow-left {
    left: 0;
  }
  
  .carousel-arrow-right {
    right: 0;
  }
  
  .carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .carousel-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  /* Why Choose Skyzone Section */
  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .why-choose-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .why-choose-icon {
    width: 64px;
    height: 64px;
    background: var(--sky-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-blue);
  }
  
  .why-choose-card h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .why-choose-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Student Benefits Section */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
  }
  
  .benefit-card h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Career Opportunities Section */
  .career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .career-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
  }
  
  .career-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--light-blue);
  }
  
  .career-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .career-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
  }
  
  /* Admissions CTA Section */
  .admissions-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
  }
  
  .admissions-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .admissions-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  .admissions-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
  }
  
  .admissions-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0.9;
  }
  
  .admissions-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .admissions-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
  }
  
  .admissions-cta .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  
  /* Mission & Vision Section */
  .mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .mission-card h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
  }
  
  .mission-card p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
  }
  
  /* Aircraft Grid */
  .aircraft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .aircraft-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .aircraft-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .aircraft-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
  
  .aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .aircraft-card:hover .aircraft-image img {
    transform: scale(1.1);
  }
  
  .aircraft-content {
    padding: 1.5rem;
  }
  
  .aircraft-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
  }
  
  .aircraft-content > p {
    color: var(--gray-600);
    margin-bottom: 1rem;
  }
  
  .aircraft-specs {
    list-style: none;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
  }
  
  .aircraft-specs li {
    padding: 0.5rem 0;
    color: var(--gray-600);
  }
  
  .aircraft-specs strong {
    color: var(--dark-blue);
  }
  
  /* Training Grid */
  .training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .training-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .training-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .training-icon {
    width: 64px;
    height: 64px;
    background: var(--sky-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .training-icon svg {
    color: var(--dark-blue);
  }
  
  .training-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
  }
  
  .training-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
  }
  
  .training-features {
    list-style: none;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
  }
  
  .training-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
  }
  
  .training-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
  }

  .training-card .btn-primary {
    margin-top: auto;
  }
  
  /* Courses Carousel */
  .courses-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
  }
  
  .courses-carousel {
    overflow: hidden;
    width: 100%;
  }
  
  .courses-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
  }
  
  .courses-track .training-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
  }
  
  /* Gallery Section */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4 / 3;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-image img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
  .gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
  }
  
  /* Founder's Message Section */
  .founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .founder-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  .decorative-shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.3;
  }
  
  .shape-purple {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    top: -20px;
    left: -40px;
    z-index: 1;
  }
  
  .shape-gold {
    width: 180px;
    height: 220px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    bottom: -20px;
    right: -30px;
    z-index: 1;
  }
  
  .decorative-line {
    position: absolute;
    height: 2px;
    z-index: 1;
  }
  
  .line-purple {
    width: 150px;
    background: linear-gradient(90deg, #9b59b6, transparent);
    top: 100px;
    left: 160px;
  }
  
  .line-gold {
    width: 120px;
    background: linear-gradient(90deg, #f39c12, transparent);
    bottom: 100px;
    right: 150px;
  }
  
  .founder-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .founder-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .founder-message {
    padding: 2rem 0;
  }
  
  .founder-name {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
  }
  
  .founder-title {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
  }
  
  .founder-message-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
  }
  
  .founder-text {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.8;
  }
  
  .founder-text p {
    margin-bottom: 1.5rem;
  }
  
  .founder-closing {
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--gray-800);
  }
  
  /* About Section (kept for backwards compatibility) */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .about-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
    opacity: 0.95;
  }
  
  /* Contact Section */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: rgba(0, 85, 165, 0.1);
    border-radius: 10px;
  }
  
  .contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .contact-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
  }
  
  .contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  /* Contact Form */
  .contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--gray-600);
    opacity: 0.7;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
  }
  
  .contact-form .btn {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Footer */
  .footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  
  .footer-heading {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc2626;
  }
  
  .footer-address p,
  .footer-contact p,
  .footer-hours p {
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .footer-contact strong {
    font-weight: 600;
  }
  
  .footer-enquiry-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .enquiry-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .enquiry-group p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .btn-enquire {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
  }
  
  .btn-enquire:hover {
    background: var(--white);
    color: var(--dark-blue);
  }
  
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-action-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .footer-action-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
  }
  
  .footer-action-btn span {
    display: block;
  }
  
  .footer-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: var(--sky-blue);
  }
  
  .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
  }
  
  .footer-copyright p {
    color: var(--white);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }
  
  .fade-in.delay-1 {
    animation-delay: 0.2s;
  }
  
  .fade-in.delay-2 {
    animation-delay: 0.4s;
  }
  
  .fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @keyframes homeAboutFade {
    0% {
      opacity: 0;
    }
    5% {
      opacity: 1;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  
  /* Mobile-first utility - prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 0 16px;
    }

    .nav-container {
      position: relative;
      padding: 0.75rem 16px;
    }

    .nav-container .logo a img {
      height: 50px !important;
    }

    .mobile-toggle {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 0 1rem;
      box-shadow: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, box-shadow 0.3s ease;
      gap: 0;
      border-radius: 0 0 12px 12px;
    }

    .nav-links li {
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--gray-200);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }
  
    .nav-links.active {
      max-height: 400px;
      padding: 1rem;
      box-shadow: var(--shadow-lg);
    }
    
    .nav-links a {
      color: var(--gray-800) !important;
      display: block;
      padding: 0.5rem 0;
      font-size: 1.0625rem;
    }
    
    .nav-links a:hover {
      color: var(--primary-blue) !important;
    }
  
    .hero {
      min-height: 100svh;
      min-height: 100vh;
    }

    .hero-container {
      padding: 3rem 16px;
    }
    
    .hero-tagline {
      font-size: 3.5rem;
      line-height: 1.1;
    }
    
    .hero-tagline-small {
      font-size: 2rem;
      line-height: 1.2;
    }

    .section {
      padding: 3rem 0;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    /* Gallery - show overlay on mobile (touch devices have no hover) */
    .gallery-overlay {
      transform: translateY(0);
      padding: 1rem;
    }

    .gallery-overlay h3 {
      font-size: 1rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }

    .home-about-text h2 {
      font-size: 1.75rem;
    }

    .featured-course-card h3 {
      font-size: 1.25rem;
    }

    .footer-address p {
      font-size: 0.875rem;
      word-wrap: break-word;
    }

    .footer-copyright p {
      font-size: 0.8rem;
      padding: 0 0.5rem;
    }
    
    .page-header {
      padding: 5rem 0 2.5rem;
      margin-top: 60px;
    }
    
    .page-header h1 {
      font-size: 2rem;
      padding: 0 0.5rem;
    }
    
    .page-header p {
      font-size: 1rem;
      padding: 0 0.5rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .founder-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .founder-image-wrapper {
      max-width: 350px;
    }
  
    .founder-decorative-shapes {
      display: none;
    }
  
    .founder-name {
      font-size: 1.75rem;
    }
  
    .founder-message-title {
      font-size: 1.5rem;
    }
  
    .home-about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .contact-card {
      flex-direction: column;
      padding: 1.5rem;
    }
    
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .footer-action-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .footer-action-btn {
      width: 100px;
      height: 100px;
      font-size: 0.75rem;
    }

    .aircraft-grid,
    .training-grid,
    .gallery-grid,
    .featured-courses-grid,
    .why-choose-grid,
    .benefits-grid,
    .career-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonials-carousel-wrapper,
    .courses-carousel-wrapper {
      padding: 0 50px;
    }
    
    .testimonial-card,
    .courses-track .training-card {
      flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-arrow {
      width: 40px;
      height: 40px;
    }
    
    .carousel-arrow svg {
      width: 20px;
      height: 20px;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
    
    .success-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .admissions-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .admissions-content h2 {
      font-size: 2rem;
    }
    
    .admissions-subtitle {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 12px;
    }

    .nav-container .logo a img {
      height: 44px !important;
    }

    .hero-tagline {
      font-size: 2.5rem;
      padding: 0 0.5rem;
      letter-spacing: 1px;
    }
    
    .hero-tagline-small {
      font-size: 1.5rem;
      padding: 0 0.5rem;
      letter-spacing: 0.5px;
    }
    
    .page-header {
      padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
      font-size: 1.75rem;
    }
    
    .page-header p {
      font-size: 0.95rem;
    }

    .section {
      padding: 2.5rem 0;
    }

    .section-title {
      font-size: 1.5rem;
    }

    .gallery-grid {
      gap: 1rem;
    }
    
    .mission-vision-grid {
      grid-template-columns: 1fr;
    }
  
    .about-stats {
      grid-template-columns: 1fr;
    }
    
    .success-stats {
      grid-template-columns: 1fr;
    }
    
    .partners-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonials-carousel-wrapper,
    .courses-carousel-wrapper {
      padding: 0 40px;
    }
    
    .testimonial-card,
    .courses-track .training-card {
      flex: 0 0 100%;
    }
    
    .carousel-arrow {
      width: 36px;
      height: 36px;
    }
    
    .carousel-arrow svg {
      width: 18px;
      height: 18px;
    }
    
    .admissions-content h2 {
      font-size: 1.75rem;
    }
    
    .admissions-subtitle {
      font-size: 1.125rem;
    }
    
    .admissions-text {
      font-size: 1rem;
    }

    .contact-form {
      padding: 1.5rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    
    .footer-action-buttons {
      flex-direction: row;
      justify-content: flex-start;
    }
    
    .footer-action-btn {
      width: 90px;
      height: 90px;
      font-size: 0.7rem;
    }
  }
  