/* Custom Modern Design Enhancements */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --thm-base: #2563eb;
    --thm-base-rgb: 37, 99, 235;
    --thm-black: #0f172a;
    --thm-gray: #64748b;
    --thm-black-rgb: 15, 23, 42;
    --thm-primary: #2563eb; /* Modern Blue */
    --thm-primary-rgb: 37, 99, 235;
    --thm-secondary: #10b981; /* Emerald Green */
    --thm-secondary-rgb: 16, 185, 129;
    --bg-light: #f8fafc;
}

body.custom-cursor {
    font-family: 'Inter', sans-serif;
    color: var(--thm-gray);
    background-color: var(--bg-light);
    line-height: 1.7;
}

body.home-modern {
    --givewell-base: var(--thm-primary);
    --givewell-base-rgb: var(--thm-primary-rgb);
}

h1, h2, h3, h4, h5, h6,
.section-title__title,
.banner-one__title,
.banner-one__title-two {
    font-family: 'Outfit', sans-serif !important;
    color: var(--thm-black);
    font-weight: 700;
}

/* Buttons */
.thm-btn {
    
    border-radius:10px !important;
    letter-spacing: 0.5px;
    
}

.thm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.thm-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(var(--thm-primary-rgb), 0.35) !important;
    background-color: #1d4ed8 !important;
}

.thm-btn:hover::before {
    transform: translateX(100%);
}

/* Cards (Services, Cases, Blogs, Team) */
.services-one__single,
.case-one__single,
.blog-one__single,
.team-two__single {
    background: #ffffff;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease !important;
    overflow: hidden;
}

.services-one__single:hover,
.case-one__single:hover,
.blog-one__single:hover,
.team-two__single:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.case-one__img img,
.blog-one__img img,
.team-two__img img {
    transition: transform 0.6s ease;
}

.case-one__single:hover .case-one__img img,
.blog-one__single:hover .blog-one__img img,
.team-two__single:hover .team-two__img img {
    transform: scale(1.05);
}

/* Header & Navbar Glassmorphism */
.main-header {
    background: transparent;
}

.stricky-header.stricked-menu {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.main-menu__list > li > a {
    color: var(--thm-black) !important;
    font-weight: 500 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease !important;
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
    color: var(--thm-primary) !important;
}

/* Section Titles */
.section-title__tagline {
    color: var(--thm-primary) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(var(--thm-primary-rgb), 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title__tagline-icon {
    display: none; /* Make it cleaner */
}

body.home-modern .section-title__tagline {
    box-shadow: inset 0 0 0 1px rgba(var(--thm-primary-rgb), 0.08);
}

/* Hero / Banner */
.banner-one__title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, #1c3262, var(--thm-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.home-modern .banner-one__sub-title {
    color: var(--thm-primary) !important;
}

body.home-modern .banner-one__title-two {
    color: var(--thm-gray) !important;
}

/* Donation Form (Glass Effect) */
.donation-form-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top right, rgba(var(--thm-primary-rgb), 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(var(--thm-secondary-rgb), 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.9)) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 28px !important;
    padding: 40px !important;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
}

.donation-form-one:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 72px rgba(15, 23, 42, 0.16) !important;
}

.donation-form-one::before,
.donation-form-one::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.donation-form-one::before {
    top: -85px;
    right: -72px;
    width: 210px;
    height: 210px;
    background: rgba(var(--thm-primary-rgb), 0.16);
}

.donation-form-one::after {
    left: -52px;
    bottom: -52px;
    width: 165px;
    height: 165px;
    background: rgba(var(--thm-secondary-rgb), 0.18);
}

.donation-form-one .inner-title {
    text-align: left;
    padding-bottom: 18px;
}

.donation-form-one__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--thm-primary-rgb), 0.1);
    color: var(--thm-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.donation-form-one__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--thm-secondary);
    box-shadow: 0 0 0 6px rgba(var(--thm-secondary-rgb), 0.12);
}

.donation-form-one .inner-title h3 {
    position: relative;
    z-index: 1;
    font-size: 38px;
    line-height: 1.15;
    margin: 18px 0 14px;
    color: var(--thm-black);
   
}

.donation-form-one__intro {
    position: relative;
    z-index: 1;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--thm-gray);
}

.donation-form-one__highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 4px 0 26px;
}

