@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg2: #f8fbf9;
  --bg3: #ffffff;
  --primary: #00a86b; /* ImpactGuru Green */
  --primary-light: #e6f7ef;
  --primary-dark: #008f5a;
  --accent: #ff6b6b;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.8);
  --radius: 12px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,168,107,0.1);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.text-reveal-gradient {
    background: linear-gradient(90deg, #1e293b, var(--primary), #1e293b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(244, 63, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand { font-family: 'Outfit', sans-serif; }
a { text-decoration: none !important; }

/* ===== NAVBAR — fixed solid white (Premium Foundation style) ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.navbar:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; align-items: center; justify-content: flex-start; min-height: 100px; padding-right: 15px; }

/* Nav links pushed to the right, grouped close to nav-actions */
.nav-links { display: flex; gap: 4px; align-items: center; margin-left: auto; }

.navbar-brand {
    display: flex; align-items: center; gap: 12px; font-size: 2.2rem;
    font-weight: 900; color: #1e293b; text-decoration: none;
    letter-spacing: -0.5px; transition: opacity 0.3s;
}
.navbar-brand:hover { opacity: 0.85; }


.nav-link {
    color: #475569; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all .25s; position: relative;
    padding: 8px 10px; border-radius: 8px; white-space: nowrap;
}
.nav-link:hover { color: var(--primary) !important; background: #f8fafc; opacity: 1; }

.nav-link.active-page {
    color: var(--primary) !important;
    background: #f1f5f9;
}

.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}
.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    min-width: 210px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid #f1f5f9;
}
.nav-dropdown-wrapper:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all 0.25s;
}
.nav-dropdown-content a:hover {
    background: #f8fafc;
    color: var(--primary);
    transform: translateX(4px);
}

.nav-actions { display: flex; align-items: center; gap: 3px; margin-left: 3px; }
.currency-switcher {
    transition: all 0.3s;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0;
    padding: 4px 8px 4px 12px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.currency-switcher span { 
    color: #475569 !important; 
    font-size: 0.78rem; 
    font-weight: 700; 
    display: none;
}
.curr-select { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #1e293b !important; 
    background: transparent !important;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 65px;
    padding: 0 16px 0 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23475569'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0px center !important;
    background-size: 9px !important;
}
.curr-select option { color: #1e293b; background: #fff; }

/* Social icons in header */
.nav-social-icons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    padding-left: 6px;
    border-left: 1px solid #e2e8f0;
}
.nav-social-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #475569;
    font-size: 0.85rem;
    transition: all 0.22s;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-social-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* ===== BUTTONS ===== */
.btn { 
    display: inline-flex; align-items: center; gap: 8px; 
    padding: 10px 22px; border-radius: 50px; font-size: 0.95rem; 
    font-weight: 600; cursor: pointer; transition: all .3s; border: none;
    text-decoration: none !important;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,168,107,0.3); }

