:root {
    --burgundy-900: #2D0A0E;
    --burgundy-800: #4A1219;
    --burgundy-700: #6B1D26;
    --burgundy-600: #8B2635;
    --burgundy-500: #A62D3C;
    --burgundy-400: #C4424F;
    --burgundy-300: #D4737C;
    --burgundy-200: #E8A5AB;
    --burgundy-100: #F5D5D8;
    --burgundy-50: #FDF2F3;
    --gold-500: #D4A574;
    --gold-400: #E5C29F;
    --gold-300: #F0D9C0;
    --gold-200: #F8EBE0;
    --white: #FFF;
    --cream: #FFFCF9;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --mcc-green: #22C55E;
    --mcc-light: #DCFCE7;
    --mcc-dark: #166534;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --medical-blue: #1E40AF;
    --medical-light: #DBEAFE;
    --edu-teal: #14B8A6;
    --edu-light: #CCFBF1;
    --career-purple: #7C3AED;
    --career-light: #EDE9FE;
    --justice-blue: #1E40AF;
    --justice-light: #DBEAFE;
    --success-green: #059669;
    --success-light: #D1FAE5;
    --event-orange: #F97316;
    --event-light: #FFEDD5;
    --pdf-red: #DC2626;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --gradient-primary: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    --gradient-gold: linear-gradient(135deg, var(--gold-400), var(--gold-500))
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--cream);
    overflow-x: hidden
}



a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

ul {
    list-style: none
}

::selection {
    background: var(--burgundy-200);
    color: var(--burgundy-900)
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem)
}

.bg-mesh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden
}

.bg-mesh span {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    animation: meshFloat 25s ease-in-out infinite
}

.bg-mesh span:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--burgundy-100);
    top: -200px;
    right: -200px
}

.bg-mesh span:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--gold-200);
    bottom: -150px;
    left: -150px;
    animation-delay: -8s
}

.bg-mesh span:nth-child(3) {
    width: 350px;
    height: 350px;
    background: var(--burgundy-50);
    top: 40%;
    left: 20%;
    animation-delay: -15s
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(40px, -40px) scale(1.1)
    }

    66% {
        transform: translate(-30px, 30px) scale(.9)
    }
}

/* Header code */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    /* background: rgba(255, 255, 255, 0.95);  ADD THIS LINE */
    backdrop-filter: blur(10px);
}

.nav.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    padding: .875rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08)
}

/* When NOT scrolled - white text for dark hero */
.nav:not(.scrolled) .nav__link {
    color: rgba(255, 255, 255, 0.9);
}

.nav:not(.scrolled) .nav__link:hover,
.nav:not(.scrolled) .nav__link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.nav:not(.scrolled) .nav__dropdown-trigger svg {
    color: rgba(255, 255, 255, 0.9);
}

.nav:not(.scrolled) .nav__logo img {
    filter: brightness(0) invert(1);
}

.nav:not(.scrolled) .nav__toggle span {
    background: #fff;
}

/* When scrolled - white background, dark text */
.nav.scrolled {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    padding: .875rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
}

.nav.scrolled .nav__link {
    color: var(--gray-700);
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}

.nav.scrolled .nav__logo img {
    filter: none;
}

.nav.scrolled .nav__toggle span {
    background: var(--gray-800);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav__logo img {
    height: 60px
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: .5rem
}

.nav__link {
    padding: .625rem 1.125rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 50px;
    transition: all .2s;
    letter-spacing: -0.01em
}

.nav__link:hover,
.nav__link.active,
.nav__dropdown.active>.nav__dropdown-trigger,
.nav__dropdown-menu a.active {
    color: var(--burgundy-600);
    background: var(--burgundy-50)
}

.nav__dropdown {
    position: relative
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: .25rem
}

.nav__dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform .2s
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
    transform: rotate(180deg)
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(.16, 1, .3, 1)
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px)
}

.nav__dropdown-menu a {
    display: block;
    padding: .75rem 1rem;
    font-size: .825rem;
    color: var(--gray-600);
    border-radius: 10px;
    transition: all .2s
}

.nav__dropdown-menu a:hover {
    background: var(--burgundy-50);
    color: var(--burgundy-700);
    padding-left: 1.25rem
}

.nav__donate {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-size: .825rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(166, 45, 60, .35);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    letter-spacing: -0.01em
}

.nav__donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 45, 60, .45)
}

.nav__donate svg {
    width: 16px;
    height: 16px
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all .3s
}


/* Home Page */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    overflow: hidden
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 10, 14, .88) 0%, rgba(107, 29, 38, .75) 50%, rgba(139, 38, 53, .65) 100%)
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeSlideDown .8s cubic-bezier(.16, 1, .3, 1) both;
    letter-spacing: 0.02em
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: .5
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em
}

.hero__title span {
    display: block;
    animation: fadeSlideUp 1s cubic-bezier(.16, 1, .3, 1) both
}

.hero__title span:nth-child(1) {
    animation-delay: .1s
}

.hero__title span:nth-child(2) {
    animation-delay: .2s
}

.hero__title span:nth-child(3) {
    animation-delay: .3s;
    color: var(--gold-400);
    font-weight: 600
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, .8);
    max-width: 520px;
    margin-bottom: 2rem;
    animation: fadeSlideUp 1s cubic-bezier(.16, 1, .3, 1) .4s both;
    line-height: 1.8;
    letter-spacing: -0.01em
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s cubic-bezier(.16, 1, .3, 1) .5s both
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
    animation: fadeSlideUp 1s cubic-bezier(.16, 1, .3, 1) .6s both
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em
}

.hero__stat-label {
    font-size: .825rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .25rem;
    letter-spacing: 0.01em
}

.hero__visual {
    position: relative;
    animation: fadeIn 1.2s cubic-bezier(.16, 1, .3, 1) .3s both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hero__img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .3)
}

.hero__img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.hero__img-float {
    position: absolute;
    width: 180px;
    bottom: -25px;
    left: -35px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    animation: float 6s ease-in-out infinite
}

.hero__img-float img {
    height: 220px;
    object-fit: cover
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.hero__card {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 1.25rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    animation: float 5s ease-in-out infinite;
    animation-delay: -2s
}

.hero__card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: .75rem
}

.hero__card-icon svg {
    width: 24px;
    height: 24px
}

.hero__card-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em
}

.hero__card-label {
    font-size: .75rem;
    color: var(--gray-500);
    letter-spacing: 0.01em
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .7);
    animation: bounce 2.5s ease-in-out infinite
}

.hero__scroll span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 500
}

.hero__scroll i {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .7), transparent)
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(12px)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    border: 2px solid transparent;
    letter-spacing: -0.01em
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform .2s
}

.btn:hover svg {
    transform: translateX(4px)
}

.btn--primary {
    background: var(--white);
    color: var(--burgundy-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .35)
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--burgundy-700);
    border-color: var(--white)
}

.btn--dark {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.btn--dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 45, 60, .4)
}

.btn--outline {
    background: transparent;
    color: var(--burgundy-600);
    border-color: var(--burgundy-200)
}

.btn--outline:hover {
    background: var(--burgundy-50);
    border-color: var(--burgundy-300)
}

.btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: .95rem
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative
}

.section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}

.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.section--alt {
    background: var(--white)
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1rem
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.section--dark .section-tag {
    color: var(--gold-400)
}

.section--dark .section-tag::before,
.section--dark .section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em
}

.section-title em {
    font-style: normal;
    color: var(--burgundy-600);
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section--dark .section-title {
    color: var(--white)
}

.section--dark .section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-subtitle {
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    color: var(--gray-500);
    line-height: 1.8;
    letter-spacing: -0.01em
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, .65)
}

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

.impact__card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.impact__card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .2)
}

.impact__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.impact__card-icon svg {
    width: 28px;
    height: 28px
}

.impact__card-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .375rem;
    letter-spacing: -0.03em
}

.impact__card-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gold-400);
    margin-bottom: .375rem;
    letter-spacing: -0.01em
}

.impact__card-desc {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 0.01em
}

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

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .07);
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.project-card__img {
    position: relative;
    height: 200px;
    overflow: hidden
}

.project-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.project-card:hover .project-card__img img {
    transform: scale(1.08)
}

.project-card__badge {
    position: absolute;
    top: .875rem;
    left: .875rem;
    padding: .4rem .875rem;
    background: var(--white);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--burgundy-600);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.project-card__body {
    padding: 1.5rem
}

.project-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .625rem;
    letter-spacing: -0.02em
}

.project-card__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
    letter-spacing: -0.01em
}

.project-card__stats {
    display: flex;
    gap: 1.25rem;
    padding: .875rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1rem
}

.project-card__stat {
    text-align: center;
    flex: 1
}

.project-card__stat-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy-600);
    letter-spacing: -0.02em
}

.project-card__stat-lbl {
    font-size: .65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500
}

.project-card__budget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .875rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--gold-200));
    border-radius: 10px;
    margin-bottom: 1rem
}

.project-card__budget span:first-child {
    font-size: .75rem;
    color: var(--gray-600);
    letter-spacing: 0.01em
}

.project-card__budget span:last-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy-700);
    letter-spacing: -0.02em
}

.project-card__btn {
    width: 100%;
    justify-content: center
}

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

.init-card {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer
}

.init-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.init-card:hover img {
    transform: scale(1.1)
}

.init-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .95) 0%, rgba(45, 10, 14, .5) 50%, rgba(45, 10, 14, .15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background .4s
}

.init-card:hover .init-card__overlay {
    background: linear-gradient(to top, rgba(166, 45, 60, .95) 0%, rgba(166, 45, 60, .65) 50%, rgba(166, 45, 60, .25) 100%)
}

.init-card__tag {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold-400);
    margin-bottom: .5rem
}

.init-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
    letter-spacing: -0.02em
}

.init-card__desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    letter-spacing: -0.01em
}

.init-card:hover .init-card__desc {
    opacity: 1;
    transform: translateY(0)
}

.init-card__link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
    margin-top: .75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s cubic-bezier(.16, 1, .3, 1) .1s;
    letter-spacing: -0.01em
}

.init-card:hover .init-card__link {
    opacity: 1;
    transform: translateY(0)
}

.init-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform .2s
}

.init-card__link:hover svg {
    transform: translateX(4px)
}

.supporters__wrap {
    overflow: hidden;
    margin: 2rem calc(-1 * clamp(1.5rem, 5vw, 3rem));
    padding: 2rem 0;
    background: var(--white)
}

.supporters__track {
    display: flex;
    gap: 3rem;
    animation: marquee 35s linear infinite;
    width: max-content
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.supporters__track:hover {
    animation-play-state: paused
}

.supporter-logo {
    flex-shrink: 0;
    height: 45px;
    opacity: .35;
    filter: grayscale(100%);
    transition: all .3s
}

.supporter-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1)
}

.insta__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .875rem
}

.insta__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer
}

.insta__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.insta__item:hover img {
    transform: scale(1.12)
}

.insta__item-over {
    position: absolute;
    inset: 0;
    background: rgba(166, 45, 60, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.insta__item:hover .insta__item-over {
    opacity: 1
}

.insta__item-over svg {
    width: 28px;
    height: 28px;
    color: var(--white)
}

.insta__cta {
    text-align: center;
    margin-top: 2.5rem
}

.timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--burgundy-100), var(--burgundy-500), var(--burgundy-100));
    transform: translateX(-50%);
    border-radius: 3px
}

.timeline__item {
    position: relative;
    display: flex;
    margin-bottom: 2.5rem
}

.timeline__item:last-child {
    margin-bottom: 0
}

.timeline__item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 45px);
    text-align: right
}

.timeline__item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 45px)
}

.timeline__marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--cream), 0 0 40px rgba(166, 45, 60, .3);
    z-index: 1
}

.timeline__marker span {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em
}

.timeline__marker--now {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    animation: glowPulse 2s ease-in-out infinite
}

.timeline__marker--now span {
    color: var(--burgundy-900)
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 6px var(--cream), 0 0 30px rgba(212, 165, 116, .4)
    }

    50% {
        box-shadow: 0 0 0 10px var(--cream), 0 0 50px rgba(212, 165, 116, .6)
    }
}

.timeline__card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .08);
    max-width: 380px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.timeline__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.timeline__card-img {
    height: 140px;
    overflow: hidden
}

.timeline__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.timeline__card-body {
    padding: 1.25rem
}

.timeline__card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .375rem;
    letter-spacing: -0.02em
}

.timeline__card-desc {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.7;
    letter-spacing: -0.01em
}

.trans__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start
}

.trans__card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .07)
}

.trans__card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em
}

.donut {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem
}

.donut svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.donut__track {
    fill: none;
    stroke: var(--gray-100);
    stroke-width: 28
}

.donut__seg {
    fill: none;
    stroke-width: 28;
    stroke-linecap: round;
    transition: stroke-dasharray 1.2s cubic-bezier(.16, 1, .3, 1)
}

.donut__seg--prog {
    stroke: var(--burgundy-500)
}

.donut__seg--ops {
    stroke: var(--gold-400)
}

.donut__seg--fund {
    stroke: var(--gray-400)
}

.donut__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.donut__val {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    letter-spacing: -0.02em
}

.donut__lbl {
    font-size: .75rem;
    color: var(--gray-500);
    letter-spacing: 0.01em
}

.legend {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.legend__item {
    display: flex;
    align-items: center;
    gap: .75rem
}

.legend__dot {
    width: 12px;
    height: 12px;
    border-radius: 3px
}

.legend__dot--prog {
    background: var(--burgundy-500)
}

.legend__dot--ops {
    background: var(--gold-400)
}

.legend__dot--fund {
    background: var(--gray-400)
}

.legend__text {
    flex: 1;
    font-size: .85rem;
    color: var(--gray-600);
    letter-spacing: -0.01em
}

.legend__pct {
    font-weight: 700;
    color: var(--gray-900)
}

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

.bar__item {
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.bar__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.bar__name {
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: -0.01em
}

.bar__val {
    font-size: .85rem;
    font-weight: 700;
    color: var(--burgundy-600)
}

.bar__track {
    height: 10px;
    background: var(--gray-100);
    border-radius: 5px;
    overflow: hidden
}

.bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--burgundy-400), var(--burgundy-600));
    border-radius: 5px;
    transition: width 1.2s cubic-bezier(.16, 1, .3, 1)
}

.trans__badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.trust-badge__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.trust-badge__icon svg {
    width: 24px;
    height: 24px
}

.trust-badge strong {
    display: block;
    font-size: .85rem;
    color: var(--gray-900);
    margin-bottom: .125rem;
    letter-spacing: -0.01em
}

.trust-badge span {
    font-size: .7rem;
    color: var(--gray-500);
    letter-spacing: 0.01em
}

.cta {
    position: relative;
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, .12) 0%, transparent 70%);
    pointer-events: none
}

.cta__content {
    position: relative;
    text-align: center;
    max-width: 750px;
    margin: 0 auto
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em
}

.cta__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta__text {
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em
}

.cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* Stories of Change Section */
.stories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.story-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.story-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .2)
}

.story-card__image {
    position: relative;
    height: 220px;
    overflow: hidden
}

.story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.story-card:hover .story-card__image img {
    transform: scale(1.08)
}

.story-card__quote-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900);
    box-shadow: 0 10px 30px rgba(212, 165, 116, .3)
}

.story-card__quote-icon svg {
    width: 24px;
    height: 24px
}

.story-card__content {
    padding: 2rem 1.75rem 1.75rem
}

.story-card__quote {
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1.5rem
}

.story-card__author {
    margin-bottom: 1rem
}

.story-card__author h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.story-card__author span {
    font-size: .8rem;
    color: var(--gold-400)
}

.story-card__tag {
    display: inline-block;
    padding: .4rem .875rem;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 50px
}

.stories__cta {
    text-align: center;
    margin-top: 3rem
}

/* Awards & Recognitions Section */
.awards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem
}

.award-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .06);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1)
}

.award-card:hover::before {
    transform: scaleX(1)
}

.award-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    transition: all .4s
}

.award-card:hover .award-card__icon {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg)
}

.award-card__icon svg {
    width: 32px;
    height: 32px
}

.award-card__year {
    display: inline-block;
    padding: .35rem .875rem;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-300));
    color: var(--burgundy-700);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem
}

.award-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem;
    letter-spacing: -0.02em
}

.award-card__org {
    font-size: .85rem;
    font-weight: 600;
    color: var(--burgundy-600);
    margin-bottom: .75rem
}

.award-card__desc {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.7
}

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 5rem 0 0
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer__logo img {
    height: 55px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em
}

.footer__desc {
    font-size: .85rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em
}

.footer__social {
    display: flex;
    gap: .625rem
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    transition: all .3s;
    color: var(--gray-400);
    font-size: 1rem;
}

.footer__social a:hover {
    background: var(--burgundy-600);
    color: var(--white);
    transform: translateY(-3px);
}

/* .footer__social svg {
    width: 18px;
    height: 18px
} */

.footer__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.footer__links a {
    font-size: .85rem;
    transition: all .2s;
    letter-spacing: -0.01em
}

.footer__links a:hover {
    color: var(--white);
    padding-left: .5rem
}

.footer__contact-item {
    display: flex;
    gap: .75rem;
    margin-bottom: .875rem;
    font-size: .85rem;
    letter-spacing: -0.01em
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--burgundy-400);
    flex-shrink: 0
}

.footer__newsletter {
    margin-top: 1.5rem
}

.footer__newsletter h5 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .75rem;
    letter-spacing: -0.01em
}

.newsletter-form {
    display: flex;
    gap: .5rem
}

.newsletter-form input {
    flex: 1;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    color: var(--white);
    font-size: .85rem;
    transition: all .2s;
    letter-spacing: -0.01em
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--burgundy-500);
    background: rgba(255, 255, 255, .08)
}

.newsletter-form input::placeholder {
    color: var(--gray-500)
}

.newsletter-form button {
    padding: .75rem 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: all .3s
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 45, 60, .4)
}


/* Footer Code */

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0
}

.footer__copy {
    font-size: .75rem;
    color: var(--gray-500);
    letter-spacing: 0.01em
}

.footer__legal {
    display: flex;
    gap: 1.5rem
}

.footer__legal a {
    font-size: .75rem;
    color: var(--gray-500);
    transition: color .2s;
    letter-spacing: 0.01em
}

.footer__legal a:hover {
    color: var(--white)
}

[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0)
}

[data-anim="left"] {
    transform: translateX(-40px)
}

[data-anim="left"].visible {
    transform: translateX(0)
}

[data-anim="right"] {
    transform: translateX(40px)
}

[data-anim="right"].visible {
    transform: translateX(0)
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

[data-stagger].visible>*:nth-child(1) {
    transition-delay: 0ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(2) {
    transition-delay: 50ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(3) {
    transition-delay: 100ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(4) {
    transition-delay: 150ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(5) {
    transition-delay: 200ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(6) {
    transition-delay: 250ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(7) {
    transition-delay: 300ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(8) {
    transition-delay: 350ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(9) {
    transition-delay: 400ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(10) {
    transition-delay: 450ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(11) {
    transition-delay: 500ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(12) {
    transition-delay: 550ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(13) {
    transition-delay: 600ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(14) {
    transition-delay: 650ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(15) {
    transition-delay: 700ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(16) {
    transition-delay: 750ms;
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(17) {
    transition-delay: 800ms;
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1200px) {
    .impact__grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

@media(max-width:1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero__actions,
    .hero__stats {
        justify-content: center
    }

    .hero__visual {
        margin-top: 3rem
    }

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

    .trans__grid {
        grid-template-columns: 1fr
    }

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

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

@media(max-width:768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        transition: right .4s cubic-bezier(.16, 1, .3, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .1)
    }

    .nav__menu.open {
        right: 0
    }

    /* ADD THIS - Fix text color in mobile menu */
    .nav__menu .nav__link {
        color: var(--gray-700) !important;
    }

    .nav__menu .nav__link:hover,
    .nav__menu .nav__link.active {
        color: var(--burgundy-600) !important;
        background: var(--burgundy-50) !important;
    }

    .nav__menu .nav__dropdown-trigger svg {
        color: var(--gray-700) !important;
    }

    .nav__menu .nav__dropdown-menu a {
        color: var(--gray-600) !important;
    }

    .nav__menu .nav__dropdown-menu a:hover {
        color: var(--burgundy-700) !important;
        background: var(--burgundy-50) !important;
    }

    /* END ADD */

    .nav__link {
        width: 100%;
        padding: .875rem 1rem;
        border-radius: 10px
    }

    .nav__link {
        width: 100%;
        padding: .875rem 1rem;
        border-radius: 10px
    }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
        display: none
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block
    }

    .nav__toggle {
        display: flex
    }

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

    .projects__grid {
        grid-template-columns: 1fr
    }

    .initiatives__grid {
        grid-template-columns: 1fr
    }

    .init-card {
        height: 280px
    }

    .insta__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .timeline__line {
        left: 24px
    }

    .timeline__item,
    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start
    }

    .timeline__marker {
        left: 24px;
        width: 48px;
        height: 48px
    }

    .timeline__marker span {
        font-size: .75rem
    }

    .timeline__card {
        max-width: 100%
    }

    .trans__badges {
        flex-direction: column;
        align-items: stretch
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center
    }

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

    .story-card__content {
        padding: 1.5rem
    }

    .story-card__quote {
        font-size: .9rem;
        margin-bottom: 1.25rem
    }

    .stories__cta {
        margin-top: 2rem
    }
}

@media(max-width:480px) {

    .hero__img-float,
    .hero__card {
        display: none
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem
    }

    .impact__grid {
        grid-template-columns: 1fr
    }

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

    .cta__btns {
        flex-direction: column
    }

    .cta__btns .btn {
        width: 100%
    }

    .story-card__image {
        height: 160px
    }

    .story-card__content {
        padding: 1.25rem
    }

    .story-card__quote {
        font-size: .85rem;
        line-height: 1.8
    }

    .story-card__author h4 {
        font-size: .95rem
    }

    .story-card__quote-icon {
        width: 40px;
        height: 40px;
        bottom: -16px;
        right: 16px
    }

    .story-card__quote-icon svg {
        width: 20px;
        height: 20px
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

    html {
        scroll-behavior: auto
    }
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--burgundy-400);
    outline-offset: 3px
}

/* SDG Section Styles */
.sdg {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    overflow: hidden
}

.sdg__intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem
}

.sdg__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, #0073B8, #00A5D9);
    color: white;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.sdg__badge svg {
    width: 18px;
    height: 18px
}

.sdg__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.sdg__heading em {
    font-style: normal;
    background: linear-gradient(135deg, #0073B8, #00A5D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sdg__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.sdg__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.sdg__wheel {
    max-width: 380px;
    width: 100%;
    animation: slowRotate 60s linear infinite
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.sdg__un-logo {
    position: absolute;
    width: 100px;
    animation: pulse 3s ease-in-out infinite
}

.sdg__goals {
    margin-top: 2rem
}

.sdg__goals-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem
}

.sdg__goals-title span {
    color: #0073B8
}

.sdg__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem
}

.sdg__card {
    position: relative;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    color: white;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
    overflow: hidden
}

.sdg__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .15) 100%);
    opacity: 0;
    transition: opacity .3s
}

.sdg__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2)
}

.sdg__card:hover::before {
    opacity: 1
}

.sdg__card-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    opacity: .3;
    position: absolute;
    top: .5rem;
    right: .75rem
}

.sdg__card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto .75rem;
    background: rgba(255, 255, 255, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sdg__card-icon svg {
    width: 26px;
    height: 26px
}

.sdg__card-title {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .03em
}

.sdg__card--1 {
    background: linear-gradient(135deg, #E5243B, #C41E30)
}

.sdg__card--2 {
    background: linear-gradient(135deg, #DDA63A, #C4922F)
}

.sdg__card--3 {
    background: linear-gradient(135deg, #4C9F38, #3D8530)
}

.sdg__card--4 {
    background: linear-gradient(135deg, #C5192D, #A31425)
}

.sdg__card--5 {
    background: linear-gradient(135deg, #FF3A21, #E0321B)
}

.sdg__card--6 {
    background: linear-gradient(135deg, #26BDE2, #1FA5C7)
}

.sdg__card--7 {
    background: linear-gradient(135deg, #FCC30B, #E0AB09)
}

.sdg__card--8 {
    background: linear-gradient(135deg, #A21942, #8A1538)
}

.sdg__card--9 {
    background: linear-gradient(135deg, #FD6925, #E05A1F)
}

.sdg__card--10 {
    background: linear-gradient(135deg, #DD1367, #C41058)
}

.sdg__card--11 {
    background: linear-gradient(135deg, #FD9D24, #E08A1F)
}

.sdg__card--12 {
    background: linear-gradient(135deg, #BF8B2E, #A67826)
}

.sdg__card--13 {
    background: linear-gradient(135deg, #3F7E44, #2D5E32)
}

.sdg__card--14 {
    background: linear-gradient(135deg, #0A97D9, #0880B8)
}

.sdg__card--15 {
    background: linear-gradient(135deg, #56C02B, #45A023)
}

.sdg__card--16 {
    background: linear-gradient(135deg, #00689D, #005580)
}

.sdg__card--17 {
    background: linear-gradient(135deg, #19486A, #133752)
}

.sdg__maf {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
}

.sdg__maf-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem
}

.sdg__maf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.sdg__maf-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: 14px;
    transition: all .3s
}

.sdg__maf-item:hover {
    background: var(--burgundy-50);
    transform: translateX(5px)
}

.sdg__maf-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700
}

.sdg__maf-content h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.sdg__maf-content p {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.5
}

@media(max-width:1024px) {
    .sdg__intro {
        grid-template-columns: 1fr
    }

    .sdg__logo-wrap {
        order: -1;
        margin-bottom: 2rem
    }

    .sdg__grid {
        grid-template-columns: repeat(4, 1fr)
    }

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

@media(max-width:768px) {
    .sdg__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .sdg__maf-grid {
        grid-template-columns: 1fr
    }
}

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





/* about-about css */

.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--burgundy-900)
}

.about-hero__bg {
    position: absolute;
    inset: 0
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 10, 14, .95) 0%, rgba(107, 29, 38, .85) 50%, rgba(74, 18, 25, .9) 100%);

}

.about-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-top: 100px;
}

.about-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem
}

.about-hero__breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: color .2s
}

.about-hero__breadcrumb a:hover {
    color: var(--gold-400)
}

.about-hero__breadcrumb svg {
    width: 14px;
    height: 14px
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em
}

.about-hero__title span {
    display: block;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8
}

.about-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
    position: relative
}

.section--gray {
    background: var(--gray-100)
}

.section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%)
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem
}

.bento__item {
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s
}

.bento__item:hover {
    transform: translateY(-5px)
}

.bento__main {
    grid-column: 1/8;
    grid-row: 1/3;
    background: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06)
}

.bento__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1.5rem
}

.bento__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.bento__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.bento__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1rem
}

.bento__image {
    grid-column: 8/13;
    grid-row: 1/2;
    min-height: 280px
}

.bento__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bento__stat {
    grid-column: 8/11;
    grid-row: 2/3;
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white)
}

.bento__stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-400), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.bento__stat-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    margin-top: .5rem
}

.bento__stat2 {
    grid-column: 11/13;
    grid-row: 2/3;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.bento__stat2 .bento__stat-number {
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.bento__stat2 .bento__stat-label {
    color: var(--burgundy-800)
}

.bento__features {
    grid-column: 1/13;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.bento__feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s
}

.bento__feature:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    transform: translateY(-5px)
}

.bento__feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    margin-bottom: 1rem
}

.bento__feature-icon svg {
    width: 26px;
    height: 26px
}

.bento__feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.bento__feature p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6
}

.vm-split {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden
}

.vm-split__vision,
.vm-split__mission {
    position: relative;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.vm-split__vision {
    background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-700));
    color: var(--white)
}

.vm-split__vision::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 160px;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-700));
    transform: skewX(-8deg);
    z-index: 1
}

.vm-split__mission {
    background: var(--white);
    z-index: 2
}

.vm-split__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem
}

.vm-split__vision .vm-split__icon {
    background: rgba(255, 255, 255, .1);
    color: var(--gold-400)
}

.vm-split__mission .vm-split__icon {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    color: var(--white)
}

.vm-split__icon svg {
    width: 40px;
    height: 40px
}

.vm-split__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: .75rem
}

.vm-split__vision .vm-split__label {
    color: var(--gold-400)
}

.vm-split__mission .vm-split__label {
    color: var(--burgundy-500)
}

.vm-split__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem
}

.vm-split__vision .vm-split__title {
    color: var(--white)
}

.vm-split__mission .vm-split__title {
    color: var(--gray-900)
}

.vm-split__text {
    font-size: 1rem;
    line-height: 1.9
}

.vm-split__vision .vm-split__text {
    color: rgba(255, 255, 255, .75)
}

.vm-split__mission .vm-split__text {
    color: var(--gray-600)
}

.values-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--cream) 100%)
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem
}

