@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 16px !important;
    overflow-x: clip;
    scrollbar-width: thin;
    scrollbar-color: #174772 transparent;
}

/* Custom Scrollbar for Chrome, Safari, Edge */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #174772;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #113454;
    /* Darker blue on hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    overflow-x: clip;
}

.header-wrapper {
    width: 100%;
    background-color: #FFFFFF;
    border-bottom: 2px solid #F1F1F1;
    z-index: 1000;
}

.header-wrapper.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 0 2rem;
}

.header-logo-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.header-logo-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 3rem);
    /* Spacing between navigation items */
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 clamp(1rem, 2vw, 2.5rem);
    /* Keep distance between menu and logos */
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #174772;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0.2rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-icon {
    display: none;
    /* Hidden on desktop */
}

.nav-link:hover {
    color: #FD752C;
    /* Burgundy red hover */
}

/* Active line indicator at the bottom of the active link */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Sits precisely on the bottom line */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FD752C;
    /* Burgundy red */
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active {
    color: #FD752C;
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Home Section Styles */
.home-section {
    position: relative;
    padding: 8rem 0 10rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #FFFFFF;
}

.home-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 2;
}

.home-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 3;
}

.home-content {
    text-align: center;
}

.home-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ministry-tag {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: 600;
    color: #FF9E53;
}

/* Project Overview / About Section Styles */
.about-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.overview-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.overview-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    /* Orange divider */
}

.overview-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.5;
}

.overview-content {
    max-width: 100%;
}

.overview-text {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.overview-buttons {
    display: flex;
    gap: 1.25rem;
}

.btn-pill {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    border: 2px solid #FD752C;
    color: #FD752C;
    background-color: transparent;
    text-decoration: none;
    /* Remove underline */
    transition: color 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.btn-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FD752C;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.btn-pill:hover {
    color: #FFFFFF;
}

.btn-pill:hover::before {
    transform: scaleX(1);
}

/* Impact Section Styles */
.impact-section {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.impact-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 3rem auto;
}

.impact-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A202C;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.impact-desc {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.75;
    font-weight: 500;
}

.impact-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.impact-stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.impact-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C5192D;
    /* Crimson red */
    line-height: 1;
}

.impact-stat-divider {
    width: 1px;
    height: 35px;
    background-color: #CBD5E1;
}

.impact-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.4;
}

/* Statistics Row Styles */
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #174772;
    /* Crimson/maroon color matching the screenshot */
    line-height: 1;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: #CBD5E1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.4;
}

.stat-sublabel {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: #64748B;
    margin-top: 0.15rem;
}

/* Objective Section Styles */
.objective-section {
    padding: 6rem 0;
    background-color: #174772;
    /* Dark blue background requested by user */
    color: #FFFFFF;
}

.objective-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.objective-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.objective-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    /* White title on blue background */
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.objective-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    /* Accent orange divider line */
}

.objective-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly muted white */
    line-height: 1.5;
}

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

