@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   ABOUT IIC — AI GRADIENT + EMERALD GLASSMORPHISM
   Light Theme · Premium Design System
   ============================================= */

:root {
    /* ── Emerald Scale ── */
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    /* ── Core Palette ── */
    --bg-base:       #f0fdf4;
    --bg-surface:    #ffffff;
    --accent-primary: var(--emerald-500);
    --accent-light:   var(--emerald-300);
    --accent-dark:    var(--emerald-700);
    --teal:          #0ea5e9;
    --teal-light:    #7dd3fc;

    /* ── Gradients ── */
    --gradient-hero:     linear-gradient(135deg, #ecfdf5 0%, #d1fae5 30%, #f0fdfa 60%, #ecfdf5 100%);
    --gradient-emerald:  linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
    --gradient-ai:       linear-gradient(135deg, var(--emerald-400), var(--teal), var(--emerald-300));
    --gradient-text:     linear-gradient(135deg, var(--emerald-600), var(--teal), var(--emerald-500));
    --gradient-shimmer:  linear-gradient(90deg, transparent 0%, rgba(16,185,129,0.08) 50%, transparent 100%);
    --gradient-mesh:     radial-gradient(ellipse at 20% 50%, rgba(167,243,208,0.5) 0%, transparent 50%),
                         radial-gradient(ellipse at 80% 20%, rgba(125,211,252,0.35) 0%, transparent 50%),
                         radial-gradient(ellipse at 60% 80%, rgba(110,231,183,0.4) 0%, transparent 50%),
                         radial-gradient(ellipse at 10% 90%, rgba(52,211,153,0.2) 0%, transparent 50%);

    /* ── Glass ── */
    --glass-bg:        rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border:    rgba(255, 255, 255, 0.7);
    --glass-border-hover: rgba(16, 185, 129, 0.4);
    --glass-blur:      20px;

    /* ── Text ── */
    --text-primary:   #064e3b;
    --text-heading:   #022c22;
    --text-secondary: #475569;
    --text-muted:     #94a3b8;
    --text-on-accent: #ffffff;

    /* ── Shadows ── */
    --shadow-sm:   0 2px 8px rgba(6, 78, 59, 0.04);
    --shadow-md:   0 8px 32px rgba(6, 78, 59, 0.06);
    --shadow-lg:   0 16px 48px rgba(6, 78, 59, 0.08);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
    --shadow-glow-strong: 0 0 50px rgba(16,185,129,0.25);

    /* ── Fonts ── */
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Plus Jakarta Sans', 'Inter', sans-serif;

    /* ── Spacing ── */
    --section-gap: 6rem;
    --container-max: 1200px;
    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  28px;
    --radius-xl:  36px;
    --radius-full: 9999px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-base);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    display: block;
}

/* =============================================
   GRADIENT TEXT UTILITY
   ============================================= */
.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 200% center; }
}

/* =============================================
   GLASSMORPHISM COMPONENTS
   ============================================= */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform: translateZ(0);
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.glass-panel > * {
    position: relative;
    z-index: 1;
}

.glass-panel:hover {
    transform: translateY(-5px) translateZ(0);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* =============================================
   AI BACKGROUND MESH + PARTICLES
   ============================================= */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg-base);
    overflow: hidden;
    will-change: auto;
}

.bg-animation::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: var(--gradient-mesh);
    transform: translateZ(0);
    animation: meshDrift 30s ease-in-out infinite alternate;
}

@keyframes meshDrift {
    0%   { opacity: 0.9; transform: translateZ(0) scale(1); }
    50%  { opacity: 1;   transform: translateZ(0) scale(1.05); }
    100% { opacity: 0.95; transform: translateZ(0) scale(1.02); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    transform: translateZ(0);
    animation: orbFloat 30s ease-in-out infinite alternate;
    will-change: transform;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
    top: -15vh;
    left: -10vw;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    bottom: -10vh;
    right: -10vw;
    animation-delay: -10s;
}

.orb-3 {
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, rgba(110,231,183,0.2) 0%, transparent 70%);
    top: 45vh;
    left: 35vw;
    animation-delay: -20s;
}

@keyframes orbFloat {
    0%   { transform: translateZ(0) translate(0, 0) scale(1); }
    100% { transform: translateZ(0) translate(3vw, 2vh) scale(1.05); }
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translateZ(0);
    will-change: opacity, transform;
    animation: particleFade 8s ease-in-out infinite;
}