.values-header__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--burgundy-100);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.values-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem
}

.values-header__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.values-header__text {
    color: var(--gray-500);
    line-height: 1.8
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto
}

.value-hex {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    transition: all .4s;
    overflow: hidden
}

.value-hex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--burgundy-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.value-hex:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.value-hex:hover::before {
    transform: scaleX(1)
}

.value-hex__number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    transition: color .3s
}

.value-hex:hover .value-hex__number {
    color: var(--burgundy-50)
}

.value-hex__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    transition: all .4s
}

.value-hex:hover .value-hex__icon {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    color: var(--white);
    transform: scale(1.1) rotate(10deg)
}

.value-hex__icon svg {
    width: 36px;
    height: 36px
}

.value-hex__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.value-hex__text {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.journey-section {
    background: linear-gradient(180deg, var(--burgundy-900), var(--burgundy-800));
    position: relative;
    overflow: hidden
}

.journey-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem
}

.journey-header__tag {
    display: inline-flex;
    padding: .5rem 1rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.journey-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.journey-header__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.journey-header__text {
    color: rgba(255, 255, 255, .6);
    font-size: 1.05rem
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-400), var(--burgundy-400), var(--gold-400));
    transform: translateX(-50%);
    border-radius: 3px
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative
}

.journey-item:last-child {
    margin-bottom: 0
}

.journey-item:nth-child(odd) {
    flex-direction: row-reverse
}

.journey-item__content {
    width: calc(50% - 60px);
    padding: 2rem;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    transition: all .4s
}

.journey-item__content:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-5px)
}

.journey-item:nth-child(odd) .journey-item__content {
    margin-right: auto
}

.journey-item:nth-child(even) .journey-item__content {
    margin-left: auto
}

.journey-item__year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy-900);
    box-shadow: 0 0 0 8px var(--burgundy-900), 0 0 40px rgba(229, 194, 159, .3);
    z-index: 1
}

.journey-item__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .75rem
}

.journey-item__text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8
}

.journey-item__highlight {
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem 1rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 50px
}

.founder-section {
    background: var(--white)
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 700px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .1)
}

.founder-image {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900))
}

.founder-image__photo {
    position: absolute;
    inset: 0
}

.founder-image__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9
}

.founder-image__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .9) 0%, rgba(45, 10, 14, .3) 50%, transparent 100%)
}

.founder-image__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: var(--white)
}

.founder-image__tag {
    display: inline-flex;
    padding: .5rem 1rem;
    background: var(--gold-400);
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.founder-image__name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.founder-image__role {
    font-size: 1rem;
    color: var(--gold-400);
    font-weight: 500
}

.founder-image__social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem
}

.founder-image__social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all .3s
}

.founder-image__social a:hover {
    background: var(--gold-400);
    color: var(--burgundy-900);
    transform: translateY(-3px)
}

.founder-image__social svg {
    width: 20px;
    height: 20px
}

.founder-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream)
}

.founder-content__label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-500);
    margin-bottom: 1rem
}

.founder-content__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 2rem
}

.founder-content__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.founder-content__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.founder-quote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--gold-200));
    border-radius: 20px
}

.founder-quote__icon {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(166, 45, 60, .3)
}

.founder-quote__icon svg {
    width: 24px;
    height: 24px
}

.founder-quote__text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.8
}

.founder-signature {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.founder-signature__line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--burgundy-600))
}

.founder-signature__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900)
}

.cta {
    position: relative;
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, .12) 0%, transparent 70%);
    pointer-events: none
}

.cta__content {
    position: relative;
    text-align: center;
    max-width: 750px;
    margin: 0 auto
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.cta__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2.5rem
}

.cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* Awards Section - Compact Gallery for 20+ Awards */
.awards-section {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    position: relative;
    overflow: hidden
}

.awards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, .08) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(212, 165, 116, .05) 0%, transparent 50%);
    pointer-events: none
}

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative
}

.awards-header__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.awards-header__tag svg {
    width: 16px;
    height: 16px
}

.awards-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.awards-header__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.awards-header__text {
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    font-size: 1.05rem
}

.awards-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.awards-stat {
    text-align: center
}

.awards-stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.awards-stat__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .25rem
}

.awards-filter {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.awards-filter__btn {
    padding: .6rem 1.25rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s
}

.awards-filter__btn:hover,
.awards-filter__btn.active {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--burgundy-900)
}

.awards-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto
}

.award-card {
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.award-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(229, 194, 159, .3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.award-card__image {
    position: relative;
    height: 180px;
    overflow: hidden
}

.award-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.award-card:hover .award-card__image img {
    transform: scale(1.1)
}

.award-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .8) 0%, transparent 100%)
}

.award-card__badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 36px;
    height: 36px;
    background: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3)
}

.award-card__badge svg {
    width: 18px;
    height: 18px
}

.award-card__content {
    padding: 1.25rem
}

.award-card__year {
    display: inline-block;
    padding: .2rem .6rem;
    background: rgba(229, 194, 159, .2);
    color: var(--gold-400);
    font-size: .65rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: .5rem
}

.award-card__title {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
    line-height: 1.3
}

.award-card__org {
    font-size: .8rem;
    color: var(--gold-400);
    opacity: .8
}

.award-card__type {
    position: absolute;
    top: .75rem;
    left: .75rem;
    padding: .25rem .6rem;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px;
    z-index: 2
}

.awards-gallery--expanded {
    max-height: none
}

.awards-toggle {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem
}

.awards-toggle__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(229, 194, 159, .3);
    color: var(--gold-400);
    font-size: .9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s
}

.awards-toggle__btn:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--burgundy-900)
}

.awards-toggle__btn svg {
    width: 18px;
    height: 18px;
    transition: transform .3s
}

.awards-toggle__btn.expanded svg {
    transform: rotate(180deg)
}

@media(max-width:1200px){
    .about-hero__content{
        margin-top: 70px;
    }
}
@media(max-width:768px){
    .about-hero__content{
        margin-top: 50px;
    }
}
@media(max-width:600px){
    .about-hero__content{
        margin-top: 35px;
    }
}
@media(max-width:550px){
    .about-hero__content{
        margin-top: 68px;
    }
}
@media(max-width:500px){
    .about-hero__content{
        margin-top: 66px;
    }
}

@media(max-width:1200px) {
    .awards-gallery {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {
    .awards-gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .awards-stats {
        gap: 2rem
    }
}

@media(max-width:600px) {
    .awards-gallery {
        grid-template-columns: 1fr;
        max-width: 400px
    }

    .award-card__image {
        height: 200px
    }

    .awards-filter {
        gap: .4rem
    }

    .awards-filter__btn {
        padding: .5rem 1rem;
        font-size: .75rem
    }

    .awards-stats {
        gap: 1.5rem
    }

    .awards-stat__number {
        font-size: 2.5rem
    }
}

[data-anim="scale"] {
    transform: scale(.9)
}

[data-anim="scale"].visible {
    transform: scale(1)
}

@media(max-width:1200px) {
    .bento {
        grid-template-columns: 1fr 1fr
    }

    .bento__main {
        grid-column: 1/2;
        grid-row: 1/2
    }

    .bento__image {
        grid-column: 2/3;
        grid-row: 1/2
    }

    .bento__stat {
        grid-column: 1/2;
        grid-row: 2/3
    }

    .bento__stat2 {
        grid-column: 2/3;
        grid-row: 2/3
    }

    .bento__features {
        grid-column: 1/3;
        grid-row: 3/4;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1024px) {
    .vm-split {
        grid-template-columns: 1fr
    }

    .vm-split__vision::after {
        display: none
    }

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

    .journey-timeline::before {
        left: 30px
    }

    .journey-item,
    .journey-item:nth-child(odd) {
        flex-direction: row
    }

    .journey-item__content,
    .journey-item:nth-child(odd) .journey-item__content,
    .journey-item:nth-child(even) .journey-item__content {
        width: calc(100% - 100px);
        margin-left: auto;
        margin-right: 0
    }

    .journey-item__year {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: .9rem
    }

    .founder-layout {
        grid-template-columns: 1fr
    }

    .founder-image {
        min-height: 500px
    }
}

@media(max-width:768px) {

    .bento {
        grid-template-columns: 1fr
    }

    .bento__main,
    .bento__image,
    .bento__stat,
    .bento__stat2 {
        grid-column: 1/-1;
        grid-row: auto
    }

    .bento__features {
        grid-template-columns: 1fr
    }

    .bento__image {
        min-height: 250px
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .founder-content {
        padding: 2.5rem
    }

}

.nav__close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--gray-800);
    transition: all .3s;
    z-index: 10;
}

.nav__close:hover {
    background: var(--burgundy-500);
    color: var(--white);
}

.nav__close svg {
    width: 20px;
    height: 20px;
}

@media(max-width:768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        transition: right .4s cubic-bezier(.16, 1, .3, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
        overflow-y: auto;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: .875rem 1rem;
        border-radius: 10px;
    }

    .nav__close {
        display: flex;
    }

    /* Dropdown container - takes full width */
    .nav__dropdown {
        width: 100%;
    }

    /* Dropdown trigger button */
    .nav__dropdown-trigger {
        width: 100%;
        justify-content: flex-start;
    }

    /* Dropdown menu */
    .nav__dropdown-menu {
        position: relative !important;
        /* Force relative positioning */
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        display: none;
        min-width: auto;
        left: auto !important;
        top: auto !important;
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block;
    }

    .nav__dropdown-menu a {
        background: transparent;
        margin: 0;
        padding: 0.75rem 1rem;
        padding-left: 2rem;
        display: block;
        border-radius: 8px;
        font-size: 0.85rem;
        color: var(--gray-600);
        width: 100%;
    }

    .nav__dropdown-menu a:hover,
    .nav__dropdown-menu a.active {
        background: var(--burgundy-50);
        color: var(--burgundy-600);
    }

    /* Remove desktop hover effects on mobile */
    .nav__dropdown:hover .nav__dropdown-trigger svg {
        transform: none;
    }

    .nav__dropdown:hover .nav__dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Rotate arrow when dropdown is open */
    .nav__dropdown.open .nav__dropdown-trigger svg {
        transform: rotate(180deg);
    }

    .nav__toggle {
        display: flex;
    }
}

/* team Hero */
.team-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-700) 100%)
}

.team-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.team-hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.team-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3
}

.team-hero__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--gold-400);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite
}

.team-hero__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--burgundy-400);
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse
}

.team-hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--gold-300);
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite 2s
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(30px, -30px) scale(1.1)
    }
}

.team-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    margin-top: 100px;
}

.team-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2rem
}

.team-hero__breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: color .2s
}

.team-hero__breadcrumb a:hover {
    color: var(--gold-400)
}

.team-hero__breadcrumb svg {
    width: 14px;
    height: 14px
}


.team-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em
}

.team-hero__title span {
    display: inline;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.team-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8
}

/* Section Styles */
.team-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
    position: relative
}

.section--cream {
    background: var(--cream)
}


.section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--burgundy-100);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem
}

.section-header__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.section-header__text {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 1.05rem
}

/* Leadership Section - Featured Cards */
.leadership {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto
}

.leader-card {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    transition: all .5s cubic-bezier(.16, 1, .3, 1)
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.leader-card__image {
    position: relative;
    height: 320px;
    overflow: hidden
}

.leader-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--burgundy-900) 0%, transparent 60%);
    z-index: 1;
    opacity: .9
}

.leader-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.leader-card:hover .leader-card__image img {
    transform: scale(1.08)
}

.leader-card__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px
}

.leader-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem
}

.leader-card__name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.leader-card__role {
    font-size: .9rem;
    color: var(--gold-400);
    font-weight: 500
}

.leader-card__content {
    padding: 2rem
}

.leader-card__bio {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.leader-card__social {
    display: flex;
    gap: .5rem
}

.leader-card__social a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all .3s
}

.leader-card__social a:hover {
    background: var(--burgundy-600);
    color: var(--white);
    transform: translateY(-3px)
}

.leader-card__social svg {
    width: 18px;
    height: 18px
}

/* Team Grid - Modern Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.team-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.team-card__image {
    position: relative;
    height: 280px;
    overflow: hidden
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.team-card:hover .team-card__image img {
    transform: scale(1.05)
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .95) 0%, rgba(45, 10, 14, .4) 40%, transparent 100%);
    opacity: 0;
    transition: opacity .4s
}

.team-card:hover .team-card__overlay {
    opacity: 1
}

.team-card__social {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: .5rem;
    opacity: 0;
    transition: all .4s
}

.team-card:hover .team-card__social {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.team-card__social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all .3s
}

.team-card__social a:hover {
    background: var(--gold-400);
    color: var(--burgundy-900);
    transform: scale(1.1)
}

.team-card__social svg {
    width: 16px;
    height: 16px
}

.team-card__content {
    padding: 1.5rem;
    text-align: center
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.team-card__role {
    font-size: .8rem;
    color: var(--burgundy-500);
    font-weight: 500;
    margin-bottom: .5rem
}

.team-card__dept {
    display: inline-flex;
    padding: .35rem .75rem;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 600;
    border-radius: 50px
}

/* Volunteers Section - Circular Grid */
.volunteers-section {
    background: linear-gradient(180deg, var(--burgundy-900), var(--burgundy-800));
    position: relative;
    overflow: hidden
}

.volunteers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.volunteers-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem
}

.volunteers-header__tag {
    display: inline-flex;
    padding: .5rem 1rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.volunteers-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.volunteers-header__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.volunteers-header__text {
    color: rgba(255, 255, 255, .6);
    font-size: 1.05rem
}

.volunteers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto
}

.volunteer-card {
    text-align: center;
    transition: transform .4s
}

.volunteer-card:hover {
    transform: translateY(-8px)
}

.volunteer-card__image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .1);
    transition: all .4s
}

.volunteer-card:hover .volunteer-card__image {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 8px rgba(229, 194, 159, .2)
}

.volunteer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.volunteer-card__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem
}

.volunteer-card__role {
    font-size: .8rem;
    color: var(--gold-400)
}

/* Join CTA Section */
.join-section {
    background: var(--white)
}

.join-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.join-card__content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.join-card__tag {
    display: inline-flex;
    width: fit-content;
    padding: .5rem 1rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1.5rem
}

.join-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem
}

.join-card__title em {
    font-style: normal;
    color: var(--gold-400)
}

.join-card__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 2rem
}

.join-card__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem
}

.join-card__benefit {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem
}

.join-card__benefit svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
    flex-shrink: 0
}

.join-card__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.join-card__image {
    position: relative;
    min-height: 400px
}

.join-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200)
}

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

.stats-bar__item {
    text-align: center;
    position: relative
}

.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--gray-200)
}

.stats-bar__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.stats-bar__label {
    font-size: .85rem;
    color: var(--gray-500);
    margin-top: .5rem
}



/* Animations */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0)
}

[data-anim="left"] {
    transform: translateX(-50px)
}

[data-anim="left"].visible {
    transform: translateX(0)
}

[data-anim="right"] {
    transform: translateX(50px)
}

[data-anim="right"].visible {
    transform: translateX(0)
}

[data-anim="scale"] {
    transform: scale(.9)
}

[data-anim="scale"].visible {
    transform: scale(1)
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s, transform .6s
}

[data-stagger].visible>* {
    opacity: 1;
    transform: translateY(0)
}

[data-stagger].visible>*:nth-child(1) {
    transition-delay: 0ms
}

[data-stagger].visible>*:nth-child(2) {
    transition-delay: 100ms
}

[data-stagger].visible>*:nth-child(3) {
    transition-delay: 200ms
}

[data-stagger].visible>*:nth-child(4) {
    transition-delay: 300ms
}

[data-stagger].visible>*:nth-child(5) {
    transition-delay: 400ms
}

[data-stagger].visible>*:nth-child(6) {
    transition-delay: 500ms
}

[data-stagger].visible>*:nth-child(7) {
    transition-delay: 600ms
}

[data-stagger].visible>*:nth-child(8) {
    transition-delay: 700ms
}

/* Responsive */
@media(max-width:1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .team-hero__content {
        margin-top: 70px;
    }
}

@media(max-width:1024px) {
    .leadership {
        grid-template-columns: 1fr;
        max-width: 500px
    }

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

    .join-card {
        grid-template-columns: 1fr
    }

    .join-card__image {
        min-height: 300px
    }


    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }

    .stats-bar__item:nth-child(2)::after {
        display: none
    }
}

@media(max-width:768px) {

    .team-grid {
        grid-template-columns: 1fr
    }

    .volunteers-grid {
        gap: 1.5rem
    }

    .volunteer-card__image {
        width: 100px;
        height: 100px
    }

    .join-card__benefits {
        grid-template-columns: 1fr
    }

    .join-card__content {
        padding: 2.5rem
    }


    .stats-bar__grid {
        grid-template-columns: 1fr
    }

    .stats-bar__item::after {
        display: none
    }
}





/* project-slum-to-surgeon */
.sts-btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.sts-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(166, 45, 60, .4)
}

.btn--white {
    background: var(--white);
    color: var(--burgundy-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--burgundy-900);
    box-shadow: 0 4px 20px rgba(212, 165, 116, .4)
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, .5)
}

.sts-btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .4)
}

.sts-btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6)
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: .95rem
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--burgundy-900)
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 10, 14, .92) 0%, rgba(107, 29, 38, .85) 50%, rgba(45, 10, 14, .9) 100%);
    z-index: 1
}

.hero__glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, .15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(60px)
}

.hero__glow--2 {
    top: auto;
    bottom: 10%;
    right: auto;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(166, 45, 60, .2) 0%, transparent 70%)
}

.hero__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0 5rem
}

.hero__content {
    max-width: 650px
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.25rem;
    background: var(--gradient-gold);
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 165, 116, .3)
}

.hero__badge svg {
    width: 16px;
    height: 16px
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem
}

.hero__title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--gold-400);
    margin-bottom: 1.25rem
}

.hero__desc {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 520px
}

.hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero__status {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 60px
}

.hero__status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(34, 197, 94, .6);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: .7
    }
}

.hero__status-text {
    font-size: clamp(.75rem, 2vw, .85rem);
    font-weight: 600;
    color: #4ade80
}

.sts-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.hero__stat-card {
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    transition: all .4s
}

.hero__stat-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateX(-10px);
    border-color: rgba(229, 194, 159, .3)
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .25rem
}

.hero__stat-label {
    font-size: clamp(.8rem, 2vw, .9rem);
    color: rgba(255, 255, 255, .7)
}

.hero__stat-sublabel {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .15rem
}

/* Sections */
.sts-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative;
    overflow: hidden
}

.section--white {
    background: var(--white)
}

.section--cream {
    background: var(--cream)
}

.sts-section--gray {
    background: linear-gradient(180deg, var(--gray-100), var(--cream))
}

.sts-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem
}

.sts-section-header__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    background: var(--burgundy-100);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 1.25rem
}

.sts-section-header__badge svg {
    width: 14px;
    height: 14px
}

.sts-section-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.sts-section-header__title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sts-section-header__text {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--gray-500);
    line-height: 1.9
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1.5rem
}

.about__badge svg {
    width: 14px;
    height: 14px
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 1.5rem
}

.about__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.about__text {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--gray-600);
    line-height: 2;
    margin-bottom: 1.25rem
}

.about__highlight {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--gold-200));
    border-radius: 20px;
    border-left: 5px solid var(--burgundy-500);
    margin-top: 2rem
}

.about__highlight p {
    font-size: clamp(.9rem, 2vw, 1rem);
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0
}

.about__highlight strong {
    color: var(--burgundy-700)
}

.about__visual {
    position: relative
}

.about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12)
}

.about__image-main img {
    width: 100%;
    height: clamp(300px, 40vw, 480px);
    object-fit: cover
}

.about__image-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: clamp(140px, 20vw, 220px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
    border: 5px solid var(--white)
}

.about__image-float img {
    width: 100%;
    height: clamp(120px, 15vw, 180px);
    object-fit: cover
}

.about__card {
    position: absolute;
    top: 20px;
    right: -10px;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    text-align: center
}

.about__card-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto .5rem;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.about__card-icon svg {
    width: 22px;
    height: 22px
}

.about__card-text {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-900)
}

.about__card-subtext {
    font-size: .7rem;
    color: var(--gray-500)
}

/* Why Grid */
.why__intro {
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
    border-left: 5px solid var(--burgundy-500)
}

.why__intro p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-700);
    line-height: 2
}

.why__intro strong {
    color: var(--burgundy-600);
    font-weight: 700
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.why__card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
    transition: all .4s;
    border: 1px solid transparent
}

.why__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
    border-color: var(--burgundy-100)
}

.why__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    transition: all .4s
}

.why__card:hover .why__card-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1)
}

.why__card-icon svg {
    width: 28px;
    height: 28px
}

.why__card-title {
    font-family: var(--font-display);
    font-size: clamp(.9rem, 2vw, 1rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.why__card-text {
    font-size: clamp(.8rem, 1.5vw, .85rem);
    color: var(--gray-500);
    line-height: 1.7
}

/* Status */
.status {
    background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-800));
    padding: 3.5rem 0
}

.status__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem
}

.status__badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2rem;
    background: rgba(34, 197, 94, .1);
    border: 2px solid rgba(34, 197, 94, .3);
    border-radius: 60px
}

.status__dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(34, 197, 94, .6);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0
}

.status__text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: #4ade80;
    text-align: center
}

/* Impact */
.sts-impact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem
}

.sts-impact__card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
    transition: all .5s;
    position: relative;
    overflow: hidden
}

.sts-impact__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .4s
}

.sts-impact__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12)
}

.sts-impact__card:hover::before {
    opacity: 1
}

.sts-impact__card>* {
    position: relative;
    z-index: 1
}

.sts-impact__card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    transition: all .4s
}

.sts-impact__card:hover .sts-impact__card-icon {
    background: rgba(255, 255, 255, .2);
    color: var(--white)
}

.sts-impact__card-icon svg {
    width: 32px;
    height: 32px
}

.sts-impact__card-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .5rem
}

