

:root {
    --hero-blue: #1749a8;
    --hero-blue-dark: #10377f;
    --hero-blue-glow: rgba(23, 73, 168, 0.14);
    --hero-green: #079447;
    --hero-green-glow: rgba(7, 148, 71, 0.16);
    --hero-text: #14213d;
    --hero-muted: #536279;
    --hero-border: rgba(23, 73, 168, 0.14);
    --container-max-w: 1280px;
    --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   01. HERO SECTION CONTAINER
   - Fixed header offset: 82px desktop
   - Internal breathing space below header
   - Desktop height: 80vh with min-height: 80vh
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 82px;
    height: 80vh;
    min-height: 80vh;
    padding-top: clamp(14px, 2vh, 24px);
    padding-bottom: clamp(14px, 2vh, 24px);
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Subtle Ambient Lighting */
.hero-ambient-glow-left {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -240px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 73, 168, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-ambient-glow-right {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -200px;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 148, 71, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   02. HERO SLIDER & SLIDE ARCHITECTURE
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.75s var(--hero-ease),
        visibility 0.75s var(--hero-ease);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 4;
}

/* 2-Column Inner Grid (52% Left Content / 48% Right Visual) */
.hero-slide-inner {
    width: min(calc(100% - 48px), var(--container-max-w));
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 28px;
    position: relative;
    box-sizing: border-box;
}

/* ==========================================================================
   03. LEFT CONTENT (Strict 1:1 Alignment with Header Logo)
   - Vertical Spacing Rhythm:
     Label -> 16-20px -> Heading -> 18-22px -> Paragraph -> 24-28px -> CTAs -> 24-28px -> Stats
   ========================================================================== */
.hero-content {
    position: relative;
    z-index: 6;
    padding: 0;
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow Pill Badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px;
    margin-bottom: clamp(14px, 1.8vh, 20px);
    background: rgba(23, 73, 168, 0.06);
    border: 1px solid rgba(23, 73, 168, 0.14);
    border-radius: 50px;
    color: var(--hero-blue);
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hero-green);
    box-shadow: 0 0 0 3px rgba(7, 148, 71, 0.22);
    animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(7, 148, 71, 0.22);
    }
    50% {
        transform: scale(1.18);
        box-shadow: 0 0 0 5px rgba(7, 148, 71, 0.38);
    }
}

/* Headings (Playfair Display, Large & Editorial) */
.hero-content h1,
.hero-content h2 {
    margin: 0 0 clamp(16px, 2vh, 22px);
    color: var(--hero-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 3.6vw, 50px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    max-width: 580px;
    overflow-wrap: break-word;
}

.text-highlight {
    color: var(--hero-green);
    position: relative;
    display: inline;
}

/* Descriptive Paragraph */
.hero-content p {
    max-width: 520px;
    margin: 0 0 clamp(20px, 2.5vh, 28px);
    color: var(--hero-muted);
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(14px, 0.98vw, 15.5px);
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

/* ==========================================================================
   04. CALL-TO-ACTION BUTTONS (Equal 48px Height, Cohesive Group)
   ========================================================================== */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: clamp(22px, 2.8vh, 30px);
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s var(--hero-ease);
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--hero-blue) 0%, var(--hero-blue-dark) 100%);
    box-shadow: 0 8px 22px rgba(23, 73, 168, 0.24);
    border: 1.5px solid transparent;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #1d55bf 0%, #113f94 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(23, 73, 168, 0.32);
}

.secondary-btn {
    color: var(--hero-blue);
    background: rgba(255, 255, 255, 0.90);
    border: 1.5px solid rgba(23, 73, 168, 0.28);
    box-shadow: 0 4px 14px rgba(20, 40, 80, 0.05);
}

.secondary-btn:hover {
    color: #ffffff;
    background: var(--hero-blue);
    border-color: var(--hero-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(23, 73, 168, 0.22);
}

.primary-btn i,
.secondary-btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.primary-btn:hover i,
.secondary-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   05. BORDERLESS AIRY IMPACT STATS (Desktop 4-in-a-row)
   ========================================================================== */
.impact-stats {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 600px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
}

.impact-item {
    padding: 0 18px;
    border-right: 1px solid var(--hero-border);
}

.impact-item:first-child {
    padding-left: 0;
}

.impact-item:last-child {
    border-right: none;
}

.impact-item strong {
    display: block;
    color: var(--hero-blue);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(21px, 1.8vw, 27px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.impact-item span {
    display: block;
    color: var(--hero-muted);
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}

/* ==========================================================================
   06. RIGHT HERO VISUAL (Organic Circular Cut & Soft Left Gradient Blend)
   ========================================================================== */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: calc(80vh - 120px);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 46% 0 0 46%;
    box-shadow: -15px 0 35px rgba(23, 73, 168, 0.05);
}

.hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    border-radius: inherit;
    filter: saturate(1.03);
    transition: transform 1.6s var(--hero-ease);
}

.hero-slide.active .hero-visual img {
    transform: scale(1.02);
}

/* Soft transition blend between white content area and image */
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 160px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0.28) 65%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Subtle decorative organic border highlight */
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    pointer-events: none;
    z-index: 3;
}

/* ==========================================================================
   07. HERO BOTTOM BAR (Slider Controls on Left, Scroll Indicator on Right)
   - Symmetrically aligned with .header-container
   ========================================================================== */
.hero-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(10px, 1.8vh, 18px);
    z-index: 10;
    width: min(calc(100% - 48px), var(--container-max-w));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-bottom-bar > * {
    pointer-events: auto;
}

/* Slider Controls */
.hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 73, 168, 0.18);
    color: var(--hero-blue);
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 40, 80, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s var(--hero-ease);
}

.slider-arrow:hover {
    background: var(--hero-blue);
    color: #ffffff;
    border-color: var(--hero-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(23, 73, 168, 0.28);
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 6px;
    min-height: 40px;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dot-num {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #8c9cb2;
    transition: color 0.25s ease;
}

.dot-line {
    width: 20px;
    height: 2.5px;
    border-radius: 10px;
    background: rgba(23, 73, 168, 0.16);
    transition: all 0.3s ease;
}

.slider-dot:hover .dot-num {
    color: var(--hero-blue);
}

.slider-dot.active .dot-num {
    color: var(--hero-blue);
}

.slider-dot.active .dot-line {
    width: 32px;
    background: var(--hero-blue);
}

/* Scroll to Explore Indicator */
.scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--hero-muted);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.scroll-indicator:hover {
    color: var(--hero-blue);
}

.scroll-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(23, 73, 168, 0.20);
    background: rgba(255, 255, 255, 0.90);
    color: var(--hero-blue);
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.05);
    animation: gentleBounce 2.5s infinite ease-in-out;
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* ==========================================================================
   08. TABLET BREAKPOINT (max-width: 1100px)
   Matches tablet .header-container width: min(calc(100% - 36px), 1280px)
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-section {
        height: 80vh;
        min-height: 80vh;
    }

    .hero-slide-inner,
    .hero-bottom-bar {
        width: min(calc(100% - 36px), var(--container-max-w));
    }

    .hero-slide-inner {
        grid-template-columns: 54% 46%;
        gap: 20px;
    }

    .hero-content {
        max-width: 540px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(28px, 3.5vw, 42px);
    }

    .hero-visual {
        min-height: 320px;
        max-height: calc(80vh - 140px);
    }

    .impact-item {
        padding: 0 14px;
    }

    .impact-item strong {
        font-size: 21px;
    }
}

/* Short desktop / laptop screens safety rule: never clip */
@media (max-height: 640px) and (min-width: 851px) {
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 18px;
        padding-bottom: 56px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-content p {
        margin-bottom: 14px;
    }

    .hero-actions {
        margin-bottom: 16px;
    }
}