.objective-card {
    background-color: #FFFFFF;
    color: #1E293B;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.objective-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #174772;
    /* Blue title inside card */
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.objective-card .card-list {
    list-style-type: none;
    /* We will style custom bullets */
    padding-left: 0;
}

.objective-card .card-list li {
    font-size: 0.82rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.25rem;
}

.objective-card .card-list li::before {
    content: "•";
    color: #FD752C;
    /* Orange bullets */
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.objective-card .card-list li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for Objective Section */
@media (max-width: 992px) {
    .objective-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objective-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .objective-divider {
        width: 60px;
        height: 2px;
    }

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

/* Collaborating Partners Section Styles */
.partners-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.partners-image-block {
    width: 100%;
}

.partners-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partners-content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .partners-header {
    margin-bottom: 2.5rem;
} */

.partners-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.partners-divider {
    width: 60px;
    height: 2px;
    background-color: #FD752C;
    /* Accent orange divider line */
    margin-bottom: 1rem;
}

.partners-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.5;
}

.partners-logos-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
}

.partner-logo-img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.partner-logo-aditya {
    max-height: 97px;
}

.partner-logo-dst {
    max-height: 110px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: flex-start;
    }

    .partners-image-block {
        height: auto;
    }

    .partners-img {
        height: auto;
        aspect-ratio: 1.5;
    }

    .partners-logos-row {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Partners Section */
    .partners-logos-row {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .partner-logo-img {
        max-height: 120px;
    }

    .partner-logo-aditya {
        max-height: 50px;
    }

    .partner-logo-dst {
        max-height: 70px;
    }

    /* Overview Section */
    .overview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .overview-title {
        font-size: 1.3rem;
    }

    .overview-divider {
        width: 60px;
        height: 2px;
        align-self: flex-start;
    }

    .overview-subtitle {
        font-size: 0.85rem;
    }

    .overview-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .overview-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .stat-item,
    .impact-stat-item {
        justify-content: center;
        width: 100%;
    }

    .stat-number,
    .impact-stat-number {
        flex: 1;
        text-align: right;
    }

    .stat-label,
    .impact-stat-label {
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .stats-row,
    .impact-stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 6rem 0;
    background-color: #F9FAFB;
    /* Light grey background for contrast */
    border-bottom: 1px solid #E5E7EB;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gallery-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    align-self: center;
}

.gallery-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.4;
}

.gallery-grid {
    column-count: 5;
    column-gap: 0.6rem;
}

.gallery-more-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

.gallery-item {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 0.6rem;
    position: relative;
    border-radius: 8px;
    /* slightly more rounded for premium look */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
    cursor: pointer;
}

/* Dynamic Aspect Ratios for True Masonry Style */
.gallery-item:nth-child(4n) {
    aspect-ratio: 1;
}

/* Square */
.gallery-item:nth-child(4n+1) {
    aspect-ratio: 16/9;
}

/* Wide Landscape */
.gallery-item:nth-child(4n+2) {
    aspect-ratio: 3/4;
}

/* Portrait */
.gallery-item:nth-child(4n+3) {
    aspect-ratio: 4/3;
}

/* Standard Landscape */

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .gallery-divider {
        width: 60px;
        height: 2px;
        align-self: flex-start;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 0.5rem;
    }

    .gallery-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* Dummy Logo Card Styles (Grayscale matching Teams Page) */
.gallery-item.dummy-logo {
    background-color: #F8FAFC;
    border: 1px solid #F1F5F9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
}

.gallery-item.dummy-logo .gallery-img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item.dummy-logo:hover .gallery-img {
    transform: scale(1.08);
}

/* Lightbox Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.25rem;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #FD752C;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    padding: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-nav:hover {
    color: #FD752C;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:active {
    transform: translateY(-50%) scale(0.9);
}

.lightbox-next:active {
    transform: translateY(-50%) scale(0.9);
}

@media (max-width: 768px) {
    .lightbox-content-wrapper {
        max-width: 90%;
    }

    .lightbox-content {
        max-height: 65vh;
    }

    .lightbox-nav {
        font-size: 28px;
        padding: 0.75rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }

    /* Mobile Navbar Improvements */
    .header-logo-left,
    .header-logo-right {
        display: flex !important;
        align-items: center;
    }

    .header-logo-left .nav-logo-img,
    .header-logo-right .nav-logo-img {
        max-height: 40px;
    }

    .header-container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .nav-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #FFFFFF;
        border-top: 1px solid #E2E8F0;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        padding: 0 5px;
        margin: 0;
        z-index: 10000;
        list-style: none;
    }

    .nav-item {
        flex: 1;
        justify-content: center;
        height: 100%;
    }

    .nav-link {
        flex-direction: column;
        justify-content: center;
        padding: 0.5rem 0;
        font-size: 0.65rem;
        height: 100%;
    }

    .nav-link span {
        display: none;
    }

    .nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        font-size: 1.40rem;
        margin-bottom: 0;
    }

    .nav-link::after {
        display: none;
    }

    @keyframes slideDownMobile {
        from {
            top: -55px;
        }

        to {
            top: 0;
        }
    }

    /* Top Logo Bar on Mobile (Scrolls with page) */
    .header-wrapper {
        position: relative;
        width: 100%;
        height: 55px;
        border-bottom: 1px solid #E2E8F0;
        background-color: #FFFFFF;
        z-index: 10000;
    }

    .header-wrapper.scrolled {
        position: fixed;
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 50px;
        border-bottom: 1px solid #E2E8F0;
        border-top: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        background-color: #FFFFFF;
        animation: slideDownMobile 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        z-index: 10000;
    }

    body {
        padding-top: 0;
        padding-bottom: 60px;
        /* Keep bottom padding for fixed bottom menu */
    }

    main {
        padding-top: 0 !important;
    }

    /* Prevent layout shift when top header becomes fixed on mobile */
    .header-wrapper.scrolled+main {
        padding-top: 50px !important;
    }
}