.sts-impact__card:hover .sts-impact__card-number {
    background: linear-gradient(135deg, var(--white), var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text
}

.sts-impact__card-label {
    font-size: clamp(.9rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--gray-700);
    transition: color .4s
}

.sts-impact__card:hover .sts-impact__card-label {
    color: rgba(255, 255, 255, .95)
}

.sts-impact__card-sublabel {
    font-size: clamp(.75rem, 1.5vw, .85rem);
    color: var(--gray-500);
    margin-top: .35rem;
    transition: color .4s
}

.sts-impact__card:hover .sts-impact__card-sublabel {
    color: rgba(255, 255, 255, .7)
}

.impact__beneficiaries {
    background: var(--gradient-gold);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 15px 50px rgba(212, 165, 116, .25);
    flex-wrap: wrap
}

.impact__beneficiaries-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    flex-shrink: 0
}

.impact__beneficiaries-icon svg {
    width: 26px;
    height: 26px
}

.impact__beneficiaries-content h4 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--burgundy-900);
    margin-bottom: .25rem
}

.impact__beneficiaries-content p {
    font-size: clamp(.85rem, 1.5vw, .95rem);
    color: var(--burgundy-700)
}

/* What We Do */
.whatwedo__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.whatwedo__card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
    transition: all .4s;
    border: 2px solid transparent
}

.whatwedo__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
    border-color: var(--burgundy-100)
}

.whatwedo__card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.whatwedo__card-icon svg {
    width: 26px;
    height: 26px
}

.whatwedo__card-content h3 {
    font-family: var(--font-display);
    font-size: clamp(.95rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.whatwedo__card-content p {
    font-size: clamp(.85rem, 1.5vw, .9rem);
    color: var(--gray-500);
    line-height: 1.8
}

/* Vision */
.vision {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0;
    overflow: hidden
}

.vision__bg {
    position: absolute;
    inset: 0
}

.vision__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vision__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 10, 14, .95), rgba(107, 29, 38, .92))
}

.vision__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem
}

.vision__badge {
    display: inline-flex;
    padding: .6rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    color: var(--gold-400);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(229, 194, 159, .2)
}

.vision__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem
}

.vision__title em {
    font-style: normal;
    color: var(--gold-400)
}

.vision__quote {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.vision__quote-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.vision__quote-icon svg {
    width: 24px;
    height: 24px
}

.vision__quote p {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.9
}

/* Related Blogs */
.blogs {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--gray-100)
}

.blogs__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem
}

.blogs__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--burgundy-100);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.blogs__badge svg {
    width: 14px;
    height: 14px
}

.blogs__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.blogs__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.blogs__subtitle {
    font-size: .95rem;
    color: var(--gray-500);
    line-height: 1.8
}

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

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    transition: all .4s
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08)
}

.blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .35rem .85rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.blog-card__content {
    padding: 1.5rem
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
    font-size: .75rem;
    color: var(--gray-500)
}

.blog-card__meta-item {
    display: flex;
    align-items: center;
    gap: .35rem
}

.blog-card__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--burgundy-400)
}

.blog-card__heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: .75rem;
    transition: color .3s
}

.blog-card:hover .blog-card__heading {
    color: var(--burgundy-600)
}

.blog-card__excerpt {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: gap .3s
}

.blog-card__link:hover {
    gap: .75rem
}

.blog-card__link svg {
    width: 16px;
    height: 16px
}

.blogs__more {
    text-align: center;
    margin-top: 2.5rem
}

/* sts-cta */
.sts-cta {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--white)
}

.sts-cta__card {
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    border-radius: clamp(20px, 4vw, 32px);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden
}

.sts-cta__card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 165, 116, .15) 0%, transparent 70%);
    pointer-events: none
}

.sts-cta__content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto
}

.sts-cta__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.sts-cta__icon svg {
    width: 32px;
    height: 32px
}

.sts-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem
}

.sts-cta__title em {
    font-style: normal;
    color: var(--gold-400)
}

.sts-cta__text {
    font-size: clamp(.9rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 2rem
}

.sts-cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.sts-cta__features {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.sts-cta__feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(.8rem, 1.5vw, .9rem)
}

.sts-cta__feature svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400);
    flex-shrink: 0
}



/* Responsive - Tablet */
@media(max-width:1200px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: -40px;
    }

    .sts-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem
    }

    .hero__stat-card {
        flex: 1;
        min-width: 200px
    }

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

    .sts-impact__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

    .about__visual {
        margin-top: 1rem;
        max-width: 500px
    }

    .about__card {
        right: 10px;
        top: 10px
    }

    .sts-impact__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .whatwedo__grid {
        grid-template-columns: 1fr
    }

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

/* Responsive - Mobile */
@media(max-width:768px) {


    .hero__container {
        padding: 1rem 0 3rem;
        margin-top: -24px;
    }

    .sts-hero__stats {
        flex-direction: column
    }

    .hero__stat-card {
        min-width: 100%
    }

    .hero__btns {
        flex-direction: column
    }

    .hero__btns .btn {
        width: 100%;
        justify-content: center
    }

    .why__grid {
        grid-template-columns: 1fr
    }

    .why__intro {
        padding: 1.5rem
    }

    .sts-impact__grid {
        grid-template-columns: 1fr
    }

    .impact__beneficiaries {
        flex-direction: column;
        text-align: center;
        gap: 1rem
    }

    .impact__beneficiaries-content {
        text-align: center
    }

    .blogs__grid {
        grid-template-columns: 1fr
    }

    .blog-card__image {
        height: 180px
    }

    .sts-cta__card {
        padding: 2rem 1.5rem
    }

    .sts-cta__btns {
        flex-direction: column
    }

    .sts-cta__btns .btn {
        width: 100%
    }

}

@media(max-width:480px) {
    /* .container {
        padding: 0 1rem
    } */

    .hero__badge {
        padding: .5rem 1rem;
        font-size: .65rem
    }

    .sts-section-header__badge {
        padding: .4rem 1rem;
        font-size: .65rem
    }

    .about__image-float {
        bottom: -15px;
        left: -10px
    }

    .about__card {
        padding: 1rem;
        right: 5px;
        top: 5px
    }

    .status__badge {
        padding: .75rem 1.25rem;
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }
}






/* project-sahara */
.ps_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.ps_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.ps_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.ps_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.ps_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.ps_btn--outline:hover {
    background: var(--burgundy-50)
}

.ps_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #0C4A4E 100%)
}

.ps_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.ps_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.ps_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--hope-green);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.ps_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.ps_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ps_hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem
}

.ps_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.ps_hero__badge svg {
    width: 20px;
    height: 20px
}

.ps_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.ps_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ps_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.ps_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.ps_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

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

.ps_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.ps_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.ps_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.ps_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.ps_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.ps_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.ps_section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative
}


.section--gold {
    background: linear-gradient(180deg, var(--gold-200) 0%, var(--cream) 100%)
}

.ps_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.ps_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.ps_section-tag::before,
.ps_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.section--dark .ps_section-tag {
    color: var(--gold-400)
}

.section--dark .ps_section-tag::before,
.section--dark .ps_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.ps_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.ps_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section--dark .ps_section-title {
    color: var(--white)
}

.section--dark .ps_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, .7)
}



.about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.about__image {
    position: relative
}



.ps_about__image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.ps_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.ps_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.ps_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.ps_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.ps_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    color: var(--burgundy-600)
}



.ps_impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.impact-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.impact-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

.impact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.impact-card__icon svg {
    width: 28px;
    height: 28px
}

.impact-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.impact-card__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

.vision {
    text-align: center;
    position: relative
}

.vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.vision__icon svg {
    width: 50px;
    height: 50px
}

.stories {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden
}

.stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy-200), transparent)
}

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

.ps_story-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s
}

.ps_story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.ps_story-card__image {
    position: relative;
    height: 220px;
    overflow: hidden
}

.ps_story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.ps_story-card:hover .ps_story-card__image img {
    transform: scale(1.08)
}

.ps_story-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 10, 14, .9) 100%)
}

.ps_story-card__type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ps_story-card__year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .4rem .8rem;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    border-radius: 15px
}

.ps_story-card__student {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem
}

.ps_story-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.ps_story-card__college {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8)
}

.ps_story-card__body {
    padding: 1.5rem
}

.ps_story-card__quote {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--burgundy-300)
}

.ps_story-card__benefit {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    background: var(--hope-light);
    border-radius: 12px
}

.ps_story-card__benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--hope-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.ps_story-card__benefit-icon svg {
    width: 20px;
    height: 20px
}

.ps_story-card__benefit-text {
    font-size: .85rem;
    color: var(--gray-700)
}

.ps_story-card__benefit-text strong {
    display: block;
    color: var(--hope-green);
    font-size: 1.1rem
}

.ps_story-card__footer {
    padding: 0 1.5rem 1.5rem
}

.ps_story-card__read {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: all .25s
}

.ps_story-card__read:hover {
    gap: .75rem;
    color: var(--burgundy-700)
}

.ps_story-card__read svg {
    width: 16px;
    height: 16px
}

.load-more {
    text-align: center;
    margin-top: 3rem
}

.ps_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.ps_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.ps_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.ps_cta__icon svg {
    width: 40px;
    height: 40px
}

.ps_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.ps_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.ps_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.ps_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}





@media(max-width:1200px) {
    .ps_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .ps_hero__content {
        max-width: 100%;
        /* margin: 0 auto */
        margin-top: -60px;
    }

    .ps_hero__btns {
        justify-content: center
    }

    .ps_hero__visual {
        max-width: 600px;
        margin: 0 auto
    }

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

    .about__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .about__content {
        text-align: center
    }

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

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

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

@media(max-width:1024px) {

    .impact-card__value {
        font-size: 2rem
    }
}



@media(max-width:768px) {
    .ps_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .ps_hero__container {
        padding: 2rem 0
    }

    .ps_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .ps_hero__title {
        font-size: 2.25rem
    }

    .ps_hero__subtitle {
        font-size: 1rem
    }

    .ps_hero__desc {
        font-size: 1rem
    }

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

    .ps_hero__stat-card {
        padding: 1.5rem
    }

    .ps_hero__stat-value {
        font-size: 1.5rem
    }

    .ps_section {
        padding: 3rem 0
    }

    .ps_section-header {
        margin-bottom: 2.5rem
    }

    .ps_section-title {
        font-size: 1.75rem
    }

    .section-subtitle {
        font-size: 1rem
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        padding: 1.5rem
    }

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

    .impact-card {
        padding: 1.5rem 1rem
    }

    .impact-card__value {
        font-size: 1.75rem
    }

    .stories__grid {
        grid-template-columns: 1fr
    }

    .ps_story-card__image {
        height: 200px
    }

    .ps_about__image-main img {
        height: 280px
    }

    .ps_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem
    }

    .about__content h2 {
        font-size: 1.5rem
    }

    .vision__icon {
        width: 70px;
        height: 70px
    }

    .vision__icon svg {
        width: 35px;
        height: 35px
    }

    .vision__quote {
        font-size: 1.25rem
    }

    .ps_cta__icon {
        width: 60px;
        height: 60px
    }

    .ps_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .ps_cta__title {
        font-size: 1.5rem
    }

    .ps_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .ps_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }

}

@media(max-width:480px) {


    .ps_hero__title {
        font-size: 1.875rem
    }

    .ps_hero__stats-grid {
        gap: .5rem
    }

    .ps_hero__stat-card {
        padding: 1rem
    }

    .ps_hero__stat-value {
        font-size: 1.25rem
    }

    .ps_section-title {
        font-size: 1.5rem
    }

    .ps_story-card__body {
        padding: 1.25rem
    }

    .ps_story-card__quote {
        font-size: .85rem
    }
    .ps_hero__content {
        margin-top: -30px;
    }
}

@media(max-width:360px) {
    .ps_hero__title {
        font-size: 1.625rem
    }

    .ps_hero__badge {
        font-size: .6rem
    }

    .ps_section-title {
        font-size: 1.35rem
    }

   

}




/* project-mission-code-careers */


.mcc_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.mcc_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.mcc_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.mcc_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.mcc_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.mcc_btn--outline:hover {
    background: var(--burgundy-50)
}

.btn--green {
    background: linear-gradient(135deg, var(--mcc-green), var(--mcc-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, .3)
}

.btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, .4)
}

.mcc_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 40%, #14532d 100%)
}

.mcc_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.mcc_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.mcc_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--mcc-green);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.mcc_hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--success-green);
    top: 60%;
    right: 20%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.mcc_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.mcc_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.mcc_hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem
}

.mcc_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.mcc_hero__badge svg {
    width: 20px;
    height: 20px
}

.mcc_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.mcc_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--mcc-green), #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mcc_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.mcc_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.mcc_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.mcc_hero__status {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(34, 197, 94, .1));
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem
}

.mcc_hero__status-dot {
    width: 12px;
    height: 12px;
    background: var(--mcc-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0)
    }
}

.mcc_hero__status-text {
    font-size: .9rem;
    color: var(--mcc-green);
    font-weight: 600
}

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

.mcc_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.mcc_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.mcc_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--mcc-green), var(--mcc-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.mcc_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.mcc_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.mcc_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative
}

.section--green {
    background: linear-gradient(180deg, var(--mcc-light) 0%, var(--cream) 100%)
}

.mcc_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.mcc_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.mcc_section-tag::before,
.mcc_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.section--dark .mcc_section-tag {
    color: var(--gold-400)
}

.section--dark .mcc_section-tag::before,
.section--dark .mcc_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.mcc_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.mcc_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--mcc-green), var(--mcc-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section--dark .mcc_section-title {
    color: var(--white)
}

.section--dark .mcc_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mcc_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.section--dark .mcc_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.mcc_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.mcc_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.mcc_about__content h2 em {
    font-style: normal;
    color: var(--mcc-green)
}

.mcc_about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.about__image {
    position: relative
}

.mcc_about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12)
}

.mcc_about__image-main img {
    width: 100%;
    height: clamp(300px, 40vw, 480px);
    object-fit: cover
}

.mcc_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.mcc_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mcc-green), var(--mcc-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.mcc_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.mcc_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.mcc_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.problem__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.problem__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

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

.problem__point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    transition: all .3s
}

.problem__point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.problem__point-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.problem__point-icon svg {
    width: 24px;
    height: 24px
}

.problem__point-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.problem__point-text p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.problem__card {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.problem__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: .1
}

.problem__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.problem__card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--mcc-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mcc-light), var(--white));
    color: var(--mcc-green);
    transition: all .4s
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--mcc-green), var(--mcc-dark));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg)
}

.service-card__icon svg {
    width: 32px;
    height: 32px
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.service-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.impact-single {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.impact-single-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s;
    border: 2px solid transparent
}

.impact-single-card:hover {
    border-color: var(--mcc-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, .15)
}

.impact-single-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mcc-light);
    color: var(--mcc-green)
}

.impact-single-card__icon svg {
    width: 32px;
    height: 32px
}

.impact-single-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4
}

.mcc_impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.mcc_impact-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.mcc_impact-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

.mcc_impact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.mcc_impact-card__icon svg {
    width: 28px;
    height: 28px
}

.mcc_impact-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.mcc_impact-card__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

.donor-section {
    background: linear-gradient(135deg, var(--mcc-dark) 0%, #14532d 100%);
    border-radius: 24px;
    padding: 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.donor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--mcc-green) 0%, transparent 60%);
    opacity: .15
}

.donor-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.donor-section__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.5rem
}

.donor-section__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.donor-section__highlight {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-400);
    border-left: 4px solid var(--gold-400);
    padding-left: 1.5rem;
    margin-top: 2rem
}

.donor-section__visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.donor-section__icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, .2)
}

.donor-section__icon svg {
    width: 100px;
    height: 100px;
    color: var(--gold-400)
}

.mcc_vision {
    text-align: center;
    position: relative
}

.mcc_vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.mcc_vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.mcc_vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.mcc_vision__icon svg {
    width: 50px;
    height: 50px
}

.mcc_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.mcc_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.mcc_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--mcc-light), var(--white));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mcc-green);
    box-shadow: 0 10px 40px rgba(34, 197, 94, .2)
}

.mcc_cta__icon svg {
    width: 40px;
    height: 40px
}

.mcc_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.mcc_cta__title em {
    font-style: normal;
    color: var(--mcc-green)
}

.mcc_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.mcc_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.mcc_cta__free {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: var(--success-light);
    border-radius: 50px;
    color: var(--success-green);
    font-size: .9rem;
    font-weight: 600
}

.mcc_cta__free svg {
    width: 20px;
    height: 20px
}



@media(max-width:1200px) {
    .mcc_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .mcc_hero__content {
        max-width: 100%;
        /* margin: 0 auto */
        margin-top: -45px;
    }

    .mcc_hero__btns {
        justify-content: center
    }

    .mcc_hero__status {
        justify-content: center
    }

    .mcc_hero__stats {
        max-width: 500px;
        margin: 0 auto
    }

    .mcc_about-grid,
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about__image,
    .problem__visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .mcc_about__content,
    .problem__content {
        text-align: center
    }

    .problem__points {
        max-width: 500px;
        margin: 0 auto
    }

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

    .mcc_impact-grid,
    .impact-single {
        grid-template-columns: repeat(2, 1fr)
    }

    .donor-section__inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .donor-section__content {
        order: 2
    }

    .donor-section__visual {
        order: 1
    }

    .donor-section__highlight {
        text-align: left
    }
}

@media(max-width:1024px) {


    .mcc_impact-card__value {
        font-size: 2rem
    }
}


@media(max-width:768px) {
    .mcc_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .mcc_hero__container {
        padding: 2rem 0;
        margin-top: 0px;
    }

    .mcc_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .mcc_hero__title {
        font-size: 2.25rem
    }

    .mcc_hero__subtitle {
        font-size: 1rem
    }

    .mcc_hero__desc {
        font-size: 1rem
    }

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

    .mcc_hero__stat-card {
        padding: 1.5rem
    }

    .mcc_hero__stat-value {
        font-size: 1.5rem
    }

    .section {
        padding: 3rem 0
    }

    .mcc_section-header {
        margin-bottom: 2.5rem
    }

    .mcc_section-title {
        font-size: 1.75rem
    }

    .mcc_section-subtitle {
        font-size: 1rem
    }

    .mcc_services-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        padding: 1.5rem
    }

    .mcc_impact-grid,
    .impact-single {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .mcc_impact-card {
        padding: 1.5rem 1rem
    }

    .mcc_impact-card__value {
        font-size: 1.75rem
    }

    .impact-single-card {
        padding: 1.5rem
    }

    .mcc_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        justify-content: center
    }

    .mcc_about__content h2,
    .problem__content h2 {
        font-size: 1.5rem
    }

    .problem__card {
        padding: 2rem
    }

    .problem__card-title {
        font-size: 1.25rem
    }

    .donor-section {
        padding: 2.5rem 1.5rem;
        border-radius: 20px
    }

    .donor-section__icon {
        width: 150px;
        height: 150px
    }

    .donor-section__icon svg {
        width: 70px;
        height: 70px
    }

    .mcc_vision__icon {
        width: 70px;
        height: 70px
    }

    .mcc_vision__icon svg {
        width: 35px;
        height: 35px
    }

    .mcc_vision__quote {
        font-size: 1.15rem
    }

    .mcc_cta__icon {
        width: 60px;
        height: 60px
    }

    .mcc_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .mcc_cta__title {
        font-size: 1.5rem
    }

    .mcc_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .mcc_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}

@media(max-width:600px) {
    .mcc_about__image-float {
        flex-direction: column;
        text-align: center;
        padding: 1rem
    }



    .donor-section__highlight {
        border-left: none;
        border-top: 4px solid var(--gold-400);
        padding-left: 0;
        padding-top: 1rem;
        text-align: center
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .mcc_hero__content {
        max-width: 100%;
        /* margin: 0 auto */
        margin-top: -2px;
    }

    .mcc_hero__title {
        font-size: 1.875rem
    }

    .mcc_hero__stats {
        gap: .75rem
    }

    .mcc_hero__stat-card {
        padding: 1rem
    }

    .mcc_hero__stat-value {
        font-size: 1.25rem
    }

    .mcc_hero__stat-icon {
        width: 45px;
        height: 45px
    }

    .mcc_hero__stat-icon svg {
        width: 22px;
        height: 22px
    }

    .mcc_section-title {
        font-size: 1.5rem
    }

    .impact-single {
        grid-template-columns: 1fr
    }

    .impact-single-card__icon {
        width: 60px;
        height: 60px
    }

    .impact-single-card__icon svg {
        width: 28px;
        height: 28px
    }

    .problem__point {
        padding: 1rem
    }

    .mcc_hero__status {
        flex-direction: column;
        text-align: center;
        gap: .5rem
    }

    .mcc_hero__status-text {
        font-size: .75rem
    }

    .donor-section__icon {
        width: 120px;
        height: 120px
    }

    .donor-section__icon svg {
        width: 50px;
        height: 50px
    }
}

@media(max-width:400px) {
    .mcc_hero__stats {
        grid-template-columns: 1fr
    }

    .mcc_hero__stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem
    }

    .mcc_hero__stat-icon {
        margin: 0
    }

    .mcc_hero__stat-value {
        font-size: 1.25rem
    }

    .mcc_impact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:360px) {
    .mcc_hero__title {
        font-size: 1.5rem
    }

    .mcc_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .mcc_section-title {
        font-size: 1.25rem
    }

    .btn {
        padding: .7rem 1rem;
        font-size: .75rem
    }

    .mcc_hero__stat-value {
        font-size: 1rem
    }

    .mcc_hero__stat-label {
        font-size: .65rem
    }

    .mcc_hero__stat-card {
        padding: .75rem
    }

    .mcc_hero__stat-icon {
        width: 40px;
        height: 40px
    }

    .mcc_hero__stat-icon svg {
        width: 18px;
        height: 18px
    }

    .mcc_impact-card__value {
        font-size: 1.5rem
    }

    .mcc_impact-card {
        padding: 1rem .75rem
    }

    .mcc_section-subtitle {
        font-size: .9rem
    }

    .service-card {
        padding: 1.25rem
    }

    .service-card__icon {
        width: 50px;
        height: 50px
    }

    .service-card__icon svg {
        width: 24px;
        height: 24px
    }

    .service-card__title {
        font-size: 1rem
    }

    .service-card__desc {
        font-size: .8rem
    }

    .impact-single-card {
        padding: 1.25rem
    }

    .impact-single-card__icon {
        width: 50px;
        height: 50px
    }

    .impact-single-card__icon svg {
        width: 24px;
        height: 24px
    }

    .donor-section {
        padding: 1.5rem 1rem
    }
}



/*  */


.pe_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pe_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}



.pe_btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3)
}

.pe_btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5)
}

.pe_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pe_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

/* pe_hero Section */
.pe_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-800) 50%, var(--burgundy-700) 100%)
}

.pe_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.pe_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .3
}

.pe_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pe_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--burgundy-400);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.2);
        opacity: .4
    }
}

.pe_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pe_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.pe_hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem
}

.pe_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem 1.25rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeSlideUp .8s var(--ease-out) both
}

.pe_hero__badge svg {
    width: 18px;
    height: 18px
}

.pe_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    animation: fadeSlideUp .8s var(--ease-out) .1s both
}

.pe_hero__title em {
    font-style: normal;
    display: block;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pe_hero__tagline {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .8s var(--ease-out) .15s both
}

.pe_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp .8s var(--ease-out) .2s both
}

.pe_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp .8s var(--ease-out) .25s both
}

.pe_hero__status {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    animation: fadeSlideUp .8s var(--ease-out) .3s both
}

.pe_hero__status-dot {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .5)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0)
    }
}

.pe_hero__status-text {
    font-size: .9rem;
    color: var(--white);
    font-weight: 500
}

.pe_hero__status-text strong {
    color: var(--gold-300)
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* pe_hero Visual */
.pe_hero__visual {
    position: relative;
    animation: fadeIn 1s var(--ease-out) .4s both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.pe_hero__img-stack {
    position: relative;
    height: 550px
}

.pe_hero__img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5)
}

.pe_hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pe_hero__img--main {
    width: 320px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: transform .5s var(--ease-out)
}

.pe_hero__img--main:hover {
    transform: translate(-50%, -50%) scale(1.03)
}

.pe_hero__img--left {
    width: 200px;
    height: 260px;
    top: 15%;
    left: 5%;
    z-index: 2;
    transform: rotate(-6deg);
    transition: transform .5s var(--ease-out)
}

.pe_hero__img--left:hover {
    transform: rotate(-3deg) scale(1.05)
}

.pe_hero__img--right {
    width: 180px;
    height: 240px;
    bottom: 10%;
    right: 5%;
    z-index: 2;
    transform: rotate(8deg);
    transition: transform .5s var(--ease-out)
}

.pe_hero__img--right:hover {
    transform: rotate(4deg) scale(1.05)
}

.pe_hero__float-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    z-index: 10;
    animation: float 6s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.pe_hero__float-card--top {
    top: 5%;
    right: 15%
}

.pe_hero__float-card--bottom {
    bottom: 15%;
    left: 0
}

.pe_hero__float-card h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy-600);
    line-height: 1
}

.pe_hero__float-card p {
    font-size: .8rem;
    color: var(--gray-500)
}

.pe_hero__float-card--icon {
    display: flex;
    align-items: center;
    gap: 1rem
}

.pe_hero__float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pe_hero__float-icon svg {
    width: 24px;
    height: 24px
}

/* Section Styles */
.section {
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative
}

.pe_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}

.pe_section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}



.pe_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pe_section-tag::before,
.pe_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pe_section--dark .pe_section-tag {
    color: var(--gold-400)
}

.pe_section--dark .pe_section-tag::before,
.pe_section--dark .pe_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pe_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em
}