.donation-form-one__highlight-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(var(--thm-primary-rgb), 0.08);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.donation-form-one__highlight-card--accent {
    background: linear-gradient(135deg, rgba(var(--thm-primary-rgb), 0.1), rgba(var(--thm-secondary-rgb), 0.14));
}

.donation-form-one__highlight-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: var(--givewell-white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 14px 20px rgba(var(--thm-primary-rgb), 0.2);
}

.donation-form-one__highlight-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--thm-black);
}

.donation-form-one__highlight-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--thm-gray);
}

.donation-form-one .default-form2 {
    position: relative;
    z-index: 1;
}

.donation-form-one .form-group input[type="text"],
.donation-form-one .form-group input[type="email"],
.donation-form-one .form-group select,
.donation-form-one .nice-select {
    min-height: 62px;
    border-radius: 18px !important;
    border: 1px solid rgba(var(--thm-primary-rgb), 0.1) !important;
    padding: 16px 20px !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.donation-form-one .form-group input:focus,
.donation-form-one .nice-select.open {
    border-color: var(--thm-primary) !important;
    box-shadow: 0 0 0 4px rgba(var(--thm-primary-rgb), 0.1) !important;
    outline: none !important;
}

.donation-form-one .form-group label {
    margin-bottom: 14px;
    color: var(--thm-black);
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.donation-form-one .form-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.donation-form-one .form-group ul li {
    float: none !important;
}

.donation-form-one .form-group ul li + li {
    margin-left: 0 !important;
}

.donation-form-one .form-group ul li label {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 54px;
    padding: 14px 18px 14px 46px !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(var(--thm-primary-rgb), 0.1);
    color: var(--thm-black) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.donation-form-one .form-group ul li input[type=radio] + label i {
    top: 50% !important;
    left: 18px !important;
    width: 16px !important;
    height: 16px !important;
    transform: translateY(-50%);
    border: 1px solid rgba(var(--thm-primary-rgb), 0.28) !important;
}

.donation-form-one .form-group ul li input[type=radio] + label i::before {
    background-color: var(--thm-secondary) !important;
}

.donation-form-one .form-group ul li input[type=radio]:checked + label {
    background: linear-gradient(135deg, rgba(var(--thm-primary-rgb), 0.12), rgba(var(--thm-secondary-rgb), 0.14));
    border-color: rgba(var(--thm-primary-rgb), 0.26);
    color: var(--thm-primary) !important;
    transform: translateY(-2px);
}

.donation-form-one .form-group ul li input[type=radio]:checked + label i {
    border-color: var(--thm-secondary) !important;
}

.donation-form__btn-box {
    padding-top: 8px;
}

.donation-form__btn-box .thm-btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary)) !important;
    border: none;
    box-shadow: 0 18px 32px rgba(var(--thm-primary-rgb), 0.25);
}

.donation-form__btn-box .thm-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #059669) !important;
}

body.home-modern .case-one {
    padding-top: 115px;
}

body.home-modern .case-one__main-tab-box {
    margin-top: 22px;
}

body.home-modern .case-one-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