.btn-outline-primary { 
    background: transparent; border: 2px solid var(--primary); color: var(--primary); 
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ===== HERO SECTION ===== */
.hero { 
    height: 100vh;
    min-height: 700px;
    position: relative; 
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #071a12 50%, #0d2818 100%);
}
.hero-slides {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
    z-index: 3;
}
.hero-content { 
    max-width: 700px; 
    position: relative; 
    z-index: 4; 
    color: #fff;
}
/* ===== TEXT ANIMATIONS ===== */
.animate-reveal {
    animation: revealUp 1s cubic-bezier(0, 0.55, 0.45, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.title-shimmer {
    background: linear-gradient(90deg, #fff, var(--primary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}
.hero-badge {
    background: var(--primary); color: #fff;
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
    margin-bottom: 24px; display: inline-block;
    box-shadow: 0 4px 15px rgba(0,168,107,0.3);
}
.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; color: #fff; font-weight: 900; letter-spacing: -2px; }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.hero-image { display: none; }

/* ===== STATS BAR (ImpactGuru Style) ===== */
.stats-bar {
    background: #fff; border-radius: 16px; box-shadow: var(--shadow);
    padding: 30px; display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 2rem; margin-bottom: 10px; color: var(--primary); }
.stat-item h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== SECTION TITLES ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }



/* ===== CAMPAIGN CARDS ===== */
.campaign-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    transition: all .3s ease; border: 1px solid rgba(0,0,0,0.04);
}
.campaign-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.campaign-img { width: 100%; height: 200px; object-fit: cover; }
.campaign-body { padding: 20px; }
.campaign-tag { 
    background: var(--primary-light); color: var(--primary); 
    padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; 
    font-weight: 700; margin-bottom: 12px; display: inline-block;
}
.campaign-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.progress-bar { 
    height: 8px; background: #eee; border-radius: 50px; 
    overflow: hidden; margin-bottom: 10px;
}
.progress-fill { height: 100%; background: var(--primary); border-radius: 50px; transition: width .5s; }
.campaign-stats { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; }
.campaign-footer { 
    margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}

/* ===== MODAL POPUP OVERLAY ===== */
.modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modal-wrapper.show {
    opacity: 1;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    z-index: 1;
}
.modal-wrapper.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: scale(1.1);
}
.modal-header .modal-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e293b;
}

/* ===== FLASH MESSAGES ===== */
.flash-message { 
    position: fixed; top: 20px; right: 20px; z-index: 2000;
    padding: 16px 24px; border-radius: 8px; color: #fff; font-weight: 600;
    box-shadow: var(--shadow); min-width: 300px;
}
.flash-success { background: var(--primary); }
.flash-error { background: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-image { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border: none; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .navbar-brand { font-size: 1.2rem; }
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 24px; }
.form-group label { 
    display: block; font-size: 0.9rem; font-weight: 700; color: #334155; margin-bottom: 8px; 
}
.form-control { 
    width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: 12px;
    background: #f8fafc; color: var(--text); font-size: 1rem; transition: all .3s; outline: none;
}
.form-control:focus { 
    border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.1); 
}
.form-control::placeholder { color: #94a3b8; }

.btn-block { width: 100%; justify-content: center; }

/* ===== AUTH PAGES ===== */
.auth-page {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    min-height: calc(100vh - 150px); display: flex; align-items: center; justify-content: center;
    padding: 60px 20px;
}
.auth-card {
    background: #fff; border-radius: 28px; padding: 50px;
    box-shadow: 0 25px 70px rgba(0, 168, 107, 0.1); width: 100%;
}
.auth-card h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); }

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content-wrapper {
    min-height: calc(100vh - 400px);
}

/* ===== DASHBOARD ===== */
.dashboard-layout { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; background: #f8fafc; }
.dashboard-sidebar { 
    background: #fff; padding: 40px 24px; border-right: 1px solid var(--border); 
}
.sidebar-link { 
    display: flex; align-items: center; gap: 12px; padding: 14px 20px; 
    border-radius: 12px; color: var(--text-muted); font-weight: 600; 
    text-decoration: none; transition: all .2s; margin-bottom: 8px;
}
.sidebar-link.active, .sidebar-link:hover { 
    background: var(--primary-light); color: var(--primary); 
}
.dashboard-content { padding: 40px; }
/* ===== DYNAMIC "I AM" SECTION ===== */
.iam-section {
    padding: 40px 0 20px;
    background: #fff;
    overflow: hidden;
    user-select: none;
}
.iam-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.iam-static-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -3px;
}
.iam-scroller {
    height: 100px;
    overflow: hidden;
    position: relative;
}
.iam-list {
    display: flex;
    flex-direction: column;
    animation: iam-scroll 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}
.iam-item {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 100px;
    height: 100px;
    letter-spacing: -2px;
    white-space: nowrap;
}

.iam-cards-container {
    display: flex;
    gap: 30px;
    margin-top: 80px;
    height: 600px;
}
.iam-card {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    flex: 1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    background: #000;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    cursor: pointer;
}
.iam-card.featured {
    flex: 1.6;
}
.iam-cards-container:hover .iam-card {
    flex: 1;
}
.iam-cards-container .iam-card:hover {
    flex: 2;
}