.particle:nth-child(4) {
    width: 6px; height: 6px;
    background: var(--emerald-300);
    top: 20%; left: 15%;
    animation-delay: 0s;
}
.particle:nth-child(5) {
    width: 4px; height: 4px;
    background: var(--teal-light);
    top: 60%; left: 75%;
    animation-delay: 2s;
}
.particle:nth-child(6) {
    width: 8px; height: 8px;
    background: var(--emerald-200);
    top: 35%; left: 55%;
    animation-delay: 4s;
}
.particle:nth-child(7) {
    width: 5px; height: 5px;
    background: var(--emerald-400);
    top: 75%; left: 25%;
    animation-delay: 1s;
}
.particle:nth-child(8) {
    width: 3px; height: 3px;
    background: var(--teal);
    top: 10%; left: 85%;
    animation-delay: 5s;
}
.particle:nth-child(9) {
    width: 7px; height: 7px;
    background: var(--emerald-300);
    top: 85%; left: 45%;
    animation-delay: 3s;
}
.particle:nth-child(10) {
    width: 4px; height: 4px;
    background: var(--teal-light);
    top: 45%; left: 90%;
    animation-delay: 6s;
}
.particle:nth-child(11) {
    width: 6px; height: 6px;
    background: var(--emerald-200);
    top: 90%; left: 10%;
    animation-delay: 1.5s;
}

@keyframes particleFade {
    0%, 100% { opacity: 0; transform: translateZ(0) translateY(0); }
    50%      { opacity: 0.6; transform: translateZ(0) translateY(-20px); }
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* =============================================
   MEHENDI BAND (Top of Page)
   ============================================= */
.mehendi-band {
    width: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(236, 253, 245, 0.2) 50%,
        transparent 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0.75rem 0;
    opacity: 0;
    animation: mehendiFadeIn 1.5s ease-out 0.2s forwards;
}

.mehendi-svg {
    width: 100%;
    height: 100px;
    display: block;
}

@keyframes mehendiFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   CALLIGRAPHY HEADER (Bismillah)
   ============================================= */
.logo-header {
    padding: 2.5rem 0 1rem;
    display: flex;
    justify-content: center;
    animation: fadeInDown 1s ease-out;
}

.calligraphy-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    background: var(--glass-bg-strong);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform: translateZ(0);
}

.calligraphy-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--glass-border-hover);
}

.calligraphy-title {
    font-family: 'Amiri', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HERO / IIC LOGO SECTION
   ============================================= */
.iict-logo-section {
    padding: 2rem 0 0;
    text-align: center;
}

.iict-logo-container {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.iict-main-logo {
    height: 130px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(16,185,129,0.15));
    transition: transform 0.5s ease;
}

.iict-main-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.iict-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   STATS / IMPACT STRIP
   ============================================= */
.stats-strip {
    padding: 3rem 0;
    margin: 2rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-emerald);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--glass-border-hover);
}

.stat-item:hover::before {
    width: 60%;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.header-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-emerald);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-on-accent);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.header-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
}

.section-subtitle strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* =============================================
   ABOUT SECTION — BENTO GRID
   ============================================= */
.about-section {
    padding: var(--section-gap) 0 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.about-item {
    padding: 3rem 3.5rem;
    position: relative;
}

.about-item::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--gradient-emerald);
    border-radius: 0 4px 4px 0;
}

.about-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--emerald-100);
    max-width: fit-content;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
    color: var(--text-heading);
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-text p {
    text-align: justify;
}

.signature {
    margin-top: 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: right;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =============================================
   MISSION & VISION CARDS
   ============================================= */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.mv-card {
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Decorative corner accent */
.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(16,185,129,0.1) 0%, transparent 70%);
    border-radius: 0 var(--radius-lg) 0 0;
    z-index: 0;
}

.mv-card .card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-emerald);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-on-accent);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.mv-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 90%;
    line-height: 1.7;
}

/* =============================================
   DONATION SECTION
   ============================================= */
.donation-section {
    padding: var(--section-gap) 0;
}

