:root {
    /* Main Brand Colors */
    --primary-green: #2E7D32;
    --primary-orange: #FF9800;
    
    /* Color Palette */
    --green-light: #4CAF50;
    --green-dark: #1B5E20;
    --orange-light: #FFB74D;
    --orange-dark: #F57C00;
    
    /* Neutral Colors */
    --neutral-100: #FFFFFF;
    --neutral-200: #F5F5F5;
    --neutral-300: #E0E0E0;
    --neutral-400: #BDBDBD;
    --neutral-500: #9E9E9E;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;

    /* Accent Colors */
    --accent-success: #4CAF50;
    --accent-warning: #FFC107;
    --accent-error: #F44336;
    --accent-info: #2196F3;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none; /* Ensure no bullets appear */
}

ul li::marker,
ol li::marker {
    content: none;
}

body {
    line-height: 1.6;
    color: var(--neutral-900);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 165px; /* Header (125px) + News Banner (~40px) */
}

/* Navbar Styles */
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

    /* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--neutral-200);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    margin: 4px 0;
    transition: transform 0.3s ease,
                opacity 0.2s ease,
                margin 0.2s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background-color: var(--neutral-200);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--primary-orange);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--primary-orange);
}/* Responsive Navigation */

/* Main Navbar Default State */
.main-navbar {
    position: fixed;
    top: 45px; /* Adjust for the height of the top-bar */
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--neutral-100);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Container for all screen sizes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ensure desktop dropdowns work correctly */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu,
    .dropdown-submenu:hover .dropdown-submenu-list {
        display: block;
    }
}

/* --- Global Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Background Patterns & Icons */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5a25 25 0 110 50 25 25 0 010-50zm0 5a20 20 0 100 40 20 20 0 000-40zm-15 5l30 30M10 30h40' stroke='%232E7D32' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E") repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-green);
    color: var(--neutral-100);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn:hover {
    background: var(--green-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.secondary-btn {
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
}

.secondary-btn:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
}


/* --- PROFESSIONAL STICKY HEADER STYLES --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--neutral-100);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Gradient border for the header */
.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange), var(--primary-green));
}

/* Top Contact Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--neutral-100);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-orange);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.contact-item:hover {
    opacity: 1;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--neutral-100);
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

.notification-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-100);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 13px;
}

.notification-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-1px);
}

.notification-btn i {
    font-size: 16px;
}

/* Main Navigation - Redesigned */
.main-navbar {
    background: var(--neutral-100);
    padding: 0;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 16px;
    color: var(--neutral-600);
    font-weight: 500;
    margin-top: 1px;
    letter-spacing: 0.3px;
}

/* Compact Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
    background: rgba(46, 125, 50, 0.08);
}

/* Compact CTA Navigation Items */
.nav-cta .portal-link {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: var(--neutral-100);
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(255, 152, 0, 0.3);
}

.nav-cta .portal-link:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--primary-orange));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
    color: var(--neutral-100);
}

.nav-cta .apply-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--neutral-100);
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(46, 125, 50, 0.3);
    margin-left: 6px;
}

.nav-cta .apply-btn:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--primary-green));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.4);
    color: var(--neutral-100);
}

/* Updated Dropdown Styles */
.dropdown .dropdown-arrow {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--neutral-600);
}

/* Use + symbol for first level dropdown on mobile */
.nav-link .dropdown-arrow::before {
    content: '+';
    font-weight: 600;
}

.dropdown:hover > .nav-link .dropdown-arrow::before {
    content: '−';
}

@media (max-width: 768px) {
    .dropdown.active > .nav-link .dropdown-arrow::before {
        content: '−';
    }
}

.dropdown:hover > .nav-link .dropdown-arrow {
    color: var(--primary-green);
}

/* Redesigned Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--neutral-100);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--neutral-200);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    padding: 6px 0;
    margin-top: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--neutral-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    border-radius: 4px;
    margin: 0 6px;
}

.dropdown-link:hover {
    color: var(--neutral-100);
    background: var(--primary-green);
    transform: translateX(2px);
}

/* Move submenu arrow to the right side */
.submenu-arrow {
    font-size: 10px;
    transition: all 0.3s ease;
    color: var(--neutral-500);
    margin-left: auto;
    padding-left: 8px;
}