.pe_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pe_section--dark .pe_section-title {
    color: var(--white)
}

.pe_section--dark .pe_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pe_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pe_section--dark .pe_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

/* About Section */
.pe_about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.about__img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .15)
}

.about__img img {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.about__img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, var(--burgundy-400), var(--gold-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1
}

.pe_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em
}

.pe_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pe_about__content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.pe_about__highlight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--gold-200));
    border-radius: 16px;
    margin-top: 2rem
}

.pe_about__highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--burgundy-500);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pe_about__highlight-icon svg {
    width: 26px;
    height: 26px
}

.pe_about__highlight-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pe_about__highlight-text p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0
}

/* Why Section Cards */
.pe_why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.pe_why-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all .4s var(--ease-out)
}

.pe_why-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-8px);
    border-color: var(--gold-400)
}

.pe_why-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900);
    margin-bottom: 1.5rem
}

.pe_why-card__icon svg {
    width: 32px;
    height: 32px
}

.pe_why-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem
}

.pe_why-card__desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8
}

/* Impact Stats */
.pe_impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pe_impact__card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden
}

.pe_impact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--gold-400));
    transform: scaleX(0);
    transition: transform .4s var(--ease-out)
}

.pe_impact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1)
}

.pe_impact__card:hover::before {
    transform: scaleX(1)
}

.pe_impact__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pe_impact__card-icon svg {
    width: 30px;
    height: 30px
}

.pe_impact__card-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--burgundy-600);
    line-height: 1;
    margin-bottom: .5rem
}

.pe_impact__card-label {
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .25rem
}

.pe_impact__card-desc {
    font-size: .8rem;
    color: var(--gray-500)
}

/* Services Grid */
.pe_services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

.service-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--burgundy-400), var(--burgundy-600));
    transform: scaleY(0);
    transition: transform .4s var(--ease-out);
    transform-origin: top
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1)
}

.service-card:hover::before {
    transform: scaleY(1)
}

.service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.service-card__icon svg {
    width: 30px;
    height: 30px
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.service-card__subtitle {
    font-size: .85rem;
    color: var(--burgundy-500);
    font-weight: 500
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.service-card__item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7
}

.service-card__item svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy-500);
    flex-shrink: 0;
    margin-top: 2px
}

/* pe_vision Section */
.pe_vision {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.pe_vision__content {
    padding: clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pe_vision__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    margin-bottom: 2rem
}

.pe_vision__icon svg {
    width: 36px;
    height: 36px
}

.pe_vision__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem
}

.pe_vision__title em {
    font-style: normal;
    color: var(--gold-400)
}

.pe_vision__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pe_vision__quote {
    padding: 1.5rem;
    background: rgba(255, 255, 255, .08);
    border-radius: 16px;
    border-left: 4px solid var(--gold-400)
}

.pe_vision__quote p {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    margin-bottom: .75rem
}

.pe_vision__quote cite {
    font-size: .85rem;
    color: var(--gold-400);
    font-style: normal
}

.pe_vision__img {
    position: relative;
    min-height: 500px
}

.pe_vision__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pe_vision__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--burgundy-900) 0%, transparent 40%);
    z-index: 1
}

/* pe_cta Section */
.pe_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pe_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pe_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pe_cta__icon svg {
    width: 40px;
    height: 40px
}

.pe_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pe_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pe_cta__text {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2.5rem
}

.pe_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}



/* Responsive */
@media(max-width:1200px) {
    .pe_impact__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pe_hero__img-stack {
        height: 480px
    }

    .pe_hero__img--main {
        width: 280px;
        height: 350px
    }

    .pe_hero__img--left {
        width: 170px;
        height: 220px
    }

    .pe_hero__img--right {
        width: 150px;
        height: 200px
    }
}

@media(max-width:1100px) {
    .pe_hero__grid {
        gap: 3rem
    }
}

@media(max-width:1024px) {
    .pe_hero__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .pe_hero__content {
        max-width: 100%;
        margin-top: -60px;
    }

    .pe_hero__btns {
        justify-content: center
    }

    .pe_hero__status {
        justify-content: center
    }

    .pe_hero__visual {
        display: none
    }

    .pe_about__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .about__img {
        max-width: 500px;
        margin: 0 auto 3rem
    }

    .pe_about__highlight {
        text-align: left
    }

    .pe_why__grid {
        grid-template-columns: 1fr
    }

    .pe_services__grid {
        grid-template-columns: 1fr
    }

    .pe_vision {
        grid-template-columns: 1fr
    }

    .pe_vision__img {
        min-height: 350px
    }

    .pe_vision__img::before {
        background: linear-gradient(180deg, var(--burgundy-900) 0%, transparent 40%)
    }

}



@media(max-width:768px) {
    .pe_impact__grid {
        grid-template-columns: 1fr
    }

    .pe_impact__card {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
        padding: 1.75rem
    }

    .pe_impact__card-icon {
        margin: 0
    }

    .pe_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pe_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}
@media(max-width:488px){
    .pe_hero__content{
        margin-top: 67px;
    }
}

/*  */


.pa_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pa_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.pa_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pa_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.pa_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.pa_btn--outline:hover {
    background: var(--burgundy-50)
}

.pa_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, var(--justice-blue) 100%)
}

.pa_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.pa_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pa_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--justice-blue);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.pa_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pa_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pa_hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem
}

.pa_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.pa_hero__badge svg {
    width: 20px;
    height: 20px
}

.pa_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.pa_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pa_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.pa_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pa_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

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

.pa_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pa_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.pa_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pa_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.pa_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pa_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.pa_hero__status {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, .2), rgba(5, 150, 105, .1));
    border: 1px solid rgba(5, 150, 105, .3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem
}

.pa_hero__status-dot {
    width: 12px;
    height: 12px;
    background: var(--success-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, .4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(5, 150, 105, 0)
    }
}

.pa_hero__status-text {
    font-size: .9rem;
    color: var(--white)
}

.pa_hero__status-text strong {
    color: var(--success-green)
}

.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative
}

.pa_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}


.pa_section--blue {
    background: linear-gradient(180deg, var(--justice-light) 0%, var(--white) 100%)
}

.pa_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.pa_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pa_section-tag::before,
.pa_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pa_section--dark .pa_section-tag {
    color: var(--gold-400)
}

.pa_section--dark .pa_section-tag::before,
.pa_section--dark .pa_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pa_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.pa_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pa_section--dark .pa_section-title {
    color: var(--white)
}

.pa_section--dark .pa_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pa_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pa_section--dark .pa_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.pa_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pa_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pa_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pa_about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.pa_pa_about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem
}

.pa_about__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--burgundy-50);
    border-radius: 12px
}

.pa_about__feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pa_about__feature-icon svg {
    width: 20px;
    height: 20px
}

.pa_about__feature-text {
    font-size: .9rem;
    color: var(--gray-700);
    font-weight: 500
}



.pa_about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15)
}

.pa_about__image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.pa_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.pa_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pa_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.pa_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.pa_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

.pa_pa_why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.pa_why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100)
}

.pa_why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.pa_why-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    color: var(--burgundy-600)
}

.pa_why-card__icon svg {
    width: 32px;
    height: 32px
}

.pa_why-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.pa_why-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.intervention {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative
}

.intervention::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, var(--burgundy-300), transparent)
}

.intervention:last-child::before {
    display: none
}

.intervention__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(166, 45, 60, .3);
    position: relative;
    z-index: 1
}

.intervention__content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.intervention__content:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    transform: translateX(5px)
}

.intervention__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap
}

.intervention__badge {
    padding: .35rem .75rem;
    background: var(--success-light);
    color: var(--success-green);
    font-size: .7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.intervention__problem {
    background: var(--burgundy-50);
    border-left: 4px solid var(--burgundy-400);
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem
}

.intervention__problem-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--burgundy-600);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.intervention__problem-text {
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.7
}

.intervention__solution {
    background: var(--success-light);
    border-left: 4px solid var(--success-green);
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0
}

.intervention__solution-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--success-green);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.intervention__solution-text {
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.7
}

.intervention__impact {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap
}

.intervention__impact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--gold-200);
    border-radius: 10px
}

.intervention__impact-item svg {
    width: 18px;
    height: 18px;
    color: var(--burgundy-600)
}

.intervention__impact-item span {
    font-size: .85rem;
    font-weight: 600;
    color: var(--burgundy-800)
}

.pa_vision {
    text-align: center;
    position: relative
}

.pa_vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.pa_vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.pa_vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pa_vision__icon svg {
    width: 50px;
    height: 50px
}

.pa_stories {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden
}

.pa_stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy-200), transparent)
}

.pa_stories__carousel-wrap {
    position: relative;
    padding: 0 60px
}

.pa_stories__carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0 2rem
}

.pa_stories__carousel::-webkit-scrollbar {
    display: none
}

.pa_story-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s
}

.pa_story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.pa_story-card__image {
    position: relative;
    height: 200px;
    overflow: hidden
}

.pa_story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.pa_story-card:hover .pa_story-card__image img {
    transform: scale(1.08)
}

.pa_story-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 10, 14, .9) 100%)
}

.pa_story-card__type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--justice-blue), #1e3a8a);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pa_story-card__year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .4rem .8rem;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    border-radius: 15px
}

.pa_story-card__student {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem
}

.pa_story-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pa_story-card__college {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8)
}

.pa_story-card__body {
    padding: 1.5rem
}

.pa_story-card__quote {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--burgundy-300)
}

.pa_story-card__benefit {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    background: var(--success-light);
    border-radius: 12px
}

.pa_story-card__benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pa_story-card__benefit-icon svg {
    width: 20px;
    height: 20px
}

.pa_story-card__benefit-text {
    font-size: .85rem;
    color: var(--gray-700)
}

.pa_story-card__benefit-text strong {
    display: block;
    color: var(--success-green);
    font-size: 1.1rem
}

.pa_story-card__footer {
    padding: 0 1.5rem 1.5rem
}

.pa_story-card__read {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: all .25s
}

.pa_story-card__read:hover {
    gap: .75rem;
    color: var(--burgundy-700)
}

.pa_story-card__read svg {
    width: 16px;
    height: 16px
}

.pa_carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    z-index: 10;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.pa_carousel-btn:hover {
    background: var(--burgundy-500);
    border-color: var(--burgundy-500);
    color: var(--white);
    transform: translateY(-50%) scale(1.1)
}

.pa_carousel-btn--prev {
    left: 0
}

.pa_carousel-btn--next {
    right: 0
}

.pa_carousel-btn svg {
    width: 20px;
    height: 20px
}

.pa_pa_carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem
}

.pa_carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all .3s;
    cursor: pointer
}

.pa_carousel-dot.active {
    background: var(--burgundy-500);
    transform: scale(1.2)
}

.pa_stories__counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.pa_stories__counter-item {
    text-align: center
}

.pa_stories__counter-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pa_stories__counter-label {
    font-size: .85rem;
    color: var(--gray-500)
}

.pa_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pa_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pa_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pa_cta__icon svg {
    width: 40px;
    height: 40px
}

.pa_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pa_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pa_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.pa_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}




/* Responsive - Large Tablets & Small Desktops */
@media(max-width:1200px) {
    .pa_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .pa_hero__content {
        max-width: 100%;
        /* margin: 0 auto */
        margin-top: -60px;
    }

    .pa_hero__btns {
        justify-content: center
    }

    .pa_hero__status {
        justify-content: center
    }

    .pa_hero__visual {
        max-width: 600px;
        margin: 0 auto
    }

    .pa_about-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .pa_about__content {
        text-align: center
    }

    .pa_pa_about__features {
        align-items: center
    }

    .pa_about__feature {
        max-width: 400px
    }

    .intervention {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem
    }

    .intervention__number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        border-radius: 16px
    }

    .intervention__title {
        font-size: 1.1rem
    }
}

/* Responsive - Tablets */
@media(max-width:1024px) {

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

    .pa_hero__stats-grid {
        gap: 1rem
    }

    .pa_hero__stat-card {
        padding: 1.5rem
    }

    .pa_hero__stat-value {
        font-size: 1.75rem
    }

    .pa_stories__counter {
        gap: 2rem
    }
}

/* Responsive - Mobile Navigation */
@media(max-width:900px) {

    .pa_stories__carousel-wrap {
        padding: 0 50px
    }

    .pa_carousel-btn {
        width: 40px;
        height: 40px
    }

    .pa_story-card {
        flex: 0 0 340px
    }

    .intervention__content {
        padding: 1.5rem
    }
}

/* Responsive - Mobile */
@media(max-width:768px) {
    .pa_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .pa_hero__container {
        padding: 2rem 0
    }

    .pa_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .pa_hero__title {
        font-size: 2.25rem;
        margin-bottom: 1rem
    }

    .pa_hero__subtitle {
        font-size: 1rem
    }

    .pa_hero__desc {
        font-size: 1rem
    }

    .pa_hero__stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem
    }

    .pa_hero__stat-card {
        padding: 1.25rem 1rem
    }

    .pa_hero__stat-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px
    }

    .pa_hero__stat-icon svg {
        width: 22px;
        height: 22px
    }

    .pa_hero__stat-value {
        font-size: 1.5rem
    }

    .pa_hero__stat-label {
        font-size: .75rem
    }

    .pa_hero__status {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
        padding: 1rem
    }

    .pa_hero__btns {
        flex-direction: column;
        width: 100%
    }

    .pa_hero__btns .btn {
        width: 100%
    }

    .section {
        padding: 3rem 0
    }

    .pa_section-header {
        margin-bottom: 2.5rem
    }

    .pa_section-title {
        font-size: 1.75rem
    }

    .pa_section-subtitle {
        font-size: 1rem
    }

    .pa_section-tag {
        font-size: .65rem
    }

    .pa_section-tag::before,
    .pa_section-tag::after {
        width: 20px
    }

    .pa_pa_why-cards {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .pa_why-card {
        padding: 1.5rem
    }

    .pa_why-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem
    }

    .pa_why-card__icon svg {
        width: 24px;
        height: 24px
    }

    .pa_why-card__title {
        font-size: 1rem
    }

    .intervention {
        grid-template-columns: 1fr;
        gap: 0
    }

    .intervention__number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-bottom: 1rem;
        border-radius: 14px
    }

    .intervention::before {
        display: none
    }

    .intervention__content {
        padding: 1.25rem
    }

    .intervention__title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem
    }

    .intervention__badge {
        font-size: .6rem
    }

    .intervention__problem,
    .intervention__solution {
        padding: .875rem 1rem
    }

    .intervention__problem-text,
    .intervention__solution-text {
        font-size: .85rem
    }

    .intervention__impact {
        gap: .75rem
    }

    .intervention__impact-item {
        padding: .4rem .75rem
    }

    .intervention__impact-item span {
        font-size: .8rem
    }

    .pa_about__image-main img {
        height: 280px
    }

    .pa_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        flex-direction: column;
        text-align: center;
        padding: 1rem
    }

    .pa_about__feature {
        flex-direction: column;
        text-align: center;
        gap: .75rem
    }

    .pa_about__content h2 {
        font-size: 1.5rem
    }

    .pa_vision__icon {
        width: 70px;
        height: 70px;
        border-radius: 20px
    }

    .pa_vision__icon svg {
        width: 35px;
        height: 35px
    }

    .pa_vision__quote {
        font-size: 1.25rem;
        padding: 0 1rem
    }

    .pa_vision__quote::before {
        font-size: 5rem;
        top: -25px;
        left: 0
    }

    .pa_stories__carousel-wrap {
        padding: 0
    }

    .pa_carousel-btn {
        display: none
    }

    .pa_story-card {
        flex: 0 0 calc(100vw - 3rem);
        max-width: 360px
    }

    .pa_story-card__image {
        height: 180px
    }

    .pa_story-card__name {
        font-size: 1.1rem
    }

    .pa_story-card__body {
        padding: 1.25rem
    }

    .pa_story-card__quote {
        font-size: .85rem;
        padding-left: .75rem
    }

    .pa_story-card__benefit {
        padding: .875rem
    }

    .pa_story-card__benefit-icon {
        width: 36px;
        height: 36px
    }

    .pa_story-card__benefit-text strong {
        font-size: 1rem
    }

    .pa_story-card__footer {
        padding: 0 1.25rem 1.25rem
    }

    .pa_stories__counter {
        flex-wrap: wrap;
        gap: 1.5rem
    }

    .pa_stories__counter-item {
        flex: 0 0 calc(50% - 1rem)
    }

    .pa_stories__counter-num {
        font-size: 1.75rem
    }

    .pa_stories__counter-label {
        font-size: .75rem
    }

    .pa_pa_carousel-dots {
        margin-top: 1rem
    }

    .pa_carousel-dot {
        width: 8px;
        height: 8px
    }

    .pa_cta__icon {
        width: 60px;
        height: 60px;
        border-radius: 18px
    }

    .pa_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .pa_cta__title {
        font-size: 1.5rem
    }

    .pa_cta__text {
        font-size: .95rem
    }

    .pa_cta__btns {
        flex-direction: column;
        align-items: center;
        width: 100%
    }

    .pa_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }

}

/* Responsive - Small Mobile */
@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
     .pa_hero__content {
        max-width: 100%;
        /* margin: 0 auto */
        margin-top: -30px;
    }



    .pa_hero__title {
        font-size: 1.875rem
    }

    .pa_hero__subtitle {
        font-size: .9rem
    }

    .pa_hero__stats-grid {
        gap: .5rem
    }

    .pa_hero__stat-card {
        padding: 1rem .75rem
    }

    .pa_hero__stat-icon {
        width: 40px;
        height: 40px
    }

    .pa_hero__stat-icon svg {
        width: 18px;
        height: 18px
    }

    .pa_hero__stat-value {
        font-size: 1.25rem
    }

    .pa_hero__stat-label {
        font-size: .7rem
    }

    .pa_section-title {
        font-size: 1.5rem
    }

    .pa_why-card {
        padding: 1.25rem
    }

    .intervention__content {
        padding: 1rem
    }

    .intervention__problem,
    .intervention__solution {
        padding: .75rem
    }

    .intervention__impact {
        flex-direction: column
    }

    .intervention__impact-item {
        width: 100%;
        justify-content: center
    }

    .pa_story-card {
        flex: 0 0 calc(100vw - 2rem)
    }

    .pa_story-card__type {
        font-size: .6rem;
        padding: .4rem .75rem
    }

    .pa_story-card__year {
        font-size: .65rem;
        padding: .3rem .6rem
    }

    .pa_stories__counter-item {
        flex: 0 0 100%;
        margin-bottom: .5rem
    }

    .pa_about__image-main img {
        height: 220px
    }

    .pa_vision__quote {
        font-size: 1.1rem
    }


}

/* Responsive - Extra Small */
@media(max-width:360px) {
    .pa_hero__title {
        font-size: 1.625rem
    }

    .pa_hero__badge {
        font-size: .6rem;
        padding: .5rem .875rem
    }

    .pa_hero__badge svg {
        width: 16px;
        height: 16px
    }

    .pa_section-title {
        font-size: 1.35rem
    }


}


/* project parvarish */

.pp_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pp_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}



.pp_btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3)
}

.pp_btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5)
}

.pp_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pp_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

/* pp_hero Section */
.pp_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-800) 50%, var(--burgundy-700) 100%)
}

.pp_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.pp_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .3
}

.pp_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pp_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--burgundy-400);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.2);
        opacity: .4
    }
}

.pp_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pp_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.pp_hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem
}

.pp_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem 1.25rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeSlideUp .8s var(--ease-out) both
}

.pp_hero__badge svg {
    width: 18px;
    height: 18px
}

.pp_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    animation: fadeSlideUp .8s var(--ease-out) .1s both
}

.pp_hero__title em {
    font-style: normal;
    display: block;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pp_hero__tagline {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .8s var(--ease-out) .15s both
}

.pp_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp .8s var(--ease-out) .2s both
}

.pp_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp .8s var(--ease-out) .25s both
}

.pp_hero__status {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    animation: fadeSlideUp .8s var(--ease-out) .3s both
}

.pp_hero__status-dot {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .5)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0)
    }
}

.pp_hero__status-text {
    font-size: .9rem;
    color: var(--white);
    font-weight: 500
}

.pp_hero__status-text strong {
    color: var(--gold-300)
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* pp_hero Visual */
.pp_hero__visual {
    position: relative;
    animation: fadeIn 1s var(--ease-out) .4s both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.pp_hero__img-stack {
    position: relative;
    height: 550px
}

.pp_hero__img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5)
}

.pp_hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pp_hero__img--main {
    width: 320px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: transform .5s var(--ease-out)
}

.pp_hero__img--main:hover {
    transform: translate(-50%, -50%) scale(1.03)
}

.pp_hero__img--left {
    width: 200px;
    height: 260px;
    top: 15%;
    left: 5%;
    z-index: 2;
    transform: rotate(-6deg);
    transition: transform .5s var(--ease-out)
}

.pp_hero__img--left:hover {
    transform: rotate(-3deg) scale(1.05)
}

.pp_hero__img--right {
    width: 180px;
    height: 240px;
    bottom: 10%;
    right: 5%;
    z-index: 2;
    transform: rotate(8deg);
    transition: transform .5s var(--ease-out)
}

.pp_hero__img--right:hover {
    transform: rotate(4deg) scale(1.05)
}

.pp_hero__float-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    z-index: 10;
    animation: float 6s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.pp_hero__float-card--top {
    top: 5%;
    right: 15%
}

.pp_hero__float-card--bottom {
    bottom: 15%;
    left: 0
}

.pp_hero__float-card h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy-600);
    line-height: 1
}

.pp_hero__float-card p {
    font-size: .8rem;
    color: var(--gray-500)
}

.pp_hero__float-card--icon {
    display: flex;
    align-items: center;
    gap: 1rem
}

.pp_hero__float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pp_hero__float-icon svg {
    width: 24px;
    height: 24px
}

/* Section Styles */
.section {
    padding: clamp(5rem, 12vw, 9rem) 0;
    position: relative
}

.pp_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}

.pp_section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}


.pp_section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem
}

.pp_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pp_section-tag::before,
.pp_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pp_section--dark .pp_section-tag {
    color: var(--gold-400)
}

.pp_section--dark .pp_section-tag::before,
.pp_section--dark .pp_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pp_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em
}

.pp_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pp_section--dark .pp_section-title {
    color: var(--white)
}

.pp_section--dark .pp_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pp_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pp_section--dark .pp_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

/* About Section */
.pp_about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.pp_about__img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .15)
}

.pp_about__img img {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.pp_about__img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, var(--burgundy-400), var(--gold-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1
}

.pp_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em
}

.pp_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pp_about__content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.pp_about__highlight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--gold-200));
    border-radius: 16px;
    margin-top: 2rem
}

.pp_about__highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--burgundy-500);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pp_about__highlight-icon svg {
    width: 26px;
    height: 26px
}

.pp_about__highlight-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pp_about__highlight-text p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0
}

/* Why Section Cards */
.pp_why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.pp_why-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all .4s var(--ease-out)
}

.pp_why-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-8px);
    border-color: var(--gold-400)
}

.pp_why-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900);
    margin-bottom: 1.5rem
}

.pp_why-card__icon svg {
    width: 32px;
    height: 32px
}

.pp_why-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem
}

.pp_why-card__desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8
}

/* Impact Stats */
.pp_impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pp_impact__card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden
}

.pp_impact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--gold-400));
    transform: scaleX(0);
    transition: transform .4s var(--ease-out)
}

.pp_impact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1)
}

.pp_impact__card:hover::before {
    transform: scaleX(1)
}

.pp_impact__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pp_impact__card-icon svg {
    width: 30px;
    height: 30px
}

.pp_impact__card-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--burgundy-600);
    line-height: 1;
    margin-bottom: .5rem
}

.pp_impact__card-label {
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .25rem
}

.pp_impact__card-desc {
    font-size: .8rem;
    color: var(--gray-500)
}

/* Impact Table */
.pp_impact-table {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    margin-top: 3rem
}

.pp_impact-table__header {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem
}

.pp_impact-table__header span {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .05em
}

.pp_impact-table__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-100);
    transition: all .3s var(--ease-out)
}

.pp_impact-table__row:last-child {
    border-bottom: none
}

.pp_impact-table__row:hover {
    background: var(--burgundy-50)
}

.pp_impact-table__label {
    font-weight: 600;
    color: var(--burgundy-600);
    font-size: .95rem
}

.pp_impact-table__value {
    color: var(--gray-600);
    font-size: .95rem;
    line-height: 1.6
}

/* Services Grid */
.pp_services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

.pp_service-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden
}

.pp_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--burgundy-400), var(--burgundy-600));
    transform: scaleY(0);
    transition: transform .4s var(--ease-out);
    transform-origin: top
}

.pp_service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1)
}

.pp_service-card:hover::before {
    transform: scaleY(1)
}

.pp_service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem
}

.pp_service-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pp_service-card__icon svg {
    width: 30px;
    height: 30px
}

.pp_service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pp_service-card__subtitle {
    font-size: .85rem;
    color: var(--burgundy-500);
    font-weight: 500
}

.pp_service-card__list {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.pp_service-card__item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7
}

.pp_service-card__item svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy-500);
    flex-shrink: 0;
    margin-top: 2px
}

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

.pp_beneficiary-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    transition: all .4s var(--ease-out)
}

.pp_beneficiary-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-8px);
    border-color: var(--gold-400)
}

.pp_beneficiary-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pp_beneficiary-card__icon svg {
    width: 40px;
    height: 40px
}

.pp_beneficiary-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.pp_beneficiary-card__desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7
}