body.home-modern .case-one-tab-buttons li {
    margin: 0 !important;
    border: 1px solid rgba(var(--thm-primary-rgb), 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: var(--thm-black);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

body.home-modern .case-one-tab-buttons li.active-btn,
body.home-modern .case-one-tab-buttons li:hover {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    border-color: transparent;
    color: var(--givewell-white);
}

body.home-modern .case-one__single {
    border-radius: 24px !important;
    border: 1px solid rgba(var(--thm-primary-rgb), 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06) !important;
}

body.home-modern .case-one__sub-title,
body.home-modern .case-one__title a:hover,
body.home-modern .benefits-one__icon span,
body.home-modern .benefits-one__arrow a,
body.home-modern .testimonial-one__client-name span,
body.home-modern .blog-one__tag-text,
body.home-modern .blog-one__user-icon span,
body.home-modern .get-app__text .count-text {
    color: var(--thm-primary) !important;
}

body.home-modern .benefits-one__single {
    border-radius: 22px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

body.home-modern .benefits-one__arrow a {
    border-color: rgba(var(--thm-primary-rgb), 0.18);
    background: rgba(255, 255, 255, 0.92);
}

body.home-modern .benefits-one__arrow a:hover {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: var(--givewell-white) !important;
}

body.home-modern .testimonial-one__single {
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

body.home-modern .testimonial-one__rating .star {
    color: #f59e0b;
}

body.home-modern .blog-one__tag {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
}

body.home-modern .blog-one__tag-icon span,
body.home-modern .blog-one__tag-text {
    color: var(--givewell-white) !important;
}

body.home-modern .blog-one__title a:hover,
body.home-modern .blog-one__btn {
    color: var(--thm-primary);
}

body.home-modern .get-app__inner {
    background:
        radial-gradient(circle at top right, rgba(var(--thm-secondary-rgb), 0.22), transparent 28%),
        linear-gradient(135deg, #123c73, #0f766e);
    border-radius: 28px;
    box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
}

body.home-modern .get-app__btn-1:hover,
body.home-modern .get-app__btn-2:hover {
    background-color: var(--thm-primary);
    border-color: var(--thm-primary);
}

@media (max-width: 991px) {
    .donation-form-one {
        margin-top: 24px;
    }

    .donation-form-one .inner-title h3 {
        max-width: none;
        font-size: 32px;
    }

    .donation-form-one__highlights {
        grid-template-columns: 1fr;
    }

    body.home-modern .case-one-tab-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .donation-form-one {
        padding: 28px !important;
    }

    .donation-form-one .inner-title h3 {
        font-size: 28px;
    }

    .donation-form-one .form-group ul li label {
        min-width: 100%;
    }
}

/* About Advanced Layout */
.about-one {
    position: relative;
}

.about-one .row {
    align-items: stretch !important;
}

.about-one .col-xl-6 {
    display: flex;
}

.about-one__left--advanced {
    position: relative;
    width: 100%;
    display: flex;
}

.about-one__glass-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 40px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.10);
}

.about-one__right {
    width: 100%;
    display: flex;
}

.about-one__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.about-one__orb--one {
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: rgba(var(--thm-primary-rgb), 0.12);
}

.about-one__orb--two {
    left: -50px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    background: rgba(var(--thm-secondary-rgb), 0.14);
}

.about-one__feature-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-one__feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(var(--thm-primary-rgb), 0.10);
    color: var(--thm-black);
    font-weight: 600;
}

.about-one__feature-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: #ffffff;
    font-size: 15px;
}

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

.about-one__stat-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.about-one__stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 16px 28px rgba(var(--thm-primary-rgb), 0.18);
}

.about-one__stat-content h3 {
    margin: 4px 0 8px;
    color: var(--thm-black);
    font-size: 20px;
}

.about-one__stat-content p {
    margin: 0;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Mission & Vision Showcase */
.mission-vision-showcase {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(var(--thm-primary-rgb), 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(var(--thm-secondary-rgb), 0.14), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef8f4 100%);
}

.mission-vision-showcase__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.mission-vision-showcase__shape--one {
    top: 40px;
    left: -90px;
    width: 230px;
    height: 230px;
    background: rgba(var(--thm-primary-rgb), 0.12);
}

.mission-vision-showcase__shape--two {
    right: -80px;
    bottom: 40px;
    width: 260px;
    height: 260px;
    background: rgba(var(--thm-secondary-rgb), 0.14);
}

.mission-vision-showcase__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.mission-vision-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.mission-vision-card--mission {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.92));
}

.mission-vision-card--vision {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 253, 245, 0.92));
}

.mission-vision-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--thm-black);
    background: rgba(var(--thm-black-rgb), 0.05);
}

.mission-vision-card__badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    font-size: 18px;
}

.mission-vision-card h3 {
    margin: 24px 0 18px;
    font-size: 34px;
    line-height: 1.2;
    color: var(--thm-black);
}

.mission-vision-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: var(--thm-gray);
    max-width: 540px;
}

.mission-vision-card__accent {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--thm-primary-rgb), 0.20), rgba(var(--thm-secondary-rgb), 0.16));
}

/* Leadership Showcase */
.trustees-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(var(--thm-primary-rgb), 0.10), transparent 26%),
        radial-gradient(circle at bottom left, rgba(var(--thm-secondary-rgb), 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef8f4 100%);
}

.trustees-section__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.trustees-section__shape--one {
    top: 30px;
    right: -90px;
    width: 240px;
    height: 240px;
    background: rgba(var(--thm-primary-rgb), 0.12);
}