@media (max-width: 850px) {
    .hero-section {
        margin-top: 74px;
        padding-top: 14px;
        padding-bottom: 24px;
        padding-left: 0;
        padding-right: 0;
        height: auto;
        min-height: 80vh;
        max-height: none;
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
        overflow-y: visible;
        background: #ffffff;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        box-sizing: border-box;
    }

    /* Ambient glows contained or hidden on mobile to eliminate any overflow */
    .hero-ambient-glow-left,
    .hero-ambient-glow-right {
        display: none;
    }

    /* CSS Grid Slider: all slides share one cell, auto-expanding parent height */
    .hero-slider {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        width: 100%;
        max-width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .hero-slide {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: block;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2;
    }

    /* Inner Slide: Full width with 16px lateral padding (touches viewport edges) */
    .hero-slide-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        height: auto;
        box-sizing: border-box;
    }

    /* display: contents flattens hero-content into direct flex items of hero-slide-inner */
    .hero-content {
        display: contents;
    }

    /* 1. LABEL / EYEBROW */
    .hero-eyebrow {
        order: 1;
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        padding: 6px 14px;
        background: rgba(242, 246, 252, 0.95);
        border: 1px solid rgba(23, 73, 168, 0.12);
        box-shadow: 0 2px 8px rgba(23, 73, 168, 0.06);
    }

    /* 2. MAIN HERO HEADING */
    .hero-content h1,
    .hero-content h2 {
        order: 2;
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(27px, 5.2vw, 27px);
        line-height: 1.22;
        letter-spacing: -0.02em;
        margin: 0 0 12px 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        word-break: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        color: var(--hero-text);
    }

    /* 3. DESCRIPTION PARAGRAPH (Readable ~16px text) */
    .hero-content p {
        order: 3;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        line-height: 1.58;
        color: #4a5d78;
        margin: 0 0 18px 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* 4. CTA BUTTONS */
    .hero-actions {
        order: 4;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px 0;
        box-sizing: border-box;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        height: 48px;
        padding: 0 20px;
        font-size: 14.5px;
        font-weight: 600;
        gap: 8px;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 50px;
        white-space: nowrap;
    }

    .primary-btn span,
    .secondary-btn span {
        white-space: nowrap;
    }

    .primary-btn i,
    .secondary-btn i {
        font-size: 12px;
        flex-shrink: 0;
    }

    /* 5. HERO IMAGE (Centered on child's smiling face, responsive, organic curve) */
    .hero-visual {
        order: 5;
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 100%;
        height: clamp(200px, 32vh, 250px);
        min-height: 190px;
        max-height: 260px;
        margin: 0 0 18px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(23, 73, 168, 0.09);
        border: 1.5px solid rgba(23, 73, 168, 0.12);
        box-sizing: border-box;
        pointer-events: auto;
    }

    .hero-visual img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 72% 50%;
        filter: saturate(1.05);
        opacity: 1;
        border-radius: inherit;
        transform: none;
    }

    .hero-visual::before {
        display: none;
    }

    .hero-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.4);
        pointer-events: none;
    }

    /* 6. STATISTICS (Airy 2x2 grid with hairline divider) */
    .impact-stats {
        order: 6;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 14px;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px 0;
        padding: 14px 12px;
        background: rgba(242, 246, 252, 0.65);
        border: 1px solid rgba(23, 73, 168, 0.10);
        border-radius: 14px;
        box-sizing: border-box;
    }

    .impact-item {
        padding: 4px 8px;
        border-right: 1px solid rgba(23, 73, 168, 0.12);
        background: transparent;
        border-radius: 0;
        min-width: 0;
        box-sizing: border-box;
    }

    .impact-item:first-child {
        padding-left: 6px;
    }

    .impact-item:nth-child(2n) {
        border-right: none;
    }

    .impact-item strong {
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(20px, 5vw, 24px);
        font-weight: 700;
        color: var(--hero-blue);
        line-height: 1.1;
        margin-bottom: 3px;
        display: block;
    }

    .impact-item span {
        font-family: "Inter", sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--hero-muted);
        line-height: 1.3;
        display: block;
        white-space: normal;
    }

    /* 7. SLIDER CONTROLS (Positioned naturally below statistics) */
    .hero-bottom-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin: 4px auto 8px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        z-index: 10;
        box-sizing: border-box;
    }

    .hero-slider-controls {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        background: rgba(255, 255, 255, 0.96);
        border: 1.5px solid rgba(23, 73, 168, 0.18);
        box-shadow: 0 4px 12px rgba(20, 40, 80, 0.06);
    }

    .slider-pagination {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .slider-dot {
        padding: 4px 6px;
        min-height: 42px;
    }

    .dot-num {
        font-size: 12px;
        font-weight: 700;
    }

    .dot-line {
        width: 18px;
    }

    .slider-dot.active .dot-line {
        width: 28px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Tablet to Small Mobile Adaptive Button Row (When width >= 540px) */
@media (min-width: 540px) and (max-width: 850px) {
    .hero-actions {
        flex-direction: row;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        flex: 1 1 0;
        width: auto;
    }
}

/* Small Mobile (max-width: 480px): adjust header offset */
@media (max-width: 480px) {
    .hero-section {
        margin-top: 68px;
        padding-top: 10px;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-slide-inner {
        padding: 0 12px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(17px, 5.2vw, 19px);
        line-height: 1.22;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.55;
    }

    .primary-btn,
    .secondary-btn {
        height: 44px;
        font-size: 13.5px;
    }

    .hero-visual {
        height: 180px;
        min-height: 170px;
    }

    .impact-item strong {
        font-size: 19px;
    }

    .impact-item span {
        font-size: 11.5px;
    }
}

/* ==========================================================================
   10. ACCESSIBILITY / PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .slider-arrow,
    .primary-btn,
    .secondary-btn,
    .eyebrow-dot,
    .scroll-icon,
    .hero-visual img {
        transition: none !important;
        animation: none !important;
    }
}

/* About section  */


.about-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: auto;
    padding: 120px 0 125px;

    /* Different from pure white hero */
    background: #f8fbff;

    color: #182235;
    overflow: hidden;

    /* Clear separation from HERO */
    border-top: 1px solid #dbe5f1;

    /* Very soft inner depth */
    box-shadow:
        inset 0 18px 45px #edf4fb,
        0 -1px 0 #ffffff;
}


/* =========================================================
   SECTION DIVIDER / LENS EFFECT
   ========================================================= */

.about-section {
    position: relative;
}

/* Main horizontal divider */
.about-section .about-container::before {
    content: "";
    position: absolute;

    top: -121px;
    left: 50%;
    transform: translateX(-50%);

    width: min(760px, 72%);
    height: 1px;

    background: linear-gradient(
        90deg,
        #dbe5f1 0%,
        #cbdced 28%,
        #1749a8 50%,
        #cbdced 72%,
        #dbe5f1 100%
    );

    opacity: 0.8;

    box-shadow:
        0 0 12px #d9e7f7,
        0 0 25px #edf5ff;

    pointer-events: none;
}



/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.about-section::before {
    content: "";

    position: absolute;

    top: -180px;
    left: -180px;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background: #eef5ff;

    z-index: -2;

    pointer-events: none;
}


.about-section::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: #eef9f3;

    z-index: -2;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.about-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


/* =========================================================
   TOP HEADING
   ========================================================= */

.about-heading {
    width: 100%;
    max-width: 780px;

    margin: 0 auto 75px;

    text-align: center;
}


.about-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 21px;

    padding: 8px 15px;

    border: 1px solid #d8e3f4;
    border-radius: 999px;

    background: #ffffff;

    color: #1749a8;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    box-shadow:
        0 8px 25px #eaf1fa;
}


.about-eyebrow-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #079447;

    box-shadow:
        0 0 0 5px #edf8f1;
}


.about-heading h2 {
    margin: 0;

    color: #182235;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 4.5vw, 62px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.035em;
}


.about-heading h2 span {
    color: #079447;
}


.about-intro {
    width: 100%;
    max-width: 670px;

    margin: 26px auto 0;

    color: #596579;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   MAIN ABOUT LAYOUT
   ========================================================= */

.about-content {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   IMAGE SIDE
   ========================================================= */

.about-visual {
    position: relative;

    min-width: 0;

    padding: 20px 30px 40px 0;
}


.about-visual::before {
    content: "";

    position: absolute;

    top: -5px;
    left: -35px;

    width: 125px;
    height: 125px;

    border: 1px solid #d7e3f5;

    border-radius: 50%;

    z-index: -1;
}


.about-visual::after {
    content: "";

    position: absolute;

    right: -5px;
    bottom: 0;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: #edf8f1;

    z-index: -1;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.about-image-wrapper {
    position: relative;

    width: 100%;

    min-height: 560px;

    overflow: hidden;

    border: 1px solid #dce5ef;

    border-radius: 28px 90px 28px 90px;

    background: #eef4fb;

    box-shadow:
        0 28px 70px #dfe8f2,
        0 8px 25px #edf3f9;
}


.about-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            #ffffff08 0%,
            #ffffff00 55%,
            #07944712 100%
        );
}


.about-image-wrapper img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 560px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.about-image-wrapper:hover img {
    transform: scale(1.045);
}


/* =========================================================
   IMPACT CARD
   ========================================================= */

.about-impact-card {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;

    width: min(275px, 78%);

    padding: 22px 24px;

    border: 1px solid #ffffff;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 20px 50px #dfe8f2,
        0 5px 18px #edf3f9;
}


.about-impact-card strong {
    margin-bottom: 7px;

    color: #1749a8;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.35;
}


.about-impact-card span {
    color: #596579;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.about-text {
    min-width: 0;
}


.about-small-title {
    display: block;

    margin-bottom: 14px;

    color: #079447;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.about-text h3 {
    max-width: 620px;

    margin: 0 0 22px;

    color: #182235;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(35px, 3.6vw, 49px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.025em;
}


.about-text > p {
    max-width: 650px;

    margin: 0 0 17px;

    color: #596579;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.8;
}

/* =========================================================
   ABOUT POINTS
   ========================================================= */

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 31px;
}