/* pp_vision Section */
.pp_vision {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.pp_vision__content {
    padding: clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pp_vision__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    margin-bottom: 2rem
}

.pp_vision__icon svg {
    width: 36px;
    height: 36px
}

.pp_vision__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem
}

.pp_vision__title em {
    font-style: normal;
    color: var(--gold-400)
}

.pp_vision__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pp_vision__quote {
    padding: 1.5rem;
    background: rgba(255, 255, 255, .08);
    border-radius: 16px;
    border-left: 4px solid var(--gold-400)
}

.pp_vision__quote p {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    margin-bottom: .75rem
}

.pp_vision__quote cite {
    font-size: .85rem;
    color: var(--gold-400);
    font-style: normal
}

.pp_vision__img {
    position: relative;
    min-height: 500px
}

.pp_vision__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pp_vision__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--burgundy-900) 0%, transparent 40%);
    z-index: 1
}

/* pp_cta Section */
.pp_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pp_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pp_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pp_cta__icon svg {
    width: 40px;
    height: 40px
}

.pp_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pp_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pp_cta__text {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2.5rem
}

.pp_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}


/* Responsive */
@media(max-width:1200px) {
    .pp_impact__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pp_hero__img-stack {
        height: 480px
    }

    .pp_hero__img--main {
        width: 280px;
        height: 350px
    }

    .pp_hero__img--left {
        width: 170px;
        height: 220px
    }

    .pp_hero__img--right {
        width: 150px;
        height: 200px
    }
}

@media(max-width:1100px) {
    .nav__link {
        padding: .5rem .75rem;
        font-size: .8rem
    }

    .nav__donate {
        padding: .6rem 1rem;
        font-size: .75rem
    }

    .pp_hero__grid {
        gap: 3rem
    }
}

@media(max-width:1024px) {
    .pp_hero__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .pp_hero__content {
        max-width: 100%;
        margin-top: -60px;
    }

    .pp_hero__btns {
        justify-content: center
    }

    .pp_hero__status {
        justify-content: center
    }

    .pp_hero__visual {
        display: none
    }

    .pp_about__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .pp_about__img {
        max-width: 500px;
        margin: 0 auto 3rem
    }

    .pp_about__highlight {
        text-align: left
    }

    .pp_why__grid {
        grid-template-columns: 1fr
    }

    .pp_services__grid {
        grid-template-columns: 1fr
    }

    .pp_beneficiaries {
        grid-template-columns: 1fr
    }

    .pp_vision {
        grid-template-columns: 1fr
    }

    .pp_vision__img {
        min-height: 350px
    }

    .pp_vision__img::before {
        background: linear-gradient(180deg, var(--burgundy-900) 0%, transparent 40%)
    }



    .pp_impact-table__header,
    .pp_impact-table__row {
        grid-template-columns: 1fr 1.5fr
    }
}

@media(max-width:900px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right .4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
        overflow-y: auto
    }

    .nav__menu.open {
        right: 0
    }

    .nav__link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: .95rem
    }

    .nav__dropdown {
        width: 100%
    }

    .nav__dropdown-trigger {
        width: 100%;
        justify-content: space-between
    }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        min-width: 100%
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block
    }

    .nav__toggle {
        display: flex
    }

    .nav__donate {
        display: none
    }
}

@media(max-width:768px) {
    .pp_impact__grid {
        grid-template-columns: 1fr
    }

    .pp_impact__card {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
        padding: 1.75rem
    }

    .pp_impact__card-icon {
        margin: 0
    }

    .pp_impact-table__header,
    .pp_impact-table__row {
        grid-template-columns: 1fr;
        gap: .5rem
    }

    .pp_impact-table__header {
        padding: 1.25rem 1.5rem
    }

    .pp_impact-table__row {
        padding: 1rem 1.5rem
    }

    .pp_impact-table__header span:last-child {
        display: none
    }

    .pp_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pp_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}

@media(max-width:480px) {

    .pp_impact-table__label,
    .pp_impact-table__value {
        font-size: .875rem
    }
     .pp_hero__content {
        max-width: 100%;
        margin-top: 67px;
    }
}



/* project career counseling */


.pcc_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pcc_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.pcc_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pcc_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.pcc_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.pcc_btn--outline:hover {
    background: var(--burgundy-50)
}

.pcc_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 40%, var(--career-purple) 100%)
}

.pcc_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.pcc_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pcc_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--career-purple);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.pcc_hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--success-green);
    top: 60%;
    right: 20%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.pcc_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pcc_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pcc_hero__content {
    max-width: 650px
}

.pcc_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.pcc_hero__badge svg {
    width: 20px;
    height: 20px
}

.pcc_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.pcc_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcc_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.pcc_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pcc_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.pcc_hero__status {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, .2), rgba(5, 150, 105, .1));
    border: 1px solid rgba(5, 150, 105, .3);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem
}

.pcc_hero__status-dot {
    width: 12px;
    height: 12px;
    background: var(--success-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, .5)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0)
    }
}

.pcc_hero__status-text {
    font-size: .9rem;
    color: var(--success-green);
    font-weight: 600
}

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

.pcc_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pcc_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.pcc_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pcc_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.pcc_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pcc_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative
}

.pcc_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}


.pcc_section--purple {
    background: linear-gradient(180deg, var(--career-light) 0%, var(--cream) 100%)
}

.pcc_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.pcc_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pcc_section-tag::before,
.pcc_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pcc_section--dark .pcc_section-tag {
    color: var(--gold-400)
}

.pcc_section--dark .pcc_section-tag::before,
.pcc_section--dark .pcc_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pcc_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.pcc_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcc_section--dark .pcc_section-title {
    color: var(--white)
}

.pcc_section--dark .pcc_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pcc_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pcc_section--dark .pcc_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.pcc_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pcc_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pcc_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pcc_about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}



.pcc_about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15)
}

.pcc_about__image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.pcc_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.pcc_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--career-purple), #5b21b6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pcc_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.pcc_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.pcc_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

.pcc_why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pcc_why__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pcc_why__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

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

.pcc_why__point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    transition: all .3s
}

.pcc_why__point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.pcc_why__point-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pcc_why__point-icon svg {
    width: 24px;
    height: 24px
}

.pcc_why__point-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pcc_why__point-text p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.pcc_why__card {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.pcc_why__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: .1
}

.pcc_why__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.pcc_why__card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.pcc_why__card-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 16px
}

.pcc_why__card-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400)
}

.pcc_why__card-stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    margin-top: .25rem
}

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

.pcc_service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden
}

.pcc_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--career-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.pcc_service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.pcc_service-card:hover::before {
    transform: scaleX(1)
}

.pcc_service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--career-light), var(--white));
    color: var(--career-purple);
    transition: all .4s
}

.pcc_service-card:hover .pcc_service-card__icon {
    background: linear-gradient(135deg, var(--career-purple), #5b21b6);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg)
}

.pcc_service-card__icon svg {
    width: 32px;
    height: 32px
}

.pcc_service-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.pcc_service-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.pcc_levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pcc_level-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s;
    border: 2px solid transparent
}

.pcc_level-card:hover {
    border-color: var(--career-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, .15)
}

.pcc_level-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--career-light);
    color: var(--career-purple);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700
}

.pcc_level-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.pcc_level-card__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6
}

.pcc_fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.pcc_field-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all .3s
}

.pcc_field-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px)
}

.pcc_field-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto .75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pcc_field-card__icon svg {
    width: 24px;
    height: 24px
}

.pcc_field-card__name {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--white)
}

.pcc_impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pcc_impact-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pcc_impact-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

.pcc_impact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pcc_impact-card__icon svg {
    width: 28px;
    height: 28px
}

.pcc_impact-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pcc_impact-card__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

.pcc_vision {
    text-align: center;
    position: relative
}

.pcc_vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.pcc_vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.pcc_vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pcc_vision__icon svg {
    width: 50px;
    height: 50px
}

.pcc_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pcc_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pcc_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--career-light), var(--white));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--career-purple);
    box-shadow: 0 10px 40px rgba(124, 58, 237, .2)
}

.pcc_cta__icon svg {
    width: 40px;
    height: 40px
}

.pcc_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pcc_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pcc_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.pcc_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.pcc_cta__free {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: var(--success-light);
    border-radius: 50px;
    color: var(--success-green);
    font-size: .9rem;
    font-weight: 600
}

.pcc_cta__free svg {
    width: 20px;
    height: 20px
}



@media(max-width:1200px) {
    .pcc_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .pcc_hero__content {
        max-width: 100%;
        margin: -25px auto
    }

    .pcc_hero__btns {
        justify-content: center
    }

    .pcc_hero__status {
        justify-content: center
    }

    .pcc_hero__stats {
        max-width: 500px;
        margin: 0 auto
    }

    .pcc_about-grid,
    .pcc_why-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about__image,
    .why__visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .pcc_about__content,
    .pcc_why__content {
        text-align: center
    }

    .pcc_pcc_why__points {
        max-width: 500px;
        margin: 0 auto
    }

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

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

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

    .pcc_fields-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:1024px) {


    .pcc_impact-card__value {
        font-size: 2rem
    }

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

@media(max-width:900px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right .4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
        overflow-y: auto;
        z-index: 1000
    }

    .nav__menu.open {
        right: 0
    }

    .nav__link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: .95rem
    }

    .nav__dropdown {
        width: 100%
    }

    .nav__dropdown-trigger {
        width: 100%;
        justify-content: space-between
    }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        min-width: 100%
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block
    }

    .nav__toggle {
        display: flex
    }

    .nav__donate {
        display: none
    }
}

@media(max-width:768px) {
    .pcc_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .pcc_hero__container {
        padding: 2rem 0
    }

    .pcc_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .pcc_hero__title {
        font-size: 2.25rem
    }

    .pcc_hero__subtitle {
        font-size: 1rem
    }

    .pcc_hero__desc {
        font-size: 1rem
    }

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

    .pcc_hero__stat-card {
        padding: 1.5rem
    }

    .pcc_hero__stat-value {
        font-size: 1.5rem
    }

    .section {
        padding: 3rem 0
    }

    .pcc_section-header {
        margin-bottom: 2.5rem
    }

    .pcc_section-title {
        font-size: 1.75rem
    }

    .pcc_section-subtitle {
        font-size: 1rem
    }

    .pcc_services-grid {
        grid-template-columns: 1fr
    }

    .pcc_service-card {
        padding: 1.5rem
    }

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

    .pcc_impact-card {
        padding: 1.5rem 1rem
    }

    .pcc_impact-card__value {
        font-size: 1.75rem
    }

    .pcc_levels-grid {
        grid-template-columns: 1fr 1fr
    }

    .pcc_level-card {
        padding: 1.5rem
    }

    .pcc_fields-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }

    .pcc_field-card {
        padding: 1rem
    }

    .pcc_about__image-main img {
        height: 280px
    }

    .pcc_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        justify-content: center
    }

    .pcc_about__content h2,
    .pcc_why__content h2 {
        font-size: 1.5rem
    }

    .pcc_why__card {
        padding: 2rem
    }

    .pcc_why__card-title {
        font-size: 1.25rem
    }

    .pcc_why__card-stat-value {
        font-size: 1.5rem
    }

    .pcc_vision__icon {
        width: 70px;
        height: 70px
    }

    .pcc_vision__icon svg {
        width: 35px;
        height: 35px
    }

    .pcc_vision__quote {
        font-size: 1.15rem
    }

    .pcc_cta__icon {
        width: 60px;
        height: 60px
    }

    .pcc_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .pcc_cta__title {
        font-size: 1.5rem
    }

    .pcc_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pcc_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}

@media(max-width:600px) {
    .pcc_about__image-float {
        flex-direction: column;
        text-align: center;
        padding: 1rem
    }

    .pcc_why__card-stats {
        grid-template-columns: 1fr 1fr
    }


}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .pcc_hero__content {
        max-width: 100%;
        margin: 6px auto
    }

    .pcc_hero__title {
        font-size: 1.875rem
    }

    .pcc_hero__stats {
        gap: .75rem
    }

    .pcc_hero__stat-card {
        padding: 1rem
    }

    .pcc_hero__stat-value {
        font-size: 1.25rem
    }

    .pcc_hero__stat-icon {
        width: 45px;
        height: 45px
    }

    .pcc_hero__stat-icon svg {
        width: 22px;
        height: 22px
    }

    .pcc_section-title {
        font-size: 1.5rem
    }

    .pcc_levels-grid {
        grid-template-columns: 1fr
    }

    .pcc_level-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem
    }

    .pcc_fields-grid {
        grid-template-columns: 1fr 1fr
    }

    .pcc_field-card {
        padding: .875rem
    }

    .pcc_why__point {
        padding: 1rem
    }

    .pcc_why__card-stats {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .pcc_hero__status {
        flex-direction: column;
        text-align: center;
        gap: .5rem
    }

    .pcc_hero__status-text {
        font-size: .75rem
    }
}

@media(max-width:400px) {
    .pcc_hero__stats {
        grid-template-columns: 1fr
    }

    .pcc_hero__stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem
    }

    .pcc_hero__stat-icon {
        margin: 0
    }

    .pcc_hero__stat-value {
        font-size: 1.25rem
    }

    .pcc_impact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:360px) {
    .pcc_hero__title {
        font-size: 1.5rem
    }

    .pcc_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .pcc_section-title {
        font-size: 1.25rem
    }

    .btn {
        padding: .7rem 1rem;
        font-size: .75rem
    }

    .pcc_hero__stat-value {
        font-size: 1rem
    }

    .pcc_hero__stat-label {
        font-size: .65rem
    }

    .pcc_hero__stat-card {
        padding: .75rem
    }

    .pcc_hero__stat-icon {
        width: 40px;
        height: 40px
    }

    .pcc_hero__stat-icon svg {
        width: 18px;
        height: 18px
    }

    .pcc_impact-card__value {
        font-size: 1.5rem
    }

    .pcc_impact-card {
        padding: 1rem .75rem
    }

    .pcc_section-subtitle {
        font-size: .9rem
    }

    .pcc_why__card {
        padding: 1.5rem
    }

    .pcc_why__card-title {
        font-size: 1.1rem
    }

    .pcc_service-card {
        padding: 1.25rem
    }

    .pcc_service-card__icon {
        width: 50px;
        height: 50px
    }

    .pcc_service-card__icon svg {
        width: 24px;
        height: 24px
    }

    .pcc_service-card__title {
        font-size: 1rem
    }

    .pcc_service-card__desc {
        font-size: .8rem
    }

    .pcc_level-card {
        padding: 1.25rem
    }

    .pcc_level-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1rem
    }

    .pcc_field-card__icon {
        width: 40px;
        height: 40px
    }

    .pcc_field-card__name {
        font-size: .8rem
    }
}




/* project-educational-counseling */



.pec_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pec_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.pec_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pec_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.pec_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.pec_btn--outline:hover {
    background: var(--burgundy-50)
}

.pec_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 40%, #134e4a 100%)
}

.pec_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.pec_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pec_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--edu-teal);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.pec_hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--success-green);
    top: 60%;
    right: 20%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.pec_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pec_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pec_hero__content {
    max-width: 650px
}

.pec_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.pec_hero__badge svg {
    width: 20px;
    height: 20px
}

.pec_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.pec_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pec_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.pec_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pec_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.pec_hero__status {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, .2), rgba(5, 150, 105, .1));
    border: 1px solid rgba(5, 150, 105, .3);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem
}

.pec_hero__status-dot {
    width: 12px;
    height: 12px;
    background: var(--success-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, .5)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0)
    }
}

.pec_hero__status-text {
    font-size: .9rem;
    color: var(--success-green);
    font-weight: 600
}

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

.pec_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pec_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.pec_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pec_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.pec_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pec_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}


.pec_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}


.pec_section--teal {
    background: linear-gradient(180deg, var(--edu-light) 0%, var(--cream) 100%)
}

.pec_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.pec_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pec_section-tag::before,
.pec_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pec_section--dark .pec_section-tag {
    color: var(--gold-400)
}

.pec_section--dark .pec_section-tag::before,
.pec_section--dark .pec_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pec_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.pec_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pec_section--dark .pec_section-title {
    color: var(--white)
}

.pec_section--dark .pec_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pec_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pec_section--dark .pec_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.pec_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pec_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pec_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pec_about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}


.pec_about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15)
}

.pec_about__image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.pec_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.pec_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--edu-teal), #0d9488);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pec_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.pec_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.pec_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

.pec_why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pec_why__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pec_why__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

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

.pec_why__point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    transition: all .3s
}

.pec_why__point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.pec_why__point-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pec_why__point-icon svg {
    width: 24px;
    height: 24px
}

.pec_why__point-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pec_why__point-text p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.pec_why__card {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.pec_why__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: .1
}

.pec_why__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.pec_why__card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.pec_why__card-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 16px
}

.pec_why__card-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400)
}

.pec_why__card-stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    margin-top: .25rem
}

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

.pec_service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden
}

.pec_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--edu-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.pec_service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.pec_service-card:hover::before {
    transform: scaleX(1)
}

.pec_service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--edu-light), var(--white));
    color: var(--edu-teal);
    transition: all .4s
}

.pec_service-card:hover .pec_service-card__icon {
    background: linear-gradient(135deg, var(--edu-teal), #0d9488);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg)
}

.pec_service-card__icon svg {
    width: 32px;
    height: 32px
}

.pec_service-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.pec_service-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.pec_streams-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem
}

.pec_stream-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all .3s
}

.pec_stream-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px)
}

.pec_stream-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto .75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pec_stream-card__icon svg {
    width: 24px;
    height: 24px
}

.pec_stream-card__name {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--white)
}

.pec_benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pec_benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s;
    border: 2px solid transparent
}

.pec_benefit-card:hover {
    border-color: var(--edu-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, .15)
}

.pec_benefit-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--edu-light);
    color: var(--edu-teal)
}

.pec_benefit-card__icon svg {
    width: 32px;
    height: 32px
}

.pec_benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.pec_benefit-card__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6
}

.pec_impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pec_impact-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pec_impact-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

.pec_impact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pec_impact-card__icon svg {
    width: 28px;
    height: 28px
}

.pec_impact-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pec_impact-card__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

.pec_vision {
    text-align: center;
    position: relative
}

.pec_vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.pec_vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.pec_vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pec_vision__icon svg {
    width: 50px;
    height: 50px
}

.pec_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pec_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pec_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--edu-light), var(--white));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--edu-teal);
    box-shadow: 0 10px 40px rgba(20, 184, 166, .2)
}

.pec_cta__icon svg {
    width: 40px;
    height: 40px
}

.pec_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pec_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pec_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.pec_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.pec_cta__free {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: var(--success-light);
    border-radius: 50px;
    color: var(--success-green);
    font-size: .9rem;
    font-weight: 600
}

.pec_cta__free svg {
    width: 20px;
    height: 20px
}



@media(max-width:1200px) {
    .pec_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .pec_hero__content {
        max-width: 100%;
        margin: -30px auto
    }

    .pec_hero__btns {
        justify-content: center
    }

    .pec_hero__status {
        justify-content: center
    }

    .pec_hero__stats {
        max-width: 500px;
        margin: 0 auto
    }

    .pec_about-grid,
    .pec_why-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about__image,
    .why__visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .pec_about__content,
    .pec_why__content {
        text-align: center
    }

    .pec_pec_why__points {
        max-width: 500px;
        margin: 0 auto
    }

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

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

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

    .pec_streams-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

@media(max-width:1024px) {


    .pec_impact-card__value {
        font-size: 2rem
    }

    .pec_streams-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}



@media(max-width:768px) {
    .pec_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .pec_hero__container {
        padding: 2rem 0
    }

    .pec_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .pec_hero__title {
        font-size: 2.25rem
    }

    .pec_hero__subtitle {
        font-size: 1rem
    }

    .pec_hero__desc {
        font-size: 1rem
    }

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

    .pec_hero__stat-card {
        padding: 1.5rem
    }

    .pec_hero__stat-value {
        font-size: 1.5rem
    }

    .section {
        padding: 3rem 0
    }

    .pec_section-header {
        margin-bottom: 2.5rem
    }

    .pec_section-title {
        font-size: 1.75rem
    }

    .pec_section-subtitle {
        font-size: 1rem
    }

    .pec_services-grid {
        grid-template-columns: 1fr
    }

    .pec_service-card {
        padding: 1.5rem
    }

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

    .pec_impact-card {
        padding: 1.5rem 1rem
    }

    .pec_impact-card__value {
        font-size: 1.75rem
    }

    .pec_benefits-grid {
        grid-template-columns: 1fr 1fr
    }

    .pec_benefit-card {
        padding: 1.5rem
    }

    .pec_streams-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .75rem
    }

    .pec_stream-card {
        padding: 1rem
    }

    .pec_about__image-main img {
        height: 280px
    }

    .pec_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        justify-content: center
    }

    .pec_about__content h2,
    .pec_why__content h2 {
        font-size: 1.5rem
    }

    .pec_why__card {
        padding: 2rem
    }

    .pec_why__card-title {
        font-size: 1.25rem
    }

    .pec_why__card-stat-value {
        font-size: 1.5rem
    }

    .pec_vision__icon {
        width: 70px;
        height: 70px
    }

    .pec_vision__icon svg {
        width: 35px;
        height: 35px
    }

    .pec_vision__quote {
        font-size: 1.15rem
    }

    .pec_cta__icon {
        width: 60px;
        height: 60px
    }

    .pec_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .pec_cta__title {
        font-size: 1.5rem
    }

    .pec_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pec_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}

@media(max-width:600px) {
    .pec_about__image-float {
        flex-direction: column;
        text-align: center;
        padding: 1rem
    }

    .pec_why__card-stats {
        grid-template-columns: 1fr 1fr
    }



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

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .pec_hero__content {
        max-width: 100%;
        margin: 2px auto
    }

    .pec_hero__title {
        font-size: 1.875rem
    }

    .pec_hero__stats {
        gap: .75rem
    }

    .pec_hero__stat-card {
        padding: 1rem
    }

    .pec_hero__stat-value {
        font-size: 1.25rem
    }

    .pec_hero__stat-icon {
        width: 45px;
        height: 45px
    }

    .pec_hero__stat-icon svg {
        width: 22px;
        height: 22px
    }

    .pec_section-title {
        font-size: 1.5rem
    }

    .pec_benefits-grid {
        grid-template-columns: 1fr
    }

    .pec_benefit-card__icon {
        width: 60px;
        height: 60px
    }

    .pec_benefit-card__icon svg {
        width: 28px;
        height: 28px
    }

    .pec_streams-grid {
        grid-template-columns: 1fr 1fr
    }

    .pec_stream-card {
        padding: .875rem
    }

    .pec_why__point {
        padding: 1rem
    }

    .pec_why__card-stats {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .pec_hero__status {
        flex-direction: column;
        text-align: center;
        gap: .5rem
    }

    .pec_hero__status-text {
        font-size: .75rem
    }
}

@media(max-width:400px) {
    .pec_hero__stats {
        grid-template-columns: 1fr
    }

    .pec_hero__stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem
    }

    .pec_hero__stat-icon {
        margin: 0
    }

    .pec_hero__stat-value {
        font-size: 1.25rem
    }

    .pec_impact-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:360px) {
    .pec_hero__title {
        font-size: 1.5rem
    }

    .pec_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .pec_section-title {
        font-size: 1.25rem
    }

    .btn {
        padding: .7rem 1rem;
        font-size: .75rem
    }

    .pec_hero__stat-value {
        font-size: 1rem
    }

    .pec_hero__stat-label {
        font-size: .65rem
    }

    .pec_hero__stat-card {
        padding: .75rem
    }

    .pec_hero__stat-icon {
        width: 40px;
        height: 40px
    }

    .pec_hero__stat-icon svg {
        width: 18px;
        height: 18px
    }

    .pec_impact-card__value {
        font-size: 1.5rem
    }

    .pec_impact-card {
        padding: 1rem .75rem
    }

    .pec_section-subtitle {
        font-size: .9rem
    }

    .pec_why__card {
        padding: 1.5rem
    }

    .pec_why__card-title {
        font-size: 1.1rem
    }

    .pec_service-card {
        padding: 1.25rem
    }

    .pec_service-card__icon {
        width: 50px;
        height: 50px
    }

    .pec_service-card__icon svg {
        width: 24px;
        height: 24px
    }

    .pec_service-card__title {
        font-size: 1rem
    }

    .pec_service-card__desc {
        font-size: .8rem
    }

    .pec_benefit-card {
        padding: 1.25rem
    }

    .pec_benefit-card__icon {
        width: 50px;
        height: 50px
    }

    .pec_benefit-card__icon svg {
        width: 24px;
        height: 24px
    }

    .pec_stream-card__icon {
        width: 40px;
        height: 40px
    }

    .pec_stream-card__name {
        font-size: .8rem
    }
}

/* project-neet-counseling */


.pnc_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pnc_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.pnc_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pnc_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.pnc_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.pnc_btn--outline:hover {
    background: var(--burgundy-50)
}

.pnc_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 40%, var(--medical-blue) 100%)
}

.pnc_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.pnc_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pnc_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--medical-blue);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.pnc_hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--success-green);
    top: 60%;
    right: 20%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.pnc_hero__container {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem
}

.pnc_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pnc_hero__content {
    max-width: 650px
}

.pnc_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.pnc_hero__badge svg {
    width: 20px;
    height: 20px
}

.pnc_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.pnc_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pnc_hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-weight: 500
}

.pnc_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.pnc_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.pnc_hero__status {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, .2), rgba(5, 150, 105, .1));
    border: 1px solid rgba(5, 150, 105, .3);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem
}