/* ---- Donate Buttons Wrapper ---- */
.donate-buttons-wrapper {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* ---- Primary Donate Button ---- */
.donate-now-btn.donate-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 3.5rem;
    background: var(--gradient-emerald);
    color: var(--text-on-accent);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 25px rgba(16, 185, 129, 0.35), var(--shadow-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: donatePulse 3s ease-in-out infinite;
}

.donate-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.donate-btn-text {
    position: relative;
    z-index: 2;
}

/* Shimmer overlay */
.donate-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.donate-now-btn.donate-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.5), var(--shadow-lg);
}

.donate-now-btn.donate-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* ---- Sub Buttons (GPay / PhonePe) ---- */
.donate-sub-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.donate-now-btn.donate-gpay,
.donate-now-btn.donate-phonepe {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid;
}

/* GPay — Google Blue */
.donate-now-btn.donate-gpay {
    background: rgba(66, 133, 244, 0.08);
    color: #4285F4;
    border-color: rgba(66, 133, 244, 0.3);
}

.donate-now-btn.donate-gpay:hover {
    background: #4285F4;
    color: #fff;
    border-color: #4285F4;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.35);
}

.donate-now-btn.donate-gpay i {
    font-size: 1.3rem;
}

/* PhonePe — Purple */
.donate-now-btn.donate-phonepe {
    background: rgba(95, 37, 159, 0.08);
    color: #5F259F;
    border-color: rgba(95, 37, 159, 0.3);
}

.donate-now-btn.donate-phonepe:hover {
    background: #5F259F;
    color: #fff;
    border-color: #5F259F;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(95, 37, 159, 0.35);
}

.donate-now-btn.donate-phonepe i {
    font-size: 1.1rem;
}

/* ---- Helper text ---- */
.donate-helper-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.donate-helper-text i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

/* ---- Animations ---- */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.2); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.15); }
    70%      { transform: scale(1); }
}

@keyframes shimmer {
    0%       { left: -100%; }
    40%, 100% { left: 150%; }
}

@keyframes donatePulse {
    0%, 100% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.35), var(--shadow-lg); }
    50%      { box-shadow: 0 4px 35px rgba(16, 185, 129, 0.55), var(--shadow-lg); }
}


.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.bank-card {
    padding: 2.25rem;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--emerald-100);
}