.iam-card-status {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.iam-card:hover .iam-card-status {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Card Light Shimmer Overlay */
.iam-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s;
    pointer-events: none;
    z-index: 3;
}
.iam-card:hover::after {
    left: 100%;
}

.iam-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.iam-card:hover img {
    transform: scale(1.15);
    opacity: 0.5;
}

.iam-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px;
    z-index: 2;
    transition: all 0.6s ease;
}
.iam-card-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}
.iam-card-content h3 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    margin-bottom: 15px; 
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    white-space: nowrap;
}
.iam-card-content p { 
    font-size: 1.3rem; 
    color: rgba(255,255,255,0.85);
    max-width: 450px;
    margin-bottom: 35px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.iam-card:hover .iam-card-content p {
    opacity: 1;
    transform: translateY(0);
}
.iam-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}
.iam-card:hover .iam-card-btn {
    opacity: 1;
    transform: scale(1);
}

@keyframes iam-scroll {
    0%, 15% { transform: translateY(0); }
    20%, 35% { transform: translateY(-100px); }
    40%, 55% { transform: translateY(-200px); }
    60%, 75% { transform: translateY(-300px); }
    80%, 95% { transform: translateY(-400px); }
    100% { transform: translateY(0); }
}

@media (max-width: 900px) {
    .iam-cards-container { flex-direction: column; height: auto; }
    .iam-card { height: 450px; flex: none !important; margin-bottom: 30px; }
    .iam-card-content h3 { font-size: 2.2rem; }
}

/* ===== PREMIUM CAMPAIGNS LISTING ===== */
.campaigns-listing-page .container { max-width: 1210px; }
.card-cta-overlay { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

@keyframes cardPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(244, 63, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.campaign-card-premium:hover img {
    transform: scale(1.1);
}

.campaign-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1100px) {
    .campaign-grid-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .campaign-grid-premium { grid-template-columns: 1fr; }
}

/* ===== ADANI STYLE TILES (Our Work) ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.work-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border-radius: 12px;
}
.work-card:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}
.work-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.work-card-banner {
    padding: 24px 30px;
    color: #fff;
    min-height: 100px;
}
.work-card-banner h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
}
.work-card-banner p {
    margin: 8px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Colors from screenshot */
.bg-work-green { background: #4cae4f; }
.bg-work-blue { background: #00bcd4; }
.bg-work-forest { background: #2e7d32; }

/* ===== OUR REACH SECTION ===== */
.reach-section {
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}
.reach-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.reach-map-container {
    position: relative;
    text-align: center;
    border-radius: 40px;
    overflow: hidden;
}
.reach-map-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}
.reach-map-container:hover .reach-map-full-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .reach-map-pc-only { display: none !important; }
    .reach-map-mobile-only { display: block !important; width:100% }
    .reach-map-container { min-height: 300px !important; }
}

.india-map-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
    transition: all 0.5s ease;
}
.india-shape {
    transition: all 0.3s ease;
    cursor: pointer;
}
.p-pulse {
    animation: p-pulse-anim 2s infinite;
    transform-origin: center;
}
@keyframes p-pulse-anim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
.reach-map-container:hover .world-map-img {
    transform: scale(1.02);
    opacity: 1;
}
.reach-pill {
    position: absolute;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 168, 107, 0.05);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: float-reach 4s ease-in-out infinite;
}

@keyframes float-reach {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reach-pill::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 6px;
    background: radial-gradient(rgba(0,168,107,0.1), transparent);
    border-radius: 50%;
    opacity: 0.4;
}

.reach-pill:nth-child(even) { animation-delay: 2s; }

.reach-pill i { color: var(--primary); font-size: 14px; }