.pnc_hero__status-dot {
    width: 12px;
    height: 12px;
    background: var(--success-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, .5)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0)
    }
}

.pnc_hero__status-text {
    font-size: .9rem;
    color: var(--success-green);
    font-weight: 600
}

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

.pnc_hero__stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pnc_hero__stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.pnc_hero__stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pnc_hero__stat-icon svg {
    width: 28px;
    height: 28px
}

.pnc_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pnc_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}


.pnc_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}



.pnc_section--medical {
    background: linear-gradient(180deg, var(--medical-light) 0%, var(--cream) 100%)
}

.pnc_section--gold {
    background: linear-gradient(180deg, var(--gold-200) 0%, var(--cream) 100%)
}

.pnc_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.pnc_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pnc_section-tag::before,
.pnc_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pnc_section--dark .pnc_section-tag {
    color: var(--gold-400)
}

.pnc_section--dark .pnc_section-tag::before,
.pnc_section--dark .pnc_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pnc_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.pnc_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pnc_section--dark .pnc_section-title {
    color: var(--white)
}

.pnc_section--dark .pnc_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pnc_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pnc_section--dark .pnc_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.pnc_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pnc_about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pnc_about__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pnc_about__content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.5rem
}


.pnc_about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15)
}

.pnc_about__image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.pnc_about__image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem
}

.pnc_about__image-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--medical-blue), #1e3a8a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pnc_about__image-float-icon svg {
    width: 24px;
    height: 24px
}

.pnc_about__image-float-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900)
}

.pnc_about__image-float-text span {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500)
}

.pnc_why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.pnc_why__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.pnc_why__content h2 em {
    font-style: normal;
    color: var(--burgundy-600)
}

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

.pnc_why__point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    transition: all .3s
}

.pnc_why__point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.pnc_why__point-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.pnc_why__point-icon svg {
    width: 24px;
    height: 24px
}

.pnc_why__point-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pnc_why__point-text p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.pnc_why__card {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.pnc_why__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
    opacity: .1
}

.pnc_why__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.pnc_why__card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.pnc_why__card-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 16px
}

.pnc_why__card-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400)
}

.pnc_why__card-stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    margin-top: .25rem
}

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

.pnc_service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden
}

.pnc_service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--medical-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.pnc_service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.pnc_service-card:hover::before {
    transform: scaleX(1)
}

.pnc_service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--medical-light), var(--white));
    color: var(--medical-blue);
    transition: all .4s
}

.pnc_service-card:hover .pnc_service-card__icon {
    background: linear-gradient(135deg, var(--medical-blue), #1e3a8a);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg)
}

.pnc_service-card__icon svg {
    width: 32px;
    height: 32px
}

.pnc_service-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.pnc_service-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.pnc_impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.pnc_impact-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .4s
}

.pnc_impact-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

.pnc_impact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pnc_impact-card__icon svg {
    width: 28px;
    height: 28px
}

.pnc_impact-card__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pnc_impact-card__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

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

.pnc_course-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    transition: all .3s;
    border: 2px solid transparent
}

.pnc_course-card:hover {
    border-color: var(--medical-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, .15)
}

.pnc_course-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medical-light);
    color: var(--medical-blue);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700
}

.pnc_course-card__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pnc_course-card__full {
    font-size: .75rem;
    color: var(--gray-500)
}

.pnc_stories__wrapper {
    position: relative;
    padding: 0 60px
}

.pnc_stories__carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 1rem 0
}

.pnc_stories__carousel::-webkit-scrollbar {
    display: none
}

.pnc_story-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s
}

.pnc_story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.pnc_story-card__image {
    position: relative;
    height: 200px;
    overflow: hidden
}

.pnc_story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.pnc_story-card:hover .pnc_story-card__image img {
    transform: scale(1.08)
}

.pnc_story-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 10, 14, .9) 100%)
}

.pnc_story-card__type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--medical-blue), #1e3a8a);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pnc_story-card__student {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem
}

.pnc_story-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pnc_story-card__college {
    font-size: .8rem;
    color: rgba(255, 255, 255, .85)
}

.pnc_story-card__body {
    padding: 1.5rem
}

.pnc_story-card__quote {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--medical-blue)
}

.pnc_story-card__result {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    background: var(--success-light);
    border-radius: 12px
}

.pnc_story-card__result-icon {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.pnc_story-card__result-icon svg {
    width: 20px;
    height: 20px
}

.pnc_story-card__result-text {
    font-size: .85rem;
    color: var(--gray-700)
}

.pnc_story-card__result-text strong {
    display: block;
    color: var(--success-green);
    font-size: 1rem
}

.pnc_story-card__footer {
    padding: 0 1.5rem 1.5rem
}

.pnc_story-card__read {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: all .25s
}

.pnc_story-card__read:hover {
    gap: .75rem;
    color: var(--burgundy-700)
}

.pnc_story-card__read svg {
    width: 16px;
    height: 16px
}

.pnc_carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    cursor: pointer;
    transition: all .3s;
    z-index: 10
}

.pnc_carousel-btn:hover {
    background: var(--burgundy-600);
    color: var(--white);
    transform: translateY(-50%) scale(1.1)
}

.pnc_carousel-btn--prev {
    left: 0
}

.pnc_carousel-btn--next {
    right: 0
}

.pnc_carousel-btn svg {
    width: 24px;
    height: 24px
}

.pnc_pnc_carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem
}

.pnc_carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all .3s
}

.pnc_carousel-dot.active {
    background: var(--burgundy-600);
    transform: scale(1.2)
}

.pnc_vision {
    text-align: center;
    position: relative
}

.pnc_vision__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.pnc_vision__quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--gold-400);
    opacity: .3;
    font-family: Georgia, serif
}

.pnc_vision__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.pnc_vision__icon svg {
    width: 50px;
    height: 50px
}

.pnc_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pnc_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pnc_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--medical-light), var(--white));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medical-blue);
    box-shadow: 0 10px 40px rgba(30, 64, 175, .2)
}

.pnc_cta__icon svg {
    width: 40px;
    height: 40px
}

.pnc_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pnc_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pnc_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.pnc_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.pnc_cta__free {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: var(--success-light);
    border-radius: 50px;
    color: var(--success-green);
    font-size: .9rem;
    font-weight: 600
}

.pnc_cta__free svg {
    width: 20px;
    height: 20px
}



@media(max-width:1200px) {
    .pnc_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .pnc_hero__content {
        max-width: 100%;
        margin: 0 auto
    }

    .pnc_hero__btns {
        justify-content: center
    }

    .pnc_hero__status {
        justify-content: center
    }

    .pnc_hero__stats {
        max-width: 500px;
        margin: 0 auto
    }

    .pnc_about-grid,
    .pnc_why-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about__image,
    .why__visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .pnc_about__content,
    .pnc_why__content {
        text-align: center
    }

    .pnc_pnc_why__points {
        max-width: 500px;
        margin: 0 auto
    }

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

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

    .pnc_courses-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .pnc_story-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px
    }
}

@media(max-width:1024px) {


    .pnc_impact-card__value {
        font-size: 2rem
    }
}

@media(max-width:900px) {


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

    .pnc_stories__wrapper {
        padding: 0 50px
    }

    .pnc_carousel-btn {
        width: 40px;
        height: 40px
    }
}

@media(max-width:768px) {
    .pnc_hero {
        min-height: auto;
        padding: 6rem 0 3rem
    }

    .pnc_hero__container {
        padding: 2rem 0
    }

    .pnc_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .pnc_hero__title {
        font-size: 2.25rem
    }

    .pnc_hero__subtitle {
        font-size: 1rem
    }

    .pnc_hero__desc {
        font-size: 1rem
    }

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

    .pnc_hero__stat-card {
        padding: 1.5rem
    }

    .pnc_hero__stat-value {
        font-size: 1.5rem
    }

    .section {
        padding: 3rem 0
    }

    .pnc_section-header {
        margin-bottom: 2.5rem
    }

    .pnc_section-title {
        font-size: 1.75rem
    }

    .pnc_section-subtitle {
        font-size: 1rem
    }

    .pnc_services-grid {
        grid-template-columns: 1fr
    }

    .pnc_service-card {
        padding: 1.5rem
    }

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

    .pnc_impact-card {
        padding: 1.5rem 1rem
    }

    .pnc_impact-card__value {
        font-size: 1.75rem
    }

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

    .pnc_course-card {
        padding: 1.25rem
    }

    .pnc_story-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: 280px
    }

    .pnc_stories__wrapper {
        padding: 0 40px
    }

    .pnc_carousel-btn {
        width: 35px;
        height: 35px
    }

    .pnc_carousel-btn svg {
        width: 18px;
        height: 18px
    }

    .pnc_about__image-main img {
        height: 280px
    }

    .pnc_about__image-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        justify-content: center
    }

    .pnc_about__content h2,
    .pnc_why__content h2 {
        font-size: 1.5rem
    }

    .pnc_why__card {
        padding: 2rem
    }

    .pnc_why__card-title {
        font-size: 1.25rem
    }

    .pnc_why__card-stat-value {
        font-size: 1.5rem
    }

    .pnc_vision__icon {
        width: 70px;
        height: 70px
    }

    .pnc_vision__icon svg {
        width: 35px;
        height: 35px
    }

    .pnc_vision__quote {
        font-size: 1.15rem
    }

    .pnc_cta__icon {
        width: 60px;
        height: 60px
    }

    .pnc_cta__icon svg {
        width: 30px;
        height: 30px
    }

    .pnc_cta__title {
        font-size: 1.5rem
    }

    .pnc_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pnc_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }


}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .pnc_hero__title {
        font-size: 1.875rem
    }

    .pnc_hero__stats {
        gap: .75rem
    }

    .pnc_hero__stat-card {
        padding: 1rem
    }

    .pnc_hero__stat-value {
        font-size: 1.25rem
    }

    .pnc_hero__stat-icon {
        width: 45px;
        height: 45px
    }

    .pnc_hero__stat-icon svg {
        width: 22px;
        height: 22px
    }

    .pnc_section-title {
        font-size: 1.5rem
    }

    .pnc_courses-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem
    }

    .pnc_course-card {
        padding: 1rem
    }

    .pnc_course-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1rem
    }

    .pnc_course-card__name {
        font-size: .9rem
    }

    .pnc_story-card__body {
        padding: 1.25rem
    }

    .pnc_story-card__quote {
        font-size: .85rem
    }

    .pnc_stories__wrapper {
        padding: 0 30px
    }

    .pnc_carousel-btn {
        width: 30px;
        height: 30px
    }

    .pnc_why__point {
        padding: 1rem
    }
}

@media(max-width:360px) {
    .pnc_hero__title {
        font-size: 1.625rem
    }

    .pnc_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .pnc_section-title {
        font-size: 1.35rem
    }

    .btn {
        padding: .75rem 1.25rem;
        font-size: .8rem
    }

    .pnc_hero__stat-value {
        font-size: 1.1rem
    }

    .pnc_hero__stat-label {
        font-size: .7rem
    }
}

/* Additional Mobile Fixes */
@media(max-width:600px) {
    .pnc_story-card {
        flex: 0 0 100%;
        min-width: calc(100% - 20px)
    }

    .pnc_stories__carousel {
        gap: 1rem;
        padding: .5rem 0
    }

    .pnc_pnc_carousel-dots {
        margin-top: 1.5rem
    }

    .pnc_about__image-float {
        flex-direction: column;
        text-align: center;
        padding: 1rem
    }

    .pnc_about__image-float-text {
        text-align: center
    }

    .pnc_why__card-stats {
        grid-template-columns: 1fr 1fr
    }




}

@media(max-width:400px) {
    .pnc_hero__stats {
        grid-template-columns: 1fr
    }

    .pnc_hero__stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem
    }

    .pnc_hero__stat-icon {
        margin: 0
    }

    .pnc_hero__stat-value {
        font-size: 1.25rem
    }

    .pnc_courses-grid {
        grid-template-columns: 1fr
    }

    .pnc_impact-grid {
        grid-template-columns: 1fr
    }

    .pnc_story-card__result {
        flex-direction: column;
        text-align: center
    }

    .pnc_story-card__result-icon {
        margin: 0 auto
    }
}


/* scholarships */


.pss_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pss_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.pss_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.pss_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.pss_hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-800) 50%, var(--burgundy-700) 100%)
}

.pss_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .3
}

.pss_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.pss_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--burgundy-400);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.2);
        opacity: .4
    }
}

.pss_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: -62px;
}



.pss_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem 1.25rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.pss_hero__badge svg {
    width: 18px;
    height: 18px
}

.pss_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em
}

.pss_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pss_hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.pss_hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

.pss_hero__stat {
    text-align: center
}

.pss_hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400)
}

.pss_hero__stat-label {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7)
}

.pss_pss_tabs-container {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
    padding: 1rem 0
}

.pss_tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap
}

.pss_tab-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: 50px;
    transition: all .3s var(--ease-out)
}

.pss_tab-btn:hover {
    color: var(--burgundy-600);
    background: var(--burgundy-50)
}

.pss_tab-btn.active {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.pss_tab-btn svg {
    width: 18px;
    height: 18px
}

.pss_tab-btn__count {
    padding: .2rem .5rem;
    background: rgba(255, 255, 255, .2);
    border-radius: 20px;
    font-size: .7rem
}

.pss_tab-btn:not(.active) .pss_tab-btn__count {
    background: var(--burgundy-100);
    color: var(--burgundy-600)
}


.pss_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}


.pss_section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem
}

.pss_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.pss_section-tag::before,
.pss_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.pss_section--dark .pss_section-tag {
    color: var(--gold-400)
}

.pss_section--dark .pss_section-tag::before,
.pss_section--dark .pss_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.pss_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em
}

.pss_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pss_section--dark .pss_section-title {
    color: var(--white)
}

.pss_section--dark .pss_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pss_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.pss_section--dark .pss_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.pss_pss_info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem
}

.pss_info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s var(--ease-out)
}

.pss_info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
}

.pss_info-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pss_info-card__icon--ngo {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white)
}

.pss_info-card__icon--corp {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: var(--white)
}

.pss_info-card__icon--gov {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white)
}

.pss_info-card__icon svg {
    width: 32px;
    height: 32px
}

.pss_info-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.pss_info-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7
}

.pss_search-filter {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
}

.pss_search-box {
    flex: 1;
    min-width: 250px;
    position: relative
}

.pss_search-box__input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: .9rem;
    transition: all .3s var(--ease-out)
}

.pss_search-box__input:focus {
    outline: none;
    border-color: var(--burgundy-400);
    box-shadow: 0 0 0 4px rgba(166, 45, 60, .1)
}

.pss_search-box__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400)
}

.pss_filter-select {
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: .9rem;
    background: var(--white);
    appearance: none;
    cursor: pointer;
    transition: all .3s var(--ease-out)
}

.pss_filter-select:focus {
    outline: none;
    border-color: var(--burgundy-400)
}

.pss_category {
    scroll-margin-top: 140px;
    margin-bottom: 4rem
}

.pss_category__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100)
}

.pss_category__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pss_category__icon--ngo {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white)
}

.pss_category__icon--corp {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: var(--white)
}

.pss_category__icon--gov {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white)
}

.pss_category__icon svg {
    width: 30px;
    height: 30px
}

.pss_category__info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.pss_category__info p {
    font-size: .9rem;
    color: var(--gray-500)
}

.pss_category__count {
    margin-left: auto;
    text-align: center;
    padding: .75rem 1.25rem;
    background: var(--burgundy-50);
    border-radius: 12px
}

.pss_category__count-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy-600)
}

.pss_category__count-label {
    font-size: .7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em
}

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

.pss_scholarship-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100)
}

.pss_scholarship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--gold-400));
    transform: scaleX(0);
    transition: transform .4s var(--ease-out)
}

.pss_scholarship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    border-color: transparent
}

.pss_scholarship-card:hover::before {
    transform: scaleX(1)
}

.pss_scholarship-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem
}

.pss_scholarship-card__logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy-600);
    flex-shrink: 0
}

.pss_scholarship-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: .25rem
}

.pss_scholarship-card__org {
    font-size: .75rem;
    color: var(--gray-500)
}

.pss_scholarship-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .75rem
}

.pss_scholarship-card__tag {
    padding: .3rem .6rem;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    font-size: .65rem;
    font-weight: 600;
    border-radius: 15px
}

.pss_scholarship-card__tag--amt {
    background: linear-gradient(135deg, var(--gold-200), var(--gold-300));
    color: var(--burgundy-800)
}

.pss_scholarship-card__desc {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.pss_scholarship-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-bottom: 1rem
}

.pss_scholarship-card__detail {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--gray-500)
}

.pss_scholarship-card__detail svg {
    width: 14px;
    height: 14px;
    color: var(--burgundy-400)
}

.pss_scholarship-card__detail strong {
    color: var(--gray-700)
}

.pss_scholarship-card__actions {
    display: flex;
    gap: .5rem
}

.pss_scholarship-card__btn {
    flex: 1;
    padding: .6rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    transition: all .3s var(--ease-out)
}

.pss_scholarship-card__pss_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    color: var(--white)
}

.pss_scholarship-card__pss_btn--primary:hover {
    box-shadow: 0 6px 20px rgba(166, 45, 60, .3)
}

.pss_scholarship-card__btn--secondary {
    background: var(--gray-100);
    color: var(--gray-700)
}

.pss_scholarship-card__btn--secondary:hover {
    background: var(--gray-200)
}

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

.pss_step {
    position: relative;
    text-align: center
}

.pss_step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 60%;
    width: calc(100% - 20%);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    z-index: 0
}

.pss_step:last-child::after {
    display: none
}

.pss_step__num {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--burgundy-900);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(212, 165, 116, .4)
}

.pss_step__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.pss_step__desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6
}

.pss_cta {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0
}

.pss_cta__content {
    max-width: 700px;
    margin: 0 auto
}

.pss_cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pss_cta__icon svg {
    width: 40px;
    height: 40px
}

.pss_cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem
}

.pss_cta__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.pss_cta__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem
}

.pss_cta__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}



.pss_tab-content {
    display: none
}

.pss_tab-content.active {
    display: block
}



@media(max-width:1200px) {
    .pss_scholarships-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .pss_hero__container{
        margin-top: -62px;
    }

    .pss_pss_info-cards {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .pss_step:nth-child(2)::after {
        display: none
    }
}

@media(max-width:1024px) {


    .pss_category__header {
        flex-wrap: wrap
    }

    .pss_category__count {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%
    }
}


@media(max-width:900px) {

    .pss_tabs {
        gap: .25rem
    }

    .pss_tab-btn {
        padding: .6rem 1rem;
        font-size: .75rem
    }

    .pss_tab-btn svg {
        display: none
    }
}

@media(max-width:768px) {
    .pss_scholarships-grid {
        grid-template-columns: 1fr
    }

    .pss_pss_info-cards {
        grid-template-columns: 1fr
    }

    .pss_hero__stats {
        gap: 2rem
    }

    .pss_search-filter {
        flex-direction: column
    }

    .pss_search-box {
        width: 100%
    }

    .pss_filter-select {
        width: 100%
    }

    .pss_pss_steps {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .pss_step::after {
        display: none
    }

    .pss_cta__btns {
        flex-direction: column;
        align-items: center
    }

    .pss_cta__btns .btn {
        width: 100%;
        max-width: 320px
    }

    .pss_scholarship-card__details {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .pss_tab-btn__count {
        display: none
    }
    .pss_hero__container{
        margin-top: 102px;
    }

    .pss_hero__stats {
        flex-direction: column;
        gap: 1.5rem
    }
}

/* Success pss_stories Carousel */
.pss_stories {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden
}

.pss_stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy-200), transparent)
}

.pss_stories__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem
}

.pss_stories__carousel-wrap {
    position: relative;
    padding: 0 60px
}

.pss_stories__carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0 2rem
}

.pss_stories__carousel::-webkit-scrollbar {
    display: none
}

.pss_story-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s var(--ease-out);
    position: relative
}

.pss_story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.pss_story-card__image {
    position: relative;
    height: 220px;
    overflow: hidden
}

.pss_story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out)
}

.pss_story-card:hover .pss_story-card__image img {
    transform: scale(1.08)
}

.pss_story-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 10, 14, .9) 100%)
}

.pss_story-card__scholarship {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pss_story-card__year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .4rem .8rem;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    border-radius: 15px
}

.pss_story-card__student {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem
}

.pss_story-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.pss_story-card__college {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8)
}

.pss_story-card__body {
    padding: 1.5rem
}

.pss_story-card__quote {
    position: relative;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--burgundy-300)
}

.pss_story-card__stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100)
}

.pss_story-card__stat {
    flex: 1;
    text-align: center
}

.pss_story-card__stat-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy-600)
}

.pss_story-card__stat-label {
    font-size: .65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em
}

.pss_story-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem 1.5rem
}

.pss_story-card__read {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: all .25s
}

.pss_story-card__read:hover {
    gap: .75rem;
    color: var(--burgundy-700)
}

.pss_story-card__read svg {
    width: 16px;
    height: 16px
}

.pss_carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    z-index: 10;
    transition: all .3s var(--ease-out);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.pss_carousel-btn:hover {
    background: var(--burgundy-500);
    border-color: var(--burgundy-500);
    color: var(--white);
    transform: translateY(-50%) scale(1.1)
}

.pss_carousel-btn--prev {
    left: 0
}

.pss_carousel-btn--next {
    right: 0
}

.pss_carousel-btn svg {
    width: 20px;
    height: 20px
}

.pss_pss_carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem
}

.pss_carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all .3s var(--ease-out);
    cursor: pointer
}

.pss_carousel-dot.active {
    background: var(--burgundy-500);
    transform: scale(1.2)
}

.pss_carousel-dot:hover {
    background: var(--burgundy-400)
}

.pss_stories__pss_cta {
    text-align: center;
    margin-top: 3rem
}

.pss_stories__counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.pss_stories__counter-item {
    text-align: center
}

.pss_stories__counter-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pss_stories__counter-label {
    font-size: .85rem;
    color: var(--gray-500)
}

@media(max-width:900px) {
    .pss_stories__carousel-wrap {
        padding: 0 40px
    }

    .pss_carousel-btn {
        width: 40px;
        height: 40px
    }

    .pss_story-card {
        flex: 0 0 320px
    }
}

@media(max-width:600px) {
    .pss_stories__carousel-wrap {
        padding: 0 1rem
    }

    .pss_carousel-btn {
        display: none
    }

    .pss_story-card {
        flex: 0 0 85vw
    }

    .pss_stories__counter {
        gap: 2rem
    }

    .pss_stories__counter-num {
        font-size: 2rem
    }
}

.pss_modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem
}

.pss_modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.pss_modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(.9) translateY(20px);
    transition: transform .4s var(--ease-out);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .3)
}

.pss_modal-overlay.active .pss_modal {
    transform: scale(1) translateY(0)
}

.pss_modal__header {
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
    padding: 2rem;
    position: relative
}

.pss_modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s
}

.pss_modal__close:hover {
    background: rgba(255, 255, 255, .25);
    transform: rotate(90deg)
}

.pss_modal__close svg {
    width: 20px;
    height: 20px
}

.pss_modal__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .8rem;
    background: rgba(255, 255, 255, .15);
    color: var(--gold-300);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 20px;
    margin-bottom: 1rem
}

.pss_modal__badge svg {
    width: 14px;
    height: 14px
}

.pss_modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.pss_modal__org {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8)
}

.pss_modal__body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto
}

.pss_modal__amount {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-300));
    border-radius: 16px;
    margin-bottom: 1.5rem
}

.pss_modal__amount-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600)
}

.pss_modal__amount-icon svg {
    width: 24px;
    height: 24px
}

.pss_modal__amount-info {
    flex: 1
}

.pss_modal__amount-label {
    font-size: .75rem;
    color: var(--burgundy-700);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .25rem
}

.pss_modal__amount-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy-800)
}

.pss_modal__section {
    margin-bottom: 1.5rem
}

.pss_modal__pss_section-title {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.pss_modal__pss_section-title svg {
    width: 16px;
    height: 16px;
    color: var(--burgundy-500)
}

.pss_modal__text {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.8
}

.pss_modal__list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.pss_modal__list-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9rem;
    color: var(--gray-600)
}

.pss_modal__list-item svg {
    width: 18px;
    height: 18px;
    color: var(--burgundy-500);
    flex-shrink: 0;
    margin-top: 2px
}

.pss_modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.pss_modal__pss_info-card {
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 12px
}

.pss_modal__info-label {
    font-size: .7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .25rem
}

.pss_modal__info-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800)
}

.pss_modal__footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 1rem
}

.pss_modal__btn {
    flex: 1;
    padding: 1rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 14px;
    text-align: center;
    transition: all .3s var(--ease-out)
}

.pss_modal__pss_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white)
}

.pss_modal__pss_btn--primary:hover {
    box-shadow: 0 8px 25px rgba(166, 45, 60, .4);
    transform: translateY(-2px)
}

.pss_modal__btn--secondary {
    background: var(--gray-100);
    color: var(--gray-700)
}

.pss_modal__btn--secondary:hover {
    background: var(--gray-200)
}

@media(max-width:600px) {
    .pss_modal__grid {
        grid-template-columns: 1fr
    }

    .pss_modal__header {
        padding: 1.5rem
    }

    .pss_modal__body {
        padding: 1.5rem
    }

    .pss_modal__footer {
        flex-direction: column
    }
}


/*  */


.et_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.et_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.et_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.et_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.et_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.et_btn--outline:hover {
    background: var(--burgundy-50)
}