.about-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    border: 1px solid #e0e8f1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 22px #eaf0f7;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.about-point:hover {
    transform: translateY(-4px);
    border-color: #cbdced;
    box-shadow: 0 15px 35px #dfe8f2;
}


/* =========================================================
   POINT ICON
   ========================================================= */

.about-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid #dce7f6;
    border-radius: 50%;
    background: #f3f7fd;
    box-shadow: 0 7px 18px #e5edf7;
}


.about-point-icon i {
    color: #1749a8;
    font-size: 17px;
}


.about-point-content {
    min-width: 0;
}


.about-point-content h4 {
    margin: 2px 0 5px;
    color: #182235;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}


.about-point-content p {
    margin: 0;
    color: #7b8798;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.about-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    margin-top: 31px;
    padding: 0 24px;
    overflow: hidden;
    border-radius: 999px;
    color: #ffffff;
    background: #1749a8;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 12px 28px #dce8f7;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.about-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 80%;
    height: 100%;
    background: #ffffff33;
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}


.about-button:hover::before {
    left: 130%;
}


.about-button:hover {
    transform: translateY(-3px);
    background: #10377f;
    box-shadow: 0 17px 35px #d5e2f3;
}


.about-button i {
    font-size: 13px;
    transition: transform 0.3s ease;
}


.about-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin-top: 105px;
    border-top: 1px solid #dce5ef;
    border-bottom: 1px solid #dce5ef;
}


.about-value {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
    padding: 30px 24px;
    border-right: 1px solid #dce5ef;
}


.about-value:first-child {
    padding-left: 0;
}


.about-value:last-child {
    padding-right: 0;
    border-right: 0;
}


.about-value-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    color: #1749a8;
    background: #f2f6fd;
    font-size: 12px;
    font-weight: 800;
}


.about-value h4 {
    margin: 2px 0 7px;
    color: #182235;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}


.about-value p {
    margin: 0;
    color: #7b8798;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .about-text {
        width: min(700px, 100%);
        margin: 0 auto;
    }

    .about-image-wrapper,
    .about-image-wrapper img {
        min-height: 520px;
    }

    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-value {
        border-bottom: 1px solid #dce5ef;
    }

    .about-value:nth-child(2) {
        border-right: 0;
    }

    .about-value:nth-child(3),
    .about-value:nth-child(4) {
        border-bottom: 0;
    }

    .about-value:nth-child(3) {
        padding-left: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 78px 0 82px;
        background: #f8fbff;
        border-top: 1px solid #d8e4f1;
        box-shadow: inset 0 12px 30px #edf4fb;
    }

    .about-section .about-container::before {
        top: -79px;
        width: calc(100% - 35px);
        background: linear-gradient(
            90deg,
            #dbe5f1 0%,
            #1749a8 50%,
            #dbe5f1 100%
        );
    }

    .about-section .about-container::after {
        top: -94px;
        width: 75px;
        height: 25px;
        box-shadow:
            0 0 18px #ffffff,
            0 0 35px #dcecff;
    }

    .about-container {
        width: calc(100% - 28px);
    }

    .about-heading {
        margin-bottom: 45px;
    }

    .about-eyebrow {
        margin-bottom: 17px;
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.09em;
    }

    .about-heading h2 {
        font-size: clamp(32px, 9vw, 43px);
        line-height: 1.08;
    }

    .about-intro {
        margin-top: 19px;
        font-size: 17px;
        line-height: 1.7;
    }

    .about-content {
        gap: 45px;
    }

    .about-visual {
        padding: 12px 10px 30px 0;
    }

    .about-visual::before {
        left: -20px;
        width: 85px;
        height: 85px;
    }

    .about-visual::after {
        right: -2px;
        width: 100px;
        height: 100px;
    }

    .about-image-wrapper {
        min-height: 430px;
        border-radius: 22px 58px 22px 58px;
    }

    .about-image-wrapper img {
        min-height: 430px;
    }

    .about-impact-card {
        width: min(250px, 82%);
        padding: 17px 18px;
        border-radius: 15px;
    }

    .about-impact-card strong {
        font-size: 15px;
    }

    .about-impact-card span {
        font-size: 14px;
    }

    .about-small-title {
        margin-bottom: 12px;
        font-size: 12px;
        letter-spacing: 0.13em;
    }

    .about-text h3 {
        margin-bottom: 18px;
        font-size: clamp(29px, 8vw, 38px);
        line-height: 1.13;
    }

    .about-text > p {
        font-size: 17px;
        line-height: 1.7;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 27px;
    }

    .about-point {
        padding: 14px;
    }

    .about-point-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .about-point-content h4 {
        font-size: 16px;
    }

    .about-point-content p {
        font-size: 15px;
        line-height: 1.55;
    }

    .about-button {
        width: 100%;
        min-height: 51px;
        margin-top: 28px;
        font-size: 14px;
    }

    .about-values {
        grid-template-columns: 1fr;
        margin-top: 65px;
    }

    .about-value,
    .about-value:first-child,
    .about-value:last-child,
    .about-value:nth-child(3) {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid #dce5ef;
    }

    .about-value:last-child {
        border-bottom: 0;
    }

    .about-value h4 {
        font-size: 17px;
    }

    .about-value p {
        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .about-section {
        padding: 65px 0 72px;
    }

    .about-section .about-container::before {
        top: -66px;
        width: calc(100% - 28px);
    }

    .about-section .about-container::after {
        top: -81px;
        width: 65px;
        height: 22px;
    }

    .about-container {
        width: calc(100% - 24px);
    }

    .about-heading {
        margin-bottom: 38px;
    }

    .about-heading h2 {
        font-size: 31px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-image-wrapper,
    .about-image-wrapper img {
        min-height: 370px;
    }

    .about-image-wrapper {
        border-radius: 20px 48px 20px 48px;
    }

    .about-impact-card {
        width: 85%;
        padding: 15px;
    }

    .about-text > p {
        font-size: 16px;
    }

    .about-point {
        gap: 12px;
        padding: 13px;
    }

    .about-point-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}


/* =========================================================
   VERY SMALL / SHORT MOBILE
   ========================================================= */

@media (max-width: 420px) and (max-height: 700px) {

    .about-section {
        padding-top: 58px;
    }

    .about-section .about-container::before {
        top: -59px;
    }

    .about-section .about-container::after {
        top: -73px;
    }

    .about-heading {
        margin-bottom: 34px;
    }

    .about-content {
        gap: 38px;
    }

    .about-image-wrapper,
    .about-image-wrapper img {
        min-height: 340px;
    }

    .about-values {
        margin-top: 55px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-image-wrapper img,
    .about-point,
    .about-button,
    .about-button i {
        transition: none !important;
    }
}



/* mission and vison section */

/* =========================================================
   MISSION & VISION
   SIMPLE BLUE THEME
========================================================= */

.mission-vision-section {
    width: 100%;
    padding: 95px 0 100px;

    background: #ffffff;
    color: #182235;

    border-top: 1px solid #dbe5f1;
    border-bottom: 1px solid #dbe5f1;
}

.mission-vision-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   MISSION & VISION INTRO
========================================================= */

.mission-vision-heading {
    max-width: 760px;
    margin: 0 auto 55px;

    text-align: center;
}

.mission-vision-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #079447;
}

.mission-vision-heading h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    color: #1749a8;
}

.mission-vision-heading p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   MISSION / VISION GRID
========================================================= */

.mission-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   MISSION / VISION CARD
========================================================= */

.mission-vision-card {
    display: flex;
    align-items: flex-start;

    gap: 24px;

    padding: 34px;

    background: #f5f8fd;

    border: 1px solid #d4e0ef;
    border-radius: 14px;

    box-shadow: 0 8px 24px rgba(23, 73, 168, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-4px);

    border-color: #b8cbe4;

    box-shadow: 0 14px 32px rgba(23, 73, 168, 0.10);
}


/* =========================================================
   ICON
========================================================= */

.mission-vision-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f0fb;

    border: 1px solid #c7d7ed;

    color: #1749a8;

    font-size: 21px;
}


/* =========================================================
   MISSION / VISION CONTENT
========================================================= */

.mission-vision-content {
    flex: 1;
}