/* ==========================================================================
   4A. PAGE SPECIFIC STYLES (ABOUT & ACHIEVEMENTS)
   ========================================================================== */
.coming-soon-section {
    padding: 4rem 0 6rem 0;
    background-color: #FFFFFF;
    min-height: calc(100vh - 65px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    padding: 0 1.5rem;
}

.coming-soon-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    font-weight: 500;
}

.coming-soon-divider {
    width: 80px;
    height: 3px;
    background-color: #FD752C;
    margin: 0 auto 1.5rem auto;
}

.coming-soon-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #174772;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.coming-soon-btn:hover {
    background-color: #FD752C;
}

/* ==========================================================================
   4A-2. PAGE SPECIFIC STYLES (NEW ABOUT US LAYOUT)
   ========================================================================== */
.about-page-section {
    padding: 6rem 0 4rem 0;
    background-color: #FFFFFF;
    position: relative;
}

.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5;
    width: 100%;
}

.about-header-block {
    margin-bottom: 2rem;
}

.about-page-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.about-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-page-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    flex-shrink: 0;
}

.about-page-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.45;
}

.about-page-text p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-align: justify;
}

.about-page-text p:last-child {
    margin-bottom: 0;
}

.about-duration-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.project-duration-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.55rem 1.35rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #174772;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.duration-icon {
    color: #FD752C;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* 3-Column Maps Section */
.map-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.map-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.map-card-tab {
    align-self: flex-start;
    background-color: #174772;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.map-card-image-box {
    width: 100%;
    aspect-ratio: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EDF2F7;
    border-radius: 6px;
    overflow: hidden;
    background-color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.map-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.map-card-caption {
    font-size: 0.85rem;
    color: #4A5568;
    line-height: 1.5;
    text-align: center;
    margin-top: auto;
}

/* Key Focus Areas Styles */
.about-focus-section {
    margin-top: 0;
    background-color: #F8FAFC;
    padding: 4rem 0;
    width: 100%;
}

.about-focus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-focus-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
}

.about-focus-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.focus-icon {
    color: #FD752C;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-focus-item span {
    font-size: 0.925rem;
    color: #4A5568;
    font-weight: 500;
}



/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .about-page-section {
        padding: 5rem 0 2rem 0;
        min-height: auto;
    }

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

    .about-focus-section {
        margin-top: 0;
        padding: 2.5rem 0;
    }

    .about-focus-title {
        font-size: 1.2rem;
    }

    .about-focus-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .about-focus-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-page-divider {
        width: 60px;
        height: 2px;
    }



    .about-page-text p {
        line-height: 1.75;
    }

    .about-header-block {
        margin-bottom: 2.5rem;
    }


}

@media (max-width: 600px) {
    .map-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



/* ==========================================================================
   4B. PAGE SPECIFIC STYLES (OBJECTIVES)
   ========================================================================== */
.overview-page-section {
    padding: 4rem 0 3rem 0;
    background-color: #FFFFFF;
}

.overview-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.overview-page-header {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.overview-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.overview-page-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    align-self: center;
}

.overview-page-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.4;
}

.project-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

.project-details {
    display: flex;
    flex-direction: column;
}

.details-section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    font-weight: 500;
}