.et_btn--orange {
    background: linear-gradient(135deg, var(--event-orange), #ea580c);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, .3)
}

.et_btn--orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, .4)
}

.et_btn--sm {
    padding: .75rem 1.5rem;
    font-size: .8rem
}

.et_btn--white {
    background: var(--white);
    color: var(--burgundy-700)
}

.et_btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2)
}

.et_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #7c2d12 100%)
}

.et_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.et_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.et_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--event-orange);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.et_hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--burgundy-400);
    top: 60%;
    right: 20%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.et_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 6rem
}

.et_hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.et_hero__content {
    max-width: 600px
}

.et_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.et_hero__badge svg {
    width: 20px;
    height: 20px
}

.et_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.et_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.et_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2rem
}

.et_hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.et_hero__visual {
    position: relative
}

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

.et_hero__stat-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s
}

.et_hero__stat-box:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.et_hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.et_hero__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.et_hero__stat-box--highlight {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border: none
}

.et_hero__stat-box--highlight .et_hero__stat-value {
    color: var(--burgundy-900)
}

.et_hero__stat-box--highlight .et_hero__stat-label {
    color: var(--burgundy-800)
}



.et_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}


.et_section--gradient {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%)
}

.et_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.et_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.et_section-tag::before,
.et_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.et_section--dark .et_section-tag {
    color: var(--gold-400)
}

.et_section--dark .et_section-tag::before,
.et_section--dark .et_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.et_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.et_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.et_section--dark .et_section-title {
    color: var(--white)
}

.et_section--dark .et_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.et_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.et_section--dark .et_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.et_year-filter {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.et_year-btn {
    padding: .75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .3s
}

.et_year-btn:hover,
.et_year-btn.active {
    background: var(--burgundy-600);
    border-color: var(--burgundy-600);
    color: var(--white)
}

.et_timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto
}

.et_timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--burgundy-300), var(--burgundy-500));
    transform: translateX(-50%);
    border-radius: 3px
}

.et_timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative
}

.et_timeline-item:nth-child(odd) {
    flex-direction: row-reverse
}

.et_timeline-item:nth-child(odd) .et_timeline-content {
    text-align: right;
    padding-right: 4rem;
    padding-left: 0
}

.et_timeline-item:nth-child(odd) .et_timeline-content::before {
    right: -12px;
    left: auto
}

.et_timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--burgundy-500);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--burgundy-100)
}

.et_timeline-content {
    width: calc(50% - 40px);
    padding-left: 4rem;
    position: relative
}

.et_timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--burgundy-300)
}

.et_timeline-date {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.et_timeline-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s
}

.et_timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15)
}

.et_timeline-card__image {
    height: 200px;
    overflow: hidden;
    position: relative
}

.et_timeline-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.et_timeline-card:hover .et_timeline-card__image img {
    transform: scale(1.05)
}

.et_timeline-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: var(--white);
    color: var(--burgundy-600);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.et_timeline-card__content {
    padding: 1.5rem
}

.et_timeline-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem;
    line-height: 1.3
}

.et_timeline-card__desc {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem
}

.et_timeline-card__stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap
}

.et_timeline-card__stat {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--gray-600)
}

.et_timeline-card__stat svg {
    width: 16px;
    height: 16px;
    color: var(--burgundy-400)
}

.et_gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 100%);
    overflow: hidden
}

.et_gallery-header {
    text-align: center;
    margin-bottom: 3rem
}

.et_gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.et_gallery-header p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem
}

.et_gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite
}

.et_gallery-track:hover {
    animation-play-state: paused
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.et_gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.et_gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.et_gallery-item:hover img {
    transform: scale(1.1)
}

.et_gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s
}

.et_gallery-item:hover .et_gallery-item__overlay {
    opacity: 1
}

.et_gallery-item__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.et_gallery-item__meta {
    font-size: .8rem;
    color: var(--gold-400)
}

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

.et_featured-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative
}

.et_featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--event-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.et_featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.et_featured-card:hover::before {
    transform: scaleX(1)
}

.et_featured-card__image {
    height: 220px;
    overflow: hidden;
    position: relative
}

.et_featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.et_featured-card:hover .et_featured-card__image img {
    transform: scale(1.08)
}

.et_featured-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--event-orange), #ea580c);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.et_featured-card__content {
    padding: 2rem
}

.et_featured-card__date {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.et_featured-card__date-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white)
}

.et_featured-card__date-day {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1
}

.et_featured-card__date-month {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.et_featured-card__date-text {
    font-size: .85rem;
    color: var(--gray-500)
}

.et_featured-card__date-text span {
    display: block
}

.et_featured-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem;
    line-height: 1.3
}

.et_featured-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.et_featured-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.et_featured-card__meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--gray-500)
}

.et_featured-card__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--burgundy-400)
}

.et_featured-card__btn {
    width: 100%
}

.et_impact-banner {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden
}

.et_impact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 60%);
    opacity: .1
}

.et_impact-banner__content {
    position: relative;
    z-index: 2
}

.et_impact-banner__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.et_impact-banner__text {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem
}

.et_et_impact-banner__stats {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2
}

.et_impact-banner__stat {
    text-align: center
}

.et_et_impact-banner__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400)
}

.et_impact-banner__stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8)
}

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

.et_event-type-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s
}

.et_event-type-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-5px)
}

.et_event-type-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-900)
}

.et_event-type-card__icon svg {
    width: 32px;
    height: 32px
}

.et_event-type-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.et_event-type-card__count {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6)
}

.et_cta-section {
    background: linear-gradient(135deg, var(--event-light) 0%, var(--cream) 100%);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.et_cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--event-orange);
    border-radius: 50%;
    opacity: .1
}

.et_cta-section__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--event-orange), #ea580c);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(249, 115, 22, .3)
}

.et_cta-section__icon svg {
    width: 40px;
    height: 40px
}

.et_cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem
}

.et_cta-section__title em {
    font-style: normal;
    color: var(--burgundy-600)
}

.et_cta-section__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.et_cta-section__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.et_newsletter-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s
}

.et_newsletter-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.et_newsletter-float__card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    max-width: 320px
}

.et_newsletter-float__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.et_newsletter-float__close:hover {
    background: var(--burgundy-100);
    color: var(--burgundy-600)
}

.et_newsletter-float__close svg {
    width: 16px;
    height: 16px
}

.et_newsletter-float__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.et_newsletter-float__text {
    font-size: .8rem;
    color: var(--gray-500);
    margin-bottom: 1rem
}

.et_newsletter-float__form {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.et_newsletter-float__input {
    padding: .875rem 1rem;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: .85rem;
    outline: none;
    transition: all .3s
}

.et_newsletter-float__input:focus {
    border-color: var(--burgundy-300);
    background: var(--white)
}

.et_newsletter-float__btn {
    padding: .875rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all .3s
}

.et_newsletter-float__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 45, 60, .3)
}


@media(max-width:1200px) {
    .et_hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .et_hero__content {
        max-width: 100%;
        margin: 0 auto
    }

    .et_hero__btns {
        justify-content: center
    }

    .et_hero__stats-grid {
        max-width: 450px;
        margin: 0 auto
    }

    .et_featured-events {
        grid-template-columns: repeat(2, 1fr)
    }

    .et_timeline::before {
        left: 20px
    }

    .et_timeline-item,
    .et_timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start
    }

    .et_timeline-dot {
        left: 20px
    }

    .et_timeline-content,
    .et_timeline-item:nth-child(odd) .et_timeline-content {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left
    }

    .et_timeline-content::before,
    .et_timeline-item:nth-child(odd) .et_timeline-content::before {
        left: 36px
    }

    .et_impact-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem
    }

    .et_et_impact-banner__stats {
        justify-content: center
    }

    .et_event-types {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1024px) {


    .et_hero__stat-value {
        font-size: 2rem
    }

    .et_gallery-item {
        width: 280px;
        height: 200px
    }
}

@media(max-width:900px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right .4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
        overflow-y: auto;
        z-index: 1000
    }

    .nav__menu.open {
        right: 0
    }

    .nav__link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: .95rem
    }

    .nav__dropdown {
        width: 100%
    }

    .nav__dropdown-trigger {
        width: 100%;
        justify-content: space-between
    }

    .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        min-width: 100%
    }

    .nav__dropdown.open .nav__dropdown-menu {
        display: block
    }

    .nav__toggle {
        display: flex
    }

    .nav__donate {
        display: none
    }

    .et_featured-events {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .et_hero {
        min-height: auto
    }

    .et_hero__container {
        padding: 7rem 0 4rem
    }

    .et_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .et_hero__title {
        font-size: 2.25rem
    }

    .et_hero__desc {
        font-size: 1rem
    }

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

    .et_hero__stat-box {
        padding: 1.5rem
    }

    .et_hero__stat-value {
        font-size: 1.75rem
    }

    .section {
        padding: 3rem 0
    }

    .et_section-header {
        margin-bottom: 2.5rem
    }

    .et_section-title {
        font-size: 1.75rem
    }

    .et_section-subtitle {
        font-size: 1rem
    }

    .et_timeline-content {
        padding-left: 50px
    }

    .et_timeline-content::before {
        left: 26px;
        width: 18px;
        height: 18px
    }

    .et_timeline-dot {
        width: 20px;
        height: 20px;
        left: 15px
    }

    .et_timeline::before {
        left: 15px
    }

    .et_timeline-card__image {
        height: 180px
    }

    .et_gallery-section {
        padding: 3rem 0
    }

    .et_gallery-item {
        width: 250px;
        height: 180px
    }

    .et_year-filter {
        gap: .5rem
    }

    .et_year-btn {
        padding: .6rem 1rem;
        font-size: .8rem
    }

    .et_et_impact-banner__stat-value {
        font-size: 2rem
    }

    .et_et_impact-banner__stats {
        gap: 2rem
    }

    .et_event-types {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .et_event-type-card {
        padding: 1.5rem
    }

    .et_cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 20px
    }

    .et_cta-section__icon {
        width: 60px;
        height: 60px
    }

    .et_cta-section__icon svg {
        width: 30px;
        height: 30px
    }

    .et_cta-section__btns {
        flex-direction: column;
        align-items: center
    }

    .et_cta-section__btns .btn {
        width: 100%;
        max-width: 300px
    }


    .et_newsletter-float {
        bottom: 1rem;
        right: 1rem;
        left: 1rem
    }

    .et_newsletter-float__card {
        max-width: 100%
    }
}

@media(max-width:600px) {

    .et_et_impact-banner__stats {
        flex-direction: column;
        gap: 1.5rem
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .et_hero__title {
        font-size: 1.875rem
    }

    .et_hero__stats-grid {
        grid-template-columns: 1fr
    }

    .et_hero__stat-box {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem
    }

    .et_hero__stat-value {
        font-size: 1.5rem;
        margin-bottom: 0
    }

    .et_section-title {
        font-size: 1.5rem
    }

    .et_event-types {
        grid-template-columns: 1fr
    }

    .et_event-type-card__icon {
        width: 60px;
        height: 60px
    }

    .et_event-type-card__icon svg {
        width: 28px;
        height: 28px
    }

    .et_featured-card__content {
        padding: 1.5rem
    }

    .et_featured-card__image {
        height: 180px
    }

    .et_timeline-item {
        margin-bottom: 2.5rem
    }

    .et_timeline-card__content {
        padding: 1.25rem
    }
}

@media(max-width:400px) {
    .et_hero__stat-value {
        font-size: 1.25rem
    }

    .et_hero__stat-label {
        font-size: .7rem
    }
}

@media(max-width:360px) {
    .et_hero__title {
        font-size: 1.5rem
    }

    .et_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .et_section-title {
        font-size: 1.25rem
    }

    .btn {
        padding: .7rem 1rem;
        font-size: .75rem
    }

    .et_section-subtitle {
        font-size: .9rem
    }

    .et_timeline-card {
        border-radius: 16px
    }

    .et_featured-card {
        border-radius: 16px
    }

    .et_year-btn {
        padding: .5rem .75rem;
        font-size: .7rem
    }
}



/*success-stories  */


.sst_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.sst_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.sst_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.sst_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.sst_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.sst_btn--outline:hover {
    background: var(--burgundy-50)
}

.sst_btn--white {
    background: var(--white);
    color: var(--burgundy-700)
}

.sst_btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.sst_btn--sm {
    padding: .75rem 1.5rem;
    font-size: .8rem
}

.sst_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #3d1a1d 100%)
}

.sst_hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5
}

.sst_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.sst_hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--gold-400);
    top: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite
}

.sst_hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--burgundy-400);
    bottom: -150px;
    left: 5%;
    animation: pulse 10s ease-in-out infinite reverse
}

.sst_hero__glow--3 {
    width: 350px;
    height: 350px;
    background: var(--success-green);
    top: 50%;
    left: 40%;
    animation: pulse 12s ease-in-out infinite 2s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.sst_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 6rem;
    text-align: center
}

.sst_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.sst_hero__badge svg {
    width: 20px;
    height: 20px
}

.sst_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.sst_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sst_hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

.sst_hero__stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap
}

.sst_hero__stat {
    text-align: center
}

.sst_hero__stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sst_hero__stat-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .25rem
}



.sst_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%);
    overflow: hidden
}



.sst_section--gradient {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%)
}

.sst_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.sst_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.sst_section-tag::before,
.sst_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.sst_section--dark .sst_section-tag {
    color: var(--gold-400)
}

.sst_section--dark .sst_section-tag::before,
.sst_section--dark .sst_section-tag::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500))
}

.sst_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.sst_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sst_section--dark .sst_section-title {
    color: var(--white)
}

.sst_section--dark .sst_section-title em {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sst_section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.sst_section--dark .sst_section-subtitle {
    color: rgba(255, 255, 255, .7)
}

.sst_sst_filter-tabs {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.sst_filter-tab {
    padding: .75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .3s
}

.sst_filter-tab:hover,
.sst_filter-tab.active {
    background: var(--burgundy-600);
    border-color: var(--burgundy-600);
    color: var(--white)
}

.sst_featured-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem
}

.sst_featured-story__image {
    position: relative
}

.sst_featured-story__img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2)
}

.sst_featured-story__img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.sst_featured-story__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: .75rem 1.25rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.sst_featured-story__quote-icon {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.sst_featured-story__quote-icon svg {
    width: 36px;
    height: 36px;
    color: var(--burgundy-500)
}

.sst_featured-story__content {
    max-width: 550px
}

.sst_featured-story__program {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px;
    margin-bottom: 1.5rem
}

.sst_featured-story__program svg {
    width: 16px;
    height: 16px
}

.sst_featured-story__name {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.sst_featured-story__role {
    font-size: 1rem;
    color: var(--burgundy-600);
    font-weight: 500;
    margin-bottom: 1.5rem
}

.sst_featured-story__quote {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold-400)
}

.sst_featured-story__journey {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem
}

.sst_featured-story__journey-item {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: var(--gray-100);
    border-radius: 16px;
    flex: 1
}

.sst_featured-story__journey-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-500);
    margin-bottom: .5rem
}

.sst_featured-story__journey-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900)
}

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

.sst_story-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative
}

.sst_story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.sst_story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.sst_story-card:hover::before {
    transform: scaleX(1)
}

.sst_story-card__image {
    height: 280px;
    position: relative;
    overflow: hidden
}

.sst_story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.sst_story-card:hover .sst_story-card__image img {
    transform: scale(1.08)
}

.sst_story-card__program {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    background: var(--white);
    color: var(--burgundy-600);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.sst_story-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    opacity: 0;
    transition: all .3s;
    cursor: pointer
}

.sst_story-card:hover .sst_story-card__play {
    opacity: 1
}

.sst_story-card__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px
}

.sst_story-card__content {
    padding: 2rem
}

.sst_story-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem
}

.sst_story-card__role {
    font-size: .85rem;
    color: var(--burgundy-500);
    font-weight: 500;
    margin-bottom: 1rem
}

.sst_story-card__quote {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sst_story-card__transformation {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100)
}

.sst_story-card__transform-item {
    flex: 1;
    text-align: center
}

.sst_story-card__transform-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-400);
    margin-bottom: .25rem
}

.sst_story-card__transform-value {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-700)
}

.sst_story-card__transform-arrow {
    width: 30px;
    height: 30px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-green);
    flex-shrink: 0
}

.sst_story-card__transform-arrow svg {
    width: 16px;
    height: 16px
}

.sst_carousel {
    position: relative;
    overflow: hidden
}

.sst_carousel__container {
    position: relative;
    padding: 0 60px
}

.sst_carousel__track {
    display: flex;
    gap: 2rem;
    transition: transform .5s var(--ease-out)
}

.sst_carousel__slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0
}

@media(max-width:1024px) {
    .sst_carousel__slide {
        flex: 0 0 calc(50% - 1rem)
    }
}

@media(max-width:600px) {
    .sst_carousel__slide {
        flex: 0 0 100%
    }
}

.sst_carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    z-index: 10;
    transition: all .3s
}

.sst_carousel__btn:hover {
    background: var(--burgundy-600);
    color: var(--white);
    transform: translateY(-50%) scale(1.1)
}

.sst_carousel__btn--prev {
    left: 0
}

.sst_carousel__btn--next {
    right: 0
}

.sst_carousel__btn svg {
    width: 24px;
    height: 24px
}

.sst_carousel__btn:disabled {
    opacity: .3;
    cursor: not-allowed
}

.sst_carousel__btn:disabled:hover {
    background: var(--white);
    color: var(--burgundy-600);
    transform: translateY(-50%)
}

.sst_carousel__dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 2rem
}

.sst_carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all .3s;
    cursor: pointer
}

.sst_carousel__dot.active {
    background: var(--burgundy-500);
    transform: scale(1.2)
}

.sst_section--dark .sst_carousel__dot {
    background: rgba(255, 255, 255, .3)
}

.sst_section--dark .sst_carousel__dot.active {
    background: var(--gold-400)
}

.sst_section--dark .sst_carousel__btn {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .2)
}

.sst_section--dark .sst_carousel__btn:hover {
    background: var(--gold-400);
    color: var(--burgundy-900);
    border-color: var(--gold-400)
}

.sst_testimonial-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s
}

.sst_testimonial-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.sst_testimonial-card__quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    padding-top: 2rem
}

.sst_testimonial-card__quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold-400);
    opacity: .4;
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1
}

.sst_testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.sst_testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-400)
}

.sst_testimonial-card__info h4 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .125rem
}

.sst_testimonial-card__info span {
    font-size: .8rem;
    color: var(--gold-400)
}

.sst_video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    height: 100%
}

.sst_video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.sst_video-card:hover img {
    transform: scale(1.05)
}

.sst_video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 14, .9) 0%, rgba(45, 10, 14, .3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all .3s
}

.sst_video-card:hover .sst_video-card__overlay {
    background: linear-gradient(to top, rgba(45, 10, 14, .95) 0%, rgba(45, 10, 14, .5) 50%, rgba(45, 10, 14, .2) 100%)
}

.sst_video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    transition: all .3s
}

.sst_video-card:hover .sst_video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3)
}

.sst_video-card__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px
}

.sst_video-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem
}

.sst_video-card__meta {
    font-size: .8rem;
    color: var(--gold-400)
}

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

.sst_impact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.sst_impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    opacity: 0;
    transition: opacity .3s
}

.sst_impact-card:hover::before {
    opacity: 1
}

.sst_impact-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-500);
    position: relative;
    z-index: 1;
    transition: all .3s
}

.sst_impact-card:hover .sst_impact-card__icon {
    background: rgba(255, 255, 255, .2);
    color: var(--white)
}

.sst_impact-card__icon svg {
    width: 32px;
    height: 32px
}

.sst_impact-card__value {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .25rem;
    position: relative;
    z-index: 1;
    transition: color .3s
}

.sst_impact-card:hover .sst_impact-card__value {
    color: var(--white)
}

.sst_impact-card__label {
    font-size: .9rem;
    color: var(--gray-500);
    position: relative;
    z-index: 1;
    transition: color .3s
}

.sst_impact-card:hover .sst_impact-card__label {
    color: rgba(255, 255, 255, .8)
}

.sst_journey-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%)
}

.sst_journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.sst_journey-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500), var(--gold-400), var(--success-green));
    border-radius: 3px
}

.sst_journey-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative
}

.sst_journey-step__number {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 3px solid var(--burgundy-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy-600);
    position: relative;
    z-index: 2;
    transition: all .3s
}

.sst_journey-step:hover .sst_journey-step__number {
    background: var(--burgundy-500);
    border-color: var(--burgundy-500);
    color: var(--white);
    transform: scale(1.2)
}

.sst_journey-step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-50), var(--white));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-500);
    box-shadow: 0 10px 30px rgba(166, 45, 60, .1);
    transition: all .3s
}

.sst_journey-step:hover .sst_journey-step__icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .2)
}

.sst_journey-step__icon svg {
    width: 36px;
    height: 36px
}

.sst_journey-step__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.sst_journey-step__desc {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

.sst_cta-section {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.sst_cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: .1
}

.sst_cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: var(--burgundy-400);
    border-radius: 50%;
    opacity: .15
}

.sst_cta-section__inner {
    position: relative;
    z-index: 2
}

.sst_cta-section__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sst_cta-section__icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold-400)
}

.sst_cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.sst_cta-section__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.sst_cta-section__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}



@media(max-width:1200px) {
    .sst_featured-story {
        grid-template-columns: 1fr;
        gap: 3rem
    }
    .sst_hero__container{
        margin-top: -60px;
    }

    .sst_featured-story__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .sst_featured-story__content {
        text-align: center;
        max-width: 100%
    }

    .sst_featured-story__quote {
        text-align: left
    }

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

    .sst_impact-numbers {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .sst_journey-grid::before {
        display: none
    }

    .sst_carousel__container {
        padding: 0 50px
    }
}

@media(max-width:1024px) {

    .sst_hero__stats {
        gap: 2.5rem
    }
    .sst_hero__container{
        margin-top: -68px;
    }

    .sst_hero__stat-value {
        font-size: 2.75rem
    }
}

@media(max-width:900px) {


    .sst_stories-grid {
        grid-template-columns: 1fr
    }
    .sst_hero__container{
        margin-top: -75px;
    }

}

@media(max-width:768px) {
    .sst_hero {
        min-height: auto
    }

    .sst_hero__container {
        padding: 7rem 0 4rem;
        margin-top: -14px;
    }

    .sst_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .sst_hero__title {
        font-size: 2.25rem
    }

    .sst_hero__desc {
        font-size: 1rem
    }

    .sst_hero__stats {
        gap: 1.5rem
    }

    .sst_hero__stat-value {
        font-size: 2.25rem
    }

    .sst_hero__stat-label {
        font-size: .8rem
    }

    .section {
        padding: 3rem 0
    }

    .sst_section-header {
        margin-bottom: 2.5rem
    }

    .sst_section-title {
        font-size: 1.75rem
    }

    .sst_section-subtitle {
        font-size: 1rem
    }

    .sst_featured-story__img-wrapper img {
        height: 350px
    }

    .sst_featured-story__quote-icon {
        width: 60px;
        height: 60px;
        bottom: -20px;
        right: 20px
    }

    .sst_featured-story__quote-icon svg {
        width: 28px;
        height: 28px
    }

    .sst_featured-story__journey {
        flex-direction: column;
        gap: 1rem
    }

    .sst_featured-story__journey-item {
        padding: 1rem
    }

    .sst_story-card__image {
        height: 240px
    }

    .sst_story-card__content {
        padding: 1.5rem
    }

    .sst_impact-numbers {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .sst_impact-card {
        padding: 2rem 1.5rem
    }

    .sst_impact-card__value {
        font-size: 2.25rem
    }

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

    .sst_journey-step {
        padding: 0
    }

    .sst_journey-step__icon {
        width: 70px;
        height: 70px
    }

    .sst_journey-step__icon svg {
        width: 30px;
        height: 30px
    }

    .sst_cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 20px
    }

    .sst_cta-section__icon {
        width: 60px;
        height: 60px
    }

    .sst_cta-section__icon svg {
        width: 30px;
        height: 30px
    }

    .sst_cta-section__btns {
        flex-direction: column;
        align-items: center
    }

    .sst_cta-section__btns .btn {
        width: 100%;
        max-width: 300px
    }



    .sst_sst_filter-tabs {
        gap: .5rem
    }

    .sst_filter-tab {
        padding: .6rem 1rem;
        font-size: .75rem
    }

    .sst_carousel__container {
        padding: 0 40px
    }

    .sst_carousel__btn {
        width: 36px;
        height: 36px
    }

    .sst_carousel__btn svg {
        width: 18px;
        height: 18px
    }

    .sst_testimonial-card {
        padding: 1.5rem
    }

    .sst_video-card__play {
        width: 60px;
        height: 60px
    }

    .sst_video-card__play svg {
        width: 24px;
        height: 24px
    }
}

@media(max-width:600px) {


    .sst_featured-story__name {
        font-size: 1.5rem
    }

    .sst_carousel__container {
        padding: 0 30px
    }

    .sst_carousel__btn {
        width: 30px;
        height: 30px
    }

    .sst_carousel__btn svg {
        width: 16px;
        height: 16px
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .sst_hero__container {
        padding: 7rem 0 4rem;
        margin-top: 98px;
    }

    .sst_hero__title {
        font-size: 1.875rem
    }

    .sst_hero__stats {
        flex-direction: column;
        gap: 1.25rem
    }

    .sst_section-title {
        font-size: 1.5rem
    }

    .sst_story-card__transformation {
        flex-direction: column;
        gap: .75rem
    }

    .sst_story-card__transform-arrow {
        transform: rotate(90deg)
    }

    .sst_impact-numbers {
        grid-template-columns: 1fr
    }

    .sst_impact-card__icon {
        width: 60px;
        height: 60px
    }

    .sst_impact-card__icon svg {
        width: 28px;
        height: 28px
    }

    .sst_impact-card__value {
        font-size: 2rem
    }

    .sst_carousel__container {
        padding: 0
    }

    .sst_carousel__btn {
        display: none
    }

    .sst_carousel__dots {
        margin-top: 1.5rem
    }
}

@media(max-width:400px) {
    .sst_hero__stat-value {
        font-size: 1.75rem
    }
}

@media(max-width:360px) {
    .sst_hero__title {
        font-size: 1.5rem
    }

    .sst_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .sst_section-title {
        font-size: 1.25rem
    }

    .btn {
        padding: .7rem 1rem;
        font-size: .75rem
    }

    .sst_section-subtitle {
        font-size: .9rem
    }

    .sst_story-card {
        border-radius: 16px
    }

    .sst_featured-story__img-wrapper {
        border-radius: 16px
    }

    .sst_featured-story__img-wrapper img {
        height: 280px
    }

    .sst_testimonial-card {
        padding: 1.25rem;
        border-radius: 16px
    }

    .sst_video-card {
        border-radius: 16px
    }
}


/* reports */


.report_btn--primary {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(166, 45, 60, .3)
}

.report_btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .4)
}

