@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700;800&display=swap');

:root {
    --wimraw-green: #10d48a;
    --wimraw-navy: #071c35;
    --top-bar-bg: #111827;
    --text-muted: #64748b;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none !important;
}

/* Navbar & Megha Menu */
/* Sticky Header */
header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Topbar Styling */
.topbar {
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
    padding: 8px 0;
}

.topbar a {
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    color: #666 !important;
    padding: 5px 8px;
}

:root {
    --wimraw-navy: #071c35;
    /* Core Brand Color */
    --wimraw-green: #10d48a;
    /* Accent Color */
    --topbar-text: #e2e8f0;
}

.topbar {
    background-color: var(--wimraw-navy);
    /* Added Navy background */
    padding: 10px 0;
    border-bottom: 2px solid var(--wimraw-green);
    /* Subtle green accent line */
    font-family: 'Urbanist', sans-serif;
    /* Using brand font */
}

.topbar a {
    color: var(--topbar-text) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.topbar a:hover {
    color: var(--wimraw-green) !important;
}

/* Vertical Dividers for Search/Language */
.nav-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    margin-left: 15px;
}

.navbar-brand img {
    transition: filter 0.3s ease;
    width: 150px;
    height: 80px;
}

/* Mobile Menu Icon Color */
.topbar .fa-bars {
    color: white;
    font-size: 1.2rem;
}

.btn-donate-sm {
    font-weight: 800;
    padding: 5px 15px;
    font-size: 11px;
}

/* Main Nav Links */
.navbar-nav .nav-link {
    font-weight: 700 !important;
    color: #2a2a2a !important;
    padding: 20px 25px !important;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Standard Hover Underline (Thin) */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 25px;
    background-color: #10d48a;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 50px);
}

/* ACTIVE STATE */
.nav-item.dropdown .nav-link.dropdown-toggle.show {
    color: #10d48a !important;
}

.nav-item.dropdown .nav-link.dropdown-toggle:hover,
.nav-item .nav-link:hover {
    color: #10d48a !important;
}

/* Hide default caret */
.dropdown-toggle::after {
    display: none !important;
}

.nav-link i.fa-angle-down {
    font-size: 18px;
    margin-left: 10px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

/* Rotate to Upward Angle when menu is open */
.nav-item.dropdown .nav-link.dropdown-toggle.show i.fa-angle-down {
    transform: rotate(180deg) !important;
}

/* Mega Menu Styling */
.nav-item.dropdown {
    position: static !important;
}

.dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Active Title inside Mega Menu */
.mega-active-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: rgb(7, 28, 53);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* Grid Layout for Columns */
.mega-column-header {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.mega-list a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mega-list a:hover {
    color: #10d48a
}

.btn-donation {
    color: #10d48a !important;
    border: 2px solid #10d48a !important;
    border-radius: 50px;
    font-weight: 800;
    padding: 12px 30px;
    border: none;
}

.btn-donation:hover {
    background: #10d48a !important;
    color: #fff !important;
}

/* Home page */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #2d3436;
}

.slider-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats-section {
    padding: 80px 5%;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80&w=1600');
    background-attachment: fixed;
    /* Parallax effect */
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}


.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-card {
    background: #071c35;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 28, 53, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.stat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(16, 212, 138, 0.05);
    border-radius: 50%;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 212, 138, 0.15);
    border-color: #10d48a;
}

.stat-card:hover::before {
    background: rgba(16, 212, 138, 0.1);
    transform: scale(2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10d48a 0%, #00b371 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(16, 212, 138, 0.3);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: #071c35;
    /* Wimraw Navy */
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #10d48a;
    /* Wimraw Green */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Mobile handling */
@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }
}

/* Call to Action */
.cta-bar {
    background: #27ae60;
    color: white;
    padding: 60px 10%;
    text-align: center;
}

.btn-donate {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: none;
    transition: 0.3s;
}

.btn-donate:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
}