.project-visuals {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-overview-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sdg-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.sdg-card {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sdg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.sdg-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .project-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-overview-img {
        max-width: 700px;
        margin: 0 auto;
    }

    .sdg-row {
        max-width: 700px;
        margin: 1.5rem auto 0 auto;
    }
}

@media (max-width: 768px) {
    .overview-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .overview-page-divider {
        width: 60px;
        height: 2px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .sdg-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .sdg-card {
        aspect-ratio: 1;
    }
}

/* ==========================================================================
   4C. PAGE SPECIFIC STYLES (TEAMS)
   ========================================================================== */
.teams-section {
    padding: 4rem 0 6rem 0;
    background-color: #FFFFFF;
    min-height: calc(100vh - 65px);
}

.teams-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.teams-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 0.75rem;
}

.teams-subtitle {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.teams-yellow-bar {
    width: 35px;
    height: 4px;
    background-color: #FD752C;
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.teams-institution {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3.5rem;
}

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

.team-member-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.team-member-img-wrapper {
    width: 100%;
    aspect-ratio: 0.85;
    background-color: #F8FAFC;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 1.25rem;
    border: 1px solid #F1F5F9;
}

.team-member-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.team-member-img-wrapper.has-photo {
    padding: 0;
}

.team-member-img-wrapper.has-photo .team-member-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-member-card {
    cursor: pointer;
}

.team-member-card:hover .team-member-img {
    filter: grayscale(0%);
    opacity: 1;
}

.team-member-name-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.team-member-name-group .team-member-name {
    margin-bottom: 0.25rem;
}

.team-member-name-group .team-member-job {
    margin-bottom: 0;
    text-align: right;
    width: 100%;
}

.team-member-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #174772;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.team-member-card:hover .team-member-name {
    color: #FD752C;
}

.team-member-role {
    font-size: 0.8rem;
    color: #4A5568;
    line-height: 1.4;
    font-weight: 500;
}

.team-member-job {
    font-size: 0.8rem;
    color: #4A5568;
    line-height: 1.2;
    font-weight: 500;
    text-align: right;
}

.team-member-designation {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FD752C;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    display: block;
}

.team-member-designation:hover {
    color: #174772;
}

@media (max-width: 1024px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 560px) {
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member-img-wrapper {
        max-width: 320px;
        margin: 0 auto 1.25rem auto;
    }

    .team-member-name,
    .team-member-job,
    .team-member-role {
        text-align: center;
    }

    .team-member-name-group {
        width: 100%;
        align-items: center;
    }
}

/* ==========================================================================
   4B-2. NEW INTERVENTIONS SECTION STYLES
   ========================================================================== */
.interventions-section {
    padding: 2rem 0 6rem 0;
    background-color: #FFFFFF;
}

.interventions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.interventions-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.interventions-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.interventions-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    flex-shrink: 0;
}

.interventions-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.45;
}

.interventions-intro {
    text-align: justify;
    margin-bottom: 4rem;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.8;
}

/* ==========================================================================
   5. RESPONSIVE TYPOGRAPHY (BOOTSTRAP BREAKPOINTS)
   ========================================================================== */

/* XXL Breakpoint (Extra Extra Large devices, < 1400px) */
@media (max-width: 1399.98px) {
    .home-title {
        font-size: 1.65rem;
    }

    .overview-title,
    .objective-title,
    .partners-title,
    .gallery-title,
    .overview-page-title,
    .coming-soon-title,
    .teams-main-title,
    .impact-title,
    .about-page-title,
    .interventions-title {
        font-size: 1.65rem;
    }

    .teams-institution {
        font-size: 1.4rem;
    }
}

/* XL Breakpoint (Extra Large devices, < 1200px) */
@media (max-width: 1199.98px) {
    .home-title {
        font-size: 1.55rem;
    }

    .home-subtitle {
        font-size: 0.95rem;
    }

    .overview-title,
    .objective-title,
    .partners-title,
    .gallery-title,
    .overview-page-title,
    .coming-soon-title,
    .teams-main-title,
    .impact-title,
    .about-page-title,
    .interventions-title {
        font-size: 1.55rem;
    }

    .overview-subtitle,
    .objective-subtitle,
    .partners-subtitle,
    .gallery-subtitle,
    .overview-page-subtitle,
    .teams-subtitle,
    .about-page-subtitle,
    .interventions-subtitle {
        font-size: 0.9rem;
    }

    .overview-text,
    .about-page-text p,
    .interventions-intro {
        font-size: 0.88rem;
    }

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

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

    .impact-stat-number {
        font-size: 1.65rem;
    }

    .impact-stat-label {
        font-size: 0.78rem;
    }

    .objective-card .card-title {
        font-size: 1.1rem;
    }

    .coming-soon-text {
        font-size: 1.05rem;
    }

    .teams-institution {
        font-size: 1.3rem;
    }
}