.bank-header i {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--gradient-emerald);
    color: var(--text-on-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-header h3 {
    font-size: 1.3rem;
    color: var(--text-heading);
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: rgba(16,185,129,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.detail-row:hover {
    background: rgba(16,185,129,0.08);
    border-color: var(--emerald-200);
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
}

.detail-value {
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.detail-value.highlight {
    color: var(--accent-primary);
    font-weight: 700;
}

.info-box {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(16,185,129,0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-box i {
    color: var(--accent-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-box strong {
    color: var(--text-heading);
}

/* Tax Benefits */
.tax-benefits {
    max-width: 800px;
    margin: 0 auto;
}

.tax-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(14,165,233,0.04) 100%);
    border-radius: var(--radius-lg);
}

.tax-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.tax-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.tax-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.tax-card strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.tax-number {
    display: inline-flex;
    flex-direction: column;
    padding: 1rem 2rem;
    background: var(--glass-bg-strong);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm);
}

.tax-number .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.tax-number .value {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* =============================================
   CONTACT CTA SECTION
   ============================================= */
.contact-section {
    padding: 4rem 0;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3.5rem;
    background: var(--gradient-emerald);
    color: var(--text-on-accent);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg);
}

.contact-button:hover::before {
    opacity: 1;
}

.contact-button i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}

/* =============================================
   SOCIAL SECTION — PILL BUTTONS
   ============================================= */
.social-section {
    padding: 4rem 0 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    gap: 0.75rem;
    border-radius: var(--radius-md);
}

.social-card i {
    font-size: 2.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-card span {
    color: var(--text-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Branded Hovers */
.social-card.whatsapp:hover  { border-color: #25D366; }
.social-card.whatsapp:hover i { color: #25D366; }
.social-card.youtube:hover   { border-color: #FF0000; }
.social-card.youtube:hover i  { color: #FF0000; }
.social-card.website:hover   { border-color: var(--accent-primary); }
.social-card.website:hover i  { color: var(--accent-primary); }
.social-card.twitter:hover   { border-color: #1DA1F2; }
.social-card.twitter:hover i  { color: #1DA1F2; }
.social-card.instagram:hover { border-color: #E1306C; }
.social-card.instagram:hover i { color: #E1306C; }
.social-card.kabir:hover     { border-color: var(--emerald-600); }
.social-card.kabir:hover i    { color: var(--emerald-600); }

.social-card:hover i {
    transform: scale(1.15) translateY(-2px);
}

/* =============================================
   TEAM SIGNATURE
   ============================================= */
.team-signature {
    text-align: center;
    padding: 3rem 0;
}

.team-signature p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* =============================================
   PARTNER LOGOS MARQUEE
   ============================================= */
.partners-section {
    padding: var(--section-gap) 0 4rem;
    position: relative;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2.5rem 0;
    background: linear-gradient(90deg, rgba(16,185,129,0.02) 0%, rgba(14,165,233,0.02) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    min-width: max-content;
    animation: scrollMarquee 50s linear infinite;
    flex-shrink: 0;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 100px;
    padding: 1.25rem;
    background: var(--glass-bg-strong);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(16,185,129,0.1), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-item:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    background: var(--glass-bg-strong);
}

.partner-item:hover::before {
    left: 200%;
    opacity: 1;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1) drop-shadow(0 4px 12px rgba(16,185,129,0.1));
    transform: scale(1.08);
}

@keyframes scrollMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--glass-bg-strong);
    border-top: 3px solid transparent;
    border-image: var(--gradient-emerald) 1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--emerald-100);
}

.footer-center {
    text-align: center;
}

.footer-main-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(16,185,129,0.1));
    transition: transform 0.4s ease;
}

.footer-main-logo:hover {
    transform: scale(1.08);
}

.footer-title {
    font-size: 1.4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section-title {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section-title i {
    color: var(--accent-primary);
    font-size: 0.95rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-text a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--accent-primary);
}

.footer-text i {
    color: var(--accent-primary);
    font-size: 0.85rem;
    margin-right: 0.35rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16,185,129,0.08);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: var(--gradient-emerald);
    color: var(--text-on-accent);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid var(--emerald-100);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logo-img {
    height: 50px;
    opacity: 0.8;
}

/* =============================================
   PROGRESS BAR & BACK TO TOP
   ============================================= */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(16,185,129,0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-emerald);
    width: 0%;
    border-radius: 0 3px 3px 0;
    transition: width 0.1s linear;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg-strong);
    border: 1px solid var(--emerald-200);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-emerald);
    color: var(--text-on-accent);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
[data-aos] {
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

[data-aos="fade-right"] {
    transform: translateX(-20px) translateZ(0);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0) translateZ(0);
}

[data-aos="fade-left"] {
    transform: translateX(20px) translateZ(0);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0) translateZ(0);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calligraphy-container {
        padding: 1.25rem 2rem;
        border-radius: 50px;
    }

    .calligraphy-title {
        font-size: 2.6rem;
    }

    .iict-title {
        font-size: 2.5rem;
    }

    .about-item {
        padding: 2.5rem 2rem;
    }

    .about-title {
        font-size: 2rem;
    }

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

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    :root {
        --section-gap: 4rem;
    }

    .calligraphy-title {
        font-size: 2rem;
    }

    .iict-title {
        font-size: 2rem;
    }

    .iict-logo-container {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .about-item {
        padding: 2rem 1.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
    }

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

    .donate-now-btn.donate-primary {
        padding: 1rem 2.5rem;
        font-size: 1.15rem;
    }

    .donate-sub-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .donate-now-btn.donate-gpay,
    .donate-now-btn.donate-phonepe {
        width: 100%;
        justify-content: center;
    }

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

    .contact-button {
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
        padding: 1.1rem 2rem;
    }

    .partner-item {
        width: 150px;
        height: 75px;
        padding: 1rem;
    }

    .marquee-content {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .back-to-top {
        left: 1rem;
        bottom: 1rem;
        width: 42px;
        height: 42px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE
   ============================================= */
@media (max-width: 480px) {
    .calligraphy-title {
        font-size: 1.6rem;
    }

    .iict-title {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 1rem;
    }

    .about-item {
        padding: 1.5rem 1.25rem;
    }

    .calligraphy-container {
        padding: 1rem 1.5rem;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .bg-animation,
    .progress-bar,
    .back-to-top,
    .particle {
        display: none !important;
    }

    .glass-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: white;
        border: 1px solid #e2e8f0;
    }

    body {
        background: white;
        color: #1a1a1a;
    }
}