* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #88bde1;
    --secondary-color: #003366;
    --secondary-dark: #001f3f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Base responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Navigation Bar */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.6rem 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.top-nav-left {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.top-nav-label {
    color: rgba(0, 51, 102, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.top-nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav-link:hover {
    color: var(--secondary-dark);
}

.top-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.top-nav-link:hover::after {
    width: 100%;
}

.top-nav-text {
    color: var(--secondary-color);
    font-weight: 500;
}

.top-nav-right {
    display: flex;
    align-items: center;
}

.top-nav-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.top-nav-btn:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Main Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    display: block;
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: none;
}

.logo img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
    padding: 5px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 120px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-style: italic;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 60px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* Drone Services Section - Compact Card Design */
.drone-services {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(136, 189, 225, 0.95) 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.drone-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.drone-header-compact {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    padding: 0;
}

.drone-header-compact h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.drone-header-compact p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    opacity: 0.9;
    margin: 0 auto;
    line-height: 1.4;
    max-width: 700px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.drone-images-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.drone-image-top-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.drone-image-top-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.drone-image-top-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.drone-content-compact {
    display: block;
}

.drone-features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.drone-feature-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.drone-feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.drone-feature-item h3 {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.drone-feature-item p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.drone-cta-compact {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    grid-column: 1 / -1;
}

.btn-drone-compact {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-drone-compact:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.btn-drone-compact-secondary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-drone-compact-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.drone-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/agras.jpg') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.drone-services-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.drone-hero-content {
    color: var(--secondary-color);
}

.drone-season-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.drone-hero-content h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.drone-hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.95;
}

.drone-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.drone-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.drone-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drone-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.95) 0%, transparent 100%);
    padding: 2rem;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.btn-drone-primary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-drone-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.drone-services-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card.feature-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--secondary-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.drone-services-details {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.drone-details-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-type {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.service-type:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
}

.service-type h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-type p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.drone-details-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.drone-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drone-services-gallery {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.drone-services-gallery h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.drone-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.drone-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.drone-gallery-item.large {
    grid-row: 1 / -1;
}

.drone-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.drone-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.drone-gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9) 0%, transparent 100%);
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.drone-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drone-services-cta-section {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 3px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content > p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-drone-cta-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.btn-drone-cta-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

.btn-drone-cta-secondary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-drone-cta-secondary span:first-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-drone-cta-secondary span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
}

.btn-drone-cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.drone-services-text {
    color: var(--secondary-color);
}

.drone-services-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.drone-services-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.drone-services-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.drone-services-cta {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
}

.drone-services-urgent {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.drone-services-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .drone-services {
        padding: 1.5rem 0;
    }

    .drone-services {
        padding: 1.25rem 0;
    }

    .drone-header-compact {
        margin-bottom: 0.875rem;
    }

    .drone-header-compact h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .drone-header-compact p {
        font-size: 0.9rem;
    }

    .drone-images-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        margin-bottom: 0.875rem;
    }

    .drone-image-top-item img {
        height: 160px;
        object-fit: cover;
    }

    .drone-content-compact {
        display: block;
    }

    .drone-features-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-bottom: 0.875rem;
    }

    .drone-feature-item {
        padding: 0.75rem;
    }

    .drone-feature-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .drone-feature-item p {
        font-size: 0.75rem;
    }

    .drone-cta-compact {
        flex-direction: row;
        gap: 0.6rem;
    }

    .btn-drone-compact,
    .btn-drone-compact-secondary {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }


/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.about-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-card .card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.about-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.3), rgba(0, 51, 102, 0.7));
}

.about-card .card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    text-align: center;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    flex: 1;
}

/* Values Grid - Compact */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.value-item:hover {
    background: #e8f0f8;
}

.value-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.value-item div {
    flex: 1;
}

.value-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.value-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.2;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text-dark);
}

.about-functions {
    margin: 3rem 0;
}

.about-functions h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.function-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.function-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.function-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.function-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.function-item:hover .function-image img {
    transform: scale(1.1);
}

.function-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.function-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-achievements {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 15px;
    color: var(--secondary-color);
}

.about-achievements h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.achievements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.3);
    padding: 0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
}

.achievement-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-text {
    padding: 1.25rem;
}

.achievement-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.achievement-text p {
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.9;
    font-size: 0.95rem;
}