/* LG Breakpoint (Large devices, < 992px) */
@media (max-width: 991.98px) {
    .home-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .home-subtitle {
        font-size: 0.9rem;
    }

    .overview-title,
    .objective-title,
    .partners-title,
    .gallery-title,
    .overview-page-title,
    .coming-soon-title,
    .teams-main-title,
    .impact-title,
    .about-page-title,
    .interventions-title {
        font-size: 1.4rem;
    }

    .overview-subtitle,
    .objective-subtitle,
    .partners-subtitle,
    .gallery-subtitle,
    .overview-page-subtitle,
    .teams-subtitle,
    .about-page-subtitle,
    .interventions-subtitle {
        font-size: 0.85rem;
    }

    .overview-text,
    .about-page-text p,
    .interventions-intro {
        font-size: 0.85rem;
    }

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

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

    .impact-stat-number {
        font-size: 1.5rem;
    }

    .impact-stat-label {
        font-size: 0.75rem;
    }

    .objective-card .card-title {
        font-size: 1.05rem;
    }

    .objective-card .card-list li {
        font-size: 0.8rem;
    }

    .gallery-caption {
        font-size: 0.85rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .teams-institution {
        font-size: 1.2rem;
    }

    .details-section-title,
    .detail-label {
        font-size: 0.9rem;
    }

    .detail-value {
        font-size: 0.82rem;
    }
}

/* MD Breakpoint (Medium devices, < 768px) */
@media (max-width: 767.98px) {
    .home-section {
        padding: 2.5rem 0 3rem 0;
    }

    .about-section,
    .objective-section,
    .partners-section,
    .gallery-section {
        padding: 3.5rem 0;
    }

    .home-title {
        font-size: 1.25rem;
        line-height: 1.25;
    }

    .home-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .overview-title,
    .objective-title,
    .partners-title,
    .gallery-title,
    .overview-page-title,
    .coming-soon-title,
    .teams-main-title,
    .impact-title,
    .about-page-title,
    .interventions-title,
    .exp-impact-title {
        font-size: 1.25rem;
    }

    .overview-subtitle,
    .objective-subtitle,
    .partners-subtitle,
    .gallery-subtitle,
    .overview-page-subtitle,
    .teams-subtitle,
    .about-page-subtitle,
    .interventions-subtitle,
    .exp-impact-subtitle {
        font-size: 0.8rem;
    }

    .overview-text,
    .impact-desc,
    .about-page-text p,
    .interventions-intro {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .stat-number,
    .impact-stat-number {
        font-size: 1.4rem;
    }

    .stat-label,
    .impact-stat-label {
        font-size: 0.72rem;
    }

    .stat-sublabel {
        font-size: 0.65rem;
    }

    .objective-card {
        padding: 2rem 1.5rem;
    }

    .objective-card .card-title {
        font-size: 1rem;
    }

    .objective-card .card-list li {
        font-size: 0.78rem;
        margin-bottom: 0.75rem;
    }

    .btn-pill {
        font-size: 0.7rem;
        padding: 0.5rem 1.25rem;
    }

    .gallery-caption {
        font-size: 0.8rem;
    }

    .coming-soon-text {
        font-size: 0.95rem;
    }

    .teams-institution {
        font-size: 1.1rem;
    }

    .details-section-title,
    .detail-label {
        font-size: 0.85rem;
    }

    .detail-value {
        font-size: 0.78rem;
    }

    .team-member-name {
        font-size: 0.9rem;
    }

    .team-member-role {
        font-size: 0.75rem;
    }
}

/* SM Breakpoint (Small devices, < 576px) */
@media (max-width: 575.98px) {
    .home-section {
        padding: 2rem 0 2rem 0;
    }

    .about-section,
    .objective-section,
    .partners-section,
    .gallery-section {
        padding: 2.5rem 0;
    }

    .home-title {
        font-size: 1.15rem;
    }

    .home-subtitle {
        font-size: 0.8rem;
    }

    .overview-title,
    .objective-title,
    .partners-title,
    .gallery-title,
    .overview-page-title,
    .coming-soon-title,
    .teams-main-title,
    .impact-title,
    .about-page-title,
    .interventions-title,
    .exp-impact-title {
        font-size: 1.15rem;
    }

    .overview-subtitle,
    .objective-subtitle,
    .partners-subtitle,
    .gallery-subtitle,
    .overview-page-subtitle,
    .teams-subtitle,
    .about-page-subtitle,
    .interventions-subtitle,
    .exp-impact-subtitle {
        font-size: 0.75rem;
    }

    .overview-text,
    .impact-desc,
    .about-page-text p,
    .interventions-intro {
        font-size: 0.8rem;
    }

    .stat-number,
    .impact-stat-number {
        font-size: 1.25rem;
    }

    .stat-label,
    .impact-stat-label {
        font-size: 0.68rem;
    }

    .stat-sublabel {
        font-size: 0.6rem;
    }

    .objective-card {
        padding: 1.75rem 1.25rem;
    }

    .objective-card .card-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .objective-card .card-list li {
        font-size: 0.75rem;
    }

    .coming-soon-text {
        font-size: 0.85rem;
    }

    .teams-institution {
        font-size: 1rem;
    }

    .details-section-title,
    .detail-label {
        font-size: 0.8rem;
    }

    .detail-value {
        font-size: 0.75rem;
    }

    .team-member-role {
        font-size: 0.72rem;
    }
}


.interventions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.intervention-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.intervention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #174772;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-img-box {
    width: 100%;
    aspect-ratio: 1.35;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid #EDF2F7;
}

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

.intervention-card:hover .card-img-box img {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    text-align: left;
}

.card-desc {
    font-size: 0.85rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: left;
}

.card-link {
    font-size: 0.85rem;
    color: #FD752C;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}

.intervention-card:hover .card-link {
    gap: 0.6rem;
}

/* Accordion */
.interventions-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.accordion-header {
    background-color: #174772;
    color: #FFFFFF;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.accordion-number {
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.accordion-toggle-icon {
    font-size: 1.25rem;
}

.accordion-content {
    border-top: 1px solid #E2E8F0;
}

.accordion-overview-fullwidth {
    padding: 2.5rem 2rem 0.5rem 2rem;
}

.accordion-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    padding: 2.5rem 2rem;
}

.accordion-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Sub-collapsible panels */
.sub-panel {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
}

.sub-panel-header {
    background-color: #FFFFFF;
    padding: 0.9rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #E2E8F0;
    user-select: none;
}

.sub-panel-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #1A202C;
    font-size: 0.9rem;
}

.sub-panel-icon {
    font-size: 1.05rem;
    color: #174772;
}

.sub-panel-arrow {
    font-size: 0.85rem;
    color: #718096;
}

.sub-panel-body {
    background-color: #F8FAFC;
    padding: 1.25rem;
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.6;
}

.features-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.features-list li,
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list li i,
.benefits-list li i {
    color: #174772;
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.features-list li span,
.benefits-list li span {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.5;
}

/* Technical diagrams */
.accordion-diagrams {
    display: flex;
    flex-direction: column;
}

.diagrams-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.diagram-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.diagram-box img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
    border-radius: 4px;
}

.diagram-box span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A5568;
    text-align: center;
    line-height: 1.3;
}