.report_btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900)
}

.report_btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, .4)
}

.report_btn--outline {
    border: 2px solid var(--burgundy-300);
    color: var(--burgundy-600)
}

.report_btn--outline:hover {
    background: var(--burgundy-50)
}

.report_btn--white {
    background: var(--white);
    color: var(--burgundy-700)
}

.report_btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.report_btn--sm {
    padding: .75rem 1.5rem;
    font-size: .8rem
}

.report_hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #3d1a1d 100%)
}

.report_hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5
}

.report_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.report_hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--gold-400);
    top: -150px;
    right: 15%;
    animation: pulse 8s ease-in-out infinite
}

.report_hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--burgundy-400);
    bottom: -100px;
    left: 10%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.report_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 5rem;
    text-align: center
}

.report_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.report_hero__badge svg {
    width: 20px;
    height: 20px
}

.report_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.report_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.report_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto
}

.report_section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.report_section-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--burgundy-600);
    margin-bottom: 1.25rem
}

.report_section-tag::before,
.report_section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy-300), var(--burgundy-500));
    border-radius: 2px
}

.report_section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem
}

.report_section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.report-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
    transition: all .4s;
    border: 1px solid var(--gray-100);
    position: relative
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15)
}

.report-card__cover {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.report-card__cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E")
}

.report-card__year-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: .5rem 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px
}

.report-card__preview {
    position: relative;
    z-index: 2;
    text-align: center
}

.report-card__pdf-icon {
    width: 100px;
    height: 120px;
    background: var(--white);
    border-radius: 8px;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.report-card__pdf-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--gray-200) 50%, var(--gray-100) 50%);
    border-radius: 0 8px 0 0
}

.report-card__pdf-icon svg {
    width: 40px;
    height: 40px;
    color: var(--pdf-red);
    margin-bottom: .25rem
}

.report-card__pdf-icon span {
    font-size: .6rem;
    font-weight: 700;
    color: var(--pdf-red);
    text-transform: uppercase;
    letter-spacing: .05em
}

.report-card__doc-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.4
}

.report-card__content {
    padding: 2rem
}

.report-card__year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy-600);
    margin-bottom: .5rem
}

.report-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem;
    line-height: 1.3
}

.report-card__desc {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.report-card__meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.report-card__meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--gray-500)
}

.report-card__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--burgundy-400)
}

.report-card__actions {
    display: flex;
    gap: 1rem
}

.report-card__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem 1.25rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s
}

.report-card__btn--view {
    background: var(--burgundy-50);
    color: var(--burgundy-600)
}

.report-card__btn--view:hover {
    background: var(--burgundy-100)
}

.report-card__btn--download {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(166, 45, 60, .25)
}

.report-card__btn--download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 45, 60, .35)
}

.report-card__btn svg {
    width: 18px;
    height: 18px
}

.report_transparency-section {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden
}

.report_transparency-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: .1
}

.report_transparency-section__content {
    position: relative;
    z-index: 2
}

.report_transparency-section__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem
}

.report_transparency-section__icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold-400)
}

.report_transparency-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2
}

.report_transparency-section__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin-bottom: 2rem
}

.report_transparency-section__list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.report_transparency-section__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem
}

.report_transparency-section__item svg {
    width: 24px;
    height: 24px;
    color: var(--gold-400);
    flex-shrink: 0
}

.report_transparency-section__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2
}

.report_transparency-stat {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s
}

.report_transparency-stat:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px)
}

.report_transparency-stat__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: .25rem
}

.report_transparency-stat__label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.cta-section {
    text-align: center;
    padding: 4rem 0
}

.report_cta-section__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-500)
}

.report_cta-section__icon svg {
    width: 40px;
    height: 40px
}

.report_cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem
}

.report_report_report_section-tag {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.report_cta-section__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}



@media(max-width:1200px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
    .report_hero__container{
        max-width: 100%;
        margin-top: -60px;
    }

    .report_transparency-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .report_transparency-section__list {
        align-items: center
    }

    .report_transparency-section__stats {
        max-width: 400px;
        margin: 0 auto
    }
}



@media(max-width:900px) {

    .reports-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .report_hero {
        min-height: auto
    }

    .report_hero__container {
        padding: 7rem 0 3rem;
        margin-top: -14px;
    }

    .report_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .report_hero__title {
        font-size: 2rem
    }

    .report_hero__desc {
        font-size: 1rem
    }

    .section {
        padding: 3rem 0
    }

    .report_section-header {
        margin-bottom: 2.5rem
    }

    .report_section-title {
        font-size: 1.75rem
    }

    .report-card__cover {
        height: 280px
    }

    .report-card__content {
        padding: 1.5rem
    }

    .report-card__year {
        font-size: 1.75rem
    }

    .report-card__title {
        font-size: 1.1rem
    }

    .report-card__actions {
        flex-direction: column
    }

    .report_transparency-section {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin-top: 3rem
    }

    .report_transparency-section__title {
        font-size: 1.5rem
    }

    .report_transparency-stat {
        padding: 1.5rem
    }

    .report_transparency-stat__value {
        font-size: 2rem
    }

    .report_cta-section__icon {
        width: 60px;
        height: 60px
    }

    .report_cta-section__icon svg {
        width: 30px;
        height: 30px
    }

    .report_cta-section__btns {
        flex-direction: column;
        align-items: center
    }

    .report_cta-section__btns .btn {
        width: 100%;
        max-width: 280px
    }


}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .report_hero__container{
        max-width: 100%;
        margin-top: 100px;
    }

    .report_hero__title {
        font-size: 1.75rem
    }

    .report_section-title {
        font-size: 1.5rem
    }

    .report-card__pdf-icon {
        width: 80px;
        height: 100px
    }

    .report-card__pdf-icon svg {
        width: 32px;
        height: 32px
    }

    .report-card__cover {
        height: 250px
    }

    .report_transparency-section__stats {
        grid-template-columns: 1fr
    }


}

@media(max-width:360px) {
    .report_hero__title {
        font-size: 1.5rem
    }

    .report_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .report_section-title {
        font-size: 1.25rem
    }


    .report-card {
        border-radius: 16px
    }

    .report-card__btn {
        padding: .75rem 1rem;
        font-size: .8rem
    }
}

/* contact */


.contact_hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #3d1a1d 100%)
}

.contact_hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5
}

.contact_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.contact_hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--gold-400);
    top: -150px;
    right: 15%;
    animation: pulse 8s ease-in-out infinite
}

.contact_hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--burgundy-400);
    bottom: -100px;
    left: 10%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.contact_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: -50px;
}

.contact_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.contact_hero__badge svg {
    width: 20px;
    height: 20px
}

.contact_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.contact_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto
}



.contact_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%)
}

.contact_contact-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: start
}

.contact-info {
    padding-right: 2rem
}

.contact-info__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--burgundy-600);
    margin-bottom: 1rem
}

.contact-info__tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--burgundy-400)
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.contact-info__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact-info__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem
}

.contact_contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    border-color: var(--burgundy-200)
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--burgundy-500)
}

.contact-card__content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .375rem
}

.contact-card__content p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6
}

.contact-card__content a {
    color: var(--burgundy-600);
    font-weight: 500;
    transition: color .2s
}

.contact-card__content a:hover {
    color: var(--burgundy-700)
}

.social-section {
    margin-bottom: 2.5rem
}

.contact_social-section__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem
}

.contact_contact_social-links {
    display: flex;
    gap: .75rem
}

.contact_social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    color: var(--gray-600);
    transition: all .3s
}

.contact_social-link:hover {
    background: var(--burgundy-500);
    border-color: var(--burgundy-500);
    color: var(--white);
    transform: translateY(-4px)
}

.contact_social-link svg {
    width: 22px;
    height: 22px
}

.office-hours {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden
}

.office-hours::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: .1
}

.office-hours__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.office-hours__icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-400)
}

.office-hours__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.office-hours__list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.office-hours__item {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: rgba(255, 255, 255, .8)
}

.office-hours__item span:last-child {
    color: var(--gold-400);
    font-weight: 500
}

.form-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    overflow: hidden;
    position: sticky;
    top: 100px
}

.form-header {
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
    padding: 2rem;
    text-align: center
}

.form-header__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.form-header__icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold-400)
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.form-header p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8)
}

.form-body {
    padding: 2rem
}

.form-group {
    margin-bottom: 1.25rem
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .5rem
}

.form-group label span {
    color: var(--burgundy-500)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: .95rem;
    color: var(--gray-800);
    transition: all .3s;
    background: var(--white)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-400);
    box-shadow: 0 0 0 4px rgba(166, 45, 60, .1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-row .form-group {
    margin-bottom: 0
}

.query-type-hint {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: var(--gold-200);
    border-radius: 10px;
    margin-bottom: 1.5rem
}

.query-type-hint svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px
}

.query-type-hint p {
    font-size: .8rem;
    color: var(--gray-700);
    line-height: 1.5
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.consent-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--burgundy-500);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer
}

.consent-check label {
    font-size: .8rem;
    color: var(--gray-600);
    line-height: 1.5;
    cursor: pointer
}

.consent-check a {
    color: var(--burgundy-600);
    text-decoration: underline
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    cursor: pointer;
    transition: all .3s;
    border: none
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .35)
}

.submit-btn svg {
    width: 20px;
    height: 20px
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100)
}

.form-footer svg {
    width: 16px;
    height: 16px;
    color: var(--success-green)
}

.form-footer span {
    font-size: .75rem;
    color: var(--gray-500)
}

.map-section {
    margin-top: 4rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
}

.map-section__header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-100)
}

.map-section__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.map-section__address {
    font-size: .95rem;
    color: var(--gray-500)
}

.map-section__frame {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(20%)
}

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

.quick-link {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.quick-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    border-color: var(--burgundy-200)
}

.quick-link__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.quick-link__icon svg {
    width: 28px;
    height: 28px;
    color: var(--burgundy-500)
}

.quick-link__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem
}

.quick-link__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 1rem
}

.quick-link__action {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--burgundy-600);
    transition: all .2s
}

.quick-link__action svg {
    width: 16px;
    height: 16px;
    transition: transform .2s
}

.quick-link:hover .quick-link__action svg {
    transform: translateX(4px)
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem
}

.success-message.show {
    display: block
}

.success-message__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-message__icon svg {
    width: 40px;
    height: 40px;
    color: var(--success-green)
}

.success-message__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .75rem
}

.success-message__text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem
}

.success-message__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.5rem;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    font-size: .9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all .3s;
    cursor: pointer
}

.success-message__btn:hover {
    background: var(--burgundy-100)
}



@media(max-width:1200px) {
    .contact_contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem
    }
    .contact_hero__container{
        margin-top: -60px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto
    }

    .contact-info__tag {
        justify-content: center
    }

    .contact-info__tag::before {
        display: none
    }

    .contact_contact-cards {
        max-width: 500px;
        margin: 0 auto 2.5rem
    }

    .form-wrapper {
        position: static;
        max-width: 500px;
        margin: 0 auto
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr)
    }
}



@media(max-width:768px) {
    .contact_hero {
        min-height: auto
    }

    .contact_hero__container {
        padding: 7rem 0 3rem;
        margin-top: -12px;
    }

    .contact_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .contact_hero__title {
        font-size: 2rem
    }

    .contact_hero__desc {
        font-size: 1rem
    }

    .section {
        padding: 3rem 0
    }

    .contact-info__title {
        font-size: 1.75rem
    }

    .contact-card {
        flex-direction: column;
        text-align: center
    }

    .contact-card__icon {
        margin: 0 auto
    }

    .contact_contact_social-links {
        justify-content: center
    }

    .form-header {
        padding: 1.5rem
    }

    .form-body {
        padding: 1.5rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .quick-link {
        padding: 1.5rem
    }

    .map-section__frame {
        height: 280px
    }


}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .contact_hero__container{
        margin-top: 100px;
    }

    .contact_hero__title {
        font-size: 1.75rem
    }

    .contact-card {
        padding: 1.25rem
    }

    .office-hours {
        padding: 1.5rem
    }

}

@media(max-width:360px) {
    .contact_hero__title {
        font-size: 1.5rem
    }

    .contact_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .contact-info__title {
        font-size: 1.5rem
    }

    .form-wrapper {
        border-radius: 16px
    }

    .submit-btn {
        padding: 1rem;
        font-size: .9rem
    }
}


/*  donation */


.dt_hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-900) 0%, #1a0508 50%, #3d1a1d 100%)
}

.dt_hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5
}

.dt_hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.dt_hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--gold-400);
    top: -150px;
    right: 15%;
    animation: pulse 8s ease-in-out infinite
}

.dt_hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--burgundy-400);
    bottom: -100px;
    left: 10%;
    animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.2);
        opacity: .5
    }
}

.dt_hero__container {
    position: relative;
    z-index: 2;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: -50px;
}

.dt_hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    background: rgba(229, 194, 159, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 194, 159, .25);
    color: var(--gold-400);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 50px;
    margin-bottom: 2rem
}

.dt_hero__badge svg {
    width: 20px;
    height: 20px
}

.dt_hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.dt_hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.dt_hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto
}



.dt_section--dark {
    background: linear-gradient(180deg, var(--burgundy-900) 0%, var(--burgundy-800) 100%)
}

.dt_donate-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start
}

.dt_donate-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    overflow: hidden;
    position: sticky;
    top: 100px
}

.dt_donate-form__header {
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
    padding: 2rem;
    text-align: center
}

.dt_donate-form__header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.dt_donate-form__header-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold-400)
}

.dt_donate-form__header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem
}

.dt_donate-form__header p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8)
}

.dt_donate-form__body {
    padding: 2rem
}

.dt_frequency-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 2rem
}

.dt_frequency-toggle__btn {
    flex: 1;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    transition: all .3s;
    cursor: pointer
}

.dt_frequency-toggle__btn.active {
    background: var(--white);
    color: var(--burgundy-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.dt_frequency-toggle__btn:hover:not(.active) {
    color: var(--gray-700)
}

.dt_amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem
}

.dt_amount-btn {
    padding: 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    cursor: pointer;
    transition: all .3s
}

.dt_amount-btn:hover {
    border-color: var(--burgundy-300);
    background: var(--burgundy-50)
}

.dt_amount-btn.active {
    border-color: var(--burgundy-500);
    background: var(--burgundy-50);
    color: var(--burgundy-600)
}

.dt_amount-btn span {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: .25rem
}

.dt_custom-amount {
    position: relative;
    margin-bottom: 2rem
}

.dt_custom-amount__label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .5rem
}

.dt_custom-amount__input-wrap {
    position: relative
}

.dt_custom-amount__prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-400)
}

.dt_custom-amount__input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: all .3s
}

.dt_custom-amount__input:focus {
    outline: none;
    border-color: var(--burgundy-400);
    box-shadow: 0 0 0 4px rgba(166, 45, 60, .1)
}

.dt_custom-amount__input::placeholder {
    color: var(--gray-400);
    font-weight: 400
}

.dt_form-section {
    margin-bottom: 1.5rem
}

.dt_form-section__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--gray-100)
}

.dt_form-section__title svg {
    width: 18px;
    height: 18px;
    color: var(--burgundy-500)
}

.dt_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem
}

.dt_form-row--single {
    grid-template-columns: 1fr
}

.dt_form-group {
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.dt_form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-600)
}

.dt_form-group label span {
    color: var(--burgundy-500)
}

.dt_form-group input,
.dt_form-group select,
.dt_form-group textarea {
    padding: .875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--gray-800);
    transition: all .3s;
    background: var(--white)
}

.dt_form-group input:focus,
.dt_form-group select:focus,
.dt_form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-400);
    box-shadow: 0 0 0 4px rgba(166, 45, 60, .1)
}

.dt_form-group input::placeholder {
    color: var(--gray-400)
}

.dt_form-group textarea {
    resize: vertical;
    min-height: 80px
}

.dt_form-group small {
    font-size: .7rem;
    color: var(--gray-500)
}

.dt_pan-info {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: var(--gold-200);
    border-radius: 10px;
    margin-bottom: 1.5rem
}

.dt_pan-info svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px
}

.dt_pan-info p {
    font-size: .8rem;
    color: var(--gray-700);
    line-height: 1.5
}

.dt_pan-info strong {
    color: var(--burgundy-700)
}

.dt_consent-group {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.dt_consent-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--burgundy-500);
    margin-top: 2px;
    flex-shrink: 0
}

.dt_consent-group label {
    font-size: .8rem;
    color: var(--gray-600);
    line-height: 1.5
}

.dt_consent-group a {
    color: var(--burgundy-600);
    text-decoration: underline
}

.dt_donate-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    cursor: pointer;
    transition: all .3s;
    border: none
}

.dt_donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(166, 45, 60, .35)
}

.dt_donate-btn svg {
    width: 20px;
    height: 20px
}

.dt_donate-btn__amount {
    background: rgba(255, 255, 255, .2);
    padding: .25rem .75rem;
    border-radius: 6px;
    font-size: .9rem
}

.dt_secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100)
}

.dt_secure-badge svg {
    width: 16px;
    height: 16px;
    color: var(--success-green)
}

.dt_secure-badge span {
    font-size: .75rem;
    color: var(--gray-500)
}

.dt_payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem
}

.dt_payment-icons img {
    height: 24px;
    opacity: .6;
    transition: opacity .3s
}

.dt_payment-icons img:hover {
    opacity: 1
}

.dt_impact-content {
    padding-right: 2rem
}

.dt_impact-content__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--burgundy-600);
    margin-bottom: 1rem
}

.dt_impact-content__tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--burgundy-400)
}

.dt_impact-content__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.dt_impact-content__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.dt_impact-content__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem
}

.dt_dt_impact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem
}

.dt_impact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.dt_impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
}

.dt_impact-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy-100), var(--burgundy-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.dt_impact-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--burgundy-500)
}

.dt_impact-card__amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy-600);
    margin-bottom: .25rem
}

.dt_impact-card__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.5
}

.dt_tax-benefits {
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-900));
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden
}

.dt_tax-benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: .1
}

.dt_tax-benefits__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: var(--gold-400);
    color: var(--burgundy-900);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 50px;
    margin-bottom: 1rem
}

.dt_tax-benefits__badge svg {
    width: 16px;
    height: 16px
}

.dt_tax-benefits__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem
}

.dt_tax-benefits__text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin-bottom: 1rem
}

.dt_tax-benefits__list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.dt_tax-benefits__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .9)
}

.dt_tax-benefits__item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400)
}

.dt_dt_trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap
}

.dt_trust-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.dt_trust-badge__icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.dt_trust-badge__icon svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy-500)
}

.dt_trust-badge__text {
    font-size: .8rem
}

.dt_trust-badge__text strong {
    display: block;
    color: var(--gray-800);
    font-weight: 600
}

.dt_trust-badge__text span {
    color: var(--gray-500)
}

.dt_faq-section {
    margin-top: 4rem
}

.dt_faq-section__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.dt_faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04)
}

.dt_faq-item__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    transition: all .3s
}

.dt_faq-item__question:hover {
    color: var(--burgundy-600)
}

.dt_faq-item__question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform .3s;
    flex-shrink: 0
}

.dt_faq-item.active .dt_faq-item__question svg {
    transform: rotate(180deg);
    color: var(--burgundy-500)
}

.dt_faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out
}

.dt_faq-item.active .dt_faq-item__answer {
    max-height: 300px
}

.dt_faq-item__answer-content {
    padding: 0 1.5rem 1.25rem;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7
}

.other-ways {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center
}

.other-ways__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem
}

.other-ways__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.other-ways__item {
    padding: 1.5rem;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    transition: all .3s
}

.other-ways__item:hover {
    border-color: var(--burgundy-200);
    background: var(--burgundy-50)
}

.other-ways__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.other-ways__item:hover .other-ways__icon {
    background: var(--burgundy-100)
}

.other-ways__icon svg {
    width: 24px;
    height: 24px;
    color: var(--burgundy-500)
}

.other-ways__label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: .25rem
}

.other-ways__desc {
    font-size: .8rem;
    color: var(--gray-500)
}


@media(max-width:1200px) {
    .dt_donate-layout {
        grid-template-columns: 1fr;
        gap: 3rem
    }
    .dt_hero__container{
        margin-top: -60px;
    }

    .dt_donate-form-wrapper {
        position: static;
        max-width: 500px;
        margin: 0 auto
    }

    .dt_impact-content {
        padding-right: 0;
        text-align: center
    }

    .dt_impact-content__tag {
        justify-content: center
    }

    .dt_impact-content__tag::before {
        display: none
    }

    .dt_dt_impact-cards {
        max-width: 500px;
        margin: 0 auto 2.5rem
    }

    .dt_tax-benefits {
        max-width: 500px;
        margin: 0 auto 2.5rem
    }

    .dt_dt_trust-badges {
        justify-content: center
    }

    .dt_faq-section {
        max-width: 600px;
        margin: 4rem auto 0
    }
}




@media(max-width:768px) {
    .dt_hero {
        min-height: auto
    }

    .dt_hero__container {
        padding: 7rem 0 3rem;
        margin-top: -14px;
    }

    .dt_hero__badge {
        font-size: .65rem;
        padding: .6rem 1rem
    }

    .dt_hero__title {
        font-size: 2rem
    }

    .dt_hero__desc {
        font-size: 1rem
    }

    .section {
        padding: 3rem 0
    }

    .dt_donate-form__header {
        padding: 1.5rem
    }

    .dt_donate-form__body {
        padding: 1.5rem
    }

    .dt_form-row {
        grid-template-columns: 1fr
    }

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

    .dt_impact-content__title {
        font-size: 1.75rem
    }

    .dt_dt_impact-cards {
        grid-template-columns: 1fr
    }

    .other-ways__grid {
        grid-template-columns: 1fr
    }

    .dt_dt_trust-badges {
        flex-direction: column;
        align-items: stretch
    }


}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }
    .dt_hero__container{
        margin-top: 100px;
    }

    .dt_hero__title {
        font-size: 1.75rem
    }

    .dt_amount-btn {
        padding: .875rem .5rem;
        font-size: 1rem
    }

    .dt_donate-form__header h2 {
        font-size: 1.25rem
    }

    .dt_frequency-toggle__btn {
        padding: .625rem .5rem;
        font-size: .75rem
    }


}

@media(max-width:360px) {
    .dt_hero__title {
        font-size: 1.5rem
    }

    .dt_hero__badge {
        font-size: .55rem;
        padding: .5rem .875rem
    }

    .dt_amount-grid {
        grid-template-columns: 1fr 1fr
    }

    .dt_donate-form-wrapper {
        border-radius: 16px
    }
}



/* ===== NESTED DROPDOWN ===== */

/* ===== NESTED DROPDOWN ===== */
.nav__nested-wrap {
    position: relative;
}

.nav__nested-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.nav__nested-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav__nested-trigger.active svg {
    transform: rotate(90deg);
}

/* HIDE BY DEFAULT - IMPORTANT */
.nav__nested-menu {
    display: none !important;
    min-width: 220px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    z-index: 1003;
}

/* Show only when has inline style display:block */
.nav__nested-menu[style*="display: block"],
.nav__nested-menu[style*="display:block"] {
    display: block !important;
}

.nav__nested-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    border-radius: 10px;
    font-size: 0.825rem;
    transition: all 0.2s;
}

.nav__nested-menu a:hover {
    background: var(--burgundy-50);
    color: var(--burgundy-700);
}

/* Desktop */
@media (min-width: 769px) {
    .nav__nested-menu {
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 8px;
    }

    .nav__nested-trigger:hover+.nav__nested-menu,
    .nav__nested-menu:hover {
        display: block !important;
    }

    .nav__nested-trigger:hover svg {
        transform: rotate(90deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav__nested-trigger {
        background-color: rgba(139, 69, 69, 0.08);
        border-radius: 8px;
        margin: 0.25rem 0;
        padding: 0.75rem 1rem;
    }

    .nav__nested-menu {
        position: static !important;
        box-shadow: none;
        margin-left: 0.5rem;
        margin-top: 0.25rem;
        /* background: rgba(0, 0, 0, 0.03); */
        border-radius: 8px;
    }

    .nav__nested-menu a {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}