:root {
    --primary: #ff6b00;
    --secondary: #e53935;
    --accent: #ffb703;
    --dark: #0f172a;
    --text: #475569;
    --light-bg: #f8fafc;
    --soft-peach: #fff4ef;
    --soft-cream: #fff8ee;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ff6b00 0%, #e53935 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(229, 57, 53, 0.1) 100%);
}

a{
	text-decoration: none !important;
	font-family: "Nunito", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    font-family: "Nunito", sans-serif;
}

p {
    line-height: 1.8;
    font-family: "Nunito", sans-serif;
}

/* ========================================
    UTILITY CLASSES
======================================== */
.section {
    padding: 54px 0px;
}
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-soft);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ========================================
    BUTTONS
======================================== */
.btn-primary-gradient {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
    color: var(--white);
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gradient:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 0, 0.6);
    }
}

/* ========================================
    NAVBAR
======================================== */
.navbar-main {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-main.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand-custom img{
    width: 150px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: transform 0.3s ease;
}


.logo-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.logo-text p {
    margin: 0;
    font-size: 11px;
    color: var(--text);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}
.dropdown-toggle::after{
    border: none !important;
    content: unset;
} */

/* .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
} */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
  padding: 0px !important;
  border-radius: 0px !important;
}
.dropdown-menu .dropdown-item {
  padding: 10px 20px !important;
}
.dropdown-menu .dropdown-item {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #fff;
  color: #f76d3c !important;
}
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

/* ========================================
    HERO SECTION
======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.15), transparent 50%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline-gradient {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline-gradient:hover {
    background: var(--white);
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
    ABOUT SECTION
======================================== */
.about-intro {
    background: var(--light-bg);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.about-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image-card:hover {
    transform: translateY(-10px);
}

.about-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.1);
}

.mission-float-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.mission-float-card h5 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-box {
    background: var(--gradient-soft);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0;
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
    PREMIUM CARDS
======================================== */
.premium-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.premium-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.card-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

/* ========================================
    FOCUS CARDS
======================================== */
.focus-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
}

.focus-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.focus-card:hover .focus-icon {
    transform: scale(1.15) rotate(360deg);
}

.focus-card .card-title {
    margin-bottom: 16px;
}

.focus-card .card-text {
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ========================================
    IMPACT SECTION
======================================== */
.impact-section {
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.counter-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ========================================
    VOLUNTEER SECTION
======================================== */
.volunteer-section {
    background: var(--soft-peach);
}

.volunteer-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
}

.volunteer-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.volunteer-card:hover .volunteer-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.volunteer-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.volunteer-card p {
    color: var(--text);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ========================================
    TESTIMONIAL SECTION
======================================== */
.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

/* ========================================
    GALLERY SECTION
======================================== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* ========================================
    CONTACT SECTION
======================================== */
.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info p {
    margin: 0;
    color: var(--text);
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid rgba(15, 23, 42, 0.1);
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.1);
}

textarea.form-control {
    min-height: 120px;
}

/* ========================================
    FOOTER
======================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-logo img{
    width: 80%;
    margin-bottom: 10px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.footer-logo-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-text p {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient);
    transform: translateY(-5px);
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
    FLOATING ELEMENTS
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

.floating-donate {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 8px;
}

.floating-donate.show {
    display: flex;
}

.floating-donate:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
    color: var(--white);
}

/* ========================================
    WORK DESCRIPTION CARD
======================================== */
.work-description-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.work-description-card h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
    ANIMATIONS
======================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.slide-up.active {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.active {
    animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
    RESPONSIVE STYLES
======================================== */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .mission-float-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 30px;
    }

    .about-image-card img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-gradient,
    .btn-outline-gradient,
    .btn-white {
        text-align: center;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .back-to-top {
        bottom: 100px;
        right: 20px;
    }

    .floating-donate {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .work-description-card {
        padding: 30px 24px;
    }

    .premium-card,
    .focus-card,
    .volunteer-card {
        padding: 30px;
    }
}

/* ========================================
    LOADING ANIMATION
======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 0, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

 /* Ongoing Projects Section */
.projects-section {
    background: var(--light-bg);
}

.project-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.project-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.project-image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    height: 100%;
    min-height: 400px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 24px;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content {
    padding: 2.5rem;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.project-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(229, 57, 53, 0.1));
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.project-features li {
    padding: 0.6rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.project-card.reveal .project-features li {
    opacity: 1;
    transform: translateX(0);
}

.project-card.reveal .project-features li:nth-child(1) { transition-delay: 0.2s; }
.project-card.reveal .project-features li:nth-child(2) { transition-delay: 0.3s; }
.project-card.reveal .project-features li:nth-child(3) { transition-delay: 0.4s; }
.project-card.reveal .project-features li:nth-child(4) { transition-delay: 0.5s; }

.project-features li i {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}
.btn-secondary-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}
/* On going project - ends */

/* Impact Statistics Section */
.impact22-section {
    background: var(--white);
}

.stats-heading11 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.stat-card11 {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 1.5rem;
}

.stat-card11.reveal {
    opacity: 1;
    transform: translateY(0);
}

.stat-card11:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.stat-icon11 {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.stat-card11:hover .stat-icon11 {
    transform: scale(1.1) rotate(5deg);
}

.stat-number11 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label11 {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}
/* Impack 2 - end */

/* Cta area - starts */
/* Fundraising CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
}

.cta-main-heading.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.cta-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-inner-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.cta-inner-box.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.3s;
}

.cta-inner-text {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--soft-peach);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.benefit-item:nth-child(1).reveal { transition-delay: 0.4s; }
.benefit-item:nth-child(2).reveal { transition-delay: 0.5s; }
.benefit-item:nth-child(3).reveal { transition-delay: 0.6s; }

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}
/* CTA Area - ends */

/* Fund raise - start */
.note-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(229, 57, 53, 0.1));
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.note-box p {
    margin: 0;
    color: var(--text);
    font-style: italic;
}

.bank-details-table {
    width: 100%;
    margin-bottom: 2rem;
}

.bank-details-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(10px);
}

.contact-card.reveal .bank-details-table tr {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.contact-card.reveal .bank-details-table tr:nth-child(1) { transition-delay: 0.1s; }
.contact-card.reveal .bank-details-table tr:nth-child(2) { transition-delay: 0.2s; }
.contact-card.reveal .bank-details-table tr:nth-child(3) { transition-delay: 0.3s; }
.contact-card.reveal .bank-details-table tr:nth-child(4) { transition-delay: 0.4s; }
.contact-card.reveal .bank-details-table tr:nth-child(5) { transition-delay: 0.5s; }
.contact-card.reveal .bank-details-table tr:nth-child(6) { transition-delay: 0.6s; }

.bank-details-table td {
    padding: 1rem 0.5rem;
}

.bank-details-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.bank-details-table td:last-child {
    color: var(--text);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.highlight-box p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}
/* Fund raise - ends */