.diagram-box.full-width {
    grid-column: span 2;
    width: 100%;
}

.diagram-box.full-width img {
    max-height: 450px;
    width: 100%;
    object-fit: contain;
}

.diagram-box.borderless {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

/* Expected Impact Section */
.exp-impact-section {
    margin-top: 5rem;
}

.exp-impact-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.exp-impact-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.exp-impact-divider {
    width: 2px;
    height: 50px;
    background-color: #FD752C;
    flex-shrink: 0;
}

.exp-impact-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.45;
}

.exp-impact-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.exp-impact-card-box {
    flex: 1;
    min-width: 120px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-impact-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.exp-impact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.exp-impact-card-desc {
    font-size: 0.78rem;
    color: #4A5568;
    font-weight: 600;
    line-height: 1.5;
}

/* Impact specific colors */
.exp-impact-c1 .exp-impact-icon-box {
    color: #FD752C;
    background-color: #FFF5F0;
}

.exp-impact-c2 .exp-impact-icon-box {
    color: #10B981;
    background-color: #ECFDF5;
}

.exp-impact-c3 .exp-impact-icon-box {
    color: #3B82F6;
    background-color: #EFF6FF;
}

.exp-impact-c4 .exp-impact-icon-box {
    color: #F59E0B;
    background-color: #FEF3C7;
}

.exp-impact-c5 .exp-impact-icon-box {
    color: #8B5CF6;
    background-color: #F5F3FF;
}

.exp-impact-c6 .exp-impact-icon-box {
    color: #059669;
    background-color: #E6F4EA;
}

.exp-impact-c7 .exp-impact-icon-box {
    color: #06B6D4;
    background-color: #ECFEFF;
}

.benefits-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

.tech-proposed-list li div {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4A5568;
}

.tech-proposed-list li strong {
    color: #1A202C;
    font-size: 0.95rem;
}

.benefits-target-list li span {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4A5568;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .exp-impact-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .interventions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .diagrams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-impact-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-title,
    .accordion-title {
        font-size: 1rem;
    }

    .sub-panel-header-left {
        font-size: 0.88rem;
    }

    .sub-panel-body {
        font-size: 0.85rem;
    }

    .diagrams-section-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {

    .interventions-header,
    .exp-impact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .interventions-divider,
    .exp-impact-divider {
        width: 60px;
        height: 2px;
        align-self: flex-start;
    }

    .interventions-section {
        padding: 4rem 0;
    }

    .interventions-intro {
        margin-bottom: 2.5rem;
    }

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

    .interventions-container {
        padding: 0 1rem;
    }

    .accordion-content-grid {
        padding: 1.5rem 1rem;
    }

    .accordion-overview-fullwidth {
        padding: 1.5rem 1rem 0.5rem 1rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .accordion-title {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .card-desc,
    .card-link {
        font-size: 0.8rem;
    }

    .sub-panel-header-left {
        font-size: 0.82rem;
    }

    .sub-panel-body {
        font-size: 0.82rem;
    }

    .diagrams-section-title {
        font-size: 0.85rem;
    }

    .tech-section-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .tech-proposed-list li div {
        font-size: 0.82rem;
    }

    .tech-proposed-list li strong {
        font-size: 0.88rem;
    }

    .benefits-target-list li span {
        font-size: 0.82rem;
    }

    .features-list li span,
    .benefits-list li span {
        font-size: 0.82rem;
    }

    .features-list li i,
    .benefits-list li i {
        font-size: 0.85rem !important;
        margin-top: 0.1rem !important;
    }

    .benefits-target-list li i {
        font-size: 1rem !important;
    }

    .tech-proposed-list li span {
        font-size: 0.78rem !important;
        min-width: 26px !important;
        height: 26px !important;
    }
}

@media (max-width: 576px) {
    .interventions-container {
        padding: 0 0.5rem;
    }

    .accordion-header {
        padding: 1rem 0.75rem;
    }

    .accordion-overview-fullwidth {
        padding: 1.25rem 0.75rem 0.5rem 0.75rem;
    }

    .accordion-content-grid {
        padding: 1.25rem 0.75rem;
    }

    .exp-impact-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .diagram-box.full-width {
        grid-column: span 1;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .accordion-title {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .card-desc,
    .card-link {
        font-size: 0.78rem;
    }

    .sub-panel-header-left {
        font-size: 0.8rem;
    }

    .sub-panel-body {
        font-size: 0.8rem;
    }

    .diagrams-section-title {
        font-size: 0.8rem;
    }

    .tech-section-title {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .tech-proposed-list li div {
        font-size: 0.8rem;
    }

    .tech-proposed-list li strong {
        font-size: 0.85rem;
    }

    .benefits-target-list li span {
        font-size: 0.8rem;
    }

    .features-list li span,
    .benefits-list li span {
        font-size: 0.8rem;
    }

    .features-list li i,
    .benefits-list li i {
        font-size: 0.8rem !important;
        margin-top: 0.08rem !important;
    }

    .benefits-target-list li i {
        font-size: 0.9rem !important;
    }

    .tech-proposed-list li span {
        font-size: 0.72rem !important;
        min-width: 24px !important;
        height: 24px !important;
    }
}

/* =========================================
   SCROLL REVEAL & LOAD ANIMATIONS
   ========================================= */
html.js-enabled .reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Default / Up reveal */
html.js-enabled .reveal,
html.js-enabled .reveal.reveal-up {
    transform: translateY(100px) scale(0.98);
}

/* Left reveal (slides in from left) */
html.js-enabled .reveal.reveal-left {
    transform: translateX(-120px) scale(0.98);
}

/* Right reveal (slides in from right) */
html.js-enabled .reveal.reveal-right {
    transform: translateX(120px) scale(0.98);
}

/* Down reveal (slides down from top) */
html.js-enabled .reveal.reveal-down {
    transform: translateY(-80px) scale(0.98);
}

/* Active states */
html.js-enabled .reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered animation delays */
html.js-enabled .reveal-delay-1 {
    transition-delay: 0.1s;
}

html.js-enabled .reveal-delay-2 {
    transition-delay: 0.2s;
}

html.js-enabled .reveal-delay-3 {
    transition-delay: 0.3s;
}

html.js-enabled .reveal-delay-4 {
    transition-delay: 0.4s;
}

html.js-enabled .reveal-delay-5 {
    transition-delay: 0.5s;
}