.mission-vision-label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: #1749a8;
}

.mission-vision-content h3 {
    margin: 0 0 12px;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;

    color: #142f67;
}

.mission-vision-content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: #596579;
}


/* =========================================================
   DOCUMENTS SECTION
   SIMPLE BLUE THEME
========================================================= */

.documents-section {
    width: 100%;

    padding: 100px 0 110px;

    background: #f5f8fd;

    color: #182235;

    border-bottom: 1px solid #dbe5f1;
}

.documents-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


/* =========================================================
   DOCUMENT INTRO
========================================================= */

.documents-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.documents-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #079447;
}

.documents-heading h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    color: #1749a8;
}

.documents-heading p {
    max-width: 620px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   DOCUMENT GRID
========================================================= */

.documents-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 32px;
}


/* =========================================================
   DOCUMENT CARD
========================================================= */

.document-card {
    display: block;

    width: 100%;

    padding: 12px;

    background: #ffffff;

    border: 1px solid #d2deed;

    border-radius: 8px;

    box-shadow: 0 8px 24px rgba(23, 73, 168, 0.08);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);

    border-color: #a9bfdf;

    box-shadow: 0 16px 34px rgba(23, 73, 168, 0.14);
}


/* =========================================================
   A4 DOCUMENT PAPER
========================================================= */

.document-paper {
    width: 100%;

    /*
       A4 ratio:
       210 / 297 = 0.707
    */

    aspect-ratio: 210 / 297;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;
}


/* =========================================================
   DOCUMENT IMAGE
========================================================= */

.document-paper img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #ffffff;

    transition: transform 0.35s ease;
}