.dropdown-link:hover .submenu-arrow {
    color: var(--neutral-100);
}

/* Neutral Submenu Styles */
.dropdown-submenu .dropdown-submenu-list {
    position: absolute;
    top: -6px;
    left: 100%;
    margin-left: 6px;
    background: var(--neutral-200);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--neutral-300);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    padding: 6px 0;
}

/* Update submenu link colors for neutral background */
.dropdown-submenu .dropdown-submenu-list .dropdown-link {
    color: var(--neutral-700);
}

.dropdown-submenu .dropdown-submenu-list .dropdown-link:hover {
    background: var(--neutral-600);
    color: var(--neutral-100);
}

.dropdown-submenu:hover .dropdown-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.dropdown-submenu:hover .submenu-arrow {
    transform: rotate(90deg);
    color: var(--primary-green);
}

/* Icon Support in Dropdowns - moved to right */
.dropdown-link i {
    margin-left: auto;
    margin-right: 0;
    width: 14px;
    text-align: center;
    color: var(--neutral-500);
    transition: color 0.3s ease;
    font-size: 14px;
    padding-left: 8px;
}

.dropdown-link:hover i {
    color: var(--neutral-100);
}

/* For links that have both icons and submenu arrows */
.dropdown-link i + .submenu-arrow {
    margin-left: 8px;
}

/* Special Dropdown Items */
.dropdown-link.featured {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.05));
    border-left: 3px solid var(--primary-green);
    color: var(--green-dark);
    font-weight: 600;
    margin-left: 6px;
    border-radius: 0 4px 4px 0;
}

.dropdown-link.featured:hover {
    background: var(--primary-green);
    color: var(--neutral-100);
}

.dropdown-link.new::after {
    content: 'NEW';
    background: var(--accent-error);
    color: var(--neutral-100);
    padding: 1px 4px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    margin-left: 8px;
    order: 2;
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(46, 125, 50, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-green);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-green);
}


/* --- HERO SLIDESHOW STYLES --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--neutral-900);
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
    transition: filter 0.8s ease;
}

.slide.active img {
    filter: brightness(0.5) contrast(1.2);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--neutral-100);
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide-content .btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--neutral-100);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

.slide-content .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.5);
    background: linear-gradient(135deg, var(--green-dark), var(--primary-green));
}

/* Smoother Navigation Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--neutral-100);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    backdrop-filter: blur(15px);
    z-index: 4;
    opacity: 0.8;
}

.slide-btn:hover {
    background: rgba(46, 125, 50, 0.9);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.slide-btn.prev {
    left: 30px;
}

.slide-btn.next {
    right: 30px;
}

/* Smoother Dots */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.6);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Fade-in animation for slide content when transitioning */
.slide:not(.active) .slide-content h1,
.slide:not(.active) .slide-content p,
.slide:not(.active) .slide-content .btn {
    opacity: 0;
    transform: translateY(30px);
}

/* Ensure smooth transitions when slides change */
.slide {
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    transition: opacity 1.5s ease-in-out;
}

/* Cross-fade effect for better visual continuity */
.slide.prev-active {
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
}

/* Enhanced Auto-play with Pause on Hover */
.slideshow:hover .slide {
    transition-duration: 2s; /* Slower transition on hover */
}

/* Preload effect for smoother transitions */
.slide:nth-child(n+2) {
    z-index: 0;
}

.slide.active {
    z-index: 2;
}

.slide.next-slide {
    z-index: 1;
    opacity: 0;
}

/* --- END HERO SLIDESHOW STYLES --- */


/* --- SCROLL ANIMATION KEYFRAMES --- */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Base style for elements that will be animated */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}


/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.section-divider {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
    margin: 15px auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    width: 40px;
    height: 9px;
    background: var(--primary-orange);
    border-radius: 5px;
}

