/* === SHREYA SUNSHINE FOUNDATION - CLEAN LIGHT DESIGN SYSTEM === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&family=Playball&display=swap');

:root {
    --primary: #F58320;
    --primary-hover: #E07212;
    --primary-light: #FFF4EA;
    --secondary: #5B9628;
    --secondary-hover: #497B1F;
    --secondary-light: #F2F9EC;
    --dark: #001D23;
    --text-main: #2D3748;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(245, 131, 32, 0.12);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* === CLEAN LIGHT TOPBAR & NAVBAR (NO DARK BG) === */
.top-bar {
    background-color: #F8FAFC;
    color: #4A5568;
    font-size: 13.5px;
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
}

.top-bar a {
    color: #4A5568;
}

.top-bar a:hover {
    color: var(--primary);
}

.topbar-link {
    color: #4A5568 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.topbar-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.topbar-link:hover {
    color: var(--primary) !important;
}

.topbar-link:hover::after {
    width: 100%;
}

.navbar-custom {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-custom .navbar-toggler {
    background-color: var(--primary) !important;
    border: none !important;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(245, 131, 32, 0.3);
    outline: none !important;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(245, 131, 32, 0.4);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand img {
    height: 52px;
    width: auto;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 21px;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1px;
}

.nav-link-custom {
    color: #2D3748 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary) !important;
    background-color: rgba(245, 131, 32, 0.08);
}

/* === BUTTONS & BADGES === */
.btn-brand-orange {
    background: linear-gradient(135deg, var(--primary) 0%, #FF9838 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(245, 131, 32, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-brand-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 131, 32, 0.4);
    background: linear-gradient(135deg, var(--primary-hover) 0%, #E07212 100%);
}

.btn-brand-green {
    background: linear-gradient(135deg, var(--secondary) 0%, #6EB233 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(91, 150, 40, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-brand-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 150, 40, 0.4);
}

.btn-brand-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary) !important;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    background-color: var(--secondary);
    color: #ffffff !important;
}

.badge-brand-orange {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-brand-green {
    background-color: var(--secondary-light);
    color: var(--secondary);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* === CLEAN HERO SECTION (NO DARK OVERLAY) === */
.hero-section {
    background: linear-gradient(135deg, #FFF9F4 0%, #F5F9F6 50%, #FFFFFF 100%);
    color: var(--dark);
    padding: 80px 0 90px 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Playball', cursive;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
}

/* === CARDS & LAYOUT GRID === */
.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 1px solid #E2E8F0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(245, 131, 32, 0.3);
}

.card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.feature-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--dark);
}

/* === FOUNDER / ABOUT SECTION === */
.about-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 4px solid #ffffff;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.founder-quote-box {
    background-color: #FFF9F4;
    border-left: 5px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin: 25px 0;
}

/* === STATS COUNTER BAR (LIGHT CLEAN THEME) === */
.stats-bar {
    background: linear-gradient(135deg, #FFF9F4 0%, #F5F9F6 100%);
    color: var(--dark);
    padding: 50px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: #4A5568;
    font-weight: 600;
    margin-top: 5px;
}

/* === TEAM & CAREGIVERS GRID === */
.team-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #E2E8F0;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.team-photo-wrap {
    width: 100%;
    height: 260px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 15px;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* === FOOTER (CLEAN DARK ACCENT) === */
.footer-custom {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer-title {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.copyright-bar {
    background-color: #001317;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}


/* === CLEAN LIGHT FOOTER (NO DARK BG) === */
.footer-custom {
    background-color: #FFF9F4 !important;
    color: #4A5568 !important;
    padding-top: 70px;
    border-top: 1px solid #E2E8F0;
}

.footer-title {
    color: var(--primary) !important;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.footer-custom p, .footer-custom a, .footer-custom span {
    color: #4A5568 !important;
}

.footer-custom a:hover {
    color: var(--primary) !important;
}

.copyright-bar {
    background-color: #F1F5F9 !important;
    padding: 20px 0;
    border-top: 1px solid #E2E8F0;
    font-size: 14px;
    color: #64748B !important;
}

/* === GALLERY FILTER BUTTONS (PILL STYLE) === */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-filter-btn {
    background: #ffffff;
    border: 2px solid #5B9628;
    color: #2D3748;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.gallery-filter-btn:hover {
    background-color: rgba(91, 150, 40, 0.08);
    border-color: #5B9628;
    color: #5B9628;
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #F58320 0%, #FF9838 100%);
    border-color: #F58320;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 131, 32, 0.3);
}

/* === GALLERY THIN CARDS === */
.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 131, 32, 0.12);
    border-color: rgba(245, 131, 32, 0.25);
}

.gallery-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.05);
}

.gallery-video-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.gallery-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    padding: 14px 16px 18px;
    flex-grow: 1;
}

.gallery-caption h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #001D23;
    margin-bottom: 6px;
    line-height: 1.3;
}

.gallery-caption p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.55;
    margin-bottom: 0;
}

/* === GALLERY FADE-IN ANIMATION === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.4s ease forwards;
}

/* === BANK CARD (DONATE PAGE) === */
.bank-card {
    background: linear-gradient(135deg, #FFF9F4 0%, #F5F9F6 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #E2E8F0;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.bank-label {
    font-weight: 600;
    color: #4A5568;
    font-size: 14px;
}

.bank-value {
    font-weight: 700;
    color: #2D3748;
    font-size: 14px;
    text-align: right;
}

/* === BHARATQR & PAYMENT CARD STYLES === */
.qr-payment-card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: 16px;
    padding: 30px;
    color: #FFFFFF;
    border: 1px solid #334155;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .qr-payment-card, .bank-card {
        padding: 20px 16px !important;
        border-radius: 12px;
    }
}

.qr-payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.qr-code-box {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.qr-code-box:hover {
    transform: scale(1.03);
}

.copy-btn-sm {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #CBD5E1;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn-sm:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.payment-network-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 10px;
    text-center;
    transition: transform 0.2s ease;
}

.payment-network-box:hover {
    transform: translateY(-2px);
    border-color: #64748B;
}

/* === HERO LOGO GLOW EFFECT (NO SQUARE FRAME) === */
.hero-logo-wrapper {
    display: inline-block;
    position: relative;
    padding: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 243, 199, 0.85) 0%, rgba(253, 230, 138, 0.5) 45%, rgba(255, 255, 255, 0) 70%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-logo-wrapper:hover {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0.18) 50%, rgba(255, 255, 255, 0) 72%);
    transform: scale(1.06);
    filter: drop-shadow(0 15px 35px rgba(249, 115, 22, 0.3));
}

.hero-logo-img {
    max-width: 320px;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.hero-logo-wrapper:hover .hero-logo-img {
    transform: translateY(-5px);
}

/* === HERO CTA BUTTONS MOBILE RESPONSIVE (SAME LINE) === */
@media (max-width: 576px) {
    .hero-btn-group {
        flex-wrap: nowrap !important;
    }
    .hero-btn-group .btn-brand-orange,
    .hero-btn-group .btn-brand-green {
        padding: 9px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        gap: 5px !important;
    }
}

/* === TESTIMONIAL VIDEO SECTION === */
.testimonial-section {
    background-color: #FFFDF9;
    position: relative;
}

.testimonial-video-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testimonial-video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(245, 131, 32, 0.3);
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    background-color: #000000;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    overflow: hidden;
}

.testimonial-video-wrap video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card-body {
    padding: 20px;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}





