/* Global Styles */
:root {
    --primary-color: #f8f9fa;
    --secondary-color: #0056b3;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-text: #777;
    --dark-blue: #003366;
    --color-blue: #4285F4;
    --color-dark-blue: #1A73E8;
    --color-yellow: #FBBC05;
    --color-light: #f8f9fa;
    --color-dark: #202124;
    --primary: #0066cc;
    --secondary: #003366;
    --accent: #ff6600;
    --light: #f8f9fa;
    --dark: #212529;
    --primary: #2c3e50;
    --text-light: #7f8c8d;
}
/* Global Styles */


/*General setup css for the pages*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}
/*General setup css for the pages*/


/*Styles for the Loading spinner*/
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, sans-serif;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-container.hidden {
    pointer-events: none;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
    z-index: -9999;
}

    /* The css for the video play button home page */
    .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    }
    
    .video-play-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Hide button when video is playing */
    .video-playing .video-play-btn {
        display: none;
    }

    /* Fancy marquee container */
.marquee-overlay {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 12px 0;
    background: linear-gradient(90deg, rgba(250,250,250,0.7) 0%, rgba(255,253,252,0.85) 50%, rgba(250,250,250,0.7) 100%);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Marquee track for smooth animation */
.marquee-track {
    display: flex;
    width: fit-content; /* Changed for better content handling */
    animation: marquee 40s linear infinite; /* Slower animation for longer content */
}

/* Individual marquee content */
.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent content from shrinking */
    padding-right: 40px;
    box-sizing: border-box;
}

/* News items styling */
.news-item {
    display: inline-flex; /* Better for alignment */
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0 15px;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0; /* Prevent text wrapping */
}

.news-bullet {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 8px; /* Better spacing */
    animation: pulse 2s infinite;
    flex-shrink: 0; /* Keep bullet fixed size */
}

/* Animation for bullets in marquee*/
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Main marquee animation in marquee */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Glow effect on hover in marquee */
.marquee-overlay:hover {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .marquee-overlay {
        top: 25px;
        padding: 15px 0;
    }
    .news-item {
        font-size: 1.1rem;
    }
    .news-bullet {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .marquee-overlay {
        top: 35px;
        padding: 18px 0;
    }
    .news-item {
        font-size: 1.2rem;
    }
    .news-bullet {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .marquee-overlay {
        top: 10px;
        padding: 5px 0;
        width: 90%;
        border-radius: 20px;
    }
    .news-item {
        font-size: 0.85rem;
        margin: 0 8px;
        white-space: normal; /* Allow wrapping on mobile */
        display: inline-block; /* Change display for wrapped text */
        max-width: 200px; /* Limit width to prevent overflow */
        vertical-align: middle;
    }
    .news-bullet {
        font-size: 1rem;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }
    .marquee-track {
        animation-duration: 50s; /* Slower for mobile readability */
    }
    .marquee-content {
        padding-right: 20px;
    }
}
    
    /*for the apply of IATA COURSE modal*/
    /* Modal Styles */
    .iata-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
    }
    
    .iata-modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 0;
      border-radius: 8px;
      box-shadow: 0 5px 30px rgba(0,0,0,0.3);
      width: 90%;
      max-width: 600px;
      animation: modalFadeIn 0.3s ease-out;
      overflow: hidden;
    }
    
    @keyframes modalFadeIn {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .iata-modal-header {
      background: linear-gradient(135deg, #0038a5, #0056b3);
      color: white;
      padding: 20px;
      position: relative;
    }
    
    .iata-modal-header h2 {
      margin: 0;
      font-size: 1.5rem;
    }
    
    .iata-close-modal {
      position: absolute;
      right: 20px;
      top: 20px;
      font-size: 1.8rem;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s;
    }
    
    .iata-close-modal:hover {
      transform: scale(1.2);
    }
    
    .iata-modal-body {
      padding: 20px;
      max-height: 70vh;
      overflow-y: auto;
    }
    
    .iata-course-info {
      background-color: #f8f9fa;
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 20px;
      border-left: 4px solid #0038a5;
    }
    
    .iata-course-info h3 {
      color: #0038a5;
      margin-top: 0;
    }
    
    /* Form Styles */
    .form-group {
      margin-bottom: 15px;
    }
    
    .form-row {
      display: flex;
      gap: 15px;
    }
    
    .form-row .form-group {
      flex: 1;
    }
    
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
      color: #333;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 1rem;
      transition: border 0.3s;
    }
    
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    select:focus {
      border-color: #0038a5;
      outline: none;
      box-shadow: 0 0 0 2px rgba(0,56,165,0.2);
    }
    
    .checkbox-group {
      display: flex;
      align-items: flex-start;
    }
    
    .checkbox-group input {
      margin-right: 10px;
      margin-top: 3px;
    }
    
    .checkbox-group label {
      font-weight: normal;
    }
    
    .iata-modal-footer {
      padding: 15px 20px;
      background-color: #f8f9fa;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      border-top: 1px solid #ddd;
    }
    
    /* Button Styles */
    .btn {
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    
    .btn-secondary {
      background-color: #6c757d;
      color: white;
    }
    
    .btn-secondary:hover {
      background-color: #5a6268;
    }
    
    .btn-primary {
      background-color: #0038a5;
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #00257a;
      transform: translateY(-2px);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .iata-modal-content {
        width: 95%;
        margin: 10% auto;
      }
      
      .form-row {
        flex-direction: column;
        gap: 0;
      }
    }
    
    @media (max-width: 480px) {
      .iata-modal-header h2 {
        font-size: 1.2rem;
        padding-right: 30px;
      }
      
      .iata-modal-body {
        padding: 15px;
      }
      
      .iata-modal-footer {
        flex-direction: column;
      }
      
      .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }



    

.main-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.company-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    object-fit: contain;
}

.spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--color-blue);
    border-right-color: var(--color-blue);
    animation: spin 1.0s linear infinite, colorChange 2.5s linear infinite;
    z-index: 1;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: var(--color-dark-blue);
    border-right-color: var(--color-dark-blue);
    animation: spin 2s linear infinite, colorChange 6s linear infinite;
    opacity: 0.7;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--color-yellow);
    border-right-color: var(--color-yellow);
    animation: spin 3s linear infinite, colorChange 3s linear infinite;
    opacity: 0.5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes colorChange {
    0% {
        border-top-color: var(--color-blue);
        border-right-color: var(--color-blue);
    }
    33% {
        border-top-color: var(--color-dark-blue);
        border-right-color: var(--color-dark-blue);
    }
    66% {
        border-top-color: var(--color-yellow);
        border-right-color: var(--color-yellow);
    }
    100% {
        border-top-color: var(--color-blue);
        border-right-color: var(--color-blue);
    }
}