.about-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Official Launch Milestones */
.about-milestones {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.about-milestones h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.about-milestones > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.milestone-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.milestone-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Awards Section */
.about-awards {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-awards h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.about-awards > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.award-item {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.award-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.award-item:hover .award-image img {
    opacity: 0.9;
}

.award-text {
    padding: 1.25rem;
}

.award-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.award-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partners Section */
.about-partners {
    margin: 3rem 0;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.partners-text h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partners-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.partners-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.partners-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .partners-content {
        grid-template-columns: 1fr;
    }

    .outreach-featured-grid {
        grid-template-columns: 1fr;
    }

    .outreach-featured-main {
        min-height: 300px;
    }

    .outreach-school-grid {
        grid-template-columns: 1fr;
    }

    .outreach-school-main {
        min-height: 250px;
    }

    .outreach-school-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .outreach-school-item img {
        min-height: 100px;
    }

    .outreach-main-image {
        height: auto;
        min-height: 200px;
        max-height: 400px;
    }

    .outreach-main-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .outreach-gallery-item {
        height: auto;
        min-height: 120px;
        max-height: 250px;
    }

    .outreach-events {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .outreach-event-item {
        height: auto;
        min-height: 150px;
    }

    .outreach-event-item img {
        height: auto;
        min-height: 150px;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .spaceweek-grid {
        grid-template-columns: 1fr;
    }

    .spaceweek-image {
        height: auto;
        min-height: 150px;
    }

    .spaceweek-image img {
        height: auto;
        min-height: 150px;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .outreach-text {
        padding: 1rem;
    }

    /* Drone Services Mobile Fixes */
    .drone-services {
        padding: 1rem 0;
    }

    .drone-header-compact {
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }

    .drone-header-compact h2 {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }

    .drone-header-compact p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .drone-images-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .drone-image-top-item img {
        height: 140px;
        object-fit: cover;
    }

    .drone-content-compact {
        display: block;
    }

    .drone-features-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .drone-feature-item {
        padding: 0.65rem;
    }

    .drone-feature-item h3 {
        font-size: 0.85rem;
    }

    .drone-feature-item p {
        font-size: 0.7rem;
    }

    .drone-cta-compact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-drone-compact,
    .btn-drone-compact-secondary {
        width: 100%;
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
}

/* Divisions Section */
.divisions {
    background: var(--bg-light);
}

.divisions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.division-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.division-card.division-highlight {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid rgba(0, 51, 102, 0.2);
}

.division-card.division-highlight .division-content h3 {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.division-card.division-highlight .division-intro {
    background: rgba(0, 51, 102, 0.1);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
}

.division-card.division-highlight .division-section h4 {
    color: var(--secondary-color);
}

.division-card.division-highlight .division-section h4::before {
    background: var(--secondary-color);
}

.division-card.division-highlight .division-list {
    color: var(--secondary-color);
}

.division-card.division-highlight .division-list li {
    color: var(--secondary-color);
}

.division-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.infrastructure-application {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(136, 189, 225, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.infrastructure-application:hover {
    background: rgba(136, 189, 225, 0.15);
    transform: translateX(3px);
}

.infrastructure-application h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.infrastructure-application p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.highlight-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.division-image {
    height: 200px;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.division-card:hover .division-image img {
    transform: scale(1.1);
}

.division-content {
    padding: 1.5rem;
}

.division-card.expanded .division-content {
    padding: 1.5rem;
}

.division-thumb {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.division-thumb-img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--bg-light);
}

.division-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.division-intro {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
}

.division-details {
    margin-top: 1rem;
}

.division-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.division-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.division-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.division-section h4::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--secondary-color);
    margin-right: 0.6rem;
    border-radius: 2px;
}

.division-list {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 0;
}

.division-list li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.division-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.division-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.division-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Programs Section */
.programs {
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.program-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
}

.program-link {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cors-link {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cors-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Outreach Section */
.outreach {
    background: var(--bg-light);
}

.outreach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.outreach-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.outreach-main-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.outreach-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outreach-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.outreach-gallery-item {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-right: 2px solid var(--white);
}

.outreach-gallery-item:last-child {
    border-right: none;
}

.outreach-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-light);
    transition: transform 0.3s ease;
}

.outreach-gallery-item:hover img {
    transform: scale(1.1);
}

.outreach-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.outreach-event-item {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outreach-event-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.outreach-event-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.outreach-event-text {
    padding: 1rem;
}

.outreach-event-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.outreach-event-text p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.outreach-spaceweek {
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 2px solid var(--secondary-color);
}

.outreach-spaceweek h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.outreach-spaceweek > p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.spaceweek-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spaceweek-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.spaceweek-image:hover {
    transform: translateY(-3px);
}

.spaceweek-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.outreach-text {
    padding: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.outreach-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    text-align: center;
}

.outreach-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

/* ZITF and Exhibitions - Featured Section */
.outreach-featured {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.outreach-featured h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.outreach-featured > p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.outreach-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.outreach-featured-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.outreach-featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.outreach-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

.outreach-featured-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.outreach-featured-overlay p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.outreach-featured-secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outreach-featured-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.outreach-featured-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outreach-featured-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.outreach-featured-text {
    padding: 1rem;
}

.outreach-featured-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.outreach-featured-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* School Outreach */
.outreach-school {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.outreach-school h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
}

.outreach-school > p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.outreach-school-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.outreach-school-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.outreach-school-main img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.outreach-school-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.outreach-school-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.outreach-school-item:hover {
    transform: scale(1.05);
}

.outreach-school-item img {
    width: 100%;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    display: block;
}

.outreach-spaceweek {
    margin-top: 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.outreach-spaceweek h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.outreach-spaceweek > p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spaceweek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.spaceweek-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spaceweek-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.spaceweek-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.spaceweek-image:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Jobs Section */
.jobs {
    background: var(--white);
}

.jobs-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.job-image-featured {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 140px;
    max-height: 500px;
}

.job-image-featured img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.job-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--bg-light);
}

.job-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.job-header h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.4;
}

.btn-job-preview {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-job-preview:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.job-body {
    padding: 1.5rem;
}

.job-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(136, 189, 225, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.job-intro {
    margin-bottom: 1.25rem;
}

.job-intro p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.job-highlight {
    background: var(--bg-light);
    padding: 1rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.job-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.job-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.job-section > p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.job-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.job-list li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.job-list li:last-child {
    border-bottom: none;
}

.job-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.job-qualifications li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
}

.job-additional {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.job-additional p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.job-application {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.25rem;
}

.job-application p {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.job-application a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.job-application a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.job-closing {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.85rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .jobs-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .job-image-featured {
        position: static;
        max-height: 300px;
    }

    .job-image-featured img {
        height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .jobs-content {
        gap: 1rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
    }

    .job-header h3 {
        font-size: 1.1rem;
        min-width: auto;
    }

    .btn-job-preview {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }

    .job-body {
        padding: 1.25rem;
    }

    .job-section h4 {
        font-size: 1rem;
    }

    .job-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
        padding-left: 1.1rem;
    }
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-details {
    width: 100%;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-details a:hover::after {
    width: 100%;
}


/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.footer-logo img {
    display: none;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-dark);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 51, 102, 0.2);
    color: var(--secondary-color);
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .top-nav-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 20px;
    }

    .top-nav-left {
        gap: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .top-nav-item {
        font-size: 0.8rem;
    }

    .top-nav-label {
        font-size: 0.7rem;
    }

    .top-nav-right {
        width: 100%;
        justify-content: center;
    }

    .top-nav-btn {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }

    .navbar {
        top: 40px;
    }

    .hero {
        margin-top: 120px;
        padding-top: 0;
        height: 65vh;
        min-height: 450px;
    }

    .logo img {
        height: 70px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-nav {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
        position: fixed;
    }

    .hero {
        margin-top: 0 !important;
        padding-top: 70px;
    }

    .nav-container {
        padding: 0.5rem 15px;
    }

    .logo img {
        height: 32px;
        max-width: 120px;
    }

    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1003;
    }

    .hamburger span {
        background: var(--primary-color) !important;
        width: 25px !important;
        height: 3px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-menu > li > a {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 2.5rem;
    }

    .hero {
        margin-top: 0 !important;
        padding-top: 70px;
        height: 60vh;
        min-height: 400px;
    }

    .hero-nav {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }

    .hero-indicators {
        bottom: 50px;
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .outreach-gallery {
        grid-template-columns: 1fr;
    }

    .outreach-events {
        grid-template-columns: 1fr;
    }

    .spaceweek-grid {
        grid-template-columns: 1fr;
    }

    .division-content {
        flex-direction: column;
    }

    .division-image {
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: 400px;
    }

    .division-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .division-details {
        width: 100%;
    }

    .division-thumb-img {
        min-height: 150px;
        max-height: 200px;
    }

    .division-content {
        padding: 1.25rem;
    }

    .division-content h3 {
        font-size: 1.2rem;
    }

    .division-intro {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .division-section h4 {
        font-size: 1rem;
    }

    .division-list li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
        padding-left: 1rem;
    }

    .division-highlight-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .highlight-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .highlight-content h4 {
        font-size: 0.95rem;
    }

    .highlight-content p {
        font-size: 0.8rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .program-image {
        height: auto;
        min-height: 200px;
        max-height: 350px;
    }

    .program-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .program-content {
        padding: 1.5rem;
    }

    .program-content h3 {
        font-size: 1.25rem;
    }

    .program-content p {
        font-size: 0.9rem;
    }

    .program-meta {
        flex-wrap: wrap;
    }

    .program-meta img {
        width: 80px;
        height: 80px;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .achievement-item {
        flex-direction: column;
    }

    .achievement-image {
        width: 100%;
        height: 200px;
    }

    .achievement-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
        width: 100%;
        height: auto;
        min-height: 160px;
        max-height: 300px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .award-item {
        flex-direction: column;
    }

    .award-image {
        width: 100%;
        height: 200px;
    }

    .award-image img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .milestone-image {
        height: auto;
        min-height: 200px;
        max-height: 350px;
    }

    .milestone-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: 350px;
    }

    .partners-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .partners-text h3 {
        font-size: 1.4rem;
    }

    .partners-text p {
        font-size: 0.9rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: 400px;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }

    .contact-image-wrapper {
        min-height: 300px;
        order: -1;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-details h4 {
        font-size: 0.85rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .section-header {
        padding: 2rem 0 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
    }

    .nav-container {
        padding: 0.5rem 10px;
    }

    .logo {
        flex-shrink: 1;
    }

    .logo-img {
        display: none !important;
    }

    .logo-text {
        display: block !important;
        font-size: 1.25rem;
    }

    .hero {
        margin-top: 0 !important;
        padding-top: 60px;
    }

    .nav-menu {
        top: 50px;
        max-height: calc(100vh - 50px);
    }

    .hero {
        padding-top: 50px;
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .section-header {
        padding: 1.5rem 0 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    .division-content {
        padding: 1rem;
    }

    .division-content h3 {
        font-size: 1.1rem;
    }

    .division-intro {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .division-section h4 {
        font-size: 0.95rem;
    }

    .division-list li {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .infrastructure-application {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .infrastructure-application h5 {
        font-size: 1rem;
    }

    .infrastructure-application p {
        font-size: 0.9rem;
    }

    .division-thumb-img {
        min-height: 120px;
        max-height: 180px;
    }

    .program-content {
        padding: 1.25rem;
    }

    .program-content h3 {
        font-size: 1.1rem;
    }

    .program-content p {
        font-size: 0.85rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.85rem;
    }

    .gallery-item {
        height: auto;
        min-height: 200px;
        max-height: 400px;
    }

    .gallery-item img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .outreach-featured-main {
        min-height: 250px;
        max-height: 500px;
    }

    .outreach-featured-main img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .outreach-featured-item {
        height: auto;
    }

    .outreach-featured-item img {
        height: auto;
        min-height: 150px;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .achievement-image {
        height: auto;
        min-height: 160px;
        max-height: 300px;
    }

    .achievement-image img {
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .job-body {
        padding: 1rem;
    }

    .job-header {
        padding: 1rem;
    }

    .job-header h3 {
        font-size: 1rem;
    }

    .job-section h4 {
        font-size: 1rem;
    }

    .job-list li {
        font-size: 0.8rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo img {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .outreach-main-image {
        height: 200px;
    }

    .outreach-gallery-item {
        height: 120px;
    }

    .outreach-gallery-item img {
        object-fit: contain;
        background: var(--bg-light);
    }

    .outreach-event-item img {
        height: 150px;
    }

    .division-highlight-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .highlight-item {
        padding: 0.6rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        font-size: 1.75rem;
    }

    .highlight-content h4 {
        font-size: 0.9rem;
    }

    .highlight-content p {
        font-size: 0.75rem;
    }

    .drone-services {
        padding: 1rem 0;
    }

    .drone-header-compact {
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }

    .drone-header-compact h2 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .drone-header-compact p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .drone-images-top {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.65rem;
    }

    .drone-image-top-item img {
        height: auto;
        min-height: 150px;
        max-height: 200px;
        object-fit: contain;
        object-position: center;
        background: var(--bg-light);
    }

    .drone-content-compact {
        display: block;
    }

    .drone-features-compact {
        gap: 0.5rem;
        margin-bottom: 0.65rem;
    }

    .drone-feature-item {
        padding: 0.6rem;
    }

    .drone-feature-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .drone-feature-item p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .drone-cta-compact {
        gap: 0.5rem;
    }

    .btn-drone-compact,
    .btn-drone-compact-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .drone-services-subtitle {
        font-size: 0.95rem;
    }

    .drone-services-image img {
        height: 250px;
    }

    .benefit-item {
        padding: 1rem;
    }

    .drone-services-cta {
        padding: 1.25rem;
    }

    .drone-services-urgent {
        font-size: 0.95rem;
    }

    .drone-services {
        padding: 2rem 0;
    }

    .drone-hero-content h2 {
        font-size: 1.5rem;
    }

    .drone-hero-subtitle {
        font-size: 0.95rem;
    }

    .drone-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .drone-hero-image {
        height: 250px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .drone-services-details {
        padding: 1.5rem;
    }

    .drone-details-content h3 {
        font-size: 1.5rem;
    }

    .drone-gallery-item {
        height: 200px;
    }

    .drone-services-cta-section {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .contact-image-wrapper {
        min-height: 250px;
        order: -1;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .contact-form-wrapper h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-details h4 {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .spaceweek-image img {
        height: 150px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Comprehensive Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    /* Ensure all containers are responsive */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    /* Fix all sections padding */
    section {
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
    }

    /* Responsive typography */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix specific image containers */
    .division-image,
    .program-image,
    .gallery-item,
    .outreach-main-image,
    .outreach-gallery-item,
    .outreach-event-item,
    .achievement-image,
    .award-image,
    .milestone-image,
    .contact-image-wrapper,
    .job-image-featured {
        width: 100% !important;
        max-width: 100% !important;
    }

    .division-image img,
    .program-image img,
    .gallery-item img,
    .outreach-main-image img,
    .outreach-gallery-item img,
    .outreach-event-item img,
    .achievement-image img,
    .award-image img,
    .milestone-image img,
    .contact-image-wrapper img,
    .job-image-featured img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix text overflow */
    p, li, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix grid layouts */
    .about-grid,
    .divisions-grid,
    .programs-grid,
    .gallery-grid,
    .outreach-gallery,
    .outreach-events,
    .spaceweek-grid,
    .functions-grid,
    .awards-grid,
    .milestones-grid,
    .contact-info {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* Fix fixed widths */
    .outreach-content,
    .contact-content,
    .jobs-content {
        max-width: 100% !important;
        width: 100%;
    }

    /* Responsive cards */
    .about-card,
    .division-card,
    .program-card,
    .gallery-item,
    .outreach-card,
    .contact-item,
    .job-card {
        width: 100%;
        max-width: 100%;
    }

    /* Fix section headers */
    .section-header {
        padding: 0 15px;
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem !important;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }

    section {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }

    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
    }

    /* Drone Services Header - Extra Small Screens */
    .drone-services {
        padding: 0.875rem 0;
    }

    .drone-header-compact {
        margin-bottom: 0.65rem;
        padding: 0 0.5rem;
    }

    .drone-header-compact h2 {
        font-size: 1.15rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }

    .drone-header-compact p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .drone-content-compact {
        gap: 0.6rem;
    }

    .drone-image-compact img {
        min-height: 150px;
        max-height: 200px;
    }

    .drone-features-compact {
        gap: 0.45rem;
        margin-bottom: 0.6rem;
    }

    .drone-feature-item {
        padding: 0.55rem;
    }

    .drone-feature-item h3 {
        font-size: 0.75rem;
    }

    .drone-feature-item p {
        font-size: 0.65rem;
    }

    .btn-drone-compact,
    .btn-drone-compact-secondary {
        padding: 0.45rem 0.9rem;
        font-size: 0.7rem;
    }
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