.section-subtext {
    color: var(--neutral-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}


/* --- 1. ABOUT SECTION ENHANCEMENTS --- */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--neutral-700);
    line-height: 1.7;
}

/* About Cards (Vision/Mission) */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-card {
    background: var(--neutral-100);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    border-left: 5px solid var(--primary-green);
}

.about-card.mission {
    border-left-color: var(--primary-orange);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-card.mission .card-icon {
    background: rgba(255, 152, 0, 0.1);
}

.about-card .card-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.about-card.mission .card-icon i {
    color: var(--primary-orange);
}

.about-card h3 {
    font-size: 1.3rem;
    color: var(--neutral-800);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.video-wrapper:hover img {
    filter: brightness(0.7);
}

.play-btn {
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border: 5px solid var(--neutral-100);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.play-btn i {
    font-size: 30px;
    color: var(--neutral-100);
}

.play-btn:hover {
    background: var(--primary-green);
    transform: translateX(-50%) scale(1.05);
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.close-modal {
    position: absolute;
    right: 0;
    top: -40px;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* --- 2. FEATURED PROGRAMS --- */
.featured-programs {
    background: var(--neutral-200);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: var(--neutral-100);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    padding: 0;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-content p {
    padding: 0;
    margin-bottom: 15px;
    color: var(--neutral-700);
    flex-grow: 1;
}

.card-content .btn {
    margin: 0;
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 20px;
    background: var(--primary-orange);
}

.card-content .btn:hover {
    background: var(--orange-dark);
}


/* --- 3. WHY CHOOSE US (Features Section) --- */
.why-choose-us {
    background: var(--neutral-100);
}

.why-choose-us .card {
    background: var(--neutral-200);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    border: none;
    height: auto;
    position: relative;
    overflow: hidden;
}

.why-choose-us .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-dark) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease-out;
    z-index: 0;
}

.why-choose-us .card:hover::after {
    transform: scaleY(1);
}

.why-choose-us .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--neutral-100);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us .card-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: color 0.4s ease;
}

.why-choose-us .card:hover .card-icon {
    background: var(--primary-orange);
}

.why-choose-us .card:hover .card-icon i {
    color: var(--neutral-100);
}

.why-choose-us .card h3, 
.why-choose-us .card p {
    transition: color 0.4s ease;
    z-index: 1;
    position: relative;
}

.why-choose-us .card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.why-choose-us .card:hover h3,
.why-choose-us .card:hover p {
    color: var(--neutral-100);
}

.why-choose-us .card p {
    color: var(--neutral-700);
    font-size: 0.9rem;
}


/* --- 4. STAFF CAROUSEL --- */
.staff {
    background: var(--neutral-100);
}

.staff-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.staff-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure staff cards fit new aesthetic */
.staff-card {
    flex: 0 0 250px;
    margin: 0;
    background: var(--neutral-100);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.staff-card .card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-orange);
}

.staff-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.staff-card:hover .card-image img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.staff-card .card-content {
    padding: 15px;
    text-align: center;
}

.staff-card h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.staff-card p {
    color: var(--primary-orange);
    font-size: 0.95rem;
}


/* --- 5. TESTIMONIALS & CONTACT --- */
.testimonials {
    background: var(--neutral-200);
}

.testimonial-carousel {
    padding: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-track {
    display: inline-flex;
    gap: 25px;
    animation: scroll 60s linear infinite;
    padding-left: 20px;
}

.testimonial-card {
    flex: 0 0 300px;
    white-space: normal;
    background: var(--neutral-100);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-orange);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-content .quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    margin-bottom: 20px;
    position: relative;
}
.testimonial-content .quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--primary-green);
    position: absolute;
    left: -15px;
    top: -10px;
    opacity: 0.2;
    line-height: 1;
}

.author-info {
    border-top: 1px solid var(--neutral-300);
    padding-top: 15px;
}

.author-info h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info .role {
    font-size: 0.9rem;
    color: var(--primary-orange);
    display: block;
}