.trustees-section__shape--two {
    left: -80px;
    bottom: 30px;
    width: 250px;
    height: 250px;
    background: rgba(var(--thm-secondary-rgb), 0.14);
}

.leadership-constellation {
    position: relative;
    z-index: 1;
}

.leadership-constellation__core {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 44px 36px;
    text-align: center;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

.leadership-constellation__badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(var(--thm-primary-rgb), 0.08);
    color: var(--thm-black);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.leadership-constellation__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin: 22px 0 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 20px 36px rgba(var(--thm-primary-rgb), 0.24);
}

.leadership-constellation__core h3 {
    margin: 0 0 10px;
    font-size: 36px;
    color: var(--thm-black);
}

.leadership-constellation__core span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--thm-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leadership-constellation__core p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 1.8;
}

.leadership-constellation__ring {
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(var(--thm-primary-rgb), 0.18);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: orbitSpin 18s linear infinite;
}

.leadership-constellation__ring--one {
    width: 280px;
    height: 280px;
}

.leadership-constellation__ring--two {
    width: 390px;
    height: 390px;
    animation-direction: reverse;
    animation-duration: 24s;
    border-color: rgba(var(--thm-secondary-rgb), 0.18);
}

.leadership-constellation__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.leader-orbit-card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatLeader 6s ease-in-out infinite;
}

.leader-orbit-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 28px 68px rgba(15, 23, 42, 0.12);
}

.leader-orbit-card__glow {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--thm-primary-rgb), 0.18), rgba(var(--thm-secondary-rgb), 0.16));
}

.leader-orbit-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-secondary));
    color: #ffffff;
    font-size: 18px;
}

.leader-orbit-card h4 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--thm-black);
}

.leader-orbit-card span {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.6;
}

.leader-orbit-card--a {
    animation-delay: 0s;
}

.leader-orbit-card--b {
    animation-delay: .6s;
}

.leader-orbit-card--c {
    animation-delay: 1.2s;
}

.leader-orbit-card--d {
    animation-delay: 1.8s;
}

.leader-orbit-card--e {
    animation-delay: 2.4s;
}

.leader-orbit-card--f {
    animation-delay: 3s;
}

/* Custom Cursor */
.custom-cursor__cursor {
    border: 2px solid var(--thm-primary);
}
.custom-cursor__cursor-two {
    background-color: var(--thm-primary);
}

/* Progress Bars */
.case-one__progress .bar {
    background-color: #e2e8f0;
    border-radius: 10px;
    height: 12px;
}
.case-one__progress .bar-inner {
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-secondary)) !important;
    border-radius: 10px;
}
.case-one__progress .count-text {
    background-color: var(--thm-primary);
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Footer Improvements */
.site-footer {
    background-color: var(--thm-black) !important;
    color: #94a3b8 !important;
    border-top: 5px solid var(--thm-primary);
}
.site-footer__title {
    color: #ffffff !important;
    font-weight: 600;
}
.site-footer a {
    color: #cbd5e1 !important;
    transition: all 0.3s ease;
}
.site-footer a:hover {
    color: var(--thm-primary) !important;
    padding-left: 5px;
}

/* Utility Animations */
.float-bob-y {
    animation-duration: 4s;
}

/* Odometer / Counters */
.count-text {
    font-family: 'Outfit', sans-serif;
    color: var(--thm-primary);
    font-weight: 800;
}

@media (max-width: 991px) {
    .about-one__left--advanced {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-one__right {
        padding-left: 0;
    }

    .about-one__stats-grid,
    .mission-vision-showcase__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .about-one__glass-panel {
        padding: 26px;
    }

    .donation-form-one {
        padding: 26px !important;
    }

    .about-one__stats-grid,
    .leadership-constellation__grid {
        grid-template-columns: 1fr;
    }

    .about-one__stat-card {
        padding: 18px;
    }

    .mission-vision-showcase {
        padding: 90px 0;
    }

    .mission-vision-card {
        padding: 28px;
    }

    .mission-vision-card h3 {
        font-size: 28px;
    }

    .trustees-section {
        padding: 90px 0;
    }

    .leadership-constellation__core {
        padding: 28px 22px;
    }

    .leadership-constellation__core h3 {
        font-size: 28px;
    }

    .leader-orbit-card h4 {
        font-size: 22px;
    }
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatLeader {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}