.loading-text {
    margin-top: 20px;
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    max-width: 300px;
}

.progress-container {
    width: 200px;
    margin-top: 20px;
}

.progress-bar {
    height: 4px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-blue), var(--color-yellow));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-container {
        width: 100px;
        height: 100px;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
    
    .spinner {
        border-width: 6px;
    }
    
    .spinner::before {
        border-width: 4px;
    }
    
    .spinner::after {
        border-width: 3px;
    }
    
    .loading-text {
        font-size: 16px;
    }
}
/*Styles for the Loading spinner ends here*/




/*Starts here*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-yellow);
    color: var(--color-dark);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
}

/* Top Navbar */
.top-navbar {
    background-color: var(--dark-blue);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

 .top-navbar-right {
    display: flex;
}
.top-navbar-left, .top-navbar-right {
    padding: 5px 0;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.phone-number {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.phone-number i {
    margin-right: 5px;
}

.language-selector select {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(252, 132, 252, 0.3);
    padding: 5px;
    border-radius: 4px;
}

.language-selector select option {
    color: var(--text-color);
}

/* Middle Navbar */
.middle-navbar {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.middle-navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-store {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    margin-right: 20px;
}

.search-box input {
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.store-icon {
    font-size: 25px;
    color: var(--color-light);
}

.store-icon:hover {
    color: var(--secondary-color);
}

/* Main Navbar */
.main-navbar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo img {
    height: 60px;
    width: 100px;
    margin-right: 20px;
    max-width: 100%;
}

.logo-text h1 {
    color: white;
    margin-left: 5px;
    margin-right: 4px;
    font-size: 24px;
    margin-bottom: 5px;
}

.logo-text p {
    /*color: rgba(255, 255, 255, 0.8);*/
    font-size: 18px;
    margin-left: 5px;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.5s ease;
}

.nav-links li {
    position: relative;
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 300px;
    box-shadow: 0 5px 15px #e68d8d1a;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    order: 1;
}
/*main navbar ends here*/



/* Hero Section  for the Home page starts here*/
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 500px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    color: white;
    margin: 0 5%;
}

.hero-content.left {
    margin-right: auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Programs Section */
.programs {
    padding: 20px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}
.programs-grid {
  animation: fadeInUp 1s ease-out forwards;
}

.program-card {
  opacity: 0;
  animation: fadeInUpCard 1s ease-out forwards;
}

.program-card:nth-child(1) {
  animation-delay: 0.2s;
}
.program-card:nth-child(2) {
  animation-delay: 0.4s;
}
.program-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCard {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* The css for programs ends from here */


/* IATA Courses Section Home page*/
.iata-courses-home {
    padding: 20px 0;
    background-color: #a2d2ff;
    position: relative;
}

.iata-courses-home .section-title-home {
    text-align: center;
    margin-bottom: 50px;
}

.iata-content-home {
    display: flex;
    gap: 40px;
    position: relative;
}

.iata-image-wrapper-home {
    flex: 1;
    min-width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.iata-image-wrapper-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.iata-certification-home {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    background-color: #1a3e6f;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
}

.iata-programs-home {
    flex: 2;
    min-width: 50%;
}

.iata-program-card-home {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.iata-program-card-home:hover {
    transform: translateY(-5px);
}

.iata-program-icon-home {
    font-size: 2rem;
    color: #1a3e6f;
    min-width: 60px;
    text-align: center;
    padding-top: 5px;
}

.iata-program-details-home h3 {
    margin-top: 0;
    color: #1a3e6f;
}

.iata-program-links-home {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.iata-actions-home {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .iata-content-home {
        flex-direction: column;
    }
    
    .iata-image-wrapper-home {
        min-height: 300px;
        
        min-width: 100%;
    }
    
    .iata-image-wrapper-home img {
        min-height: auto;
    }
    
    .iata-certification-home {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .iata-program-card-home {
        flex-direction: column;
    }
    
    .iata-program-icon-home {
        margin-bottom: 10px;
    }
    
    .iata-actions-home {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .iata-program-links-home {
        flex-direction: column;
    }
    
    .iata-actions-home {
        flex-direction: column;
    }
    
    .iata-actions-home .btn {
        width: 100%;
        text-align: center;
    }
}







.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card-content {
    padding: 20px;
}

.program-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.program-card p {
    color: var(--light-text);
    margin-bottom: 15px;
}


/* Footer across all pages  starts here*/
.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Back to Top Button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s;
}

#back-to-top:hover {
    background: rgba(0, 0, 0, 1);
}
/* Footer accross all pages  starts here end here*/



/*Media querry for responsiveness*/
@media (max-width: 1200px) {
    .hero-content {
        margin: 0 3%;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        padding: 0 20px;
    }
    
    .nav-links li a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        margin-top: 0;
    }
    
    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .hero-content {
        max-width: 90%;
        text-align: center;
    }
    
    .hero-content.left, .hero-content.right {
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    /* Existing mobile menu styles remain the same */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.5s ease;
        z-index: 999;
        overflow-y: auto;
        padding-bottom: 40px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        padding: 0 20px;
    }
    
    .nav-links li a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    /* Dropdown container */
    .dropdown-menu {
        position: static;
        width: 100%;
        background-color: var(--secondary-color);
        margin: 0;
        padding: 0;
        /* Visual separation from parent item */
        border-top: 1px solid rgba(255,255,255,0.1);
        /* Allow dropdown to expand naturally */
        height: auto;
        max-height: none;
        /* Contain dropdown content */
        display: block;
        /* Ensure proper stacking */
        z-index: 1;
    }

    /* Dropdown items - enhanced */
    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu li a {
        padding: 14px 20px 14px 35px;
        display: block;
        background-color: var(--secondary-color);
        color: var(--color-light);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        /* Prevent text overlap */
        white-space: normal;
        line-height: 1.4;
    }

    /* Active/hover states */
    .dropdown-menu li a:hover,
    .dropdown-menu li a:focus {
        background-color: var(--accent-color)
    }

    /* Parent link styling */
    .nav-links > li > a {
        position: relative;
        z-index: 2; /* Ensure parent links stay above dropdowns */
    }

    /* Visual indicator for dropdown parents */
    .nav-links li.has-dropdown > a::after {
        /* content: "▾"; */
        margin-left: 8px;
        display: inline-block;
    }
    
    /* Mobile menu button stays the same */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    /* Content styles remain unchanged */
    .hero-content {
        max-width: 90%;
        text-align: center;
    }
    
    .hero-content.left, .hero-content.right {
        margin: 0 auto;
    }
}

/* Intake Statistics Section*/
.intake-stats {
    padding: 40px 0;
    background-color: var(--dark-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.intake-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,86,179,0.8) 0%, rgba(0,51,102,0.9) 100%);
    z-index: 0;
}

.stats-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stats-text {
    flex: 1;
    padding-right: 50px;
}

.stats-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.stats-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats-highlight {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-blue);
}

.stats-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stats-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.stats-image:hover img {
    transform: scale(1.05);
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 20px 0;
    background-color: #f1faee;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}


/* Testimonials  for the Home page*/
.testimonials-section {
    padding: 20px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 3px ;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    box-sizing: border-box;
}

.testimonial-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.quote-marks {
    font-size: 8rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    font-family: serif;
    z-index: 0;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.author-info span {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.testimonial-media {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.media-container {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button svg {
    width: 30px;
    height: 30px;
}

.play-button:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse 3s infinite;
    z-index: 1;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

/* Video Modal for the You tube Video on Testimonial part */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Video Modal for the You tube Video on Testimonial part ends here */


/* Responsive Design  for all Screen sizes*/
@media (max-width: 992px) {
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-content {
        order: 2;
    }
    
    .testimonial-media {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin-bottom: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section h3 {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
    }
    
    .media-container {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .quote-marks {
        font-size: 6rem;
    }
}
/* Testimonials  for the Home page end here*/


/* News Section Styling */
.news-updates {
  background-color: #f8f9fa;
  padding: 3rem 0;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  color: #4a5568;
  text-align: center;
  margin-bottom: 2rem;
}

/* News Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden; /* Ensures images respect border-radius */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  height: 180px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the container */
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05); /* Zoom effect on hover */
}

.news-content {
  padding: 1.5rem;
}

.news-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.news-category.eacaa {
  background: #e6fffa;
  color: #2c7a7b;
}

.news-category.school {
  background: #ebf8ff;
  color: #3182ce;
}

.news-category.event {
  background: #fff5f5;
  color: #e53e3e;
}

.news-card h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.news-card p {
  color: #4a5568;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.read-more {
  color: #3182ce;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

.news-archive {
  text-align: center;
}

.archive-link {
  color: #3182ce;
  font-weight: bold;
  text-decoration: none;
}

.archive-link:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .news-image {
    height: 150px; /* Slightly smaller images on mobile */
  }
}
/* For the latest news and updates ends here */


/* Prospectus Card Styles */
.prospectus-card {
    background: var(--dark-blue);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-column: span 3; /* Makes it span two columns in the grid */
}

.prospectus-content {
    max-width: 600px;
}

.prospectus-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.prospectus-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-download {
    background: var(--color-yellow);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-download:hover {
    background: var(--light);
    color: var(--accent);
}
/* Prospectus Card Styles  ends here*/


/* Responsive Adjustments */
@media (max-width: 992px) {
    .prospectus-card {
        grid-column: span 1;
    }
}


@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }

    .prospectus-card {
        padding: 25px;
    }
    
    .testimonial-arrow {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-arrow {
        display: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Animation for counting numbers */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-content {
        flex-direction: column;
    }
    
    .stats-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .stats-highlight {
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .stats-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 0 0 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-navbar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-navbar-left, .top-navbar-right {
        justify-content: center;
        width: 100%;
    }
    
    .social-icons {
        margin-bottom: 10px;
    }
    
    .middle-navbar .container {
        justify-content: center;
    }
    
    .search-store {
        width: 100%;
        justify-content: center;
    }
    
    .search-box input {
        width: 180px;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hero {
        height: 60vh;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .search-box input {
        width:300px;
    }
    
    .phone-number span {
        font-size: 12px;
    }
}


/*Style for training phases of SFS(EACAA)*/
.training-phases {
    padding: 20px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.phase-navigation {
    margin-bottom: 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phase-dots {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: center;
}

.phase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phase-dot.active {
    background-color: #0066cc;
    transform: scale(1.2);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.phase-nav-btn, .view-all-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-btn {
    background-color: #004d99;
}

.phase-nav-btn:hover, .view-all-btn:hover {
    background-color: #0055b3;
    transform: translateY(-2px);
}

.phase-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.phase-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.phase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.phase-image img.active {
    display: block;
}

.phase-details {
    flex: 1;
}

.phase-info {
    display: none;
}

.phase-info.active {
    display: block;
}

.phase-header {
    margin-bottom: 20px;
}

.phase-number {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 10px;
}

.phase-title {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.phase-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.phase-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.phase-features li {
    margin-bottom: 8px;
    color: #444;
}

.phase-features i {
    color: #0066cc;
    margin-right: 8px;
}

.phase-duration {
    color: #666;
    font-style: italic;
}

.phase-progress {
    margin-top: 30px;
}

.progress-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* All Phases Grid */
.all-phases-grid {
    margin-top: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.phase-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.phase-card.active {
    border-left: 4px solid #0066cc;
}

.phase-card .phase-number {
    margin-bottom: 10px;
}

.phase-card .phase-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.phase-card .phase-description {
    font-size: 14px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .phase-content {
        flex-direction: column;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .phase-dots {
        order: 1;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-buttons {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}
/*Style for training phases of SFS(EACAA) ENDS HERE*/





/* Contact Page Specific Styles STARTS HERE */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/sfs.jpg') no-repeat center center/cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.contact-info-about {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-about h2 {
    color: #2a5ea8;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background: #2a5ea8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.contact-details p, .contact-details a {
    margin: 0;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #2a5ea8;
}

.business-hours {
    margin-top: 30px;
}

.business-hours table {
    width: 100%;
    border-collapse: collapse;
}

.business-hours tr:nth-child(even) {
    background: #f0f0f0;
}

.business-hours td {
    padding: 8px 0;
}

.business-hours td:last-child {
    text-align: right;
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: #2a5ea8;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #2a5ea8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1d4a8a;
}

.map-container {
    height: 400px;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-departments {
    margin-top: 60px;
    margin-bottom: 30px;
}

.department-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.department-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.department-card h3 {
    color: #2a5ea8;
    margin-top: 0;
}

.department-card p {
    margin-bottom: 15px;
}

.department-contact {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.department-contact i {
    margin-right: 10px;
    color: #2a5ea8;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* Contact Page Specific Styles ENDS HERE */





/*Admissions page style starts here*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}*/

.btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.admissions-hero {
    background: linear-gradient(rgba(0, 41, 19, 0.8), rgba(0, 1, 10, 0.8)), url('../images/sfc add.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.admissions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.admissions-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Admissions Process */
.admissions-process {
    padding: 20px 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Requirements */
.requirements {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('./images/recept sfs.jpg') no-repeat center center/cover;
    padding: 20px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    border-left: 4px solid var(--primary);
    padding: 25px;
    background: var(--light);
}

.requirement-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.requirement-card h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.requirement-card ul {
    list-style-position: inside;
}

.requirement-card li {
    margin-bottom: 8px;
}

.faqs {
    padding: 20px 0;
    background: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px; /* Adjust based on your content */
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 20px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}
.cta-section .btn {
    background: var(--secondary);
    color: var(--color-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admissions-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .admissions-hero {
        padding: 20px 0;
    }
    
    .admissions-hero h1 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}
/*Admissions page style ends here*/







/* Fleet Page Specific Styles starts here */
.fleet-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/fleet/flee.jpg') no-repeat center center/cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.fleet-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fleet-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.fleet-intro {
    padding: 60px 0;
    background: #f9f9f9;
}

.fleet-intro .container {
    max-width: 1000px;
    text-align: center;
}

.fleet-intro h2 {
    color: #2a5ea8;
    margin-bottom: 20px;
}

.fleet-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.aircraft-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.aircraft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.aircraft-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.aircraft-card:hover .aircraft-image img {
    transform: scale(1.05);
}

.aircraft-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(42, 94, 168, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.aircraft-details {
    padding: 25px;
}

.aircraft-model {
    color: #2a5ea8;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.aircraft-manufacturer {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.aircraft-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
}

.spec-icon {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #2a5ea8;
}

.spec-label {
    font-size: 0.8rem;
    color: #777;
}

.spec-value {
    font-weight: bold;
    font-size: 1rem;
}

.aircraft-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #2a5ea8;
    color: #2a5ea8;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2a5ea8;
    color: white;
}

.fleet-stats {
    background: #2a5ea8;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
}

.maintenance-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.maintenance-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.maintenance-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.maintenance-image img {
    width: 100%;
    height: auto;
    display: block;
}

.maintenance-content h2 {
    color: #2a5ea8;
    margin-bottom: 20px;
}

.maintenance-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    color: #2a5ea8;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Add to your CSS file */
.spec-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
}

.spec-list li {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 3px;
    position: relative;
    padding-left: 12px;
}

.spec-list li:before {
    content: "•";
    color: #0066cc;
    position: absolute;
    left: 0;
}

.aircraft-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    gap: 10px;
}

.spec-icon {
    color: #0066cc;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Accordion Styles */
.specs-accordion {
    margin: 15px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    background: #f9f9f9;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header .spec-icon {
    margin-right: 10px;
    color: #0077cc;
    width: 20px;
    text-align: center;
}

.accordion-header span {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.accordion-icon {
    transition: transform 0.3s ease;
    margin-left: 10px;
    font-size: 0.8rem;
    color: #666;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 15px;
}

.spec-value {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.4;
    color: #555;
}

.aircraft-description {
    margin: 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #0077cc;
    color: #0077cc;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0077cc;
    color: white;
}

/* Responsive Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .maintenance-container {
        grid-template-columns: 1fr;
    }
    
    .maintenance-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .fleet-hero {
        padding: 80px 0;
    }
    
    .fleet-hero h1 {
        font-size: 2.2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .aircraft-specs {
        grid-template-columns: 1fr;
    }
}
/* Fleet Page Specific Styles ends here */






/*About us specific css starts here*/
/* Base Styles */
.about-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Navigation */
.about-nav {
    background: darkblue;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.about-nav h2 {
    padding: 1rem 0;
    margin: 0;
    font-size: 1.5rem;
    display: none; /* Hidden on desktop, shown on mobile */
}


.about-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.about-nav-links li {
    margin: 0;
}

.about-nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.about-nav-links a i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.about-nav-links a span {
    display: block;
}

.about-nav-links a:hover, .about-nav-links a.active {
    background: rgba(255,255,255,0.1);
    color: Yellow;
}

.about-nav-links a.active {
    border-left: 4px solid var(--secondary-color);
}

.about-nav-links a i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

/* Content Area */
.about-content {
    flex: 1;
    padding: 2rem 3rem;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.content-section .content-header h1 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.content-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.content-body {
    line-height: 1.8;
    margin-top: -25px;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/student_sfs.jpg') no-repeat center center/cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}


/* The css for the special features of the about us page after history */

/* Aviation Features Section Styles */
.aviation-features-bg {
    background-image: url('../images/station.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 40px 0;
    color: #fff;
}

.aviation-features-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 35, 43, 0.85);
    z-index: 0;
}

.aviation-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.content-header {
    text-align: center;
    margin-bottom: 30px;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: #4fc3f7;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #b3e5fc;
}

.header-plane {
    font-size: 2rem;
    color: white;
    animation: float 3s ease-in-out infinite;
    -webkit-animation: float 3s ease-in-out infinite;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.feature-item {
    flex: 0 0 calc(50% - 30px);
    background: rgba(182, 149, 149, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 8px;
    padding: 25px;
    margin: 15px;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid yellow;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #4fc3f7;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4fc3f7;
}

.feature-content ul {
    list-style-type: none;
    padding-left: 0;
}

.feature-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.feature-content li::before {
    content: '✈';
    position: absolute;
    left: 0;
    color: white;
}

.feature-value {
    font-weight: bold;
    color: #4fc3f7;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-item {
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
    }
    
    .feature-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .aviation-features-bg {
        padding: 40px 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .feature-content li {
        text-align: left;
    }
}

/* The css for the special features of the about us page after history ends here */


/* Team Section Styling */
.team-category {
    margin: 3rem 0;
}

.category-title {
    color: #1a365d;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.oval-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #e2e8f0;
}

.oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.position {
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.team-info p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #718096;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3182ce;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .oval-frame {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        max-width: 280px;
        margin: 0 auto;
    }
}

.history-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--secondary-color);
}

.timeline-year {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-nav-links a {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .about-nav-links a i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-nav {
        position: relative;
        top: auto;
    }
    
    .about-nav-links a {
        padding: 0.8rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .about-nav-links a i {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-nav-links a {
        padding: 0.7rem 0.5rem 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .about-nav-links a i {
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1rem;
    }
}
/* It ends here */


/* Facilities Gallery */
.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.facility-img {
    height: 200px;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img img {
    transform: scale(1.05);
}

.facility-info {
    padding: 1.5rem;
    background: white;
}

.facility-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.stud-stats {
    padding: 80px 0;
    background: #2a5ea8;
    color: white;
    padding: 2px 0;
    text-align: center;
    display: flex;
}
.stud-stats h2{
    padding-top: 40px;
    color: var(--dark); 
    margin-bottom: 10px;
}
/*About us specific css ends here*/












/*the virtual assistant css starts here*/
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.assistant-container.visible {
    transform: translateY(0);
    opacity: 1;
}

.assistant-header {
    background-color: #1a73e8;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assistant-header h3 {
    margin: 0;
    font-size: 16px;
}

.assistant-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.chat-container {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.assistant-message, .user-message {
    margin-bottom: 15px;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.assistant-message .message-content {
    background-color: #e9e9eb;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background-color: #1a73e8;
    color: white;
    border-bottom-right-radius: 5px;
}

.input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}

.input-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.input-container button {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed from right: 20px */
    width: 60px;
    height: 60px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* And this */
.assistant-container {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed from right: 20px */
    width: 350px;
    height: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.typing-indicator {
    display: inline-block;
    padding: 10px 15px;
    background-color: #e9e9eb;
    border-radius: 18px;
    border-bottom-left-radius: 5px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #666;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bounce 1.5s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .assistant-container {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}
@media (max-width: 768px) {
    .assistant-container {
        width: 90%;
        max-width: none;
        right: 5%;
        bottom: 10px;
    }
    
    .floating-btn {
        left: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .assistant-container {
        width: 100%;
        height: 100%;
        max-height: none;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
    }
    
    .assistant-header {
        padding: 10px 12px;
    }
    
    .message-content {
        max-width: 90%;
    }
    
    .input-container {
        padding: 8px;
    }
    
    .input-container input {
        padding: 8px 12px;
    }
    
    .input-container button {
        width: 36px;
        height: 36px;
    }
}
/*the virtual assistant css ends here here*/
:root {
    --primary: #003366;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('../images/DSCF0404.JPG') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: yellow;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 25%;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.course-overview {
    background: var(--light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}


/* DOWNLOAD CURRICULUM CARD (FULL-WIDTH) */
.download-curriculum-card {
    grid-column: 1 / -1; /* Spans entire width of grid */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #3498db; /* Accent bar */
}

.download-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-content i {
    font-size: 2rem;
    color: #e74c3c; /* Red for PDF icon */
}

.download-content h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.download-content p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.download-btn {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--primary);
    color: white;
}

.download-btn i {
    margin-right: 8px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .download-curriculum-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .download-content {
        flex-direction: column;
    }
    .download-btn {
        width: 100%;
        text-align: center;
    }
}
/* DOWNLOAD CURRICULUM CARD (FULL-WIDTH) Ends here*/


/* IATA Certification Section */
.iata-certification {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.certification-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-badge {
    position: relative;
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    border-right: 1px solid #eee;
}

.certification-badge img {
    max-width: 150px;
    height: auto;
}

.badge-ribbon {
    position: absolute;
    top: 15px;
    right: 0px;
    background: #e31c3d;
    color: white;
    padding: 2px 18px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(25deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.certification-content {
    padding: 15px 8px 3px 12px;
    flex: 1;
}

.certification-label {
    display: inline-block;
    background: #0056a3;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.certification-header h2 {
    color: #2c3e50;
    margin: 10px 0 5px;
    font-size: 1.5rem;
}

.certification-subtitle {
    color: #7f8c8d;
    margin-bottom: 1px;
    font-size: 0.95rem;
}

.certification-details {
    display: flex;
    gap: 40px;
    margin: 10px 0;
    margin-top: -20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    color: #0056a3;
    font-size: 1.2rem;
    margin-top: 3px;
}

.detail-item h4 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.certification-cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.certification-notice {
    margin: 10px 0;
    margin-top: -30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.certification-notice h2 {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: #333;
}

.certification-notice p {
    margin: 0;
    color: #555;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    margin-top: -30px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn i {
    font-size: 0.9rem;
}

.cta-btn.primary {
    background: #0056a3;
    color: white;
    border: 2px solid #0056a3;
}

.cta-btn.primary:hover {
    background: #003d7a;
    border-color: #003d7a;
}

.cta-btn.secondary {
    background: white;
    color: #0056a3;
    border: 2px solid #0056a3;
}

.cta-btn.secondary:hover {
    background: #f0f7ff;
}


/*The why-choose-us section starts here*/
.hidden-section {
    display: none;
}

.why-choose-us {
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.why-choose-us.visible {
    opacity: 1;
    height: auto;
}

/* Style the button to look like your original */
.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: darkblue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.cta-btn.secondary {
    background-color: darkblue;
    color: white;
}

.cta-btn:hover {
    opacity: 0.9;
    color: darkblue;
}
/*The why choose course ends here*/

/* Enhanced Responsive Adjustments */
@media (max-width: 900px) {
    .certification-details {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .certification-card {
        flex-direction: column;
    }
    
    .certification-badge {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px;
        min-width: auto;
    }
    
    .certification-content {
        padding: 20px;
    }
    
    .certification-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .certification-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .certification-badge {
        padding: 15px;
    }
    
    .certification-badge img {
        max-width: 120px;
    }
    
    .certification-header h2 {
        font-size: 1.3rem;
    }
    
    .certification-notice h2 {
        font-size: 1.1rem;
    }
}
/*Ends here*/


@media (max-width: 480px) {
    .certification-header h2 {
        font-size: 1.3rem;
    }
}


.curriculum {
    background: white;
}

.module {
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.module h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.module ul {
    list-style-position: inside;
}

.module li {
    margin-bottom: 10px;
}

.instructors {
    background: var(--light);
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.instructor-img {
    height: 250px;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    padding: 20px;
}

.instructor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.instructor-info p {
    color: #666;
    margin-bottom: 15px;
}

.requirements {
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: var(--light);
    border-radius: 8px;
    padding: 25px;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.requirement-card h3 i {
    margin-right: 10px;
}

.requirement-card ul {
    list-style-position: inside;
}

.requirement-card li {
    margin-bottom: 8px;
}

.cta {
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), 
                url('../images/flight-training-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}


/* =============================================
BASIC AIRSIDE SAFETY COURSE
Additional Styles for Course-Specific Sections
============================================= */

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: #fff;
}

.testimonials .section-title {
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(44, 131, 195, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #2c83c3;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Course Features Section */
.features {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.features .section-title {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Enhanced CTA Section for Airside Safety */
.cta.airside-cta {
    background: linear-gradient(135deg, #2c83c3 0%, #1a5276 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta.airside-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta.airside-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta.airside-cta .btn-primary {
    background-color: var(--accent);
    border-color: #e74c3c;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
}

.cta.airside-cta .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.cta.airside-cta .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
}

.cta.airside-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Practical Training Highlights */
.training-highlights {
    padding: 60px 0;
    background-color: #fff;
}

.highlights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.highlights-image {
    flex: 1;
    min-width: 300px;
}

.highlights-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlights-content {
    flex: 1;
    min-width: 300px;
}

.highlights-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.highlights-content ul {
    list-style: none;
    padding: 0;
}

.highlights-content li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.highlights-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: #2c83c3;
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .highlights-container {
        flex-direction: column;
    }
    
    .highlights-image,
    .highlights-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta.airside-cta .cta-buttons {
        flex-direction: column;
    }
    
    .cta.airside-cta .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .cta.airside-cta h2 {
        font-size: 28px;
    }
    
    .cta.airside-cta p {
        font-size: 16px;
    }
    
    .cta.airside-cta .btn-primary,
    .cta.airside-cta .btn-secondary {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }
}
/* =============================================
BASIC AIRSIDE SAFETY COURSE
Additional Styles for Course-Specific Sections ends here
============================================= */



/* =============================================
HUMAN FACTORS & SAFETY MANAGEMENT COURSE
Additional Styles for Course-Specific Sections
============================================= */

/* Learning Outcomes Section */
.learning-outcomes {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.learning-outcomes .section-title {
    margin-bottom: 40px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.outcome-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card i {
    color: #2c83c3;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.outcome-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Course Delivery Methods */
.delivery-methods {
    padding: 60px 0;
    background-color: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.delivery-card:hover {
    border-color: #2c83c3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.delivery-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 20px;
    display: block;
}

.delivery-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.delivery-card ul {
    padding-left: 20px;
}

.delivery-card li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Who Should Attend Section */
.audience {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.audience-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.audience-card i {
    font-size: 40px;
    color: #2c83c3;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.audience-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Certification Section */
.certification {
    padding: 60px 0;
    background-color: #2c83c3;
    color: #fff;
}

.certification-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.certification-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.certification-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.certification-text {
    flex: 2;
    min-width: 300px;
}

.certification-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.certification-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certification-text ul {
    list-style: none;
    padding: 0;
}

.certification-text li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.certification-text i {
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}

/* Enhanced CTA Buttons */
.cta .btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.cta .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.cta .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta .btn-tertiary {
    background-color: #3498db;
    border-color: #3498db;
}

.cta .btn-tertiary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certification-content {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-text ul {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .outcomes-grid,
    .delivery-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .outcome-card,
    .delivery-card,
    .audience-card {
        padding: 20px;
    }
}
/* =============================================
HUMAN FACTORS & SAFETY MANAGEMENT COURSE
Additional Styles for Course-Specific Sections Ends here
============================================= */




/* =============================================
       QUALITY MANAGEMENT SYSTEMS COURSE
       Additional Styles for QMS Course
============================================= */

    /* Benefits Section */
    .benefits {
        padding: 40px 0;
        background-color: #f8f9fa;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .benefit-card {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
        margin-right: 20px;
    }

    .benefit-icon i {
        font-size: 30px;
        color: #2c83c3;
    }

    .benefit-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .benefit-content p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Certification Badge */
    .certification-badge {
        padding: 40px 0;
        background-color: #2c83c3;
        color: #fff;
    }

    .badge-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .badge-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .badge-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .badge-content {
        flex: 2;
        min-width: 300px;
    }

    .badge-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #fff;
    }

    .badge-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .badge-content ul {
        list-style: none;
        padding: 0;
    }

    .badge-content li {
        margin-bottom: 15px;
        font-size: 16px;
        display: flex;
        align-items: flex-start;
    }

    .badge-content i {
        margin-right: 10px;
        font-size: 20px;
        color: #fff;
    }

    /* Delivery Methods Tabs */
    .delivery-methods {
        padding: 60px 0;
        background-color: #fff;
    }

    .delivery-tabs {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .tab {
        padding: 15px 25px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #666;
        transition: all 0.3s ease;
    }

    .tab i {
        font-size: 18px;
    }

    .tab.active {
        color: #2c83c3;
        border-bottom-color: #2c83c3;
    }

    .tab:hover:not(.active) {
        color: #333;
        background-color: #f5f5f5;
    }

    .delivery-content {
        display: none;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }

    .delivery-content.active {
        display: flex;
    }

    .delivery-details {
        flex: 1;
        min-width: 300px;
    }

    .delivery-details h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #333;
    }

    .delivery-details p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .delivery-details ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .delivery-details li {
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
        color: #555;
    }

    .delivery-details li i {
        position: absolute;
        left: 0;
        top: 4px;
        color: #2c83c3;
    }

    .delivery-image {
        flex: 1;
        min-width: 300px;
    }

    .delivery-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Who Should Attend */
    .audience {
        padding: 60px 0;
        background-color: #f8f9fa;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .audience-card {
        background: #fff;
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .audience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .audience-card i {
        font-size: 40px;
        color: #2c83c3;
        margin-bottom: 15px;
    }

    .audience-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .audience-card p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .badge-container,
        .delivery-content {
            flex-direction: column;
        }
        
        .badge-image,
        .delivery-image {
            width: 100%;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .delivery-tabs {
            flex-wrap: wrap;
        }
        
        .tab {
            flex: 1 0 120px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .benefits-grid,
        .audience-grid {
            grid-template-columns: 1fr;
        }
        
        .benefit-card,
        .audience-card {
            padding: 20px;
        }
        
        .tab {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .delivery-details h3 {
            font-size: 24px;
        }
    }
/* =============================================
       QUALITY MANAGEMENT SYSTEMS COURSE
       Additional Styles for QMS Course ends here
============================================= */






/* =============================================
SAFETY MANAGEMENT SYSTEMS COURSE
Additional Styles for SMS Course
============================================= */

/* Highlights Section */
.highlights {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    margin-right: 20px;
}

.highlight-icon i {
    font-size: 30px;
    color: #2c83c3;
}

.highlight-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.highlight-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* SMS Framework Section */
.sms-framework {
    padding: 60px 0;
    background-color: #fff;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light);
    font-size: 60px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c83c3;
    position: relative;
}

.step-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-content ul {
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    color: #555;
}

/* Interactive Learning Section */
.interactive-learning {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.learning-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.learning-image {
    flex: 1;
    min-width: 300px;
}

.learning-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learning-content {
    flex: 1;
    min-width: 300px;
}

.learning-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.learning-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.learning-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.method {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method i {
    font-size: 24px;
    color: #2c83c3;
    margin-bottom: 10px;
    display: block;
}

.method span {
    font-size: 14px;
    color: #555;
}

/* Certification Section */
.certification {
    padding: 60px 0;
    background-color: #2c83c3;
    color: #fff;
}

.certification .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.certification-badge {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.certification-badge img {
    max-width: 100%;
    height: auto;
}

.certification-content {
    flex: 2;
    min-width: 300px;
}

.certification-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark);
}

.certification-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certification-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.certification-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.certification-content i {
    margin-right: 10px;
    font-size: 20px;
}

.certification-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .learning-container,
    .certification .container {
        flex-direction: column;
    }
    
    .learning-image,
    .certification-badge {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .highlight-cards,
    .framework-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 25px;
    }
    
    .learning-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .learning-content h2 {
        font-size: 28px;
    }
    
    .certification-content h2 {
        font-size: 28px;
    }
    
    .certification-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* =============================================
SAFETY MANAGEMENT SYSTEMS COURSE
Additional Styles for SMS Course ends here
============================================= 







/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
/* Hero Section aircraft maintenance */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/bas.jpg') !important;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

/* Course Table Section */
.course-table-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.course-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.course-table.visible {
    opacity: 1;
    transform: translateX(0);
}

.course-table th, .course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.course-table th {
    background-color: #2c83c3;
    color: white;
    font-weight: 600;
}

.course-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.course-table tr:hover {
    background-color: #e9f5ff;
}

.course-table td:first-child {
    font-weight: bold;
    color: #2c83c3;
}

/* Responsive Table */
@media (max-width: 768px) {
    .course-table {
        display: block;
        overflow-x: auto;
    }
    
    .course-table th, .course-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: #fff;
}

.testimonials .section-title {
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(44, 131, 195, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #2c83c3;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Instructors Section */
.instructors {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.instructors .section-title {
    margin-bottom: 40px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-10px);
}

.instructor-img {
    height: 250px;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-img img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 20px;
}

.instructor-info h3 {
    margin: 0 0 5px 0;
    color: #2c83c3;
}

.instructor-info p {
    margin: 0;
    color: #666;
}

.instructor-info p:first-of-type {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-grid {
        grid-template-columns: 1fr;
    }
}












.course-table-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.course-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.course-table th, 
.course-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.course-table th {
    background-color: #003366;
    color: white;
    font-weight: 600;
}

.course-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.course-table tr:hover {
    background-color: #eef7ff;
}

.course-table ul, 
.course-table ol {
    margin: 0;
    padding-left: 20px;
}

.course-table li {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .course-table-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .course-table th, 
    .course-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .course-table-container {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .course-table th, 
    .course-table td {
        padding: 8px;
        font-size: 13px;
    }
    
    .course-table ul, 
    .course-table ol {
        padding-left: 15px;
    }
}