.author-info .date {
    font-size: 0.8rem;
    color: var(--neutral-500);
}


/* Testimonial Form and Map Wrapper */
.testimonial-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.testimonial-form-container {
    max-width: none;
    margin: 0;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    height: 100%;
    width: 100%;
}

/* Form Styles */
.testimonial-form-container h3 {
    color: var(--primary-green);
    font-size: 1.7rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
}

.testimonial-form .form-group {
    margin-bottom: 15px;
}

.testimonial-form input, 
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.testimonial-form textarea {
    min-height: 100px;
    resize: vertical;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.verification {
    background: var(--neutral-300);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.testimonial-form button {
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    padding: 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    width: 100%;
    border: none;
    color: var(--neutral-100);
}


/* --- FOOTER (Enhanced Gradients and Structure) --- */
.footer {
    background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
    color: var(--neutral-100);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange), var(--primary-green));
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--neutral-700);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-section p {
    line-height: 1.8;
    color: var(--neutral-300);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 25px;
    transform: translateX(3px);
}

.footer-links a:hover::before {
    color: var(--primary-green);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neutral-300);
    transition: color 0.3s ease;
}

.contact-item-footer:hover {
    color: var(--primary-orange);
}

.contact-item-footer i {
    width: 20px;
    text-align: center;
    color: var(--primary-green);
    font-size: 16px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link-footer {
    width: 45px;
    height: 45px;
    background: rgba(46, 125, 50, 0.2);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link-footer:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--neutral-100);
    transform: translateY(-3px) scale(1.05);
}

.newsletter-signup {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: var(--neutral-100);
    color: var(--neutral-800);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: var(--neutral-500);
}

.newsletter-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    color: var(--neutral-100);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--primary-green));
    transform: scale(1.02);
}

.footer-bottom {
    padding: 25px 0;
    background: var(--neutral-900);
    text-align: center;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--neutral-400);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--neutral-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}


/* --- MOBILE RESPONSIVENESS (Refined) --- */
@media (max-width: 1200px) {
    .brand-logo { height: 70px; }
    .brand-name { font-size: 20px; }
    .brand-subtitle { font-size: 14px; }
    .nav-link { padding: 8px 10px; font-size: 13px; }
    .nav-cta .portal-link, .nav-cta .apply-btn { padding: 6px 12px; font-size: 12px; }
}

