/* Enhanced Mobile Zoom Prevention & Responsiveness */
* {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile-specific fixes */
@media screen and (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
    }
    
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
    }
    
    img, video, canvas {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    input, textarea, select {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    button {
        font-size: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        border-radius: 0;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    a {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Ultra-mobile fixes */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    body {
        font-size: 14px;
    }
    
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Prevent zoom on focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent double-tap zoom */
a, button, input, textarea, select, .btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Viewport fixes */
@viewport {
    width: device-width;
    initial-scale: 1.0;
    maximum-scale: 1.0;
    user-scalable: no;
    zoom: 1.0;
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    html {
        -webkit-text-size-adjust: 100%;
    }
}

/* Android fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}

/* Global Mobile Responsiveness Fixes */
@media screen and (max-width: 768px) {
    /* General fixes */
    section {
        padding: 60px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Typography fixes */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Image fixes */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    /* Button fixes */
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
        padding: 1rem !important;
        font-size: 0.9rem !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Form fixes */
    .form-group {
        margin-bottom: 1rem;
    }
    
    input, textarea, select {
        width: 100% !important;
        font-size: 16px !important;
        padding: 0.8rem !important;
        min-height: 44px;
        border-radius: 8px !important;
    }
    
    /* Grid fixes */
    .grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Flex fixes */
    .flex {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Card fixes */
    .card, .position-card, .benefit-card, .value-card, .feature-item, .content-card {
        margin-bottom: 1rem;
        padding: 1.5rem !important;
    }
    
    /* Navigation fixes */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #0066cc, #004499);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero slider fixes */
    .hero-slider-section {
        margin-top: 70px;
        height: 100vh;
        min-height: 500px;
    }
    
    .slide {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 15px !important;
        text-align: center;
    }
    
    .slide-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }
    
    .slide-description {
        font-size: clamp(0.9rem, 3vw, 1.2rem) !important;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 20px;
        padding: 10px 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* About section fixes */
    .about-hero {
        padding: 2rem !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-text h3 {
        font-size: 1.5rem !important;
    }
    
    .hero-visual {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1.5rem !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Gallery fixes */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1rem !important;
    }
    
    .gallery-image {
        height: 180px !important;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Contact fixes */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form-wrapper {
        padding: 2rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Positions fixes */
    .positions-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .position-card {
        padding: 1.5rem !important;
    }
    
    /* Careers fixes */
    .careers-hero {
        padding: 2rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .departments-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .life-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Ultra-mobile fixes */
@media screen and (max-width: 480px) {
    section {
        padding: 40px 0 !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem) !important;
    }
    
    h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem) !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.8rem !important;
        min-height: 40px;
    }
    
    .hero-slider-section {
        min-height: 400px !important;
    }
    
    .slide {
        min-height: 400px !important;
    }
    
    .slide-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    }
    
    .slide-description {
        font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-image {
        height: 150px !important;
    }
    
    .stats-container {
        grid-template-columns: 1fr !important;
    }
    
    .content-card,
    .feature-item,
    .position-card {
        padding: 1rem !important;
    }
    
    .header-icon,
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    .about-cta {
        padding: 1.5rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Landscape mobile fixes */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-slider-section {
        min-height: 100vh;
    }
    
    .slide {
        min-height: 100vh;
    }
    
    .slide-content {
        padding: 1rem 15px !important;
    }
    
    .slide-title {
        font-size: clamp(1.2rem, 4vw, 2rem) !important;
    }
    
    .slide-description {
        font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
        margin-bottom: 1rem !important;
    }
}
.header {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: #87CEEB;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #87CEEB;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 70px;
    overflow: hidden;
    background: #001a33;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #001a33;
}

.slide-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #001a33, #003366);
    font-size: 4rem;
    opacity: 0.3;
    color: white;
}

.slide-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #001a33, #003366);
}

.slide-loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: white;
    animation: slideInDown 0.8s ease-out;
}

.slide-badge span {
    font-size: 1.2rem;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.slide-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-slide.btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-slide.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.btn-slide.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-slide.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 26, 51, 0.8) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 26, 51, 0.9) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge span {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-line.highlight {
    background: linear-gradient(135deg, #87CEEB, #ffffff, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #87CEEB;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero .arrow {
    transition: transform 0.3s ease;
}

.btn-hero:hover .arrow {
    transform: translateX(5px);
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 102, 204, 0.2) 0%,
        transparent 50%,
        rgba(135, 206, 235, 0.1) 100%
    );
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-element.plane {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.float-element.cloud {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.float-element.star {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-dot {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}
.hero {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 68, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #001a33;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 26, 51, 0.4) 0%,
        rgba(0, 51, 102, 0.3) 25%,
        rgba(0, 68, 153, 0.25) 50%,
        rgba(0, 102, 204, 0.2) 75%,
        rgba(135, 206, 235, 0.15) 100%
    );
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 26, 51, 0.2) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 26, 51, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 90vw;
    padding: 0 20px;
    z-index: 4;
    animation: slideContentUp 1s ease-out;
    width: 100%;
    box-sizing: border-box;
}

@keyframes slideContentUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #87CEEB 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide-content h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0066cc 0%, #87CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.3;
}

.slide-content span {
    color: #87CEEB;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.slide-content span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #87CEEB, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.slide-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
}

.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    min-width: fit-content;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 50%, #003377 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 
        0 8px 25px rgba(0, 102, 204, 0.3),
        0 4px 12px rgba(0, 102, 204, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004499 0%, #003377 50%, #002255 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 102, 204, 0.4),
        0 8px 20px rgba(0, 102, 204, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.plane-animation {
    font-size: 8rem;
    animation: fly 3s ease-in-out infinite;
}

.airport-icon {
    font-size: 8rem;
    animation: float 4s ease-in-out infinite;
}

.cloud-animation {
    font-size: 8rem;
    animation: drift 5s ease-in-out infinite;
}

.helmet-icon {
    font-size: 8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(40px) translateY(0); }
    75% { transform: translateX(20px) translateY(10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(15px) translateY(-10px); }
    66% { transform: translateX(-15px) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004499, #003377);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23e6f3ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #001a33;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-hero {
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plane" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-size="20" text-anchor="middle" fill="rgba(255,255,255,0.1)">✈️</text></pattern></defs><rect width="100" height="100" fill="url(%23plane)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.about-stats {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.about-content {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #87CEEB);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.content-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001a33;
}

.card-body p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-features {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-features h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(135, 206, 235, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    position: relative;
    z-index: 1;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" font-size="15" text-anchor="middle" fill="rgba(255,255,255,0.1)">⭐</text></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-large.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-large.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* About Section Mobile Responsive */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .about-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .about-hero {
        padding: 2rem;
        margin-bottom: 50px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h3 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .card-body p {
        font-size: 0.95rem;
    }

    .about-features h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about-header {
        margin-bottom: 30px;
    }

    .about-header h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .about-header p {
        font-size: 1rem;
    }

    .about-hero {
        padding: 1.5rem;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .content-grid {
        gap: 1rem;
    }

    .content-card {
        padding: 1.2rem;
    }

    .card-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .card-header h4 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .about-features h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .about-cta {
        padding: 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-radius: 15px;
    border: 2px solid #e6f3ff;
}

.stat h3 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.airport-icon {
    font-size: 6rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Careers Section */
.careers {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 100px 0;
    position: relative;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e6f3ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.careers-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.careers-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #001a33;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.careers-hero {
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plane" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-size="20" text-anchor="middle" fill="rgba(255,255,255,0.1)">✈️</text></pattern></defs><rect width="100" height="100" fill="url(%23plane)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.careers-values {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.careers-values h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #87CEEB);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.life-at-indigo {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    position: relative;
    z-index: 1;
}

.life-at-indigo h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 3rem;
}

.life-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.life-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.life-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fbff;
    border-radius: 12px;
    border: 1px solid #e6f3ff;
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-item span:last-child {
    color: #0066cc;
    font-weight: 600;
}

.life-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fbff, #e6f3ff);
    border-radius: 16px;
    border: 2px dashed #0066cc;
}

.image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #0066cc;
    font-weight: 600;
}

.departments {
    position: relative;
    z-index: 1;
}

.departments h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 3rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dept-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(135, 206, 235, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.dept-card:hover::before {
    opacity: 1;
}

.dept-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.dept-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 1rem;
}

.dept-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dept-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.dept-link:hover {
    color: #004499;
    transform: translateX(5px);
}
/* Careers Section Mobile Responsive */
@media (max-width: 768px) {
    .careers {
        padding: 60px 0;
    }

    .careers-header {
        margin-bottom: 40px;
    }

    .careers-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .careers-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .careers-hero {
        padding: 2rem;
        margin-bottom: 50px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .careers-values {
        margin-bottom: 50px;
    }

    .careers-values h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

    .life-at-indigo {
        padding: 2rem;
        margin-bottom: 50px;
    }

    .life-at-indigo h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .life-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .life-text p {
        font-size: 1rem;
    }

    .life-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 0.8rem;
    }

    .image-placeholder {
        padding: 2rem;
    }

    .image-placeholder span {
        font-size: 3rem;
    }

    .departments h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dept-card {
        padding: 1.5rem;
    }

    .dept-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .dept-card h4 {
        font-size: 1.1rem;
    }

    .dept-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .careers {
        padding: 40px 0;
    }

    .careers-header {
        margin-bottom: 30px;
    }

    .careers-header h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .careers-header p {
        font-size: 1rem;
    }

    .careers-hero {
        padding: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .values-grid {
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .value-card h4 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .life-at-indigo {
        padding: 1.5rem;
    }

    .life-at-indigo h3 {
        font-size: 1.8rem;
    }

    .life-text p {
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .highlight-icon {
        font-size: 1rem;
    }

    .image-placeholder {
        padding: 1.5rem;
    }

    .image-placeholder span {
        font-size: 2.5rem;
    }

    .image-placeholder p {
        font-size: 0.9rem;
    }

    .departments h3 {
        font-size: 1.8rem;
    }

    .departments-grid {
        gap: 1rem;
    }

    .dept-card {
        padding: 1.2rem;
    }

    .dept-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .dept-card h4 {
        font-size: 1rem;
    }

    .dept-card p {
        font-size: 0.85rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e6f3ff;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
}

/* Positions Section */
.positions {
    padding: 80px 0;
    background: white;
}

.positions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.position-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    border: 2px solid #e6f3ff;
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: #0066cc;
    font-size: 1.5rem;
}

.position-type {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.position-details strong {
    color: #004499;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #004499, #003377);
    transform: translateY(-2px);
}

/* Enhanced Gallery Section */
.gallery {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 100px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%23e6f3ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.gallery-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #001a33;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #001a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #0066cc;
    background: white;
    color: #0066cc;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border-color: #0066cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 26, 51, 0.4) 30%,
        rgba(0, 26, 51, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.gallery-load-more {
    text-align: center;
    position: relative;
    z-index: 1;
}

.load-more-btn {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.load-more-btn:hover::before {
    left: 100%;
}

/* Gallery Item Animations */
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden class for filtering */
.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e6f3ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #001a33;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066cc, #001a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #87CEEB);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon span {
    font-size: 1.5rem;
    filter: none;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.card-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #004499;
    text-decoration: underline;
}

.airport-name {
    font-weight: 600;
    color: #0066cc;
}

.sub-text {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.hours-card {
    background: linear-gradient(135deg, #001a33, #003366);
    color: white;
}

.hours-card .card-content h3 {
    color: white;
}

.hours-card .card-content p {
    color: rgba(255, 255, 255, 0.8);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed .time {
    color: #ff6b6b;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #87CEEB, #0066cc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e6f3ff;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fbff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 8px;
    font-size: 0.85rem;
    color: #0066cc;
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-actions {
    margin-top: 1rem;
}

.form-actions .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-actions .btn:hover .btn-icon {
    transform: translateX(5px);
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001a33;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}
/* Gallery Section Mobile Responsive */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .gallery-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-image {
        height: 200px;
    }

    .overlay-content {
        padding: 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.2rem;
    }

    .overlay-content p {
        font-size: 0.85rem;
    }

    .view-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-header h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .gallery-header p {
        font-size: 1rem;
    }

    .gallery-filters {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-image {
        height: 180px;
    }

    .overlay-content {
        padding: 1rem;
    }

    .overlay-content h3 {
        font-size: 1.1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .view-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .load-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .contact-header p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 50px;
    }

    .contact-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon span {
        font-size: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .form-actions .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .contact-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 1rem;
        gap: 0.8rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon span {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.8rem;
        top: -8px;
        left: 12px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .hours-item .time {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    border: 2px solid #e6f3ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.contact-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.airport-name {
    color: #004499 !important;
    font-size: 1.1rem !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #e6f3ff;
}

.office-hours {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day strong {
    color: #0066cc;
    font-weight: 600;
}

.hours-day span {
    color: #666;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e6f3ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0066cc;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #0066cc;
}

.modal h2 {
    color: #0066cc;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #87CEEB;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e6f3ff;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e6f3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #87CEEB;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6f3ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #0066cc, #004499);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Slider Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider-section {
        margin-top: 70px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-badge {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .slide-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .slide-actions {
        gap: 1rem;
    }

    .btn-slide {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-indicators {
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .slide-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .slide-description {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-slide {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-width: 140px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 768px) {
    .hero-new {
        padding: 100px 15px 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }

    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .float-element {
        font-size: 1.5rem;
    }

    .hero-scroll {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 90px 10px 50px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .hero-description {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .hero-visual {
        max-width: 300px;
    }

    .float-element {
        font-size: 1.2rem;
    }
}
    .slide {
        height: 100vh;
        min-height: 600px;
    }

    .slide-content {
        max-width: 95vw;
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 10px;
    }

    .btn {
        padding: 14px 25px;
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        min-width: 120px;
    }

    .slide-overlay {
        padding: 0 15px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .slider-indicators {
        bottom: 25px;
        padding: 10px 15px;
        gap: 12px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .hero {
        padding: 100px 15px 50px;
        margin-top: 70px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .hours-day {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .hours-day strong {
        display: block;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.error-message {
    background: #f44336;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}