.document-card:hover .document-paper img {
    transform: scale(1.015);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .mission-vision-section {
        padding: 80px 0 85px;
    }

    .documents-section {
        padding: 85px 0 90px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .documents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 26px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .mission-vision-section {
        padding: 65px 0 70px;
    }

    .documents-section {
        padding: 70px 0 75px;
    }

    .mission-vision-container,
    .documents-container {
        width: calc(100% - 32px);
    }


    /* Intro */

    .mission-vision-heading,
    .documents-heading {
        margin-bottom: 38px;
    }

    .mission-vision-eyebrow,
    .documents-eyebrow {
        font-size: 11px;

        letter-spacing: 0.14em;
    }

    .mission-vision-heading h2,
    .documents-heading h2 {
        font-size: 32px;
    }

    .mission-vision-heading p,
    .documents-heading p {
        font-size: 18px;

        line-height: 1.7;
    }


    /* Mission / Vision */

    .mission-vision-grid {
        gap: 18px;
    }

    .mission-vision-card {
        gap: 18px;

        padding: 25px 21px;
    }

    .mission-vision-icon {
        flex: 0 0 50px;

        width: 50px;
        height: 50px;

        font-size: 18px;
    }

    .mission-vision-content h3 {
        font-size: 20px;
    }

    .mission-vision-content p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* Documents */

    .documents-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .document-card {
        padding: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .mission-vision-container,
    .documents-container {
        width: calc(100% - 24px);
    }

    .mission-vision-heading h2,
    .documents-heading h2 {
        font-size: 29px;
    }

    .mission-vision-card {
        display: block;

        padding: 23px 19px;
    }

    .mission-vision-icon {
        margin-bottom: 18px;
    }

    .document-card {
        padding: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mission-vision-card,
    .document-card,
    .document-paper img {
        transition: none;
    }
}

/* banner*/
/* =========================================================
   TRUE FULL-WIDTH SECTION BANNER (No Floating Box)
========================================================= */

.ngo-impact-banner {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 50px 0;
    
    /* Ye poori screen par background color failayega jo banner look dega */
    /* background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%); */
    background: #ffffff;
    border-top: 1px solid #d0e2f5;
    border-bottom: 1px solid #d0e2f5;
    overflow: hidden;
}

.ngo-impact-inner {
    position: relative;
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 50px;
    
    /* Box wali sari properties yaha se khatam kar di hain */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Left Content */
.ngo-impact-content {
    position: relative;
    z-index: 3;
}

.ngo-impact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #d0e1f3;
    border-radius: 30px;
    color: #1749a8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(23,73,168,0.06);
}

.ngo-impact-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #079447;
    box-shadow: 0 0 0 3px rgba(7, 148, 71, 0.15);
}

.ngo-impact-content h2 {
    margin: 0;
    color: #111c2e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.03em;
}

.ngo-impact-content h2 em {
    color: #079447;
    font-style: normal;
    font-weight: 500;
}

.ngo-impact-content > p {
    max-width: 440px;
    margin: 16px 0 0;
    color: #52627a;
    font-size: 15px;
    line-height: 1.65;
}

.ngo-impact-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: #66768c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ngo-impact-meta > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #cbdbee;
    border-radius: 50%;
    background: #ffffff;
    color: #1749a8;
    font-size: 9px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.ngo-impact-meta div {
    width: 35px;
    height: 1px;
    background: #bcd0e6;
}

/* Right Visual / Images */
.ngo-impact-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

.ngo-impact-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 180px 24px 24px 180px;
    background: #d4e3f4;
    box-shadow: 0 15px 35px -10px rgba(20, 50, 90, 0.12);
}

.ngo-impact-image-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.ngo-impact-image-main img:hover {
    transform: scale(1.05);
}

.ngo-impact-image-small {
    position: absolute;
    left: -25px;
    bottom: 25px;
    width: 140px;
    height: 105px;
    padding: 6px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(20,50,90,.15);
    transform: rotate(-4deg);
    z-index: 5;
}

.ngo-impact-image-small img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ngo-impact-number {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(20,50,90,.1);
    z-index: 6;
}

.ngo-impact-number strong {
    color: #079447;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}

.ngo-impact-number span {
    color: #52627a;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .12em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ngo-impact-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .ngo-impact-visual {
        height: 340px;
    }
}


/* Our project section */

/* ========================================================= 
   PROJECTS SECTION 
========================================================= */

.projects-section { 
    position: relative; 
    width: 100%; 
    padding: 78px 24px 82px; 
 
    background: #ffffff; 
    color: #14213d; 
 
    overflow: hidden; 
} 
 
 
.projects-container { 
    width: min(1180px, 100%); 
    margin: 0 auto; 
} 
 
 
/* ========================================================= 
   HEADER — CENTERED LIKE ABOUT 
========================================================= */ 
 
.projects-header { 
    width: 100%; 
    max-width: 820px; 
 
    margin: 0 auto 48px; 
 
    display: block; 
 
    text-align: center; 
 
    padding: 0; 
 
    border: 0; 
} 
 
 
.projects-eyebrow { 
    display: inline-flex; 
 
    align-items: center; 
    justify-content: center; 
 
    gap: 9px; 
 
    margin-bottom: 21px; 
 
    padding: 8px 15px; 
 
    border: 1px solid #d8e3f4; 
    border-radius: 999px; 
 
    background: #ffffff; 
 
    color: #1749a8; 
 
    font-size: 13px; 
    font-weight: 700; 
 
    line-height: 1; 
 
    letter-spacing: 0.14em; 
 
    text-transform: uppercase; 
 
    box-shadow: 
        0 8px 25px #eaf1fa; 
} 
 
 
.projects-header h2 { 
    margin: 0; 
 
    color: #14213d; 
 
    font-family: 
        Georgia, 
        "Times New Roman", 
        serif; 
 
    font-size: clamp(42px, 5vw, 62px); 
 
    font-weight: 600; 
 
    line-height: .99; 
 
    letter-spacing: -.045em; 
} 
 
 
.projects-header h2 span { 
    color: #079447; 
 
    font-weight: 500; 
} 
 
 
.projects-header > p { 
    max-width: 690px; 
 
    margin: 20px auto 0; 
 
    padding: 0; 
 
    color: #5c6e84; 
 
    font-size: 17px; 
 
    font-weight: 400; 
 
    line-height: 1.7; 
 
    text-align: center; 
} 
 
 
/* ========================================================= 
   PROJECT LIST 
========================================================= */ 
 
.projects-list { 
    width: 100%; 
 
    display: grid; 
 
    grid-template-columns: 
        repeat(3, minmax(0, 1fr)); 
 
    gap: 18px; 
 
    padding: 0; 
} 
 
 
/* ========================================================= 
   PROJECT CARD 
========================================================= */ 
 
.project-item { 
    position: relative; 
 
    min-width: 0; 
 
    display: flex; 
 
    flex-direction: column; 
 
    overflow: hidden; 
 
    border: 1px solid #dce5ef; 
 
    border-radius: 18px; 
 
    background: #ffffff; 
 
    box-shadow: 
        0 8px 28px rgba(20,50,90,.045); 
 
    transition: 
        transform .45s cubic-bezier(.22,1,.36,1), 
        box-shadow .45s cubic-bezier(.22,1,.36,1), 
        border-color .35s ease; 
} 
 
 
.project-item:hover { 
    transform: translateY(-5px); 
 
    border-color: #c9d9ea; 
 
    box-shadow: 
        0 20px 45px rgba(20,50,90,.09); 
} 
 
 
/* ========================================================= 
   IMAGE 
========================================================= */ 
 
.project-image { 
    position: relative; 
 
    width: 100%; 
    height: 225px; 
 
    overflow: hidden; 
 
    background: #edf3f8; 
} 
 
 
.project-image::after { 
    content: ""; 
 
    position: absolute; 
 
    inset: 0; 
 
    background: 
        linear-gradient( 
            180deg, 
            rgba(10,30,60,0), 
            rgba(10,30,60,.12) 
        ); 
 
    pointer-events: none; 
 
    z-index: 1; 
} 
 
 
.project-image img { 
    display: block; 
 
    width: 100%; 
    height: 100%; 
 
    object-fit: cover; 
 
    transition: 
        transform .8s cubic-bezier(.22,1,.36,1); 
} 
 
 
.project-item:hover .project-image img { 
    transform: scale(1.045); 
} 
 
 
/* ========================================================= 
   NUMBER 
========================================================= */ 
 
.project-index { 
    position: absolute; 
 
    top: 14px; 
    left: 14px; 
 
    z-index: 3; 
 
    display: flex; 
 
    align-items: center; 
    justify-content: center; 
 
    width: 31px; 
    height: 31px; 
 
    border: 1px solid rgba(255,255,255,.65); 
 
    border-radius: 50%; 
 
    background: rgba(255,255,255,.92); 
 
    color: #1749a8; 
 
    font-size: 9px; 
    font-weight: 800; 
 
    box-shadow: 
        0 5px 16px rgba(20,50,90,.10); 
 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
} 
 
 
/* ========================================================= 
   CONTENT 
========================================================= */ 
 
.project-content { 
    display: flex; 
 
    flex-direction: column; 
 
    flex: 1; 
 
    padding: 21px 21px 22px; 
} 
 
 
.project-category { 
    display: block; 
 
    margin-bottom: 9px; 
 
    color: #079447; 
 
    font-size: 8px; 
    font-weight: 800; 
 
    letter-spacing: .16em; 
 
    line-height: 1.2; 
 
    text-transform: uppercase; 
} 
 
 
.project-content h3 { 
    margin: 0; 
 
    color: #14213d; 
 
    font-family: 
        Georgia, 
        "Times New Roman", 
        serif; 
 
    font-size: 27px; 
 
    font-weight: 600; 
 
    line-height: 1.04; 
 
    letter-spacing: -.025em; 
} 
 
 
.project-content p { 
    max-width: 330px; 
 
    margin: 12px 0 0; 
 
    color: #68798e; 
 
    font-size: 15.5px; 
 
    font-weight: 400; 
 
    line-height: 1.65; 
} 
 
 
/* ========================================================= 
   ACTION 
========================================================= */ 
 
.project-action { 
    display: inline-flex; 
 
    align-items: center; 
 
    align-self: flex-start; 
 
    gap: 9px; 
 
    margin-top: 17px; 
 
    color: #1749a8; 
 
    font-size: 15px; 
 
    font-weight: 800; 
 
    line-height: 1; 
 
    text-decoration: none; 
 
    transition: color .25s ease; 
} 
 
 
.project-action i { 
    display: flex; 
 
    align-items: center; 
    justify-content: center; 
 
    width: 25px; 
    height: 25px; 
 
    border-radius: 50%; 
 
    background: #1749a8; 
 
    color: #ffffff; 
 
    font-size: 8px; 
 
    transition: 
        transform .3s ease, 
        background .3s ease; 
} 
 
 
.project-action:hover { 
    color: #10377f; 
} 
 
 
.project-action:hover i { 
    transform: translateX(4px); 
 
    background: #10377f; 
} 
 
 
/* ========================================================= 
   BOTTOM 
========================================================= */ 
 
.projects-bottom { 
    width: 100%; 
 
    display: flex; 
 
    align-items: center; 
 
    justify-content: space-between; 
 
    gap: 20px; 
 
    margin-top: 30px; 
 
    padding-top: 19px; 
 
    border-top: 1px solid #dfe7ef; 
} 
 
 
.projects-bottom > span { 
    color: #8a98a9; 
 
    font-size: 8px; 
 
    font-weight: 800; 
 
    letter-spacing: .17em; 
 
    line-height: 1.4; 
} 
 
 
.projects-bottom > a { 
    display: inline-flex; 
 
    align-items: center; 
 
    gap: 9px; 
 
    color: #1749a8; 
 
    font-size: 10px; 
 
    font-weight: 800; 
 
    text-decoration: none; 
} 
 
 
.projects-bottom > a i { 
    font-size: 9px; 
 
    transition: 
        transform .3s ease; 
} 
 
 
.projects-bottom > a:hover i { 
    transform: translateX(4px); 
} 
 
 
/* ========================================================= 
   TABLET
   DESKTOP STYLES ABOVE REMAIN UNCHANGED
========================================================= */ 
 
@media (max-width: 900px) { 
 
    .projects-section { 
        padding: 
            68px 22px 72px; 
    } 
 
 
    .projects-header { 
        margin-bottom: 40px; 
    } 
 
 
    .projects-header h2 { 
        font-size: 48px; 
    } 
 
 
    .projects-header > p { 
        font-size: 14px; 
    } 
 
 
    .projects-list { 
        gap: 14px; 
    } 
 
 
    .project-image { 
        height: 195px; 
    } 
 
 
    .project-content { 
        padding: 18px; 
    } 
 
 
    .project-content h3 { 
        font-size: 24px; 
    } 
 
 
    .project-content p { 
        font-size: 12px; 
    } 
 
} 
 
 
/* ========================================================= 
   MOBILE
   ONE COLUMN + DESKTOP FONT SIZES
========================================================= */ 
 
@media (max-width: 700px) { 
 
    .projects-section { 
        padding: 
            54px 18px 62px; 
    } 
 
 
    .projects-header { 
        max-width: 600px; 
 
        margin-bottom: 34px; 
    } 
 
 
    .projects-eyebrow { 
        margin-bottom: 15px; 
 
        font-size: 9px; 
    } 
 
 
    .projects-header h2 { 
        font-size: 
            clamp(34px, 9vw, 43px); 
 
        line-height: 1.02; 
    } 
 
 
    .projects-header > p { 
        margin-top: 16px; 
 
        font-size: 17px; 
 
        line-height: 1.65; 
    } 
 
 
    /* =====================================================
       ONE COLUMN MOBILE CARDS
    ===================================================== */
 
    .projects-list { 
        grid-template-columns: 1fr; 
 
        gap: 18px; 
    } 
 
 
    .project-item { 
        display: flex; 
 
        flex-direction: column; 
 
        width: 100%; 
 
        min-height: 0; 
    } 
 
 
    /* =====================================================
       MOBILE IMAGE
    ===================================================== */
 
    .project-image { 
        width: 100%; 
 
        height: 225px; 
 
        min-height: 0; 
    } 
 
 
    /* =====================================================
       MOBILE NUMBER
    ===================================================== */
 
    .project-index { 
        top: 14px; 
        left: 14px; 
 
        width: 31px; 
        height: 31px; 
 
        font-size: 9px; 
    } 
 
 
    /* =====================================================
       MOBILE CONTENT
       SAME FONT SIZE AS DESKTOP
    ===================================================== */
 
    .project-content { 
        display: flex; 
 
        flex-direction: column; 
 
        padding: 21px 21px 22px; 
    } 
 
 
    .project-category { 
        margin-bottom: 9px; 
 
        font-size: 8px; 
    } 
 
 
    .project-content h3 { 
        font-size: 27px; 
 
        line-height: 1.04; 
    } 
 
 
    .project-content p { 
        max-width: 100%; 
 
        margin-top: 12px; 
 
        font-size: 15.5px; 
 
        line-height: 1.65; 
    } 
 
 
    /* =====================================================
       MOBILE ACTION
    ===================================================== */
 
    .project-action { 
        margin-top: 17px; 
 
        font-size: 15px; 
    } 
 
 
    .project-action i { 
        width: 25px; 
        height: 25px; 
 
        font-size: 8px; 
    } 
 
 
    /* =====================================================
       MOBILE BOTTOM
    ===================================================== */
 
    .projects-bottom { 
        margin-top: 30px; 
 
        padding-top: 19px; 
    } 
 
 
    .projects-bottom > span { 
        font-size: 8px; 
    } 
 
 
    .projects-bottom > a { 
        font-size: 10px; 
    } 
 
} 
 
 
/* ========================================================= 
   SMALL MOBILE
========================================================= */ 
 
@media (max-width: 420px) { 
 
    .projects-section { 
        padding: 
            46px 15px 54px; 
    } 
 
 
    .projects-header { 
        margin-bottom: 30px; 
    } 
 
 
    .projects-header h2 { 
        font-size: 32px; 
    } 
 
 
    .projects-header > p { 
        font-size: 17px; 
        line-height: 1.65; 
    } 
 
 
    /* =====================================================
       ONE COLUMN — SMALL MOBILE
    ===================================================== */
 
    .projects-list { 
        grid-template-columns: 1fr; 
 
        gap: 16px; 
    } 
 
 
    .project-item { 
        display: flex; 
 
        flex-direction: column; 
 
        min-height: 0; 
    } 
 
 
    .project-image { 
        width: 100%; 
 
        height: 225px; 
 
        min-height: 0; 
    } 
 
 
    .project-index { 
        top: 10px; 
        left: 10px; 
 
        width: 27px; 
        height: 27px; 
 
        font-size: 8px; 
    } 
 
 
    .project-content { 
        padding: 21px 18px 22px; 
    } 
 
 
    .project-category { 
        margin-bottom: 9px; 
 
        font-size: 8px; 
    } 
 
 
    .project-content h3 { 
        font-size: 27px; 
 
        line-height: 1.04; 
    } 
 
 
    .project-content p { 
        max-width: 100%; 
 
        font-size: 15.5px; 
 
        line-height: 1.65; 
    } 
 
 
    .project-action { 
        margin-top: 17px; 
 
        font-size: 15px; 
    } 
 
 
    .project-action i { 
        width: 25px; 
        height: 25px; 
 
        font-size: 8px; 
    } 
 
 
    .projects-bottom { 
        margin-top: 25px; 
 
        padding-top: 17px; 
    } 
 
 
    .projects-bottom > span { 
        font-size: 8px; 
    } 
 
 
    .projects-bottom > a { 
        font-size: 10px; 
    } 
 
} 
 
 
/* ========================================================= 
   REDUCED MOTION 
========================================================= */ 
 
@media (prefers-reduced-motion: reduce) { 
 
    .project-item, 
    .project-image img, 
    .project-action, 
    .project-action i, 
    .projects-bottom > a i { 
        transition: none !important; 
    } 
 
}
/* our team */
/* =========================================================
   TEAM SECTION
========================================================= */

.team-section {
    position: relative;
    width: 100%;
    padding: 65px 24px 68px;

    background: #f8fbff;
    color: #14213d;

    overflow: hidden;
}

.team-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.team-header {
    max-width: 720px;
    margin: 0 auto 48px;

    text-align: center;
}

.team-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 7px 14px;
    margin-bottom: 16px;

    border: 1px solid rgba(23, 73, 168, 0.13);
    border-radius: 50px;

    background: #ffffff;

    color: #1749a8;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.team-eyebrow-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #079447;
}