.reach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.reach-stat-item {
    background: #fff;
    padding: 50px 30px;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.4s ease;
}
.reach-stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0,168,107,0.1);
}
.reach-stat-item h4 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1;
}
.reach-stat-item p {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* ===== DASHBOARD ENHANCEMENTS ===== */
.dashboard-layout { 
    display: grid; 
    grid-template-columns: 280px 1fr; 
    min-height: 100vh; 
    background: #f8fafc;
    margin-top: 80px;
}

.dashboard-sidebar {
    background: #fff;
    padding: 30px 20px;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 10px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 25px;
}

.dash-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.dash-user-info strong { display: block; font-size: 0.95rem; color: #1e293b; }
.dash-role { font-size: 0.75rem; color: #64748b; font-weight: 700; text-transform: uppercase; }

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.sidebar-link i { font-size: 1.1rem; width: 24px; text-align: center; }
.sidebar-link:hover, .sidebar-link.active {
    background: #f1f5f9;
    color: var(--primary);
}
.sidebar-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-badge {
    margin-left: auto;
    background: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    border: 1px solid #e2e8f0;
}

.dash-nav-divider { height: 1px; background: #f1f5f9; margin: 15px 0; }

.dashboard-content { padding: 40px; }

/* Dashboard Tabs */
.dash-tab { display: none; animation: fadeIn 0.4s ease; }
.dash-tab.active { display: block; }

@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.dash-header { margin-bottom: 40px; }
.dash-header h1, .dash-header h2 { font-size: 2rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.dash-header p { color: #64748b; font-size: 1.1rem; }

/* Dashboard Cards and Grids */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.stat-purple .stat-icon { background: #f5f3ff; color: #7c3aed; }
.stat-green .stat-icon { background: #f0fdf4; color: #22c55e; }
.stat-blue .stat-icon { background: #eff6ff; color: #3b82f6; }
.stat-orange .stat-icon { background: #fff7ed; color: #f97316; }

.stat-value { font-size: 1.8rem; font-weight: 900; color: #1e293b; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: #64748b; font-weight: 600; margin-bottom: 15px; }
.stat-trend { font-size: 0.75rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* List Improvements */
.dash-section { background: #fff; border-radius: 24px; padding: 30px; border: 1px solid #f1f5f9; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.dash-section-header h3 { font-size: 1.25rem; font-weight: 800; }

.campaign-list-item {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border-radius: 16px;
    transition: background 0.2s;
    border-bottom: 1px solid #f8fafc;
}

.campaign-list-item:hover { background: #f8fafc; }
.cli-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cli-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: #64748b; font-weight: 600; }

.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 32px;
    border: 2px dashed #e2e8f0;
}
.empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-state h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.empty-state p { color: #64748b; max-width: 400px; margin: 0 auto 30px; }

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar { display: none; } /* Mobile nav should handle this */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr; }
    .campaign-list-item { grid-template-columns: 1fr; gap: 15px; }
}
/* ===== CAMPAIGN DETAIL PAGE ===== */
.campaign-hero-bg {
    background: linear-gradient(rgba(7,26,18,0.8), rgba(7,26,18,0.6)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1920&auto=format&fit=crop'); 
    padding: 160px 0 80px; 
    background-position: center; 
    background-size: cover; 
    border-radius: 0 0 60px 60px; 
    margin-bottom: 50px;
    position: relative;
}
.campaign-hero-title {
    font-size: 3.5rem; 
    font-weight: 900; 
    line-height: 1.1; 
    color: #fff; 
    max-width: 800px; 
    letter-spacing: -2px; 
    margin: 0;
}
.campaign-main-grid {
    display: grid; 
    grid-template-columns: 1.8fr 1fr; 
    gap: 50px; 
    align-items: start;
}
.campaign-main-image {
    width: 100%; 
    height: auto; 
    aspect-ratio: 16 / 9;
    object-fit: cover; 
    object-position: center top;
    display: block; 
    filter: saturate(1.1);
}
.campaign-card-image {
    width: 100%; 
    height: 210px; 
    object-fit: cover; 
    object-position: center top; 
    display: block; 
    transition: transform .6s ease;
}
.campaign-card-mini-premium .campaign-card-image {
    height: 100% !important;
}
.campaign-card-image:hover {
    transform: scale(1.1);
}
.campaign-story-grid {
    display: grid; 
    grid-template-columns: 1.8fr 1fr; 
    gap: 50px;
}

/* ===== ANNOUNCEMENT TICKER ===== */
.announcement-ticker {
    background: #ffffff;
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
    z-index: 5;
}
.ticker-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.ticker-label {
    background: #111827;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ticker-pulse-red {
    display: block;
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}
.ticker-wrapper {
    flex: 1;
    position: relative;
    height: 30px;
    overflow: hidden;
}
.ticker-overlay-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(to bottom, #fff, transparent);
    z-index: 5;
}
.ticker-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 5;
}
.ticker-track {
    position: absolute;
    width: 100%;
    top: 0;
    animation: tickerVerticalModern 12s infinite ease-in-out;
}
.ticker-item {
    height: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}
.ticker-more {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.85rem;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.ticker-more i { font-size: 0.7rem; }
.ticker-more:hover { color: var(--primary-dark); transform: translateX(5px); }

/* UNIQUE GLASS-REVEAL CAROUSEL */
.urgentUniqueSwiper {
    padding: 20px 0 80px;
    overflow: visible;
}

.unique-heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -3px;
    margin: 0;
    text-align: center;
}

.urgent-header-unique {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.glass-reveal-card {
    position: relative;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.card-image-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 1s ease;
}

.glass-reveal-card:hover .card-image-bg img {
    transform: scale(1.1);
    opacity: 0.6;
}

.urgent-overlay-tag {
    position: absolute;
    top: 30px; right: 30px;
    background: #e11d48;
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4);
}

.glass-content-area {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transition: all 0.6s ease;
}

.glass-reveal-card:hover .glass-content-area {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 40%, transparent 100%);
}

.glass-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.glass-cat {
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.glass-progress-circle {
    position: relative;
    width: 60px; height: 60px;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.perc-val {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
}

.glass-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
    transition: all 0.5s ease;
    letter-spacing: -1px;
}

.glass-reveal-card:hover .glass-title {
    margin-bottom: 20px;
}

.glass-reveal-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.glass-reveal-card:hover .glass-reveal-details {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.glass-reveal-details p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.glass-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-box { font-family: 'Outfit', sans-serif; }
.stat-box span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.stat-box strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.stat-divider {
    width: 1px; height: 30px;
    background: rgba(255,255,255,0.1);
}

/* Unique Navigation Styling */
.unique-nav-wrap {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.unique-pagination {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px;
    width: auto !important;
}

.unique-pagination .swiper-pagination-bullet {
    width: 12px; height: 12px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
    border-radius: 50%;
}

.unique-pagination .swiper-pagination-bullet-active {
    width: 35px;
    background: var(--primary);
    border-radius: 10px;
}

.urgentUniqueSwiper .swiper-slide {
    width: 320px;
}
@media (min-width: 768px) { .urgentUniqueSwiper .swiper-slide { width: 400px; } }
@media (min-width: 1200px) { .urgentUniqueSwiper .swiper-slide { width: 450px; } }

@media (max-width: 768px) {
    .glass-reveal-card { height: 450px; }
    .glass-title { font-size: 1.4rem; }
    .unique-heading { font-size: 2.2rem; }
}


/* Visibility Utilities */
.desktop-only { display: flex !important; }
.mobile-only { display: none !important; }

@media (max-width: 991px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
}

@media (max-width: 1024px) {
    /* Base style for both */
    .currency-switcher {
        display: inline-flex !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        padding: 0 !important;
        border-radius: 99px !important; /* Fully pill-shaped */
        align-items: center;
        overflow: hidden;
    }
    
    /* Header specific - Match Donate Button */
    .nav-actions .currency-switcher {
        width: 100px !important;
        height: 34px !important; /* Smaller to match btn-sm */
    }
    .nav-actions .curr-select {
        font-size: 0.8rem !important;
        padding-left: 12px !important;
        background-position: right 8px center !important;
        background-size: 10px !important;
    }

    /* Menu specific - Larger for fingers */
    .nav-links .currency-switcher {
        margin: 30px 20px !important;
        width: 140px !important;
        height: 46px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-radius: 12px !important;
    }
    .nav-links .curr-select {
        font-size: 0.95rem !important;
        padding-left: 15px !important;
        background-position: right 12px center !important;
        background-size: 14px !important;
    }
    
    .curr-select {
        color: #1e293b !important;
        font-weight: 800 !important;
        width: 100% !important;
        height: 100% !important;
        background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat !important;
        cursor: pointer;
        border: none !important;
        outline: none !important;
    }
}
