/* ============================================
   MODERN PROFESSIONAL THEME - DIGITAL BOOSTERS
   ============================================ */

/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary: #006633;
    --primary-dark: #004d26;
    --primary-light: #e8f5ee;
    --primary-gradient: linear-gradient(135deg, #006633 0%, #008844 100%);
    
    /* Secondary Colors */
    --secondary: #c9a03d;
    --secondary-dark: #b08a2e;
    --secondary-light: #f5edd6;
    
    /* Accent Colors */
    --accent: #00b894;
    --accent-light: #e0f7f1;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --gray: #6c757d;
    --dark: #1e2a32;
    --dark-light: #2d3d4a;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, rgba(0,102,51,0.92) 0%, rgba(0,51,25,0.95) 100%);
    --footer-gradient: linear-gradient(135deg, #0a2a1c 0%, #004d26 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-hover: 0 15px 45px rgba(0,102,51,0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 35px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.nav-links a,
.btn,
.section-title,
.hero-title {
    font-family: var(--font-primary);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray); }

.bg-light { background-color: var(--light-gray); }
.bg-primary { background-color: var(--primary); }
.bg-white { background-color: var(--white); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.py-1 { padding: 20px 0; }
.py-2 { padding: 40px 0; }
.py-3 { padding: 60px 0; }
.py-4 { padding: 80px 0; }

/* ========== SECTION TITLES ========== */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary);
}



.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 15px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0,102,51,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,102,51,0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201,160,61,0.3);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201,160,61,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,102,51,0.2);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,255,255,0.3);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.05rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-left {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-right {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu li a.active {
    color: var(--white);
    background: var(--primary-gradient);
}

.nav-menu li a.btn-nav {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 25px;
}

.nav-menu li a.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,102,51,0.3);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: var(--hero-gradient);
    background-image: 
        linear-gradient(135deg, rgba(0,102,51,0.92) 0%, rgba(0,51,25,0.95) 100%),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(201,160,61,0.3);
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.hero-stat p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== STATS SECTION ========== */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--white);
    padding: 35px 20px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-primary);
}

.stat-card p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========== FOCUS AREAS ========== */
.focus-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.focus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border-bottom: 4px solid transparent;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.focus-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.focus-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.focus-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.focus-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== PROGRAMS SECTION ========== */
.programs-section {
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.program-card:hover::after {
    transform: scaleX(1);
}

.program-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    font-family: var(--font-primary);
    margin-bottom: 10px;
}

.program-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.program-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-primary);
}

.team-designation {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px 0 10px;
}

.team-expertise {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== FORMS ========== */
.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,102,51,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--footer-gradient);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        gap: 5px;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-card {
        padding: 25px 15px;
    }
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    .focus-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-wrapper {
        padding: 25px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-left {
        width: 40px;
        height: 40px;
    }
    .logo-right {
        width: 35px;
        height: 35px;
    }
    .logo-text h2 {
        font-size: 1rem;
    }
    .logo-text p {
        font-size: 0.55rem;
    }
}

/* ========== SCROLLBAR STYLING ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/* ========== TOP HEADER ========== */
.top-header {
    background: #0a2a1c;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-header-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-left a,
.top-header-left span {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header-left a:hover {
    color: #c9a03d;
}

.top-header-left i {
    color: #c9a03d;
    font-size: 0.75rem;
}

.top-header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-right a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.85rem;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.top-header-right a:hover {
    color: #c9a03d;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.top-header-right .admin-link {
    background: #c9a03d;
    color: #0a2a1c;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    width: auto;
    height: auto;
    gap: 5px;
}

.top-header-right .admin-link:hover {
    background: #b08a2e;
    color: #0a2a1c;
    transform: translateY(-2px);
}

/* ========== NAVIGATION - Updated ========== */
.navbar {
    background: var(--un-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--un-transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 6px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-left {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--un-blue);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.6rem;
    color: var(--un-gray-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--un-dark);
    padding: 8px 16px;
    border-radius: var(--un-radius-sm);
    transition: var(--un-transition);
    position: relative;
}

.nav-menu li a:hover {
    background: var(--un-blue-light);
    color: var(--un-blue);
}

.nav-menu li a.active {
    color: var(--un-blue);
    border-bottom: 2px solid var(--un-blue);
}

.nav-menu li a.btn-nav {
    background: var(--un-blue);
    color: var(--un-white);
    padding: 8px 20px;
    border-radius: var(--un-radius-sm);
    border-bottom: none;
}

.nav-menu li a.btn-nav:hover {
    background: var(--un-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,158,219,0.3);
}

/* ========== TOP HEADER ========== */
.top-header {
    background: #0a2a1c;
    color: rgba(255,255,255,0.8);
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-header-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-left span {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-header-left i {
    color: #c9a03d;
    font-size: 0.7rem;
}

.top-header-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-right a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.8rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.top-header-right a:hover {
    color: #c9a03d;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.top-header-right .admin-link {
    background: #c9a03d;
    color: #0a2a1c;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    width: auto;
    height: auto;
    gap: 5px;
}

.top-header-right .admin-link:hover {
    background: #b08a2e;
    color: #0a2a1c;
}

/* ========== MAIN NAVIGATION - FIXED ========== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

/* ===== LOGO AREA ===== */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-left {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #006633;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.logo-text p {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

/* ===== NAV MENU - FIXED ===== */
.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--dark);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-menu li a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.nav-menu li a.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    font-weight: 600;
}

.nav-menu li a.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,158,219,0.3);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    background: none;
    border: none;
    padding: 5px;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE - FIXED ===== */
@media (max-width: 1024px) {
    .nav-menu li a {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .top-header-left {
        justify-content: center;
        gap: 12px;
    }

    .top-header-left span {
        font-size: 0.7rem;
    }

    .top-header-right {
        justify-content: center;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: 15px 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        gap: 3px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 8px 15px;
        font-size: 0.85rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a.btn-primary {
        text-align: center;
        margin-top: 5px;
    }

    .mobile-toggle {
        display: block;
    }

    .logo-text h2 {
        font-size: 0.95rem;
    }

    .logo-text p {
        font-size: 0.5rem;
    }

    .logo-left {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .top-header-left {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-header-left span {
        font-size: 0.6rem;
    }

    .top-header-right a {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .top-header-right .admin-link {
        font-size: 0.55rem;
        padding: 2px 10px;
    }

    .logo-text h2 {
        font-size: 0.85rem;
    }

    .logo-text p {
        font-size: 0.45rem;
    }

    .logo-left {
        width: 32px;
        height: 32px;
    }
}