/* =========================================================
   HEADING
========================================================= */

.team-header h2 {
    margin: 0;

    color: #17233b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 4.8vw, 62px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -0.035em;
}

.team-header h2 span {
    color: #079447;
}


/* =========================================================
   HEADER PARAGRAPH
========================================================= */

.team-header p {
    max-width: 650px;

    margin: 19px auto 0;

    color: #65718a;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   TEAM LIST
========================================================= */

.team-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 48px;
}


/* =========================================================
   TEAM MEMBER
========================================================= */

.team-member {
    display: block;

    min-width: 0;

    color: inherit;

    text-align: center;

    text-decoration: none;

    outline: none;
}


/* =========================================================
   IMAGE
========================================================= */

.team-image-wrapper {
    position: relative;

    width: min(235px, 100%);
    aspect-ratio: 1 / 1;

    margin: 0 auto 20px;

    border-radius: 50%;

    overflow: hidden;

    background: #edf3fa;

    border: 6px solid #ffffff;

    box-shadow:
        0 14px 32px rgba(20, 33, 61, 0.09),
        0 0 0 1px rgba(23, 73, 168, 0.07);

    transition:
        transform 0.55s cubic-bezier(.2, .7, .2, 1),
        box-shadow 0.55s ease;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1);
}





/* =========================================================
   CENTER HOVER ICON
========================================================= */

.team-view {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #079447;
    color: #ffffff;

    font-size: 13px;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.75);

    box-shadow:
        0 10px 25px rgba(7, 148, 71, 0.22);

    z-index: 4;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.team-member:hover .team-image-wrapper {
    transform: translateY(-6px);

    box-shadow:
        0 22px 45px rgba(20, 33, 61, 0.13),
        0 0 0 1px rgba(7, 148, 71, 0.10);
}

.team-member:hover .team-image-wrapper img {
    transform: scale(1.045);
}

.team-member:hover .team-view {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);
}

.team-member:hover .team-number {
    background: #1749a8;
    color: #ffffff;

    transform: scale(0.94);
}


/* =========================================================
   TEAM CONTENT
========================================================= */

.team-content {
    max-width: 320px;

    margin: 0 auto;
}


/* =========================================================
   ROLE
========================================================= */

