/* Global base reset */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #030712;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input, textarea, select {
    font: inherit;
}

/* --- HERO SLIDER BASE STYLES --- */
.hero-slider {
    background-color: #030712;
    width: 100%;
    min-height: 560px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: min(94%, 1250px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    min-height: 460px;
}

.slide-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.init-tag {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.slide-title {
    color: goldenrod;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.slide-desc {
    color: #94a3b8;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

.slide-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-know-more {
    background-color: #10b981;
    color: #ffffff;
    border: 1px solid #10b981;
}

.btn-know-more:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.btn-know-more i {
    transition: transform 0.2s ease;
}

.btn-know-more:hover i {
    transform: translateX(4px);
}

.btn-donate {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #334155;
}

.btn-donate:hover {
    background-color: #1e293b;
    border-color: #475569;
    transform: translateY(-2px);
}

.btn-donate i {
    color: #ef4444;
}

.slide-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.img-floating-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: darkgoldenrod;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 1.6s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero-slider .swiper-pagination-bullet {
    background: #475569;
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #10b981 !important;
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.hero-slider .swiper-pagination {
    bottom: 20px !important;
}

@media (max-width: 992px) {
    .hero-slider {
        padding: 40px 0 80px;
    }
    .slider-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .slide-text-content {
        align-items: center;
        text-align: center;
    }
    .slide-desc {
        margin-inline: auto;
    }
    .slide-btns {
        justify-content: center;
    }
    .slide-image-content {
        order: -1;
    }
}

@media (max-width: 560px) {
    .slider-container {
        width: 92%;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    .img-floating-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: 12px;
        left: 12px;
    }
}

/* ==========================================================================
   ABOUT PREVIEW SECTION
   ========================================================================== */
.about-preview {
    background-color: #030712;
    color: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-preview .container {
    width: min(94%, 1250px);
    margin: 0 auto;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text .subtitle {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    background: rgba(255, 215, 0, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: inline-block;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 35px;
    text-align: justify;
}

.btn-s.btn-apply {
    text-decoration: none;
    background: linear-gradient(135deg, #8b6914, #d4af37, #ffd700);
    color: #000000;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-s.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    max-width: 540px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
}

@media (max-width: 992px) {
    .about-preview {
        padding: 70px 0;
    }
    .about-flex {
        flex-direction: column;
        gap: 45px;
    }
    .about-text {
        align-items: center;
        text-align: center;
    }
    .about-text p {
        text-align: center;
        max-width: 650px;
    }
    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .about-preview {
        padding: 50px 0;
    }
    .about-preview .container {
        width: 92%;
    }
    .about-text h2 {
        margin-bottom: 16px;
    }
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .btn-s.btn-apply {
        width: 100%;
        text-align: center;
    }
    .about-image img {
        border-radius: 16px;
    }
}

/* ==========================================================================
   PILLARS GRID SECTION
   ========================================================================== */
.pillars-section {
    background-color: #030712;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.pillars-container {
    width: min(94%, 1300px);
    background-color: #091124;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pillar-card {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pillar-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.pillar-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.pillar-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pillar-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.pillar-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.feed-pillar::before { background-color: #ff6b35; }
.feed-pillar .pillar-icon-box { background-color: rgba(255, 107, 53, 0.12); color: #ff6b35; }
.feed-pillar .pillar-badge { background-color: rgba(255, 107, 53, 0.18); color: #ff6b35; }

.education-pillar::before { background-color: #10b981; }
.education-pillar .pillar-icon-box { background-color: rgba(16, 185, 129, 0.12); color: #10b981; }
.education-pillar .pillar-badge { background-color: rgba(16, 185, 129, 0.18); color: #10b981; }

.care-pillar::before { background-color: #ec4899; }
.care-pillar .pillar-icon-box { background-color: rgba(236, 72, 153, 0.12); color: #ec4899; }
.care-pillar .pillar-badge { background-color: rgba(236, 72, 153, 0.18); color: #ec4899; }

.career-pillar::before { background-color: #3b82f6; }
.career-pillar .pillar-icon-box { background-color: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.career-pillar .pillar-badge { background-color: rgba(59, 130, 246, 0.18); color: #3b82f6; }

.pillar-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.pillar-card:hover .pillar-icon-box {
    transform: translateY(-5px) scale(1.05);
}

@media (max-width: 1024px) {
    .pillars-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-card:not(:last-child) {
        border-right: none;
    }
    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 650px) {
    .pillars-section {
        padding: 40px 15px;
    }
    .pillars-container {
        grid-template-columns: 1fr;
    }
    .pillar-card {
        padding: 38px 24px;
    }
    .pillar-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-section {
    background-color: transparent;
    padding: 60px 0;
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.services-section .col-md-4 {
    width: 33.3333%;
    padding: 15px;
}

.service-card {
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.service-img {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    min-height: 70px;
}

.service-card p {
    margin-bottom: 25px;
    max-width: 90%;
    min-height: 90px;
    color: #94a3b8;
    line-height: 1.7;
}

.btn-apply {
    margin-top: auto;
}

@media (max-width: 991px) {
    .services-section .col-md-4 {
        width: 50%;
    }
    .service-card {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .services-section .col-md-4 {
        width: 100%;
    }
    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }
    .service-card h3 {
        font-size: 1.5rem;
    }
    .btn-apply {
        width: 100%;
    }
}

/* ==========================================================================
   VIBRANT GRADIENT IMPACT SECTION
   ========================================================================== */
.impact-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 20%, #1d4ed8 75%, #1e40af 100%);
    padding: 90px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.impact-container {
    width: min(94%, 1100px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impact-tag i {
    font-size: 11px;
}

.impact-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.impact-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 55px;
}

.impact-stats-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.impact-stat-item {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.impact-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.impact-stat-item:hover {
    transform: scale(1.08);
}

.impact-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

@media (max-width: 992px) {
    .impact-section {
        padding: 70px 0;
    }
    .impact-desc {
        margin-bottom: 40px;
    }
    .impact-stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
        padding: 35px 10px;
    }
    .impact-stat-item:nth-child(2) {
        border-right: none;
    }
    .impact-stat-item:nth-child(1),
    .impact-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 25px;
    }
}

@media (max-width: 550px) {
    .impact-section {
        padding: 55px 0;
    }
    .impact-stats-box {
        grid-template-columns: 1fr;
        gap: 25px 0;
        border-radius: 20px;
        padding: 30px 15px;
    }
    .impact-stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}

/* ==========================================================================
   TESTIMONIAL STORIES SECTION
   ========================================================================== */
.testimonial-section {
    background-color: #030712;
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-section .container {
    width: min(94%, 1250px);
    margin: 0 auto;
}

.testimonial-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-section .subtitle {
    color: #10b981;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.testimonial-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.testimonial-section h2 .highlight {
    color: #10b981;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3.5rem;
    color: rgba(16, 185, 129, 0.05);
    z-index: -1;
    transition: all 0.4s ease;
}

.testi-text {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    font-size: 13px;
    margin-right: 3px;
}

.stars i.far {
    color: #475569;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.testi-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: border-color 0.3s ease;
}

.user-info h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.user-info span {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 500;
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background-color: #131c35;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.03);
}

.testimonial-card:hover .quote-icon {
    color: rgba(16, 185, 129, 0.12);
    transform: rotate(-10deg) scale(1.05);
}

.testimonial-card:hover .testi-user img {
    border-color: #10b981;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .testimonial-section {
        padding: 60px 0;
    }
}

@media (max-width: 650px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 30px 24px;
    }
    .testimonial-section .section-title {
        margin-bottom: 35px;
    }
}

/* ==========================================================================
   CAMPAIGNS GRID SECTION
   ========================================================================== */
.campaigns-section {
    background-color: #030712;
    padding: 80px 0;
}

.campaigns-section * {
    box-sizing: border-box;
}

.campaigns-container {
    width: min(94%, 1250px);
    margin: 0 auto;
}

.campaigns-header {
    text-align: center;
    margin-bottom: 50px;
}

.campaigns-subtitle {
    color: #10b981;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.campaigns-main-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.campaigns-highlight {
    color: #10b981;
}

.campaigns-description {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.camp-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.camp-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.camp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.camp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    z-index: 5;
}

.badge-education { background-color: #10b981; box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25); }
.badge-medical { background-color: #3b82f6; box-shadow: 0 6px 15px rgba(59, 130, 246, 0.25); }
.badge-environment { background-color: #22c55e; box-shadow: 0 6px 15px rgba(34, 197, 94, 0.25); }

.camp-content-box {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.camp-content-box h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.camp-content-box p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.camp-action-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
}

.btn-camp-action {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    flex-grow: 1;
    transition: all 0.25s ease;
}

.btn-camp-action:hover {
    background-color: #10b981;
    border-color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.btn-camp-circle-view {
    width: 45px;
    height: 45px;
    background-color: #1e293b;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-camp-circle-view:hover {
    background-color: #ffffff;
    color: #030712;
    transform: scale(1.05);
}

.btn-camp-circle-view i {
    transition: transform 0.3s ease;
}

.btn-camp-circle-view:hover i {
    transform: rotate(-45deg);
}

.camp-card:hover {
    transform: translateY(-8px);
    background-color: #131c35;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.camp-card:hover .camp-img-box img {
    transform: scale(1.06);
}

.camp-card:hover h3 {
    color: #10b981;
}

@media (max-width: 992px) {
    .campaigns-section {
        padding: 60px 0;
    }
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 650px) {
    .campaigns-container {
        width: 92%;
    }
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .camp-content-box {
        padding: 25px 20px;
    }
    .btn-camp-action {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   PREMIUM GLASSMORPHISM CTA SECTION
   ========================================================================== */
.cta-section {
    background-color: #030712;
    padding: 80px 0;
}

.cta-section * {
    box-sizing: border-box;
}

.cta-section .container {
    width: min(94%, 1200px);
    margin: 0 auto;
}

.cta-box {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)), #0f172a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-text {
    flex: 1;
    max-width: 650px;
    text-align: left;
    z-index: 2;
}

.cta-text h2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-text .highlight-orange {
    color: #ea580c;
    position: relative;
}

.cta-text p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    z-index: 2;
}

.cta-btns a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-main {
    background-color: #c2410c;
    color: #ffffff;
    border: 1px solid #c2410c;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.25);
}

.btn-main:hover {
    background-color: #ea580c;
    border-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.35);
}

.btn-main i {
    transition: transform 0.2s ease;
}

.btn-main:hover i {
    transform: scale(1.2);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-outline-white i {
    color: #94a3b8;
    transition: all 0.2s ease;
}

.btn-outline-white:hover i {
    color: #10b981;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .cta-box {
        padding: 40px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-text {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .cta-section {
        padding: 50px 0;
    }
    .cta-box {
        padding: 35px 20px;
        border-radius: 20px;
    }
    .cta-btns {
        flex-direction: column;
        width: 100%;
    }
    .cta-btns a {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   GALLERY GRID SECTION
   ========================================================================== */
   /*=====================================
   PREMIUM GALLERY SECTION
======================================*/

.custom-gallery-section{
    background: linear-gradient(135deg,#050505,#101010,#181818);
    padding:80px 5%;
    position:relative;
    overflow:hidden;
}

.custom-gallery-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(120px);
}

.custom-gallery-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.05);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
    filter:blur(120px);
}

/*=====================================
   HEADER
======================================*/

.gallery-header-block{
    text-align:center;
    margin-bottom:60px;
}

.gallery-mini-tag{
    display:inline-block;
    color:#ffc107;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gallery-section-title{
    font-size:42px;
    font-weight:800;
    color:#fff;
    position:relative;
    display:inline-block;
    margin:0;
}

.gallery-section-title::after{
    content:"";
    position:absolute;
    width:80px;
    height:4px;
    background:#ffc107;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
    border-radius:20px;
    box-shadow:0 0 15px #ffc107;
}

/*=====================================
   GALLERY GRID
======================================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/*=====================================
   CARD
======================================*/

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#111;
    border:1px solid rgba(255,193,7,.15);
    cursor:pointer;
    transition:.5s ease;
}

.gallery-card:hover{
    transform:translateY(-10px);
    border-color:#ffc107;
    box-shadow:
        0 10px 25px rgba(255,193,7,.15),
        0 0 25px rgba(255,193,7,.1);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:1s ease;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

/*=====================================
   OVERLAY
======================================*/

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.1)
    );
    transition:.4s ease;
}

.gallery-item-title{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin:0;
    line-height:1.5;
    transition:.4s;
}

.gallery-card:hover .gallery-item-title{
    color:#ffc107;
}

/* Golden Shine Effect */

.gallery-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:80%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.gallery-card:hover::before{
    left:180%;
}

/*=====================================
   BUTTON
======================================*/

.gallery-action-wrapper{
    text-align:center;
    margin-top:50px;
}

.btn-view-gallery{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#ffc107;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    box-shadow:0 0 20px rgba(255,193,7,.3);
}

.btn-view-gallery:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,193,7,.5);
}

.arrow-icon{
    transition:.4s;
}

.btn-view-gallery:hover .arrow-icon{
    transform:translateX(8px);
}

/*=====================================
   ANIMATION
======================================*/

.gallery-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=====================================
   RESPONSIVE
======================================*/

@media(max-width:1200px){

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-section-title{
        font-size:36px;
    }

}

@media(max-width:768px){

    .custom-gallery-section{
        padding:60px 20px;
    }

    .gallery-grid{
        gap:18px;
    }

    .gallery-card img{
        height:240px;
    }

    .gallery-section-title{
        font-size:30px;
    }

}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card img{
        height:260px;
    }

    .gallery-section-title{
        font-size:26px;
    }

    .btn-view-gallery{
        width:100%;
        justify-content:center;
    }

}
/* ==========================================================================
   DONATION DASHBOARD SECTION
   ========================================================================== */

/* ==========================
   IMPACT AREA SECTION
========================== */

.impact-section {
    background: linear-gradient(135deg,#050505,#111,#1a1a1a);
    padding: 80px 5%;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:#ffc107;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
}

.section-header h2{
    color:#fff;
    font-size:42px;
    margin-top:10px;
    position:relative;
    display:inline-block;
}

.section-header h2::after{
    content:"";
    position:absolute;
    width:80px;
    height:4px;
    background:#ffc107;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
}

.section-header p{
    max-width:700px;
    margin:25px auto 0;
    color:#bdbdbd;
    line-height:1.8;
}

/* ==========================
   5 COLUMN GRID
========================== */

.impact-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

/* ==========================
   CARD DESIGN
========================== */

.thematic-card{
    background:#121212;
    border:1px solid rgba(255,193,7,.2);
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.thematic-card::before{
    content:"";
    position:absolute;
    width:200%;
    height:100%;
    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,193,7,.15),
    transparent);
    top:0;
    left:-200%;
    transition:.8s;
}

.thematic-card:hover::before{
    left:200%;
}

.thematic-card:hover{
    transform:translateY(-10px);
    border-color:#ffc107;
    box-shadow:
    0 10px 30px rgba(255,193,7,.2),
    0 0 20px rgba(255,193,7,.15);
}

.icon-box{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,193,7,.1);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    color:#ffc107;
    transition:.4s;
}

.thematic-card:hover .icon-box{
    background:#ffc107;
    color:#000;
    transform:rotateY(180deg);
}

.thematic-card h3{
    margin-top:20px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.thematic-card:hover h3{
    color:#ffc107;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .impact-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:992px){

    .impact-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .section-header h2{
        font-size:30px;
    }

}

@media(max-width:480px){

    .impact-grid{
        grid-template-columns:1fr;
    }

    .thematic-card{
        padding:25px 15px;
    }

    .section-header h2{
        font-size:26px;
    }

}

/*=================================
    CAMPAIGNS SECTION
==================================*/

.campaigns-section{
    padding:90px 5%;
    background:linear-gradient(
    135deg,
    #050505,
    #101010,
    #181818);
    position:relative;
    overflow:hidden;
}

.campaigns-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(120px);
}

.campaigns-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,.05);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(120px);
}

/*=================================
    HEADER
==================================*/

.campaigns-header{
    text-align:center;
    margin-bottom:60px;
}

.campaigns-subtitle{
    color:#ffc107;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
}

.campaigns-main-title{
    color:#fff;
    font-size:45px;
    margin:15px 0;
    font-weight:800;
}

.campaigns-highlight{
    color:#ffc107;
}

.campaigns-description{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/*=================================
    GRID
==================================*/

.campaigns-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=================================
    CARD
==================================*/

.camp-card{
    background:#111;
    border:1px solid rgba(255,193,7,.15);
    border-radius:25px;
    overflow:hidden;
    transition:.5s;
    position:relative;
}

.camp-card:hover{
    transform:translateY(-12px);
    border-color:#ffc107;
    box-shadow:
    0 10px 30px rgba(255,193,7,.2);
}

.camp-img-box{
    position:relative;
    overflow:hidden;
}

.camp-img-box img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:1s;
}

.camp-card:hover img{
    transform:scale(1.12);
}

/* Badge */

.camp-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ffc107;
    color:#000;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/*=================================
    CONTENT
==================================*/

.camp-content-box{
    padding:25px;
}

.camp-content-box h3{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
    line-height:1.5;
}

.camp-price{
    color:#ffc107;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.camp-location{
    color:#ccc;
    margin-bottom:25px;
    line-height:1.6;
}

.camp-location i{
    color:#ffc107;
    margin-right:8px;
}

/*=================================
    BUTTONS
==================================*/

.camp-action-btns{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.btn-camp-action{
    background:#ffc107;
    color:#000;
    padding:12px 22px;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.btn-camp-action:hover{
    background:#fff;
    transform:translateY(-3px);
}

.btn-camp-circle-view{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#1e1e1e;
    border:1px solid #ffc107;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    text-decoration:none;
    transition:.4s;
}

.btn-camp-circle-view:hover{
    background:#ffc107;
    color:#000;
    transform:rotate(45deg);
}

/*=================================
    SHINE EFFECT
==================================*/

.camp-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.camp-card:hover::before{
    left:180%;
}

/*=================================
    RESPONSIVE
==================================*/

@media(max-width:1200px){

    .campaigns-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .campaigns-grid{
        grid-template-columns:1fr;
    }

    .campaigns-main-title{
        font-size:34px;
    }

    .camp-img-box img{
        height:220px;
    }

}

@media(max-width:576px){

    .campaigns-section{
        padding:60px 20px;
    }

    .camp-content-box{
        padding:20px;
    }

    .camp-content-box h3{
        font-size:18px;
    }

    .camp-price{
        font-size:20px;
    }

    .btn-camp-action{
        padding:10px 18px;
        font-size:14px;
    }

}

/*=====================================
    TESTIMONIAL SECTION
=====================================*/

.testimonial-section{
    padding:90px 5%;
    background:linear-gradient(
        135deg,
        #050505,
        #101010,
        #1a1a1a
    );
    position:relative;
    overflow:hidden;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    top:-150px;
    left:-150px;
    border-radius:50%;
    background:rgba(255,193,7,.08);
    filter:blur(120px);
}

.testimonial-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    bottom:-150px;
    right:-150px;
    border-radius:50%;
    background:rgba(255,193,7,.05);
    filter:blur(120px);
}

/*=====================================
    SECTION HEADER
=====================================*/

.section-title{
    margin-bottom:60px;
}

.section-title .subtitle{
    display:block;
    color:#ffc107;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
}

.section-title h2{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin:0;
}

.section-title .highlight{
    color:#ffc107;
    position:relative;
}

.section-title .highlight::after{
    content:"";
    position:absolute;
    width:100%;
    height:4px;
    background:#ffc107;
    left:0;
    bottom:-8px;
    border-radius:50px;
}

/*=====================================
    GRID
=====================================*/

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=====================================
    CARD
=====================================*/

.testimonial-card{
    background:rgba(20,20,20,.95);
    border:1px solid rgba(255,193,7,.15);
    border-radius:25px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.5s ease;
    backdrop-filter:blur(10px);
}

.testimonial-card:hover{
    transform:translateY(-12px);
    border-color:#ffc107;
    box-shadow:
        0 10px 30px rgba(255,193,7,.15),
        0 0 25px rgba(255,193,7,.1);
}

/* Golden Shine */

.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
}

.testimonial-card:hover::before{
    left:180%;
}

/*=====================================
    QUOTE ICON
=====================================*/

.quote-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(255,193,7,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    font-size:28px;
    margin-bottom:20px;
    transition:.4s;
}

.testimonial-card:hover .quote-icon{
    background:#ffc107;
    color:#000;
    transform:rotate(360deg);
}

/*=====================================
    TEXT
=====================================*/

.testi-text{
    color:#d5d5d5;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

/*=====================================
    STARS
=====================================*/

.stars{
    margin-bottom:25px;
}

.stars i{
    font-size:18px;
    margin-right:3px;
    transition:.3s;
}

.testimonial-card:hover .stars i{
    transform:scale(1.15);
}

/*=====================================
    USER INFO
=====================================*/

.testi-user{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.testi-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #ffc107;
    transition:.4s;
}

.testimonial-card:hover .testi-user img{
    transform:scale(1.08);
    box-shadow:0 0 20px rgba(255,193,7,.4);
}

.user-info h4{
    color:#fff;
    margin:0;
    font-size:18px;
    font-weight:700;
}

.user-info span{
    color:#ffc107;
    font-size:14px;
}

/*=====================================
    ANIMATION
=====================================*/

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.testimonial-card{
    animation:fadeUp .8s ease forwards;
}

/*=====================================
    RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .testimonial-section{
        padding:70px 20px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-title h2{
        font-size:34px;
    }

    .testimonial-card{
        padding:25px;
    }

}

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .testi-user{
        gap:12px;
    }

    .testi-user img{
        width:60px;
        height:60px;
    }

    .user-info h4{
        font-size:16px;
    }

    .testi-text{
        font-size:14px;
    }

}

/*======================================
    DONATION DASHBOARD SECTION
======================================*/

.donation-dashboard-section{
    padding:90px 5%;
    background:linear-gradient(135deg,#050505,#101010,#181818);
    position:relative;
    overflow:hidden;
}

.donation-dashboard-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    top:-180px;
    left:-180px;
    border-radius:50%;
    background:rgba(255,193,7,.08);
    filter:blur(140px);
}

.donation-dashboard-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    bottom:-180px;
    right:-180px;
    border-radius:50%;
    background:rgba(255,193,7,.06);
    filter:blur(140px);
}

/*======================================
    MAIN CONTAINER
======================================*/

.donation-main-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

/*======================================
    LEFT BLOCK
======================================*/

.donation-left-block{
    background:rgba(20,20,20,.9);
    border:1px solid rgba(255,193,7,.15);
    border-radius:30px;
    padding:50px;
    backdrop-filter:blur(12px);
    transition:.4s;
}

.donation-left-block:hover{
    border-color:#ffc107;
    box-shadow:0 10px 35px rgba(255,193,7,.12);
}

.make-difference-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,193,7,.1);
    color:#ffc107;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.donation-title{
    font-size:60px;
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
}

.gradient-text{
    color:#ffc107;
}

.donation-desc{
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

/*======================================
    MINI STATS
======================================*/

.mini-stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:35px;
}

.mini-stat-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#141414;
    border:1px solid rgba(255,193,7,.1);
    padding:15px;
    border-radius:18px;
    transition:.4s;
}

.mini-stat-item:hover{
    transform:translateY(-5px);
    border-color:#ffc107;
}

.mini-icon-box{
    width:55px;
    height:55px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#000;
    background:#ffc107;
}

.mini-stat-info h3{
    color:#fff;
    margin:0;
    font-size:20px;
}

.mini-stat-info p{
    color:#bbb;
    margin:0;
    font-size:13px;
}

/*======================================
    AMOUNT BUTTONS
======================================*/

.amount-selection-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:30px;
}

.amount-pill{
    background:#141414;
    color:#fff;
    border:1px solid rgba(255,193,7,.2);
    padding:14px;
    border-radius:15px;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.amount-pill:hover,
.amount-pill.active{
    background:#ffc107;
    color:#000;
    border-color:#ffc107;
    transform:translateY(-3px);
}

.custom-amount-input{
    grid-column:span 3;
    background:#141414;
    border:1px solid rgba(255,193,7,.2);
    color:#fff;
    padding:15px;
    border-radius:15px;
    outline:none;
}

.custom-amount-input:focus{
    border-color:#ffc107;
}

/*======================================
    DONATE BUTTON
======================================*/

.btn-primary-donate{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ffc107;
    color:#000;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    box-shadow:0 0 20px rgba(255,193,7,.3);
}

.btn-primary-donate:hover{
    background:#fff;
    transform:translateY(-5px);
}

/*======================================
    RIGHT DASHBOARD
======================================*/

.donation-right-dashboard{
    background:rgba(20,20,20,.95);
    border:1px solid rgba(255,193,7,.15);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(12px);
}

.dashboard-header{
    text-align:center;
    margin-bottom:30px;
}

.dashboard-header h2{
    color:#fff;
    font-size:32px;
    margin-bottom:10px;
}

.dashboard-header p{
    color:#ffc107;
}

/*======================================
    DASHBOARD GRID
======================================*/

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.dash-card{
    background:#141414;
    border:1px solid rgba(255,193,7,.15);
    border-radius:20px;
    text-align:center;
    padding:25px;
    transition:.4s;
}

.dash-card:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
    box-shadow:0 10px 25px rgba(255,193,7,.15);
}

.dash-card h3{
    color:#ffc107;
    font-size:32px;
    margin-bottom:10px;
}

.dash-card p{
    color:#fff;
    margin:0;
}

/*======================================
    TRUST BADGES
======================================*/

.trust-badges-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.trust-badges-list span{
    background:#141414;
    border:1px solid rgba(255,193,7,.15);
    color:#fff;
    padding:10px 15px;
    border-radius:50px;
    font-size:14px;
}

.trust-badges-list i{
    color:#ffc107;
    margin-right:8px;
}

/*======================================
    ACTION BUTTON
======================================*/

.btn-dashboard-transform{
    display:block;
    text-align:center;
    background:#ffc107;
    color:#000;
    padding:18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-dashboard-transform:hover{
    background:#fff;
    transform:translateY(-4px);
}

.receipt-note{
    color:#bbb;
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

/*======================================
    RESPONSIVE
======================================*/

@media(max-width:1200px){

    .donation-main-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .donation-dashboard-section{
        padding:70px 20px;
    }

    .donation-left-block,
    .donation-right-dashboard{
        padding:30px;
    }

    .donation-title{
        font-size:42px;
    }

    .mini-stats-row{
        grid-template-columns:1fr;
    }

    .amount-selection-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .custom-amount-input{
        grid-column:span 2;
    }

}

@media(max-width:576px){

    .donation-title{
        font-size:32px;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .amount-selection-grid{
        grid-template-columns:1fr;
    }

    .custom-amount-input{
        grid-column:span 1;
    }

    .btn-primary-donate,
    .btn-dashboard-transform{
        width:100%;
        justify-content:center;
    }

}