@media (max-width: 1024px) {
    body { padding-top: 100px; }
    .brand-logo { height: 65px; }
    .contact-info { gap: 15px; }
    .contact-item { font-size: 13px; }
    .social-links { gap: 8px; }
    .social-link { width: 28px; height: 28px; font-size: 14px; }
    .notification-btn { font-size: 12px; padding: 5px 10px; }
    .dropdown-menu { min-width: 200px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .top-bar { padding: 6px 0; font-size: 12px; }
    .contact-info { gap: 12px; }
    .contact-item:nth-child(3) { display: none; }
    .social-links { gap: 6px; }
    .nav-cta { gap: 4px; }
}

@media (max-width: 768px) {
    body { 
        /* Adjust for mobile header (80px) + news banner (~45px) */
        padding-top: 125px;
    }
    .main-navbar {
        top: 0; /* Move the main navbar to the top */
    }
    .section { padding: 40px 0; }
    .top-bar { display: none; }
    .navbar-content { padding: 10px 0; }
    .brand-logo { height: 50px; }
    .brand-name { font-size: 18px; }
    .brand-subtitle { font-size: 12px; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--neutral-100);
        border-top: 1px solid var(--neutral-200);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active { display: flex; }
    
    .nav-item { width: 100%; border-bottom: 1px solid var(--neutral-200); }
    .nav-item:last-child { border-bottom: none; }
    .nav-link { padding: 16px 20px; font-size: 16px; width: 100%; justify-content: space-between; border-radius: 0; }
    .nav-link:hover { background: rgba(46, 125, 50, 0.1); padding-left: 25px; color: var(--primary-green); }
    
    .nav-cta { padding: 15px 20px; display: flex; flex-direction: column; gap: 12px; background: rgba(46, 125, 50, 0.02); }
    .nav-cta .portal-link, .nav-cta .apply-btn { width: 100%; text-align: center; padding: 12px 20px; margin: 0; border-radius: 8px; font-size: 15px; font-weight: 600; }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(46, 125, 50, 0.02);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-top: 1px solid var(--neutral-200);
    }
    .dropdown.active .dropdown-menu { max-height: 500px; }
    
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .about-cards { grid-template-columns: 1fr; gap: 15px; }
    .testimonial-contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .map-container { min-height: 300px; }

    .play-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    .play-btn i { font-size: 20px; }

    .modal-content {
        width: 95%;
        padding: 10px;
    }
    .close-modal {
        top: -35px;
        font-size: 28px;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .footer-links a { text-align: center; padding-left: 0; }
    .footer-links a::before { display: none; }
    .social-links-footer { justify-content: center; }
}

@media (max-width: 480px) {
    .section { padding: 30px 0; }
    .container { padding: 0 15px; }
    .grid { grid-template-columns: 1fr; gap: 15px; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .slide-content .btn { padding: 12px 25px; font-size: 0.95rem; }
    
    .footer-grid { gap: 25px; }
    .newsletter-form { flex-direction: column; border-radius: 8px; max-width: 100%; }
    .newsletter-input { border-radius: 8px 8px 0 0; }
    .newsletter-btn { border-radius: 0 0 8px 8px; }
    .footer-legal { flex-direction: column; gap: 15px; }
}

/* Mobile dropdown submenu colors */
@media (max-width: 768px) {
    .dropdown-submenu .dropdown-submenu-list {
        background: rgba(255, 152, 0, 0.1);
        border-left: 3px solid var(--primary-orange);
    }
    
    .dropdown-submenu .dropdown-link {
        color: var(--orange-dark);
    }
    
    .dropdown-submenu .dropdown-link:hover {
        background: rgba(255, 152, 0, 0.2);
        color: var(--orange-dark);
        border-left-color: var(--primary-orange);
    }
}

/* Spinning Gears Background */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 25a25 25 0 100 50 25 25 0 000-50zm0 10a15 15 0 110 30 15 15 0 010-30zm0-35l5 15h-10l5-15zm0 85l5-15h-10l5 15zm35-50l-15 5v-10l15 5zm-85 0l15 5v-10l-15 5z' fill='%23FF9800' opacity='0.05'/%3E%3C/svg%3E") no-repeat;
    animation: spin 60s linear infinite;
    opacity: 0.07;
    z-index: 0;
}

/* Spanners Pattern for About Section */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10h10v10H20zM40 10h10v10H40zM60 10h10v10H60zM10 30h10v10H10zM30 30h10v10H30zM50 30h10v10H50zM20 50h10v10H20zM40 50h10v10H40zM60 50h10v10H60z' fill='%232E7D32' opacity='0.05'/%3E%3C/svg%3E") repeat;
    opacity: 0.06;
    z-index: 0;
}

/* Technical Lines Pattern for Featured Programs */
.featured-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, var(--primary-green) 49%, var(--primary-green) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, var(--primary-green) 49%, var(--primary-green) 51%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.04;
    z-index: 0;
}

/* Spinning Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ensure content stays above patterns */
.container {
    position: relative;
    z-index: 1;
}

/* Department Section Styles */
.departments {
    position: relative;
    background: var(--neutral-100);
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.department-card {
    background: var(--neutral-100);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--neutral-200);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.department-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.department-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.department-card:hover .card-image img {
    transform: scale(1.1);
}

.department-card .card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-100);
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.department-card:hover .card-icon {
    transform: rotate(360deg);
}

.department-card .card-content {
    padding: 30px 20px;
}

.department-card h3 {
    color: var(--neutral-800);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.department-card p {
    color: var(--neutral-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.department-card .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .department-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-card .card-image {
        height: 180px;
    }
}