.team-role {
    display: block;

    margin-bottom: 6px;

    color: #079447;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =========================================================
   NAME
========================================================= */

.team-content h3 {
    margin: 0;

    color: #17233b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 500;

    letter-spacing: -0.02em;

    transition: color 0.3s ease;
}

.team-member:hover .team-content h3 {
    color: #1749a8;
}


/* =========================================================
   MEMBER PARAGRAPH
========================================================= */

.team-content p {
    max-width: 310px;

    margin: 9px auto 0;

    color: #68758b;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.team-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding-top: 20px;

    border-top:
        1px solid rgba(20, 33, 61, 0.09);
}


/* =========================================================
   BOTTOM TEXT
========================================================= */

.team-bottom > span {
    color: #8792a4;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   READ MORE
========================================================= */

.team-bottom > a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #1749a8;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.team-bottom > a i {
    font-size: 11px;

    transition:
        transform 0.3s ease;
}

.team-bottom > a:hover {
    color: #079447;

    gap: 13px;
}

.team-bottom > a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FOCUS
========================================================= */

.team-member:focus-visible
.team-image-wrapper {
    outline: 3px solid rgba(23, 73, 168, 0.22);
    outline-offset: 5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .team-section {
        padding: 58px 22px 62px;
    }

    .team-header {
        margin-bottom: 42px;
    }

    .team-list {
        gap: 30px;
    }

    .team-image-wrapper {
        width: 205px;
    }

    .team-content h3 {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .team-section {
        padding: 52px 18px 58px;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .team-header {
        margin-bottom: 38px;
    }

    .team-eyebrow {
        padding: 6px 12px;

        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 0.13em;
    }

    .team-eyebrow-dot {
        width: 6px;
        height: 6px;

        flex-basis: 6px;
    }

    .team-header h2 {
        font-size: 40px;

        line-height: 1;
    }

    .team-header p {
        margin-top: 17px;

        font-size: 16px;

        line-height: 1.6;
    }


    /* -----------------------------------------
       TEAM GRID
    ----------------------------------------- */

    .team-list {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .team-image-wrapper {
        width: min(220px, 70vw);

        margin-bottom: 19px;

        border-width: 5px;
    }


    /* -----------------------------------------
       NUMBER
    ----------------------------------------- */

    .team-number {
        width: 40px;
        height: 40px;

        right: 2px;
        bottom: 14px;

        font-size: 10px;
    }


    /* -----------------------------------------
       MOBILE TOUCH
    ----------------------------------------- */

    .team-view {
        display: none;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .team-content {
        max-width: 340px;
    }

    .team-role {
        font-size: 10px;

        letter-spacing: 0.15em;

        margin-bottom: 5px;
    }

    .team-content h3 {
        font-size: 24px;
    }

    .team-content p {
        margin-top: 8px;

        font-size: 16px;

        line-height: 1.6;
    }


    /* -----------------------------------------
       BOTTOM
    ----------------------------------------- */

    .team-bottom {
        margin-top: 48px;

        padding-top: 20px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 14px;
    }

    .team-bottom > span {
        font-size: 9px;

        letter-spacing: 0.16em;
    }

    .team-bottom > a {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .team-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .team-header h2 {
        font-size: 36px;
    }

    .team-header p {
        font-size: 16px;
    }

    .team-image-wrapper {
        width: 205px;
    }

}



/* gallery section */


/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    width: 100%;
    padding: 80px 24px 85px;

    background: #ffffff;
    color: #14213d;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.gallery-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.gallery-header {
    width: min(720px, 100%);
    margin: 0 auto 48px;

    text-align: center;
}


.gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #1749a8;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}


.gallery-eyebrow-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #079447;

    box-shadow: 0 0 0 5px rgba(7, 148, 71, 0.09);
}


.gallery-header h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.035em;

    color: #14213d;
}


.gallery-header h2 span {
    color: #079447;
}


.gallery-header p {
    width: min(650px, 100%);

    margin: 20px auto 0;

    color: #5f6b7a;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY GRID — 4 COLUMNS
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.gallery-image {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 20px;

    background: #eef3f8;

    border: 1px solid rgba(20, 33, 61, 0.08);

    box-shadow:
        0 10px 30px rgba(20, 33, 61, 0.07);
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   HOVER
========================================================= */

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


/* =========================================================
   BOTTOM
========================================================= */

.gallery-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 40px;
    padding-top: 22px;

    border-top: 1px solid rgba(20, 33, 61, 0.10);
}


.gallery-bottom > span {
    color: #7a8594;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
}


.gallery-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: #1749a8;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.gallery-bottom a i {
    font-size: 13px;

    transition: transform 0.3s ease;
}


.gallery-bottom a:hover {
    color: #079447;
    gap: 15px;
}


.gallery-bottom a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gallery-section {
        padding: 70px 22px 75px;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .gallery-image {
        border-radius: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 60px 18px 65px;
    }


    .gallery-header {
        margin-bottom: 34px;
    }


    .gallery-eyebrow {
        margin-bottom: 14px;

        font-size: 11px;
        letter-spacing: 0.22em;
    }


    .gallery-eyebrow-dot {
        width: 7px;
        height: 7px;
    }


    .gallery-header h2 {
        font-size: 38px;
        line-height: 1.08;
    }


    .gallery-header p {
        margin-top: 16px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* 2 COLUMN MOBILE */

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .gallery-image {
        border-radius: 15px;
    }


    .gallery-number {
        top: 9px;
        right: 9px;

        width: 30px;
        height: 30px;

        font-size: 9px;
    }


    /* BOTTOM */

    .gallery-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 17px;

        margin-top: 30px;
        padding-top: 20px;
    }


    .gallery-bottom > span {
        font-size: 9px;
        letter-spacing: 0.18em;
    }


    .gallery-bottom a {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .gallery-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .gallery-header h2 {
        font-size: 34px;
    }


    .gallery-grid {
        gap: 10px;
    }


    .gallery-image {
        border-radius: 13px;
    }

}


/* events nav */
/* =========================================================
   EVENTS PAGE
   SIMPLE / PROFESSIONAL BLUE THEME
========================================================= */

.events-page {
    width: 100%;
    overflow-x: hidden;

    background: #ffffff;
    color: #182235;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.events-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   EVENTS INTRO
========================================================= */

.events-intro {
    width: 100%;

    padding: 100px 0 95px;

    background: #f5f8fd;

    border-bottom: 1px solid #dbe5f1;
}

.events-intro-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.events-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #079447;
}


/* =========================================================
   INTRO HEADING
========================================================= */

.events-intro h1 {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 700;

    color: #1749a8;
}


/* =========================================================
   INTRO DESCRIPTION
========================================================= */

.events-intro p {
    max-width: 720px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   EVENTS SECTION
========================================================= */

.events-section {
    width: 100%;

    padding: 100px 0 110px;

    background: #ffffff;
}


/* =========================================================
   EVENTS HEADING
========================================================= */

.events-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.events-heading .events-eyebrow {
    margin-bottom: 14px;
}

.events-heading h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    color: #1749a8;
}

.events-heading p {
    max-width: 620px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   EVENTS GRID
========================================================= */

.events-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   EVENT CARD
========================================================= */

.event-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d5e0ee;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(23, 73, 168, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);

    border-color: #b5c8e2;

    box-shadow: 0 16px 35px rgba(23, 73, 168, 0.12);
}


/* =========================================================
   EVENT IMAGE
========================================================= */

.event-image {
    display: block;

    width: 100%;
    height: 280px;

    overflow: hidden;

    background: #edf3fa;

    text-decoration: none;
}

.event-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.035);
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.event-content {
    padding: 25px 24px 28px;
}


/* =========================================================
   EVENT DATE / LABEL
========================================================= */

.event-date {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 11px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #1749a8;
}

.event-date i {
    font-size: 13px;
}


/* =========================================================
   EVENT TITLE
========================================================= */

.event-content h3 {
    margin: 0 0 12px;

    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;

    color: #142f67;
}


/* =========================================================
   EVENT DESCRIPTION
========================================================= */

.event-content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #596579;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .events-intro {
        padding: 85px 0 80px;
    }

    .events-section {
        padding: 85px 0 90px;
    }

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .event-image {
        height: 270px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .events-container {
        width: calc(100% - 32px);
    }


    /* Intro */

    .events-intro {
        padding: 65px 0 70px;
    }

    .events-eyebrow {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 0.14em;
    }

    .events-intro h1 {
        font-size: 34px;

        line-height: 1.2;

        margin-bottom: 17px;
    }

    .events-intro p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* Events */

    .events-section {
        padding: 70px 0 75px;
    }

    .events-heading {
        margin-bottom: 38px;
    }

    .events-heading h2 {
        font-size: 32px;
    }

    .events-heading p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* Grid */

    .events-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* Card */

    .event-card {
        border-radius: 10px;
    }

    .event-image {
        height: 260px;
    }

    .event-content {
        padding: 23px 20px 25px;
    }

    .event-content h3 {
        font-size: 20px;
    }

    .event-content p {
        font-size: 16px;

        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .events-container {
        width: calc(100% - 24px);
    }

    .events-intro {
        padding: 55px 0 60px;
    }

    .events-intro h1 {
        font-size: 30px;
    }

    .events-section {
        padding: 60px 0 65px;
    }

    .events-heading h2 {
        font-size: 29px;
    }

    .event-image {
        height: 235px;
    }

    .event-content {
        padding: 21px 18px 23px;
    }

    .event-content h3 {
        font-size: 19px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .event-card,
    .event-image img {
        transition: none;
    }
}


/* contact section */

/* =========================================================
   CONTACT PAGE
   SIMPLE / PROFESSIONAL BLUE THEME
========================================================= */

.contact-page {
    width: 100%;
    overflow-x: hidden;

    background: #ffffff;
    color: #182235;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.contact-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {
    width: 100%;

    padding: 100px 0 95px;

    background: #f5f8fd;

    border-bottom: 1px solid #dbe5f1;
}

.contact-intro-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #079447;
}


/* =========================================================
   INTRO HEADING
========================================================= */

.contact-intro h1 {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 700;

    color: #1749a8;
}


/* =========================================================
   INTRO DESCRIPTION
========================================================= */

.contact-intro p {
    max-width: 720px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    width: 100%;

    padding: 100px 0 110px;

    background: #ffffff;
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.contact-heading .contact-eyebrow {
    margin-bottom: 14px;
}

.contact-heading h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    color: #1749a8;
}

.contact-heading p {
    max-width: 620px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   CONTACT INFO ITEM
========================================================= */

.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background: #f5f8fd;

    border: 1px solid #d8e2ef;

    border-radius: 10px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);

    border-color: #b8cbe4;

    box-shadow: 0 10px 25px rgba(23, 73, 168, 0.08);
}


/* =========================================================
   CONTACT INFO ICON
========================================================= */

.contact-info-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f0fb;

    border: 1px solid #c8d7eb;

    color: #1749a8;

    font-size: 17px;
}


/* =========================================================
   CONTACT INFO CONTENT
========================================================= */

.contact-info-content {
    flex: 1;
}

.contact-info-content > span {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.15em;

    color: #1749a8;
}

.contact-info-content h3 {
    margin: 0 0 5px;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;

    color: #142f67;
}

.contact-info-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.65;

    color: #596579;
}

.contact-info-content a {
    color: #596579;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-info-content a:hover {
    color: #1749a8;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    width: 100%;

    padding: 34px;

    background: #f5f8fd;

    border: 1px solid #d5e0ee;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(23, 73, 168, 0.06);
}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading h3 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    line-height: 1.3;

    color: #1749a8;
}

.contact-form-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #596579;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}


/* =========================================================
   FORM GROUP
========================================================= */

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #182235;
}


/* =========================================================
   INPUT / TEXTAREA
========================================================= */

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;

    padding: 14px 15px;

    font-family: inherit;
    font-size: 16px;

    color: #182235;

    background: #ffffff;

    border: 1px solid #cdd9e8;

    border-radius: 7px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-form-group input {
    height: 50px;
}

