/* ==========================================================================
   GLOBAL DESIGN VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-color: #046A38;
    --primary-hover: #023c20;
    --accent-color: #e67e22;
    --accent-hover: #d35400;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 110px; /* Offset to prevent fixed floating header from clipping sections */
}

/* ==========================================================================
   SPACIOUS LAYOUT & CONTAINERS (90% width)
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Card Foundations */
.card, .component-card, .contact-icon-card, .news-slide-frame {
    transition: var(--transition-smooth) !important;
}

.card:hover, .component-card:hover, .contact-icon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 35px rgba(4, 106, 56, 0.12) !important;
}

/* ==========================================================================
   ANIMATED FLOATING NAVIGATION (DESKTOP)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 25px;
    left: 5%;
    right: 5%;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 16px 45px; /* Increased top/bottom and side internal padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: slideDownHeader 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    top: 10px;
    padding: 12px 45px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(4, 106, 56, 0.08);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Roomy Nav Elements */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px; /* Expanded clear gap spacing between individual link buttons */
}

.nav-menu a {
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 4px; /* Broadened bounding link area */
    font-size: 0.98rem;
    transition: var(--transition-smooth);
}

.nav-menu a .arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Layout */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transform: translate(-50%, 15px) scale(0.95);
    transform-origin: top center;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.3s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 5px) scale(1);
}

.dropdown-content a {
    padding: 12px 20px;
    border-radius: 6px;
    margin: 2px 8px;
    display: block;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: rgba(4, 106, 56, 0.08);
    transform: translateX(5px);
}

/* Mobile Toggle Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   MOBILE SIDEBAR NAVIGATION DRAWER
   ========================================================================== */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1001;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 40px 30px;
    overflow-y: auto;
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
}

.mobile-sidebar a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - 50px);
    min-height: 650px;
    background: url('assets/hero-bg.jpg') center/cover no-repeat, #023c20;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 106, 56, 0.88) 0%, rgba(15, 23, 42, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.primary-btn {
    background-color: var(--accent-color);
    color: #ffffff;
}

.primary-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-btn:hover {
    background-color: #ffffff;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   2. ABOUT SECTION WITH SLIDE-TOGGLE ACTION
   ========================================================================== */
.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.about-wrapper h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.about-content-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-extended-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-extended-content.is-expanded {
    max-height: 1500px; 
}

.about-toggle-wrapper {
    text-align: center;
    margin-top: 30px;
}

.about-see-more-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-see-more-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   3. STRATEGIC FOUNDATION (MISSION/VISION/VALUES)
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   4. KEY COMPONENTS
   ========================================================================== */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.component-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--primary-color);
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.comp-num {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(4, 106, 56, 0.05);
    user-select: none;
    line-height: 1;
}

.component-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.component-card p {
    color: #475569;
}

/* ==========================================================================
   5. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px 35px;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 5rem;
    color: rgba(4, 106, 56, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.quote {
    color: #334155;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.author {
    color: var(--primary-color);
    font-weight: 700;
}

.role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   6. CAROUSEL PROGRESS GALLERY
   ========================================================================== */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    background-color: #000;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #ffffff;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 106, 56, 0.75);
    color: #ffffff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.carousel-control:hover {
    background: rgba(4, 106, 56, 0.95);
}

.carousel-control.prev { left: 20px; }
.carousel-control.next { right: 20px; }

/* ==========================================================================
   7. INTERACTIVE NEWS HOVER SLIDER
   ========================================================================== */
.hover-instruction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.08);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto 30px;
    border: 1px dashed rgba(230, 126, 34, 0.3);
}

.news-slider-viewport {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.news-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.news-slide-frame {
    min-width: 100%;
    position: relative;
    height: 460px;
    background: #0f172a;
    overflow: hidden;
}

.news-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Interactive Text Overlay System */
.news-interactive-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.2) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-smooth);
}

.news-tag-date {
    background: var(--accent-color);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.news-interactive-overlay h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.news-interactive-overlay p {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

/* Hover Engine Interaction Rules */
.news-slide-frame:hover .news-slide-image {
    transform: scale(1.05);
}

.news-slide-frame:hover .news-interactive-overlay {
    background: linear-gradient(to top, rgba(4, 106, 56, 0.98) 0%, rgba(15, 23, 42, 0.85) 70%, rgba(15, 23, 42, 0.4) 100%);
}

.news-slide-frame:hover .news-interactive-overlay p {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 5px;
}

/* Nav Arrows & Indicators */
.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.news-nav-btn:hover {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-prev-btn { left: 20px; }
.news-next-btn { right: 20px; }

.news-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   8. FUNDING PARTNERS
   ========================================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-logo-container {
    width: 100%;
    max-width: 200px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(4, 106, 56, 0.08);
    border-color: rgba(4, 106, 56, 0.2);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.partner-logo-container:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   9. CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-icon-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-icon-card .icon {
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

/* ==========================================================================
   FOOTER System
   ========================================================================== */
footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 40px 20px;
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
    border-color: var(--accent-color);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEM
   ========================================================================== */
@media (max-width: 991px) {
    .site-header {
        top: 15px;
        left: 4%;
        right: 4%;
        width: 92%;
        padding: 12px 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .carousel-slide img {
        height: 320px;
    }

    .news-slide-frame {
        height: 400px;
    }

    .news-interactive-overlay {
        padding: 25px;
    }

    .news-interactive-overlay h3 {
        font-size: 1.3rem;
    }

    .section-title, .about-wrapper h2 {
        font-size: 1.8rem;
    }

    .values-grid, .components-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        padding: 10px 20px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.65rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Base structural alignment wrapper */
.hero-bg-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits behind text content */
}

/* Single structural background panel frame definition */
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out; /* Smooth cinematic fade transition cross paths */
}

.hero-bg-slide.active {
    opacity: 1;
}

/* Ensure foreground content details stay bright, legible and highly visible */
.hero-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
}