/* stats-counter-section */
.stats-counter-section {
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&q=80&w=1600');
    /* Replace with your child image path */
    background-attachment: fixed;
    /* Parallax effect */
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.stats-overlay {
    background: rgba(0, 0, 0, 0.6);
    /* Dark tint to make text pop */
    padding: 100px 10%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.stat-item i {
    font-size: 40px;
    color: #10d48a;
    /* Wimraw Trust Green */
    margin-bottom: 20px;
    display: block;
}

.stat-item h2 {
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 18px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stat-item h2 {
        font-size: 45px;
    }

    .stats-overlay {
        padding: 60px 20px;
    }
}

/* stats-counter-section */


/* What I do  */
.impact-section {
    padding: 100px 5%;
    background: #ffffff;
}

.impact-header {
    text-align: center;
    margin-bottom: 70px;
}

.badge {
    background: rgba(16, 212, 138, 0.1);
    color: #10d48a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.impact-header h2 {
    font-size: 40px;
    color: #071c35;
    margin-top: 20px;
    font-weight: 800;
}

.impact-header h2 span {
    color: #10d48a;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.impact-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* The "Featured" middle card effect */
.impact-card.featured {
    background: #071c35;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(7, 28, 53, 0.2);
}

.impact-card.featured h3 {
    color: #fff;
}

.impact-card.featured p {
    color: #cbd5e1;
}

.card-icon {
    font-size: 45px;
    color: #10d48a;
    margin-bottom: 30px;
}

.impact-card h3 {
    font-size: 24px;
    color: #071c35;
    margin-bottom: 20px;
    font-weight: 700;
}

.impact-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-features i {
    color: #10d48a;
    font-size: 12px;
}

.impact-card:hover:not(.featured) {
    border-color: #10d48a;
    box-shadow: 0 20px 40px rgba(16, 212, 138, 0.1);
    transform: translateY(-5px);
}

/* Mobile handling */
@media (max-width: 992px) {
    .impact-card.featured {
        transform: scale(1);
    }

    .impact-grid {
        gap: 20px;
    }
}

/* What I do */
/* End Home page */

/* Mission Section */
.mission-section {
    padding: 100px 10%;
    background-color: #ffffff;
}

.mission-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mission-content {
    flex: 1;
    min-width: 350px;
}

.sub-title {
    color: #10d48a;
    /* Your brand green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.mission-content h2 {
    font-size: 42px;
    color: #0d1e3d;
    /* Your brand navy */
    line-height: 1.2;
    margin-bottom: 25px;
}

.mission-content h2 span {
    color: #10d48a;
}

.mission-content p {
    color: #4a5a77;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mission-list li {
    font-weight: 600;
    color: #0d1e3d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #10d48a;
    margin-right: 15px;
    font-style: normal;
    font-weight: 900;
}

.mission-image {
    flex: 1;
    position: relative;
    min-width: 350px;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #10d48a;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 212, 138, 0.4);
}

.experience-badge h3 {
    font-size: 35px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mission-list li {
        justify-content: center;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
    }
}

/* End Mission Section */

/* Brand Section */
.brand-scroll-section {
    padding: 60px 0;
    background: #f9fbfd;
    /* Light background to contrast with the white navbar */
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #4a5a77;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brand-slider {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

/* The moving track */
.brand-track {
    display: flex;
    width: calc(250px * 10);
    /* Width of one logo * total number of logos */
    animation: scroll 30s linear infinite;
}

/* Pause animation on hover so users can see specific brands */
.brand-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.brand-logo img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    /* Makes all logos uniform */
    opacity: 0.6;
    transition: 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* The Animation Logic */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

    /* Moves left by half the track width */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .brand-logo {
        width: 150px;
    }

    .brand-track {
        width: calc(150px * 10);
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
}

/* Brand Section End */
.site-footer {
    background: #071c35;
    /* Wimraw Navy */
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #10d48a;
    /* Wimraw Green */
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #10d48a;
    padding-left: 5px;
}

/* Brand Column Socials */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #10d48a;
    transform: translateY(-3px);
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: #10d48a;
    border: none;
    padding: 0 15px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.copyright-text strong {
    color: #ffffff;
}

.powered-by p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.powered-by a {
    color: #10d48a;
    /* Wimraw Green */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 5px;
}

.powered-by a:hover {
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Responsive adjustment for Baleswar team access */
@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* footer end */

/* About Page  */
/* About Hero Section */
.about-hero {
    padding: 80px 10%;
    background: var(--wimraw-navy);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 10%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
}

.mv-box {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 15px;
    background: #f9fbfd;
    border-left: 5px solid var(--wimraw-green);
}

.mv-box h2 {
    color: var(--wimraw-navy);
    margin-bottom: 15px;
}

/* Story Section */
.our-story {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-image {
    flex: 1;
    min-width: 350px;
    height: 400px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Core Values Grid */
.values-section {
    padding: 80px 10%;
    background: #f4f7f6;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item i {
    font-size: 40px;
    color: var(--wimraw-green);
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    color: var(--wimraw-navy);
    margin-bottom: 10px;
}

.breadcrumb-section {
    position: relative;
    padding: 80px 0;
    background-color: #f8fffb;
    /* Very light mint tint */
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #edf2f0;
}

/* Background Abstract Patterns (Similar to your image) */
.breadcrumb-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pattern-circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(16, 212, 138, 0.08);
    /* Wimraw Green */
    border-radius: 50%;
}

.pattern-dots {
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(16, 212, 138, 0.2) 2px, transparent 2px);
    background-size: 15px 15px;
    transform: rotate(15deg);
}

.breadcrumb-area {
    position: relative;
    height: 400px;
    /* Defined height for the section */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Makes the <img> tag act as a background */
.breadcrumb-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the area */
    z-index: 1;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* White frost effect */
    z-index: 2;
    display: flex;
    align-items: center;
}

.breadcrumb-content {
    position: relative;
    z-index: 3;
    padding-left: 50px;
}

.page-title {
    font-size: 72px;
    font-weight: 800;
    color: #071c35;
    /* Wimraw Navy */
    margin-bottom: 10px;
}

.breadcrumb-nav {
    font-size: 18px;
    font-weight: 600;
}

.home-link,
.parent-page {
    color: #f2b822;
    /* High-Visibility Yellow */
    text-decoration: none;
}

.separator {
    margin: 0 10px;
    color: #64748b;
}



/* Mobile responsiveness for ground team in Baleswar */
@media (max-width: 768px) {
    .breadcrumb-area {
        height: 250px;
    }

    .page-title {
        font-size: 40px;
    }

    .breadcrumb-content {
        padding-left: 20px;
    }
}

/* End About Page */

/* Who We Are */

/* Identity Section */
.identity-section {
    padding: 100px 5%;
    background: #fff;
}

.identity-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.identity-image {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.identity-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 25px 25px 0px var(--wimraw-green);
}

.since-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--wimraw-navy);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 20px;
}

.identity-text {
    flex: 1.2;
    min-width: 350px;
}

.sub-label {
    color: var(--wimraw-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.identity-text h2 {
    font-size: 44px;
    color: var(--wimraw-navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.identity-text h2 span {
    color: var(--wimraw-green);
}

.core-pillars {
    margin-top: 40px;
}

.pillar {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pillar i {
    font-size: 24px;
    color: var(--wimraw-green);
    background: rgba(16, 212, 138, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Values Dark Section */
.values-dark {
    background: var(--wimraw-navy);
    padding: 100px 5%;
    text-align: center;
}

.values-row {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card-small {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    transition: 0.3s;
}

.value-card-small:hover {
    background: rgba(16, 212, 138, 0.1);
    transform: translateY(-10px);
}

.value-card-small i {
    font-size: 35px;
    color: var(--wimraw-green);
    margin-bottom: 20px;
}

.value-card-small h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-card-small p {
    color: #cbd5e1;
    font-size: 15px;
}

@media (max-width: 992px) {
    .identity-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .pillar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* end Who We Are */
/* WIMRAW Palette */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
}

.text-navy { color: var(--wimraw-navy); }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.w-fit { width: fit-content; }

/* Modern Gallery Interactions */
.modern-gallery-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.modern-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(7, 28, 53, 0.9) 0%, transparent 60%);
    transition: background 0.3s ease;
}

.modern-gallery-item img {
    transition: transform 0.6s ease;
}

/* Hover Effects */
.modern-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 28, 53, 0.15) !important;
}

.modern-gallery-item:hover img {
    transform: scale(1.1);
}

.modern-gallery-item:hover .modern-overlay {
    background: linear-gradient(to top, rgba(16, 212, 138, 0.7) 0%, transparent 80%);
}

.rounded-5 { border-radius: 2rem !important; }

/* Contact Page */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
}

.contact-header-wrap {
    padding: 100px 0 60px;
    text-align: center;
    background: #fdfdfd;
}

.contact-header-wrap h1 {
    font-size: 48px;
    color: var(--wimraw-navy);
    font-weight: 800;
}

.contact-header-wrap h1 span {
    color: var(--wimraw-green);
}

.glass-contact-grid {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(7, 28, 53, 0.08);
    margin-bottom: 80px;
}

/* Sidebar Styling */
.contact-sidebar {
    flex: 1;
    background: var(--wimraw-navy);
    padding: 60px;
    color: #fff;
    position: relative;
}

.sidebar-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.sidebar-header p {
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 50px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.link-item i {
    font-size: 20px;
    color: var(--wimraw-green);
}

.social-circles {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}

.social-circles a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-circles a:hover {
    background: var(--wimraw-green);
    transform: translateY(-5px);
}

/* Form Area Styling */
.contact-form-area {
    flex: 1.5;
    padding: 60px;
    background: #fff;
}

.input-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.field-box {
    flex: 1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.field-box label {
    font-weight: 700;
    color: var(--wimraw-navy);
    font-size: 14px;
    margin-bottom: 10px;
}

.field-box input,
.field-box textarea,
.field-box select {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #eee;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
}

.field-box input:focus,
.field-box textarea:focus {
    border-bottom-color: var(--wimraw-green);
    outline: none;
}

.glow-btn {
    background: var(--wimraw-green);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 212, 138, 0.3);
    transition: 0.4s;
}

.glow-btn:hover {
    background: var(--wimraw-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(7, 28, 53, 0.2);
}

@media (max-width: 992px) {
    .glass-contact-grid {
        flex-direction: column;
    }

    .contact-sidebar {
        padding: 40px;
    }
}

/* End Contact */
.donation-grid-v4 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

/* Content Side */
.mission-tag {
    background: #10d48a;
    color: #071c35;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

.donation-content-v4 h2 {
    font-size: 48px;
    color: #071c35;
    margin: 20px 0;
    font-weight: 800;
}

.donation-content-v4 h2 span {
    color: #10d48a;
}

.mission-desc {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.impact-features-v4 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.icon-sq {
    width: 50px;
    height: 50px;
    background: rgba(16, 212, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10d48a;
    font-size: 20px;
}

.feature-item h4 {
    margin: 0;
    color: #071c35;
    font-size: 18px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* Form Side */
.donation-form-v4 .form-inner-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.amount-selector-v4 {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.amt-chip {
    flex: 1;
    cursor: pointer;
}

.amt-chip input {
    display: none;
}

.amt-chip span {
    display: block;
    padding: 12px;
    border: 2px solid #f1f5f9;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #071c35;
    transition: 0.3s;
}

.amt-chip input:checked+span {
    border-color: #10d48a;
    background: rgba(16, 212, 138, 0.05);
}

.input-stack-v4 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #10d48a;
}

.input-stack-v4 input {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    outline: none;
}

.input-stack-v4 input:not(.input-with-icon input) {
    padding-left: 15px;
}

.input-stack-v4 input:focus {
    border-color: #10d48a;
}

/* Custom Select Styling */
.custom-v4-select {
    height: 50px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 15px;
    color: #071c35;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310d48a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.custom-v4-select:focus {
    border-color: #10d48a;
    box-shadow: 0 0 0 4px rgba(16, 212, 138, 0.1);
    outline: none;
}

/* Cycle Radio Selector */
.cycle-selector {
    display: flex;
    gap: 15px;
}

.cycle-option {
    flex: 1;
    cursor: pointer;
}

.cycle-option input {
    display: none;
}

.cycle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #64748b;
}

.cycle-box i {
    font-size: 18px;
}

.cycle-box span {
    font-weight: 700;
}

.cycle-option input:checked+.cycle-box {
    border-color: #10d48a;
    background: rgba(16, 212, 138, 0.05);
    color: #10d48a;
}

/* Ensure textarea matches the style */
textarea.form-control {
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    resize: none;
}

textarea.form-control:focus {
    border-color: #10d48a;
    box-shadow: none;
}

.btn-donate-submit-v4 {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    background: #10d48a;
    color: #071c35;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
}

.btn-donate-submit-v4:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 212, 138, 0.2);
}

.secure-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 992px) {
    .donation-grid-v4 {
        grid-template-columns: 1fr;
    }
}

.community-cta {
    padding: 100px 0;
    background-color: #ffffff;
    /* Soft cream background from image_1a28a2.jpg */
    background-image: url('{{ url_for("static", filename="img/bg-texture.png") }}');
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Corner Accent Decorations from image_1a28a2.jpg */
.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: #ffb703;
    /* Yellow corner */
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.community-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #074d44;
    /* Dark green corner */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.cta-inner-box {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Using Wimraw Trust Title Font */
.community-cta h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #071c35;
    /* Wimraw Navy */
    line-height: 1.2;
    margin-bottom: 25px;
}

.community-cta p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Reference Colors from image_1a28a2.jpg */
.btn-yellow {
    background: #10d48a;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-dark-green {
    background: #071c35;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-yellow:hover {
    background: #071c35;
    color: #fff;
}

.btn-dark-green:hover {
    background: #10d48a;
}

/* Wimraw Green hover */

@media (max-width: 768px) {
    .community-cta h2 {
        font-size: 32px;
    }

    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-yellow,
    .btn-dark-green {
        width: 100%;
        max-width: 280px;
    }
}

.blog-main-section {
    padding: 80px 0;
    background: #f8fbfd;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 28, 53, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--wimraw-green);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-details {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #64748b;
}

.blog-meta i {
    color: var(--wimraw-green);
    margin-right: 5px;
}

.blog-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-details h3 a {
    text-decoration: none;
    color: var(--wimraw-navy);
    transition: 0.3s;
}

.blog-details h3 a:hover {
    color: var(--wimraw-green);
}

.blog-details p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    text-decoration: none;
    color: var(--wimraw-navy);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    color: var(--wimraw-green);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

.pagination a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--wimraw-navy);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pagination a.active,
.pagination a:hover {
    background: var(--wimraw-green);
    color: #fff;
}


/* Faq */
/* FAQ Styling */
.faq-breadcrumb {
    padding: 60px 0;
    background: #071c35;
    /* Wimraw Navy */
    color: white;
    text-align: center;
}

.faq-main-area {
    padding: 80px 0;
    background: #f8fbfd;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: 0.3s;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #071c35;
}

.faq-question .icon {
    color: #10d48a;
    /* Wimraw Green */
    transition: 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #64748b;
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    border-left: 5px solid #10d48a;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 300px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* volunteer  */
.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control:focus {
    border-color: #0dfd91;
    box-shadow: none;
}

.card {
    border-top: 5px solid #0d31fd !important;
}

.text-prime {
    color: #00b371;
}

.btn-prime {
    background-color: #27ae60;
}


/* About Us */

.mission-about-area {
    background: #fff;
}

.mission-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Box Styling */
.mission-img-box {
    flex: 1;
    position: relative;
}

.mission-main-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.mission-text-box {
    flex: 1.2;
}

.sub-title {
    color: #f2b822;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    border-bottom: 2px solid #f2b822;
    width: fit-content;
}

.mission-text-box h2 {
    font-size: 48px;
    color: #071c35;
    margin-bottom: 20px;
    font-weight: 800;
}

.mission-desc {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #071c35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #10d48a;
}

/* CTA Card Styling */
.cta-card-box {
    background: #10d48a;
    padding: 40px;
    border-radius: 0 15px 15px 0;
    margin-top: 40px;
    position: relative;
}

.cta-card-box p {
    color: #071c35;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-donate-link {
    background: #071c35;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-donate-link:hover {
    background: #10d48a;
}

/* Mobile optimization for Baleswar ground team */
@media (max-width: 992px) {
    .mission-row {
        flex-direction: column;
    }

    .mission-text-box h2 {
        font-size: 36px;
    }
}

.mission-cta-small {
    background: #f2b822;
    /* High-Visibility Yellow */
    padding: 25px;
    border-radius: 12px;
    max-width: 450px;
    /* Reduced width for a "Small" feel */
    box-shadow: 0 10px 20px rgba(242, 184, 34, 0.2);
    margin-top: 30px;
}

.cta-content-minimal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-content-minimal p {
    color: #071c35;
    /* Wimraw Navy */
    font-weight: 700;
    font-size: 15px;
    /* Smaller font for a compact look */
    line-height: 1.5;
    margin: 0;
}

.btn-donate-sm {
    background: #071c35;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.btn-donate-sm:hover {
    background: #10d48a;
    /* Wimraw Green */
    transform: translateY(-2px);
}

/* Hero Styling */
.health-hero-modern {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top left, #f8fafc, #ffffff);
    text-align: center;
}

.mission-label {
    background: #10d48a1a;
    color: #10d48a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.health-hero-modern h1 {
    font-size: 54px;
    color: #071c35;
    margin: 20px 0;
    font-weight: 900;
}

.health-hero-modern h1 span {
    color: #10d48a;
}

/* Layout */
.impact-row {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-top: -50px;
}

.impact-content-box {
    flex: 1.4;
}

.impact-form-box {
    flex: 1;
}

/* Glass Info Card */
.glass-info-card {
    background: #071c35;
    color: white;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 30px 60px rgba(7, 28, 53, 0.15);
}

.pillar-item {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.pillar-number {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.pillar-number-green {
    font-size: 32px;
    font-weight: 900;
    color: #10d48a;
    display: none;
}

/* State tracking */
.pillar-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #10d48a;
}

/* CTA Card */
.health-cta-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.cta-header i {
    font-size: 40px;
    color: #10d48a;
    margin-bottom: 20px;
}

.btn-health-gradient {
    display: block;
    background: linear-gradient(135deg, #10d48a, #0eb978);
    color: white;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    margin: 30px 0;
    transition: 0.3s;
}

.btn-health-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 212, 138, 0.3);
}

.stat-foot {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-foot strong {
    display: block;
    font-size: 32px;
    color: #071c35;
}

/* Mobile Logic */
@media (max-width: 992px) {
    .impact-row {
        flex-direction: column;
        margin-top: 20px;
    }

    .glass-info-card,
    .about-hero .health-cta-card {
        padding: 30px;
    }

    .health-hero-modern h1 {
        font-size: 36px;
    }
}


.why-choose-area {
    padding: 80px 0;
    background: #fff;
}

.why-choose-content {
    max-width: 800px;
    text-align: left;
}

/* Header Elements */
.orange-tag {
    color: #f2b822;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

.title-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #f2b822;
    margin-left: 10px;
    vertical-align: middle;
}

.why-choose-content h2 {
    font-size: 42px;
    color: #071c35;
    font-weight: 800;
    margin: 20px 0;
}

.why-choose-content h2 span {
    color: #071c35;
}

.section-lead {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Checklist Styling */
.impact-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.impact-checklist li {
    margin-bottom: 15px;
    color: #071c35;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-checklist li i {
    color: #f2b822;
    font-size: 14px;
}

/* Button Layout */
.action-btn-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main-donate {
    background: #10d48a;
    color: #071c35;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-main-join {
    background: #1a6354;
    /* Deep Mission Green */
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-main-donate:hover,
.btn-main-join:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-content h2 {
        font-size: 32px;
    }

    .action-btn-row {
        flex-direction: column;
    }
}


.volunteer-application-area {
    background: #fdfdfd;
}

/* Branding Elements */
.mission-badge {
    background: #10d48a;
    color: #071c35;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

.text-prime span {
    color: #10d48a;
}

/* Wimraw Green */

/* Impact Stack */
.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.bg-soft-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.bg-soft-prime {
    background: rgba(16, 212, 138, 0.1);
    color: #10d48a;
}

/* The Application Card */
.application-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* Form Fields */
.form-control {
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 15px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #10d48a;
    background: #fff;
    box-shadow: none;
}

.word-indicator {
    font-weight: 700;
    color: #64748b;
    font-size: 12px;
}

/* The Submit Button */
.btn-submit-mission {
    background: #10d48a;
    color: #071c35;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
}

.btn-submit-mission:hover {
    background: #071c35;
    color: #fff;
    transform: scale(1.02);
}

/* Terms & Conditions Styles */
.terms-content-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    color: #071c35;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.terms-section p,
.terms-section li {
    color: #64748b;
    line-height: 1.8;
}

.terms-nav-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.terms-sidebar-links li a {
    display: block;
    padding: 12px 15px;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.terms-sidebar-links li a:hover,
.terms-sidebar-links li a.active {
    background: rgba(16, 212, 138, 0.1);
    color: #10d48a;
}

.mission-tag {
    background: #10d48a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* History  */
.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.unicef-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 60px;
    transition: box-shadow 0.3s ease;
}

.unicef-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.unicef-card-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.unicef-card-content {
    padding: 60px;
    flex: 1;
    min-width: 300px;
}

.unicef-card-img-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.unicef-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.unicef-card:hover .unicef-card-img {
    transform: scale(1.05);
}

.history-label {
    color: #198754;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.history-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.1;
}

.history-desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 35px;
}

.unicef-link {
    color: #198754;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.unicef-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.unicef-link:hover i {
    transform: translateX(5px);
}

.archive-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.archive-card {
    border: none;
    background: transparent;
}

.archive-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.archive-card h4 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.quote-card {
    background-color: #0eb978;
    margin-top: 60px;
    /* Space for the floating photo */
}

.ls-1 {
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .unicef-card-content {
        padding: 30px;
    }

    .unicef-card-img-wrapper {
        height: 300px;
    }
}

.archive-story-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Urbanist', sans-serif;
}

.archive-main-title {
    color: var(--wimraw-navy);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.archive-intro-text {
    color: #555555;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}


.wimraw-archive-container {
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.archive-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.archive-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.archive-img-wrapper:hover img {
    transform: scale(1.05);
    /* Subtle zoom on interaction */
}

/* Caption and Credit Styling */
.archive-caption {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444444;
}

.archive-credit {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wimraw-navy);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    border-left: 3px solid var(--wimraw-green);
    /* Branding accent */
    padding-left: 10px;
}

.archive-caption strong {
    color: var(--wimraw-navy);
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .archive-main-title {
        font-size: 2.2rem;
    }

    .archive-intro-text {
        font-size: 1.1rem;
    }

    .archive-story-section {
        padding: 60px 0;
    }
}

/* Privacy & Policy */
.policy-section {
    padding: 80px 0;
    background-color: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.policy-content p,
.policy-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.policy-highlight {
    background-color: #f0fdf4;
    /* Light Green */
    border-left: 5px solid #198754;
    padding: 25px;
    margin: 30px 0;
    font-weight: 500;
}

/* End Privacy & Policy */

/* Education */
:root {
    --wimraw-font: 'Urbanist', sans-serif;
    --navy-dark: #071c35;
    --wimraw-green: #10d48a;
    --dkms-red: #e60000;
}

body {
    font-family: var(--wimraw-font);
}

.fw-800 {
    font-weight: 800;
}

.ls-1 {
    letter-spacing: 1.5px;
}

/* Red Mission Badge */
.badge-wimraw-mission {
    background-color: #237223;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    display: inline-block;
}

/* Image & Icon Styling */
.main-mission-img {
    border: 15px solid #fff;
    border-radius: 30px !important;
}

.bg-light-green {
    background-color: rgba(16, 212, 138, 0.1);
}

/* Buttons */
.btn-dkms-red {
    background-color: var(--dkms-red);
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-dkms-red:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* Typography and Spacing Enhancements */
.edu-pillars {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pillar-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(7, 28, 53, 0.1) !important;
}

.bg-navy {
    background-color: #071c35;
}

.ls-1 {
    letter-spacing: 1.5px;
}

.fw-800 {
    font-weight: 800;
}

.fw-800 {
    font-weight: 800;
}

.text-navy {
    color: var(--wimraw-navy);
}

/* Mission Card Customization */
.mission-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(16, 212, 138, 0.15) !important;
}

.mission-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mission-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f2b822;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Link Style */
.btn-link-mission {
    color: var(--dkms-red);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: color 0.3s;
}

.btn-link-mission:hover {
    color: var(--wimraw-navy);
}

/* End Education */


/* Executive Board */
.fw-800 {
    font-weight: 800;
}

.ls-1 {
    letter-spacing: 1.5px;
}

.text-navy {
    color: var(--wimraw-navy);
}

/* Board Card Styling */
.board-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrapper {
    height: 320px;
    background-color: #f8f9fa;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.board-card:hover img {
    filter: grayscale(0%);
}

.card-body .text-danger {
    color: var(--wimraw-red) !important;
}

.card-body .text-success {
    color: var(--wimraw-green) !important;
}

/* Specialist Card Style */
.specialist-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.specialist-card:hover {
    transform: translateY(-5px);
    border-color: var(--wimraw-green);
}

.specialist-card img {
    border: 3px solid var(--wimraw-green);
}

/* Quote Box Style */
.quote-card {
    border-radius: 0 15px 15px 0;
}

/* End Executive Border */

/* Leadership */
/* Left Side Image Styling */
.leader-portrait {
    border-radius: 40px 0 40px 0;
    /* Asymmetric design style */
    border: 10px solid #fff;
}

.leader-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: -15px;
    background: #f2b822;
    color: #fff;
    padding: 10px 25px;
    font-weight: 800;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

/* Right Side Text Styling */
.leader-category {
    color: #f2b822;
    border-bottom: 2px solid #f2b822;
    display: inline-block;
    letter-spacing: 2px;
    font-weight: 700;
}

.leader-name {
    color: var(--wimraw-navy);
}

.leader-designation {
    color: var(--wimraw-green);
}

.btn-navy-solid {
    background-color: var(--wimraw-navy);
    color: #fff;
    transition: 0.3s;
}

.btn-navy-solid:hover {
    background-color: var(--wimraw-green);
    color: var(--wimraw-navy);
}

/* End LeaderShip */

:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-red: #ff2d42;
    --soft-slate: #f1f5f9;
}

.volunteers-area {
    background-color: #ffffff;
    font-family: 'Urbanist', sans-serif;
}

.ls-1 {
    letter-spacing: 2px;
}

.accent-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

/* Professional Card Design */
.volunteer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    /* Minimalist sharp corners */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-align: left !important;
    /* Professional alignment */
    padding: 0 !important;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(7, 28, 53, 0.12);
    border-color: var(--wimraw-green);
}

/* Image Wrapper with Branding */
.image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--soft-slate);
}

.volunteer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.volunteer-card:hover .volunteer-img {
    transform: scale(1.08);
}

/* Floating Location Tag */
.location-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--wimraw-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* Content Area */
.volunteer-info {
    padding: 25px;
    position: relative;
}

.volunteer-info h5 {
    font-weight: 900;
    color: var(--wimraw-navy);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.volunteer-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--wimraw-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.volunteer-bio {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bottom Branding Bar */
.card-footer-brand {
    height: 4px;
    width: 0;
    background: var(--wimraw-green);
    transition: width 0.4s ease;
}

.volunteer-card:hover .card-footer-brand {
    width: 100%;
}

/* Social Behavior Change */
.bg-navy {
    background-color: var(--wimraw-navy) !important;
}

.text-navy {
    color: var(--wimraw-navy);
}

.fw-800 {
    font-weight: 800;
}

.ls-1 {
    letter-spacing: 1.5px;
}

/* Custom Colors for Icons */
.bg-soft-prime {
    background-color: rgba(7, 28, 53, 0.1);
}

.bg-soft-success {
    background-color: rgba(16, 212, 138, 0.1);
}

.bg-soft-danger {
    background-color: rgba(230, 0, 0, 0.1);
}

/* Card Aesthetics */
.rounded-4 {
    border-radius: 20px !important;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

span {
    color: var(--wimraw-green);
}

/* End Social Behavior Change */

/*  innovation */
/* Wimraw Branding */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-red: #e60000;
}

.bg-navy {
    background-color: var(--wimraw-navy) !important;
}

.text-navy {
    color: var(--wimraw-navy);
}

.text-success {
    color: var(--wimraw-green) !important;
}

.fw-800 {
    font-weight: 800;
}

/* Offset Hero Aesthetics */
.hero-text-card {
    border-radius: 40px;
}

.ms-lg-n5 {
    margin-left: -3rem !important;
    /* Creates the overlap effect */
}

.hero-image-frame {
    height: 500px;
    z-index: 1;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Geometry */
.rounded-4 {
    border-radius: 20px !important;
}

.rounded-5 {
    border-radius: 30px !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(7, 28, 53, 0.25);
}

.ls-1 {
    letter-spacing: 1.5px;
}

span {
    color: #000;
    font-weight: 500px;
}

/* End Innovation */

/* Wimraw Branding */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-red: #e60000;
}

.text-navy {
    color: var(--wimraw-navy);
}

.bg-navy {
    background-color: var(--wimraw-navy);
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* Hero Modern Design */
.health-hero-modern {
    background: url('/static/img/healthcare-outreach.jpg') center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 28, 53, 0.95) 0%, rgba(7, 28, 53, 0.4) 100%);
}

.glass-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}


/* Custom Geometry */
.rounded-custom {
    border-radius: 4rem 1rem 4rem 1rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(7, 28, 53, 0.25);
}

/* Feature Icons */
.icon-sq {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bg-soft-success {
    background-color: rgba(16, 212, 138, 0.1);
}

.bg-soft-prime {
    background-color: rgba(7, 28, 53, 0.05);
}

/* Floating Stat Card */
.floating-stat-card {
    position: absolute;
    bottom: -30px;
    left: 40px;
    min-width: 200px;
    border-left: 5px solid var(--wimraw-green);
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: var(--wimraw-green);
    color: var(--wimraw-navy);
}


/* where we Work */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-red: #e60000;
}

.fw-800 {
    font-weight: 800;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-1 {
    letter-spacing: 1px;
}

.text-navy {
    color: var(--wimraw-navy);
}

.accent-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.location-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 28, 53, 0.12) !important;
}

.img-accent-container {
    height: 300px;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-img {
    transform: scale(1.08);
}

.card-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--wimraw-navy);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Typography & Links */
.btn-trust-link {
    color: var(--wimraw-navy);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.btn-trust-link:hover {
    color: var(--wimraw-green);
}

/* Utilities */
.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Where We work */


/* Wimraw Modern Branding */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-yellow: #f8c12c;
    --wimraw-red: #e60000;
}

/* THEMED HERO */
.modern-hero {
    min-height: 80vh;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.page-title-main {
    font-size: 5rem;
    font-weight: 900;
    color: var(--wimraw-navy);
    line-height: 0.9;
}

/* IMPACT CARD */
.bg-navy {
    background-color: var(--wimraw-navy) !important;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.ls-2 {
    letter-spacing: 2px;
}

.impact-metric-card {
    border-radius: 40px !important;
    transition: transform 0.4s ease;
}

.impact-metric-card:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 212, 138, 0.1) 0%, transparent 70%);
}

/* MODERNISED BUTTONS */
.btn-navy-modern {
    background: var(--wimraw-navy);
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.btn-navy-modern:hover {
    background: var(--wimraw-green);
    color: var(--wimraw-navy);
}

.btn-outline-navy {
    border: 2px solid var(--wimraw-navy);
    color: var(--wimraw-navy);
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.shadow-lg {
    box-shadow: 0 25px 50px -12px rgba(7, 28, 53, 0.15) !important;
}

/* Research And Reports */
/* WIMRAW Intelligence Palette */
:root {
    --wimraw-navy: #071c35;
    --wimraw-green: #10d48a;
    --wimraw-yellow: #f8c12c;
    --wimraw-lime: #c6e00a;
}

.text-navy {
    color: var(--wimraw-navy) !important;
}

.bg-navy {
    background-color: var(--wimraw-navy) !important;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.ls-2 {
    letter-spacing: 2px;
}

.x-small {
    font-size: 0.7rem;
}

/* Interactive Cards */
.featured-intel-card {
    min-height: 400px;
    border: none;
}

.report-node-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.report-node-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(7, 28, 53, 0.1) !important;
}

/* Specific Wimraw Lime Button */
.btn-lime-wimraw {
    background-color: var(--wimraw-lime);
    color: var(--wimraw-navy);
}

.btn-lime-wimraw:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.border-navy {
    border-color: var(--wimraw-navy) !important;
}

.border-warning {
    border-color: var(--wimraw-yellow) !important;
}


/* Pleged */
 :root {
        --brand-primary: #071c35;
        /* Wimraw Navy */
        --brand-accent: #10d48a;
        /* Wimraw Emerald Green */
        --brand-hover: #0bb877;
        --bg-subtle: #f8fafc;
        --text-main: #334155;
    }


    /* Professional Header Section */
    .hero-section {
        background-color: var(--brand-primary);
        /* Subtle green glow in the corner */
        background-image: radial-gradient(circle at 0% 0%, rgba(16, 212, 138, 0.15) 0%, transparent 50%);
        color: white;
        padding: 120px 0 160px 0;
        text-align: center;
        clip-path: ellipse(150% 100% at 50% 0%);
    }

    .hero-section h1 {
        font-weight: 800;
        font-size: 3.5rem;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        line-height: 1.6;
    }

    /* Selection Cards */
    .selection-container {
        margin-top: -80px;
        position: relative;
        z-index: 10;
    }

    .pledge-card {
        background: white;
        border: 1px solid rgba(16, 212, 138, 0.2);
        border-radius: 20px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

    .pledge-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(16, 212, 138, 0.2);
        border-color: var(--brand-accent);
    }

    .icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        background: rgba(16, 212, 138, 0.1);
        color: var(--brand-hover);
        border-radius: 16px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Professional Form Styling */
    .form-wrapper {
        max-width: 900px;
        margin: 4rem auto;
        background: white;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid #e2e8f0;
        border-top: 5px solid var(--brand-accent);
        /* Green top accent */
        display: none;
        animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-label {
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #383838;
        margin-bottom: 0.5rem;
    }

    .form-control {
        border: 2px solid #f1f5f9;
        background: #f8fafc;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        transition: 0.2s;
    }

    .form-control:focus {
        border-color: var(--brand-accent);
        background: white;
        box-shadow: none;
    }

    .btn-action {
        background: var(--brand-accent);
        color: var(--brand-primary);
        /* Navy text on green looks very pro */
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 12px;
        font-weight: 700;
        transition: 0.3s;
    }

    .btn-action:hover {
        background: var(--brand-hover);
        color: white;
        transform: scale(1.02);
        box-shadow: 0 10px 15px -3px rgba(16, 212, 138, 0.3);
    }

    .btn-outline-custom {
        border: 2px solid var(--brand-accent);
        color: var(--brand-hover);
        font-weight: 600;
        border-radius: 50px;
        transition: 0.3s;
    }

    .btn-outline-custom:hover {
        background: var(--brand-accent);
        color: var(--brand-primary);
    }

    .section-divider {
        height: 1px;
        background: #e2e8f0;
        margin: 2rem 0;
    }

    /* IMPACT COUNTER STYLES */
    .text-navy {
        color: var(--brand-primary) !important;
    }

    .fw-900 {
        font-weight: 900;
    }

    .ls-1 {
        letter-spacing: 1px;
    }

    .counter-card {
        margin-top: -50px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(16, 212, 138, 0.1) !important;
    }

    .counter-icon-sm {
        font-size: 1.25rem;
        color: var(--brand-accent);
        opacity: 0.8;
    }

    .counter-item h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    @media (max-width: 768px) {
        .counter-card {
            margin-top: 0;
            margin-bottom: 2rem;
        }

        .counter-item h2 {
            font-size: 2rem;
        }
    }
/* End Pleged */


/* NCSI THEME COLORS */
:root {
    --wimraw-navy: #0b1426;      /* Deep Intelligence Navy */
    --wimraw-emerald: #10d48a;   /* Your Brand Green */
    --wimraw-border: #1e293b;
}

/* THE DROPDOWN CONTAINER */
.ncsi-dropdown {
    position: absolute;
    top: 70px;
    right: 0;
    width: 260px;
    background: var(--wimraw-navy);
    border: 1px solid var(--wimraw-border);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(16, 212, 138, 0.05); /* Subtle Green Glow */
    padding: 12px;
    display: none;
    z-index: 1000;
}

/* CLEARANCE BADGE */
.clearance-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wimraw-emerald);
    background: rgba(16, 212, 138, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* INDIVIDUAL ITEMS */
.ncsi-item {
    display: flex;
    align-items: center;
    padding: 12px;
    color: #cbd5e1;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s ease;
    margin-bottom: 4px;
}

.ncsi-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-right: 12px;
    font-size: 18px;
}

/* INTERACTIVE STATES */
.ncsi-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.ncsi-item:hover .ncsi-icon-box {
    color: var(--wimraw-emerald);
    background: rgba(16, 212, 138, 0.15);
}

.ncsi-logout:hover {
    color: #ff4d4d;
}

.ncsi-logout:hover .ncsi-icon-box {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

.ncsi-divider {
    height: 1px;
    background: var(--wimraw-border);
    margin: 8px 12px;
}

.bg-navy-wimraw { background-color: #071c35; }
.text-navy { color: #071c35; }
.btn-navy-wimraw { background: #071c35; color: white; }
.btn-emerald-wimraw { background: #10d48a; color: #071c35; }
.text-emerald-wimraw { color: #10d48a; }

.fw-900 { font-weight: 900; }
.tracking-widest { letter-spacing: 2px; }

.personnel-card-glow {
    border: 1px solid rgba(16, 212, 138, 0.2) !important;
    box-shadow: 0 10px 30px rgba(7, 28, 53, 0.1), 0 0 15px rgba(16, 212, 138, 0.05);
}

.official-tab {
    background: #f8fafc !important;
    color: #64748b !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    transition: 0.3s;
}

.official-tab.active {
    background: #071c35 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(7, 28, 53, 0.2);
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 212, 138, 0.2);
    border: none;
}

/* WRAPPER & TRIGGER */
.user-nav-wrapper {
    position: relative;
    display: inline-block;
}

.user-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ncsi-avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #b0b8c1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.ncsi-avatar-circle span {
    color: #1a73e8; /* Official Blue */
    font-size: 22px;
    font-weight: 400;
}

.welcome-label {
    display: block;
    font-size: 11px;
    color: #5f6368;
    line-height: 1;
}

.user-name-text {
    font-size: 16px;
    color: #ffffff; /* Deep Portal Blue */
    font-weight: 500;
}

.arrow-icon { color: #5f6368; font-size: 18px; transition: 0.3s; }

/* DROPDOWN BOX */
.ncsi-exact-dropdown {
    position: absolute;
    top: 115%;
    right: 0;
    width: 210px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    display: none; /* Managed by JS */
    z-index: 1000;
    padding: 6px;
}

.ncsi-exact-dropdown.active { display: block; }

.dropdown-link-exact {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none !important;
    color: #004a7c;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.2s;
}

.dropdown-link-exact i {
    font-size: 18px;
    margin-right: 12px;
    color: #004a7c;
}

.dropdown-link-exact:hover { background: #f1f3f4; }

/* LOGOUT SECTION */
.logout-bg-wrapper {
    background: #f8f9fa;
    margin-top: 5px;
    border-radius: 4px;
}

.logout-item { color: #333; }


/* research And Reports */
  :root {
        --res-navy: #071c35;
        --res-emerald: #10d48a;
        --res-gray: #f4f7f6;
    }
    .research-hero {
        background: linear-gradient(rgba(7, 28, 53, 0.9), rgba(7, 28, 53, 0.9)), url('/static/img/research-bg.jpg');
        background-size: cover;
        color: white;
        padding: 90px 0;
        text-align: center;
        border-bottom: 5px solid var(--res-emerald);
    }
    .report-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: 0.3s;
        border: 1px solid #eee;
    }
    .report-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .report-badge {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 5px 12px;
        border-radius: 4px;
        background: var(--res-emerald);
        color: white;
        font-weight: 700;
    }
    .download-btn {
        background: var(--res-navy);
        color: white;
        border-radius: 6px;
        padding: 10px 20px;
        font-size: 0.9rem;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
    }
    .download-btn:hover {
        background: var(--res-emerald);
        color: white;
    }
    .filter-pill {
        cursor: pointer;
        padding: 8px 20px;
        border-radius: 50px;
        border: 1px solid #ddd;
        margin-right: 10px;
        font-weight: 600;
        transition: 0.3s;
    }
    .filter-pill.active {
        background: var(--res-navy);
        color: white;
        border-color: var(--res-navy);
    }
    /* End  */

    