.contact-form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #1749a8;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(23, 73, 168, 0.08);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #8a96a8;

    opacity: 1;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    color: #ffffff;

    background: #1749a8;

    border: 1px solid #1749a8;

    border-radius: 7px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit:hover {
    background: #123d91;

    border-color: #123d91;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(23, 73, 168, 0.20);
}

.contact-submit i {
    font-size: 13px;

    transition: transform 0.25s ease;
}

.contact-submit:hover i {
    transform: translateX(3px);
}


/* =========================================================
   CONNECT SECTION
========================================================= */

.contact-connect {
    width: 100%;

    padding: 85px 0 90px;

    background: #f5f8fd;

    border-top: 1px solid #dbe5f1;
    border-bottom: 1px solid #dbe5f1;
}

.contact-connect-content {
    max-width: 720px;

    margin: 0 auto;

    text-align: center;
}

.contact-connect-content h2 {
    margin: 0 0 17px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.2;

    color: #1749a8;
}

.contact-connect-content p {
    max-width: 620px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.contact-social-links {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;
}

.contact-social-links a {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #cdd9e8;

    color: #1749a8;

    font-size: 16px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-social-links a:hover {
    background: #1749a8;

    border-color: #1749a8;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-intro {
        padding: 85px 0 80px;
    }

    .contact-section {
        padding: 85px 0 90px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-information {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .contact-connect {
        padding: 75px 0 80px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-container {
        width: calc(100% - 32px);
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .contact-intro {
        padding: 65px 0 70px;
    }

    .contact-eyebrow {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 0.14em;
    }

    .contact-intro h1 {
        font-size: 34px;

        line-height: 1.2;

        margin-bottom: 17px;
    }

    .contact-intro p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       CONTACT SECTION
    ----------------------------------------------------- */

    .contact-section {
        padding: 70px 0 75px;
    }

    .contact-heading {
        margin-bottom: 38px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-heading p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       INFORMATION
    ----------------------------------------------------- */

    .contact-information {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    .contact-info-item {
        gap: 15px;

        padding: 20px;
    }

    .contact-info-icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        font-size: 16px;
    }

    .contact-info-content h3 {
        font-size: 17px;
    }

    .contact-info-content p {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       FORM
    ----------------------------------------------------- */

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-form-heading {
        margin-bottom: 24px;
    }

    .contact-form-heading h3 {
        font-size: 24px;
    }

    .contact-form-heading p {
        font-size: 15px;
    }

    .contact-form-group {
        margin-bottom: 18px;
    }

    .contact-form-group input {
        height: 50px;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 16px;
    }

    .contact-submit {
        min-height: 50px;
    }


    /* -----------------------------------------------------
       CONNECT
    ----------------------------------------------------- */

    .contact-connect {
        padding: 65px 0 70px;
    }

    .contact-connect-content h2 {
        font-size: 32px;
    }

    .contact-connect-content p {
        font-size: 16px;

        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-container {
        width: calc(100% - 24px);
    }

    .contact-intro {
        padding: 55px 0 60px;
    }

    .contact-intro h1 {
        font-size: 30px;
    }

    .contact-section {
        padding: 60px 0 65px;
    }

    .contact-heading h2 {
        font-size: 29px;
    }

    .contact-info-item {
        padding: 18px;
    }

    .contact-info-icon {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;
    }

    .contact-form-wrapper {
        padding: 22px 17px;
    }

    .contact-form-heading h3 {
        font-size: 22px;
    }

    .contact-connect {
        padding: 60px 0 65px;
    }

    .contact-connect-content h2 {
        font-size: 29px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-info-item,
    .contact-submit,
    .contact-submit i,
    .contact-social-links a {
        transition: none;
    }
}


/* map */

/* =========================================================
   GOOGLE MAP
========================================================= */

.contact-map {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-map {
        margin-top: 45px;
    }

    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {

    .contact-map {
        margin-top: 35px;
    }

    .contact-map iframe {
        height: 300px;
    }
}


/* bank details section */
/* =========================================================
   DONATION / SUPPORT OUR MISSION SECTION
========================================================= */

.donation-section {
    position: relative;
    width: 100%;
    padding: 95px 24px 100px;
    background: rgb(248, 251, 255);
    color: #142f67;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.donation-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.donation-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.donation-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #079447;
}

.donation-header h2 {
    margin: 0 0 18px;

    color: #1749a8;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
}

.donation-header p {
    max-width: 680px;
    margin: 0 auto;

    color: #596579;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   BANK DETAILS CARD
========================================================= */

.bank-details-card {
    width: min(850px, 100%);
    margin: 0 auto;

    padding: 38px;

    background: #ffffff;

    border: 1px solid #dbe5f1;
    border-radius: 14px;

    box-shadow:
        0 18px 45px rgba(20, 47, 103, 0.08),
        0 3px 12px rgba(20, 47, 103, 0.04);
}


/* =========================================================
   CARD HEADER
========================================================= */

.bank-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 28px;
    margin-bottom: 26px;

    border-bottom: 1px solid #dbe5f1;
}

.bank-label {
    display: block;
    margin-bottom: 8px;

    color: #079447;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bank-card-header h3 {
    margin: 0;

    color: #142f67;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   BANK ICON
========================================================= */

.bank-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #1749a8;
    background: #eef4fc;

    border: 1px solid #dbe5f1;
    border-radius: 50%;

    font-size: 20px;
}


/* =========================================================
   BANK DETAILS
========================================================= */

.bank-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   DETAIL ITEM
========================================================= */

.bank-detail-item {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 17px 18px;

    background: #f8fafd;

    border: 1px solid #dbe5f1;
    border-radius: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.bank-detail-item:hover {
    border-color: rgba(23, 73, 168, 0.25);

    box-shadow:
        0 8px 20px rgba(20, 47, 103, 0.06);

    transform: translateY(-2px);
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.detail-content {
    min-width: 0;
}

.detail-label {
    display: block;
    margin-bottom: 6px;

    color: #596579;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.detail-content strong {
    display: block;

    color: #142f67;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* =========================================================
   COPY BUTTON
========================================================= */

.copy-btn {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    padding: 0;

    color: #1749a8;
    background: #ffffff;

    border: 1px solid #dbe5f1;
    border-radius: 10px;

    cursor: pointer;

    font-size: 15px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.copy-btn:hover {
    color: #ffffff;
    background: #1749a8;
    border-color: #1749a8;

    transform: translateY(-1px);
}

.copy-btn.copied {
    color: #ffffff;
    background: #079447;
    border-color: #079447;
}


/* =========================================================
   DONATION NOTE
========================================================= */

.donation-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 24px;
    padding: 16px 18px;

    background: #f5f8fd;

    border-left: 3px solid #1749a8;
    border-radius: 8px;
}

.donation-note i {
    flex-shrink: 0;

    margin-top: 3px;

    color: #1749a8;
    font-size: 16px;
}

.donation-note p {
    margin: 0;

    color: #596579;

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .donation-section {
        padding: 80px 24px 85px;
    }

    .bank-details-card {
        padding: 30px;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .donation-section {
        padding: 70px 16px 75px;
    }

    .donation-header {
        margin-bottom: 35px;
    }

    .donation-eyebrow {
        font-size: 12px;
        letter-spacing: 0.13em;
    }

    .donation-header h2 {
        margin-bottom: 14px;

        font-size: 32px;
        line-height: 1.2;
    }

    .donation-header p {
        font-size: 17px;
        line-height: 1.7;
    }


    /* Bank Card */

    .bank-details-card {
        padding: 22px 16px;

        border-radius: 14px;
    }


    /* Card Header */

    .bank-card-header {
        align-items: flex-start;

        gap: 15px;

        padding-bottom: 22px;
        margin-bottom: 20px;
    }

    .bank-card-header h3 {
        font-size: 21px;
    }

    .bank-label {
        font-size: 11px;
    }

    .bank-icon {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }


    /* Details */

    .bank-details {
        gap: 12px;
    }

    .bank-detail-item {
        min-height: 72px;

        padding: 14px;

        gap: 10px;

        border-radius: 12px;
    }

    .detail-label {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .detail-content strong {
        font-size: 17px;
    }


    /* Copy Button */

    .copy-btn {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }


    /* Note */

    .donation-note {
        margin-top: 18px;
        padding: 14px;

        gap: 10px;
    }

    .donation-note p {
        font-size: 13px;
        line-height: 1.65;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .donation-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bank-details-card {
        padding: 18px 12px;
    }

    .donation-header h2 {
        font-size: 29px;
    }

    .bank-card-header h3 {
        font-size: 19px;
    }

    .bank-detail-item {
        padding: 13px 12px;
    }

    .detail-content strong {
        font-size: 15px;
    }
}