/* Color Palette definition */
:root {
    --primary-color: #0d233a;   /* Deep Navy Blue */
    --accent-color: #f7941d;    /* Premium Saffron/Orange */
    --text-dark: #333333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Topbar Styles --- */
.topbar {
    background-color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

/* --- Modern Style Variables --- */
:root {
    --nav-bg: rgba(255, 255, 255, 0.95); /* Slick White Glass effect */
    --text-color: #1e293b;               /* Deep Slate Dark */
    --accent-gradient: linear-gradient(135deg, #0ea5e9, #2563eb); /* Modern Royal Blue Gradient */
    --hover-color: #2563eb;               /* Electric Blue */
    --font-heading: 'Poppins', sans-serif;
}

/* --- Topbar Customization for Modern Look --- */
.topbar {
    background: #0f172a; /* Sleek Dark Slate */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* --- Navbar Core --- */
.modern-navbar {
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px); /* Blurs the content behind navbar when scrolling */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Logo & Brand Design --- */
.navbar-logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 12px; /* Smooth rounded corners for logo */
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.main-title {
    color: #0f172a;
    font-size: 1.2rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.sub-title {
    font-size: 0.65rem;
    color: #64748b;
    letter-spacing: 1.5px;
}

/* --- Nav Links --- */
.modern-navbar .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Modern Underline Hover Animation */
.modern-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 14px;
    background-color: var(--hover-color);
    transition: width 0.3s ease;
}

.modern-navbar .navbar-nav .nav-link:hover::after,
.modern-navbar .navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
}

.modern-navbar .navbar-nav .nav-link:hover,
.modern-navbar .navbar-nav .nav-link.active {
    color: var(--hover-color) !important;
}

/* --- Modern Dropdown Hover (Desktop) --- */
@media (min-width: 992px) {
    .modern-navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 15px;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: #ffffff;
    border-radius: 16px; /* Super smooth rounded menu */
    padding: 12px;
    min-width: 240px;
}

.dropdown-menu-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu-item:hover {
    background-color: rgba(37, 99, 235, 0.06);
    color: var(--hover-color);
    transform: translateX(4px);
}

/* --- Modern Gradient Donate Button --- */
.btn-modern-donate {
    background: var(--accent-gradient);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-modern-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: #ffffff !important;
}

/* --- Mobile Toggle Cross (✕) Animation --- */
.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0f172a;
    margin: 5px 0;
    transition: all 0.25s ease;
}

.navbar-toggler:not(.collapsed) .top-bar {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: translateY(-7.5px) rotate(-45deg);
}




/* --- Google Font Import for Modern Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* --- Hero Section Styles --- */
.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100vh;
}

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,.45),
        rgba(15,23,42,.45)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-sub-title {
    color: #38bdf8;
    font-size: 1rem;
    letter-spacing: 3px;
}

.hero-main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg,#38bdf8,#6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 750px;
    margin: auto;
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.8;
}

.btn-hero {
    border-radius: 12px;
    transition: .3s;
}

.btn-hero-primary {
    background: linear-gradient(135deg,#2563eb,#0ea5e9);
    border: none;
    color: #fff;
}

.btn-hero-outline {
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
}

.btn-hero-primary:hover,
.btn-hero-outline:hover {
    transform: translateY(-3px);
}

@media(max-width:991px){

    .hero-main-heading{
        font-size:3rem;
    }

    .hero-description{
        font-size:1rem;
    }
}

@media(max-width:767px){

    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-section{
        height:85vh;
    }

    .hero-main-heading{
        font-size:2rem;
    }

    .hero-description{
        font-size:.95rem;
    }

    .hero-buttons .btn{
        width:100%;
    }
}
/* --- Hero Buttons Styling --- */
.hero-buttons {
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero {
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 1. Donate Now Button */
.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4) !important;
    color: #ffffff;
}

/* 2. Join Us Button */
.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* 3. Become Volunteer Button */
.btn-hero-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* --- Smooth Keyframe Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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




/* --- Overlap Split Design Styles --- */
.overlap-about-section {
    background: #fafafa;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Modern Badge with Live Pulse Effect */
.modern-badge {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Green dot */
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseAnimation 1.5s infinite;
}

.overlap-title {
    font-size: 2.6rem;
    color: #0f172a;
    line-height: 1.3;
}

/* Wave Highlight Effect under key text */
.highlight-wave {
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
    font-weight: 800;
}

/* --- Overlapping Content Cards --- */
.overlap-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards slight asymmetric shift on desktop */
@media (min-width: 992px) {
    .card-one { transform: translateX(0px); }
    .card-two { transform: translateX(30px); } /* Second card is slightly shifted right */
    
    .overlap-card:hover {
        transform: translateY(-5px) translateX(15px);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08) !important;
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.card-icon.icon-alt {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

/* --- Right Side: Abstract Floating Image Layout --- */
.image-frame-wrapper {
    position: relative;
    padding: 30px;
    display: flex;
    justify-content: center;
}

/* Abstract Shape behind the image */
.shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
    top: -10px;
    right: -10px;
    z-index: 1;
    animation: blobMover 8s ease-in-out infinite alternate;
}

.main-frame {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(2deg); /* Artistic tilt */
    transition: transform 0.4s ease;
}

.main-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.main-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Floating Stats Badge over Image */
.floating-quick-card {
    position: absolute;
    bottom: 10px;
    left: -10px;
    z-index: 3;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    min-width: 150px;
}

/* --- Animations Keyframes --- */
@keyframes pulseAnimation {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes blobMover {
    0% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%; }
    100% { border-radius: 40% 40% 60% 40% / 60% 40% 60% 50%; }
}

/* Mobile Friendly overrides */
@media (max-width: 991px) {
    .overlap-title { font-size: 2rem; }
    .main-frame { transform: rotate(0deg); }
    .shape-blob { display: none; }
    .floating-quick-card { left: 20px; bottom: -20px; }
}





/* --- Mission & Vision Section Styles --- */
.mission-vision-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* Header Elements */
.section-indicator {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- THE KINETIC CARD DESIGN --- */
.kinetic-card {
    background: #f8fafc; /* Ultra Light Slate Gray */
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Watermark Letters (M & V) inside cards */
.card-watermark {
    position: absolute;
    right: -15px;
    bottom: -35px;
    font-size: 11rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.02);
    font-family: 'Poppins', sans-serif;
    user-select: none;
    z-index: -1;
    transition: all 0.5s ease;
}

/* Icons Design */
.kinetic-icon-box {
    width: 65px;
    height: 65px;
    background: #ffffff;
    color: #2563eb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Different color theme for Vision icon */
.kinetic-icon-box.icon-vision {
    color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
}

.card-heading {
    transition: color 0.3s ease;
}

.card-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* --- HOVER EFFECT MAGIC --- */
.kinetic-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Dark Slate Blue Gradient */
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15) !important;
    border-color: transparent;
}

.kinetic-card:hover .card-heading {
    color: #ffffff !important;
}

.kinetic-card:hover .card-desc {
    color: #94a3b8 !important; /* Soft gray readable description */
}

.kinetic-card:hover .kinetic-icon-box {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.kinetic-card:hover .kinetic-icon-box.icon-vision {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.3);
}

.kinetic-card:hover .card-watermark {
    color: rgba(255, 255, 255, 0.03);
    transform: scale(1.1) rotate(-5deg);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .section-title { font-size: 1.8rem; }
    .kinetic-card { padding: 30px 20px !important; }
}


/* --- Our Programs Section Styles --- */
.programs-section {
    background-color: #f8fafc; /* Sleek cool grey background */
    font-family: 'Poppins', sans-serif;
}

.program-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.program-main-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-accent-line {
    width: 65px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-radius: 10px;
}

/* --- GLOW CARD BASE STRUCTURE --- */
.program-glow-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Icons Styling */
.program-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

/* Program Specific Pastel Background Colors */
.color-edu   { background: rgba(37, 99, 235, 0.08); color: #2563eb; }    /* Royal Blue */
.color-food  { background: rgba(247, 148, 29, 0.08); color: #f7941d; }   /* Saffron/Orange */
.color-health{ background: rgba(244, 63, 94, 0.08); color: #f43f5e; }   /* Rose/Red */
.color-tree  { background: rgba(16, 185, 129, 0.08); color: #10b981; }   /* Emerald Green */
.color-women { background: rgba(168, 85, 247, 0.08); color: #a855f7; }   /* Purple */

.program-title {
    color: #0f172a;
    font-size: 1.2rem;
}

.program-text {
    line-height: 1.6;
}

/* --- BOTTOM GLOW BAR ANIMATION --- */
.glow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow Bar Matching Colors */
.bar-edu   { background: #2563eb; }
.bar-food  { background: #f7941d; }
.bar-health{ background: #f43f5e; }
.bar-tree  { background: #10b981; }
.bar-women { background: #a855f7; }

/* --- HOVER ACTIONS --- */
.program-glow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06) !important;
}

/* Glow Bar Slide Out on Hover */
.program-glow-card:hover .glow-bar {
    transform: scaleX(1);
}

/* Icon Inversion on Hover */
.program-glow-card:hover .program-icon-box.color-edu    { background: #2563eb; color: #ffffff; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.program-glow-card:hover .program-icon-box.color-food   { background: #f7941d; color: #ffffff; box-shadow: 0 8px 20px rgba(247, 148, 29, 0.3); }
.program-glow-card:hover .program-icon-box.color-health { background: #f43f5e; color: #ffffff; box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3); }
.program-glow-card:hover .program-icon-box.color-tree   { background: #10b981; color: #ffffff; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }
.program-glow-card:hover .program-icon-box.color-women  { background: #a855f7; color: #ffffff; box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3); }

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .program-main-title { font-size: 1.8rem; }
}




/* --- Impact Statistics Section Styles --- */
.stats-section {
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1600&auto=format&fit=crop&q=40') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax Scrolling Effect */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Dark Overlay for Ultra Contrast */
.stats-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(9, 15, 30, 0.9));
    z-index: 1;
}

/* Glassmorphism Card Layout */
.stat-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Neon Glow Icons styling */
.stat-icon-glow {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Color Palette for Glow */
.color-cyan { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; box-shadow: 0 0 15px rgba(14, 165, 233, 0.2); }
.color-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); }
.color-emerald { background: rgba(16, 185, 129, 0.1); color: #10b981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.color-rose { background: rgba(244, 63, 94, 0.1); color: #f43f5e; box-shadow: 0 0 15px rgba(244, 63, 94, 0.2); }

/* Typography */
.stat-number {
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
    .stat-number { font-size: 2rem; }
    .stat-glass-card { padding: 20px 10px !important; border-radius: 16px; }
    .stats-section { background-attachment: scroll; } /* Disables parallax on phone to save battery */
}



/* --- Recent Campaigns Section Styles --- */
.campaigns-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.campaign-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.campaign-main-title {
    font-size: 2.3rem;
    color: #0f172a;
    font-weight: 800;
}

/* View All Link Design */
.btn-view-all {
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* --- HORIZONTAL CARD MAGIC --- */
.campaign-horizontal-card {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08) !important;
}

/* Image zoom box effect */
.campaign-img-wrapper {
    overflow: hidden;
    height: 350px;
}

.campaign-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-horizontal-card:hover .campaign-img {
    transform: scale(1.05);
}

/* --- Badges With Pulse Dot --- */
.campaign-status-badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.badge-save { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.badge-water { background: rgba(14, 165, 233, 0.08); color: #0ea5e9; }
.badge-food { background: rgba(247, 148, 29, 0.08); color: #f7941d; }

.live-dot {
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 6px;
}

/* --- Campaign Action Buttons --- */
.btn-campaign-outline {
    border: 2px solid #e2e8f0;
    color: #475569;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-campaign-outline:hover {
    border-color: #0f172a;
    color: #0f172a;
}

.btn-campaign-action {
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-save { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25); }
.btn-water { background: linear-gradient(135deg, #0ea5e9, #0284c7); box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25); }
.btn-food { background: linear-gradient(135deg, #f7941d, #dd7c11); box-shadow: 0 4px 15px rgba(247, 148, 29, 0.25); }

.btn-campaign-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .campaign-main-title { font-size: 1.8rem; }
    .campaign-img-wrapper { height: 260px; }
    .campaign-body-content { padding: 30px 20px !important; }
}





/* --- Minimalist Visual Gallery Styles --- */
.gallery-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.gallery-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.gallery-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- VISUAL IMAGE CARD DESIGN (NO TEXT OVERLAY) --- */
.visual-gallery-card {
    height: 280px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    background: #f8fafc;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(95%); /* Soft subtle matte effect by default */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* --- HOVER EFFECTS (JUST IMAGE POP & GLOW) --- */
.visual-gallery-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb; /* Active Brand Border Glow */
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12) !important;
}

.visual-gallery-card:hover .visual-img {
    transform: scale(1.06); /* Clean Image Zoom */
    filter: grayscale(0%) brightness(105%); /* Brings full vivid colors on hover */
}

/* Responsive Grid fixes */
@media (max-width: 767.98px) {
    .gallery-main-title { font-size: 1.8rem; }
    .visual-gallery-card { height: 230px; border-radius: 16px; }
}



/* --- Testimonials Section Styles --- */
.testimonials-section {
    background-color: #f8fafc; /* Sleek light slate gray background */
    font-family: 'Poppins', sans-serif;
}

.testimonial-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.testimonial-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- GLOW ACCENT TESTIMONIAL CARD --- */
.testimonial-glow-card {
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.01) !important;
}

/* Watermark Quote Design */
.quote-icon-box {
    font-size: 2.5rem;
    color: #cbd5e1; /* Smooth grey tone */
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Profile Picture Frame Setup */
.user-avatar-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 3px;
    background: #e2e8f0; /* Default subtle frame border */
    transition: background 0.4s ease;
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 1.1rem;
}

.user-role {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

/* --- HOVER ACTIONS MAGIC --- */
.testimonial-glow-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06) !important;
}

/* Quote Icon color shift & pop up */
.testimonial-glow-card:hover .quote-icon-box {
    color: #2563eb;
    transform: translateY(-3px) rotate(-5deg);
}

/* Dynamic avatar glow ring on hover */
.testimonial-glow-card:hover .user-avatar-wrapper {
    background: linear-gradient(135deg, #2563eb, #6366f1);
}

/* Mobile Responsiveness fixes */
@media (max-width: 767.98px) {
    .testimonial-main-title { font-size: 1.8rem; }
    .testimonial-glow-card { padding: 35px 25px !important; }
}




/* --- Donation Section Styles --- */
.donation-section {
    background-color: #f8fafc; /* Sleek light grey tone background */
    font-family: 'Poppins', sans-serif;
}

.donate-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.donate-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- LEFT QR TRUST CARD --- */
.qr-trust-card {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.rounded-24 { border-radius: 24px; }
.rounded-16 { border-radius: 16px; }

.qr-wrapper {
    width: max-content;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.qr-img {
    border-radius: 12px;
}

/* Futuristic Scan Line Animation on QR code */
.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    animation: scanAnimation 3s linear infinite;
}

@keyframes scanAnimation {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.upi-id-box {
    border: 1px dashed #cbd5e1;
}

/* --- RIGHT PAYMENT GATEWAY CARD --- */
.donation-gateway-card {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Amount Pills Setup */
.amount-pill-btn {
    padding: 10px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.amount-pill-btn:hover,
.amount-pill-btn.active {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
}

/* Form Inputs Design */
.gateway-input {
    padding: 14px 16px;
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.gateway-input:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.08);
}

/* Custom layout for currency symbol inside amount field */
#donationAmount {
    padding-left: 35px;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569;
}

/* --- PREMIUM DONATE ACTION BUTTON --- */
.btn-donate-now {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Trust Green Color Theme */
    color: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.btn-donate-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
}

.seal-logos {
    font-size: 1.3rem;
}

/* Mobile responsive screen adjustments */
@media (max-width: 767.98px) {
    .donate-main-title { font-size: 1.8rem; }
    .donation-gateway-card { padding: 30px 20px !important; }
}



/* --- Blog / News Section Styles --- */
.blog-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.blog-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.blog-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- MAGAZINE CARD ARCHITECTURE --- */
.blog-interactive-card {
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Fixed aspect ratio setup for images */
.blog-img-wrapper {
    height: 220px;
    width: 100%;
    background-color: #f1f5f9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Clean Category Badges */
.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Vibrant Domain Specific Colors */
.badge-event { background-color: #3b82f6; }       /* Blue */
.badge-activity { background-color: #10b981; }    /* Trust Green */
.badge-awareness { background-color: #f59e0b; }   /* Alert Orange */

/* Typography Configurations */
.dynamic-title-link {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.dynamic-title-link:hover {
    color: #2563eb !important;
}

/* Pure CSS Line Clamp to fix card height mismatch perfectly */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Micro interaction arrow */
.transition-arrow {
    transition: transform 0.3s ease;
}

/* --- INTERACTIVE ACTION TRIGGER --- */
.blog-interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08) !important;
}

.blog-interactive-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-interactive-card:hover .btn-read-more .transition-arrow {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .blog-main-title { font-size: 1.8rem; }
    .blog-img-wrapper { height: 190px; }
    .dynamic-title-link { font-size: 1.05rem; }
}




/* --- Partners & Sponsors Styles --- */
.sponsors-section {
    background-color: #f8fafc; /* Subtle light slate gray background */
    font-family: 'Poppins', sans-serif;
}

.sponsor-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.sponsor-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- INFINITE TICKER ENGINE (NO JS REQUIRED) --- */
.sponsor-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Smooth fading edge shadows */
.ticker-fade-overlay {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.fade-left {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}
.fade-right {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

/* Dynamic moving track */
.sponsor-ticker-track {
    width: max-content;
    animation: infiniteScroll 25s linear infinite;
}

/* CSS Keyframe for continuous translation */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 24px)); /* Adjusts perfectly for gap spacing */
    }
}

/* Individual Logo Styles */
.sponsor-logo-item {
    width: 160px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.sponsor-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Soft Matte Grayscale Filter by default */
    filter: grayscale(100%) opacity(60%);
    transition: filter 0.4s ease, opacity 0.4s ease;
}

/* --- HOVER MICRO INTERACTIONS --- */
/* Pauses the carousel track when user hovers anywhere on it */
.sponsor-ticker-wrapper:hover .sponsor-ticker-track {
    animation-play-state: paused;
}

/* Brings logo back to full vivid colors on hover */
.sponsor-logo-item:hover img {
    filter: grayscale(0%) opacity(100%);
}

.sponsor-logo-item:hover {
    transform: scale(1.08);
}

/* Responsive Scaling */
@media (max-width: 767.98px) {
    .sponsor-main-title { font-size: 1.8rem; }
    .sponsor-logo-item { width: 120px; height: 50px; }
    .sponsor-ticker-track { animation-duration: 18s; } /* Slightly faster on smaller displays */
}



/* --- Contact Section Styles --- */
.contact-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-tag {
    color: #2563eb;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
}

.contact-main-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-radius: 10px;
}

/* --- LEFT PANEL: INFO & MAP ENGINE --- */
.info-connect-card {
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.icon-box-accent {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.map-embed-wrapper {
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.min-h-250 {
    min-height: 250px;
}

/* --- RIGHT PANEL: FLOATING CONTACT FORM --- */
.contact-form-card {
    border-radius: 28px;
    border: 1px solid #f1f5f9;
}

.form-floating-custom {
    position: relative;
}

.contact-input {
    width: 100%;
    padding: 18px 16px 10px 16px;
    font-size: 0.95rem;
    color: #0f172a;
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-textarea {
    height: auto;
    resize: none;
}

.custom-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

textarea + .custom-label {
    top: 25px;
}

.contact-input:focus,
.contact-input:not(:placeholder-shown),
.contact-input:valid {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.08);
}

.contact-input:focus + .custom-label,
.contact-input:not(:placeholder-shown) + .custom-label {
    top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563eb;
}

/* --- ACTION SUBMIT BUTTON --- */
.btn-contact-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .contact-main-title { font-size: 1.8rem; }
    .contact-form-card { padding: 35px 20px !important; }
    .min-h-250 { height: 280px; }
}



/* --- Premium Footer Section Styles --- */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #2563eb;
}

.text-primary-blue { color: #3b82f6; }
.text-slate-400 { color: #94a3b8; }
.text-slate-600 { color: #475569; }

.border-secondary-slate {
    border-color: rgba(148, 163, 184, 0.15) !important;
}

/* New Address Info Block Custom CSS */
.footer-real-info i {
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.footer-heading-accent {
    position: relative;
    padding-bottom: 8px;
}

.footer-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: #3b82f6;
    border-radius: 2px;
}

/* --- QUICK LINKS HOVER ENGINE --- */
.footer-links-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.small-arrow {
    font-size: 0.65rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links-list li a:hover .small-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #3b82f6;
}

/* --- SOCIAL MEDIA ICONS --- */
.social-round-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-round-btn:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

/* --- INTEGRATED NEWSLETTER FORM --- */
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 0 0 12px !important;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    box-shadow: none;
    color: #ffffff;
}

.newsletter-input::placeholder { color: #64748b; }

.btn-newsletter-submit {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 0 12px 12px 0 !important;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.btn-newsletter-submit:hover { background-color: #2563eb; color: #ffffff; }

.legal-link-hover { transition: color 0.2s ease; }
.legal-link-hover:hover { color: #ffffff !important; }

@media (max-width: 767.98px) {
    .main-footer { text-align: left; }
    .footer-legal-links { width: 100%; justify-content: center; margin-top: 10px; }
}




/* --- Achievements Hero Banner CSS --- */
.achievements-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); /* Clean, bright medical/NGO backdrop */
    font-family: 'Poppins', sans-serif;
    min-height: 85vh;
}

/* Background Glowing Circles for modern look */
.hero-bg-blur-circle-left {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.04);
    filter: blur(100px);
    border-radius: 50%;
}
.hero-bg-blur-circle-right {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: rgba(34, 197, 94, 0.04);
    filter: blur(80px);
    border-radius: 50%;
}

/* Text Badges & Elements */
.badge-dot-accent {
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
}
.small-tag {
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
}
.gradient-text-blue {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheading {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Mini Stat Row inside Hero */
.stat-mini-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 12px;
}
.text-primary-blue { color: #2563eb; }
.text-success-green { color: #22c55e; }
.text-warning-orange { color: #f59e0b; }
.extra-small-text { font-size: 0.75rem; font-weight: 600; display: block; }

/* --- HERO ACTION BUTTON --- */
.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

/* --- IMAGE COLLAGE ENGINE --- */
.hero-collage-wrapper {
    width: 100%;
    max-width: 500px;
    height: 420px;
}

.collage-card {
    position: absolute;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-main {
    top: 0;
    left: 0;
    width: 82%;
    height: 350px;
    z-index: 2;
}

.card-secondary {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 220px;
    z-index: 1;
    border: 6px solid #ffffff; /* Sharp separator */
}

.collage-accent-badge {
    position: absolute;
    bottom: 90px;
    left: -20px;
    z-index: 3;
    min-width: 100px;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Micro-Interaction Animation */
.hero-collage-wrapper:hover .card-main {
    transform: scale(1.02) translateY(-5px);
}
.hero-collage-wrapper:hover .card-secondary {
    transform: scale(1.04) translate(5px, 5px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.animate-pulse-slow {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive Scaling fixes */
@media (max-width: 991.98px) {
    .hero-main-title { font-size: 2.5rem; }
    .hero-subheading { font-size: 1rem; }
    .hero-collage-wrapper { height: 320px; max-width: 400px; margin-top: 30px; }
    .card-main { width: 100%; height: 300px; }
}



/* --- Stats Counter Section CSS --- */
.stats-counter-section {
    background-color: #f8fafc; /* Subtle light backdrop */
    font-family: 'Poppins', sans-serif;
}

.stats-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.stats-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- PREMIUM CARD DESIGN --- */
.counter-premium-card {
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08) !important;
    border-color: #cbd5e1;
}

/* Icons Box Styling & Variable Accent Colors */
.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Color Palette Engine */
.color-blue { background-color: rgba(37, 99, 235, 0.08); color: #2563eb; }
.color-green { background-color: rgba(34, 197, 94, 0.08); color: #22c55e; }
.color-orange { background-color: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.color-purple { background-color: rgba(168, 85, 247, 0.08); color: #a855f7; }
.color-gold { background-color: rgba(234, 179, 8, 0.08); color: #eab308; }
.color-teal { background-color: rgba(20, 184, 166, 0.08); color: #14b8a6; }

/* Text & Typography Inside Stats */
.stat-number {
    font-size: 2.2rem;
    line-height: 1;
}
.stat-plus-sign {
    font-size: 1.5rem;
    margin-left: 2px;
}
.stat-label {
    font-size: 0.72rem;
    color: #64748b !important;
}

/* Static Plus Sign Color Map matching the grid */
.text-primary-blue { color: #2563eb; }
.text-success-green { color: #22c55e; }
.text-warning-orange { color: #f59e0b; }
.text-purple { color: #a855f7; }
.text-gold { color: #eab308; }
.text-teal { color: #14b8a6; }



/* --- Awards & Recognition Section CSS --- */
.awards-section {
    font-family: 'Poppins', sans-serif;
}

.awards-top-tag {
    color: #2563eb; /* Brand Blue */
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.awards-accent-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 10px;
}

.max-w-2xl {
    max-width: 42rem;
}

/* --- PREMIUM AWARD CARD ENGINE --- */
.award-premium-card {
    border-radius: 20px;
    border-color: #f1f5f9 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Wrapper and Zoom-In Trigger */
.award-img-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
}

.award-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Clean Year Badge */
.award-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Typography Inside Content Box */
.award-org-name {
    font-size: 0.72rem;
    color: #2563eb;
}

.award-title {
    font-size: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.award-desc {
    color: #64748b !important;
    line-height: 1.6;
}

/* --- HOVER INTERACTION ENGINE --- */
.award-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: #cbd5e1 !important;
}

.award-premium-card:hover .award-card-img {
    transform: scale(1.06);
}

.award-premium-card:hover .award-title {
    color: #2563eb;
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .award-img-wrapper { height: 200px; }
    .award-title { font-size: 1.1rem; }
}




/* --- Success Stories Section CSS --- */
.success-stories-section {
    background-color: #f8fafc; /* Soft surface backdrop */
    font-family: 'Poppins', sans-serif;
}

.stories-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.stories-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- PREMIUM SPLIT CARD ENGINE --- */
.story-premium-card {
    border-radius: 20px;
    border-color: #e2e8f0 !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Impact Color Box */
.story-impact-side {
    min-width: 180px;
    width: 180px;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Right Content Box */
.story-category {
    font-size: 0.7rem;
    color: #2563eb;
    letter-spacing: 1px;
}

.story-title {
    font-size: 1.05rem;
    line-height: 1.4;
}

.story-text {
    color: #64748b !important;
    line-height: 1.6;
}

.extra-small-text {
    font-size: 0.72rem;
    font-weight: 700;
}

/* --- HOVER WORKFLOW --- */
.story-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08) !important;
    border-color: #cbd5e1 !important;
}

/* Responsive Fixes for smaller screens */
@media (max-width: 575.98px) {
    .story-impact-side {
        width: 100%;
        min-width: 100%;
        padding: 30px !important;
    }
}


/* --- Projects Hero Banner CSS --- */
.projects-hero-section {
    min-height: 75vh; /* Screen coverage */
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a; /* Fallback dark color */
}

/* Media Background & Cinematic Tint Engine */
.hero-bg-media {
    object-fit: cover;
    filter: scale(1.05);
}
.hero-dark-tint {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
}

/* --- GLASSMORPHISM CARD DESIGN --- */
.projects-glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Typography Rules */
.projects-hero-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.extra-small-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
}
.pulse-green-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Glowing green */
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.projects-main-title {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}
.highlight-yellow {
    color: #f59e0b; /* Bright energetic gold/yellow */
}

.projects-subheading {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 650px;
}
.text-light-gray {
    color: #e2e8f0;
}

/* --- SCROLL ACTION BUTTON --- */
.scroll-down-btn {
    width: 48px;
    height: 48px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.scroll-down-btn:hover {
    transform: scale(1.1);
    background-color: #f59e0b !important;
    color: #ffffff !important;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}
.animate-bounce-slow {
    animation: bounce 2s infinite ease-in-out;
}

/* Responsive Breakdown */
@media (max-width: 767.98px) {
    .projects-hero-section { min-height: 65vh; }
    .projects-main-title { font-size: 2.6rem; }
    .projects-subheading { font-size: 1rem; }
    .projects-glass-card { padding: 30px 20px !important; }
}



/* --- Featured Projects Section CSS --- */
.featured-projects-section {
    font-family: 'Poppins', sans-serif;
}

.projects-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.projects-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- PREMIUM CARD ARCHITECTURE --- */
.project-premium-card {
    border-radius: 20px;
    border-color: #f1f5f9 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Box and Category Tag */
.project-img-frame {
    width: 100%;
    height: 230px;
}
.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-uppercase: uppercase;
    letter-spacing: 1px;
}

/* Badge Color Maps */
.bg-blue { background-color: #2563eb; }
.bg-orange { background-color: #f59e0b; }
.bg-purple { background-color: #a855f7; }
.bg-green { background-color: #10b981; }
.bg-teal { background-color: #14b8a6; }

/* Content Typography */
.extra-small-text {
    font-size: 0.75rem;
    font-weight: 600;
}
.project-title {
    font-size: 1.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.project-short-desc {
    color: #64748b !important;
    line-height: 1.6;
}

/* Meta Data Icons Colors matched */
.text-primary-blue { color: #2563eb; }
.text-warning-orange { color: #f59e0b; }
.text-purple { color: #a855f7; }
.text-success-green { color: #10b981; }
.text-teal { color: #14b8a6; }

/* --- PREMIUM INTERACTIVE ACTION BUTTON --- */
.btn-project-outline {
    background-color: transparent;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 11px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.project-arrow {
    transition: transform 0.3s ease;
}

/* --- HOVER WORKFLOW ENGINE --- */
.project-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: #cbd5e1 !important;
}
.project-premium-card:hover .project-card-img {
    transform: scale(1.06);
}
.project-premium-card:hover .project-title {
    color: #2563eb;
}
.project-premium-card:hover .btn-project-outline {
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}
.project-premium-card:hover .project-arrow {
    transform: translateX(4px);
}

/* Responsive Scaling fixes */
@media (max-width: 767.98px) {
    .project-img-frame { height: 200px; }
    .project-title { font-size: 1.15rem; }
}



/* --- Ongoing Projects Section CSS --- */
.ongoing-projects-section {
    background-color: #f8fafc; /* Subtle slate surface gray */
    font-family: 'Poppins', sans-serif;
}

.ongoing-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.ongoing-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- MAIN DOMAIN ROW CARD ENGINE --- */
.ongoing-domain-card {
    border-color: #e2e8f0 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ongoing-domain-card:hover {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06) !important;
    border-color: #cbd5e1 !important;
}

/* Domain Left Side Icons */
.domain-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.bg-soft-blue { background-color: rgba(37, 99, 235, 0.08); color: #2563eb; }
.bg-soft-teal { background-color: rgba(20, 184, 166, 0.08); color: #14b8a6; }

/* --- ACTIVE STATUS PILL (BLINKS LIVE) --- */
.ongoing-live-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 16px;
    letter-spacing: 1px;
    border-bottom-left-radius: 16px;
}
.ongoing-live-badge.bg-soft-teal {
    background-color: rgba(20, 184, 166, 0.08) !important;
}

.live-blink {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #2563eb;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-live 1.6s infinite ease-in-out;
}
.live-blink.bg-teal { background-color: #14b8a6; }

@keyframes pulse-live {
    0% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.9); }
}

/* --- RIGHT SIDE SUB-PILLS LAYOUT --- */
.ongoing-sub-pill {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.ongoing-domain-card:hover .ongoing-sub-pill {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
}
.ongoing-sub-pill:hover {
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

/* Helper Typography Sizes */
.extra-small-text {
    font-size: 0.72rem;
    line-height: 1.5;
}
.text-primary-blue { color: #2563eb; }
.text-teal { color: #14b8a6; }

/* Responsive Borders Settings */
@media (min-width: 992px) {
    .border-end-lg {
        border-end: 1px solid #e2e8f0 !important;
        padding-right: 2.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .ongoing-live-badge {
        position: relative;
        display: inline-flex;
        margin-bottom: 15px;
        border-radius: 6px;
        padding: 5px 12px;
    }
}


/* --- Completed Projects & Filter CSS --- */
.completed-projects-section {
    font-family: 'Poppins', sans-serif;
}

.completed-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.completed-accent-line {
    width: 50px;
    height: 4px;
    background: #0f172a;
    border-radius: 10px;
}

/* --- FILTER BUTTONS DESIGN --- */
.btn-filter {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-filter:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.btn-filter.active {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* --- COMPLETED CARDS ENGINE --- */
.completed-premium-card {
    border-color: #f1f5f9 !important;
    transition: all 0.4s ease;
}

.completed-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.completed-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.completed-title {
    font-size: 1.15rem;
    line-height: 1.4;
}

/* Elegant Success Badge */
.status-done-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(16, 185, 129, 0.95); /* Emerald Green */
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 1px;
}

/* Interactions */
.completed-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1 !important;
}

.completed-premium-card:hover .completed-card-img {
    transform: scale(1.05);
}

.extra-small-text {
    font-size: 0.72rem;
    font-weight: 600;
}

/* Filtering Animations Classes */
.filter-item {
    transition: all 0.4s ease;
}

.filter-item.hide {
    display: none !important;
}

.filter-item.show {
    animation: fadeInAnimation 0.5s ease forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


/* --- Our Supporters Section CSS --- */
.supporters-section {
    background-color: #f8fafc; /* Clean off-white surface */
    font-family: 'Poppins', sans-serif;
}

.supporters-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.supporters-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- PURE CSS INFINITE MARQUEE ENGINE --- */
.supporters-logo-marquee {
    width: 100%;
    padding: 10px 0;
}

/* Dynamic Masking to create blur edge fade-out on left and right sides */
.supporters-logo-marquee::before,
.supporters-logo-marquee::after {
    background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}
.supporters-logo-marquee::before { left: 0; top: 0; }
.supporters-logo-marquee::after { right: 0; top: 0; transform: rotate(180deg); }

/* Animation Track Config */
.marquee-track {
    width: calc(200px * 10 + 3rem * 10); /* Calculates absolute safe lane */
    animation: scroll-marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused; /* Slides freeze on user hover */
}

/* Logo Box styling */
.supporter-logo-box {
    min-width: 200px;
    width: 200px;
    height: 95px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Elegant minimal slate opacity filter for professional logo display */
.grey-to-color {
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.supporter-logo-box:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05) !important;
    transform: translateY(-2px);
}
.supporter-logo-box:hover .grey-to-color {
    filter: grayscale(0%) opacity(1); /* Lights up into full original color */
}

/* KEYFRAMES FOR SMOOTH LOOP */
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 5 - 3rem * 5)); }
}

/* --- BOTTOM CTA MINI BANNER --- */
.join-allies-banner {
    border-color: #e2e8f0 !important;
}

.btn-join-supporters {
    background-color: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 10px;
    border: 1px solid #0f172a;
    transition: all 0.3s ease;
}

.btn-join-supporters:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .supporter-logo-box { min-width: 160px; width: 160px; height: 80px; }
    .grey-to-color { max-height: 40px; }
}


/* --- Our Awards Section CSS --- */
.awards-section {
    background-color: #f8fafc; /* Minimal light gray background */
    font-family: 'Poppins', sans-serif;
}

.awards-top-tag {
    color: #f59e0b; /* Amber Gold color tag */
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.awards-accent-line {
    width: 50px;
    height: 4px;
    background: #f59e0b;
    border-radius: 10px;
}

/* --- PREMIUM AWARD CARD ARCHITECTURE --- */
.award-premium-card {
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Year Badge over the top right corner */
.award-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0f172a; /* Dark Slate */
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

/* Golden Circular Icon Box */
.award-icon-frame {
    width: 75px;
    height: 75px;
    background-color: #fffbeb; /* Soft amber tint */
    border: 1px dashed #fcd34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.golden-glow {
    color: #d97706; /* Dark Metallic Amber */
    text-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
    transition: transform 0.4s ease;
}

/* Typography styles */
.award-title {
    font-size: 1.2rem;
    line-height: 1.4;
}

.award-issuer {
    font-size: 0.72rem;
    color: #2563eb !important; /* Royal Blue Issuer branding */
}

/* --- INTERACTIVE HOVER EFFECTS --- */
.award-premium-card:hover {
    transform: translateY(-8px);
    border-color: #fcd34d !important; /* Turns Gold on Hover */
    box-shadow: 0 20px 35px rgba(217, 119, 6, 0.06) !important;
}

.award-premium-card:hover .award-icon-frame {
    background-color: #f59e0b; /* Fills up with pure gold color */
    border-style: solid;
    border-color: #f59e0b;
}

.award-premium-card:hover .golden-glow {
    color: #ffffff; /* Icon turns clean white inside gold box */
    transform: rotate(-10deg) scale(1.1); /* Slight artistic tilt */
}

.award-premium-card:hover .award-year-badge {
    background-color: #f59e0b; /* Year badge also matches the theme */
}

/* --- Innovation Section CSS --- */
.innovation-section {
    font-family: 'Poppins', sans-serif;
}

.innovation-top-tag {
    color: #7c3aed; /* Deep Premium Purple for Tech-Innovation feel */
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.innovation-accent-line {
    width: 50px;
    height: 4px;
    background: #7c3aed;
    border-radius: 10px;
}

/* --- LEFT SIDE PILLARS ENGINE --- */
.innovation-pillar-item {
    border-color: #e2e8f0 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
/* Multi-color tech-tint icons */
.bg-soft-purple { background-color: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.bg-soft-blue { background-color: rgba(37, 99, 235, 0.08); color: #2563eb; }
.bg-soft-teal { background-color: rgba(20, 184, 166, 0.08); color: #14b8a6; }

/* Left Pillar Interaction */
.innovation-pillar-item:hover {
    background-color: #ffffff !important;
    border-color: #7c3aed !important;
    transform: translateX(6px); /* Elegant slide inward */
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.05);
}

/* --- RIGHT SIDE GRADIENT VISUAL CARD --- */
.innovation-visual-card {
    min-height: 400px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); /* Deep Navy/Indigo Space Fill */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* High-tech abstract radial lighting glow */
.visual-card-overlay {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.z-index-2 {
    z-index: 2;
}

/* Helper Font Utilities */
.extra-small-text {
    font-size: 0.72rem;
    font-weight: 700;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .innovation-visual-card { min-height: auto; }
}


/* --- Clean Project Gallery Section CSS --- */
.project-gallery-section {
    font-family: 'Poppins', sans-serif;
}

.gallery-top-tag {
    color: #10b981;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.gallery-accent-line {
    width: 50px;
    height: 4px;
    background: #10b981;
    border-radius: 10px;
}

/* --- CLEAN GALLERY CARD --- */
.gallery-item-card {
    height: 280px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.4s ease;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Pure Image Zoom Hover Effect --- */
.gallery-item-card:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1); /* होवर करने पर सॉफ्ट शैडो बढ़ेगी */
}

.gallery-item-card:hover .gallery-img {
    transform: scale(1.06); /* इमेज 6% स्मूथली ज़ूम होगी */
}

/* Responsive Overrides */
@media (max-width: 575.98px) {
    .gallery-item-card { height: 220px; } /* मोबाइल स्क्रीन पर परफेक्ट साइज */
}




/* --- Ultimate Combined Contact, Form & Map Styles --- */
.sansthan-ultimate-contact {
    font-family: 'Poppins', sans-serif;
}

.sansthan-top-tag {
    color: #2563eb;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.sansthan-accent-line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

/* --- LEFT PANEL: CARDS --- */
.sansthan-info-box {
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
}
.sansthan-info-box:hover {
    transform: translateX(5px);
    border-color: #cbd5e1 !important;
}

.sansthan-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.bg-soft-blue { background-color: rgba(37, 99, 235, 0.08); color: #2563eb; }
.bg-soft-green { background-color: rgba(16, 185, 129, 0.08); color: #10b981; }
.bg-soft-orange { background-color: rgba(245, 158, 11, 0.08); color: #f59e0b; }

.sansthan-clickable-phone {
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    transition: color 0.2s ease;
}
.sansthan-clickable-phone:hover { color: #2563eb !important; }

.bg-slate-dark { background-color: #0f172a; }
.text-warning-gold { color: #fbbf24; }

/* --- RIGHT PANEL: WORKING FORM --- */
.sansthan-form-wrapper {
    border-color: #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}
.premium-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.text-area-custom { padding-left: 16px; }

.premium-input:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}
.input-group-custom:focus-within .input-icon { color: #2563eb; }

/* Submit Button */
.btn-sansthan-submit {
    background-color: #2563eb;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-sansthan-submit:hover {
    background-color: #1d4ed8;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

/* --- BOTTOM: MAP FRAME --- */
.sansthan-map-container { border-color: #e2e8f0 !important; }
.map-live-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: mapBlink 1.8s infinite ease-in-out;
}
@keyframes mapBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.extra-small-text { font-size: 0.72rem; }

@media (max-width: 575.98px) {
    .sansthan-clickable-phone { font-size: 1.15rem; }
    .sansthan-form-wrapper { padding: 20px !important; }
}


/* --- Premium Donation & Contribution Section Styles --- */
.sansthan-donation-section {
    font-family: 'Poppins', sans-serif;
}

.donation-top-tag {
    color: #dc2626; /* Deep Red Accent for Support/Noble Causes */
    font-size: 0.8rem;
    letter-spacing: 2.5px;
}

.donation-accent-line {
    width: 50px;
    height: 4px;
    background: #dc2626;
    border-radius: 10px;
}

/* --- LEFT SIDE: BANK CARD & QR PANEL --- */
.donation-info-box {
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.donation-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bank-details-list span {
    font-family: 'Poppins', sans-serif;
}

/* Luxury Midnight Theme for QR Card */
.bg-dark-midnight {
    background-color: #0f172a; /* Deep Slate Black */
}

.bg-blur-amber {
    background-color: rgba(245, 158, 11, 0.12);
}
.text-warning-gold {
    color: #fbbf24;
}
.text-amber-gold {
    color: #f59e0b;
}

/* QR Code Outer Frame Glowing Effect */
.qr-code-frame {
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.donation-qr-box:hover .qr-code-frame {
    transform: scale(1.03);
    border-color: #f59e0b;
}

.qr-glow-effect {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* --- RIGHT SIDE: PREMIUM FORM ARCHITECTURE --- */
.donation-form-wrapper {
    border-color: #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}
.premium-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Dropdown Select Specific Fix */
.select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.text-area-custom { padding-left: 16px; }

.premium-input:focus {
    background-color: #ffffff;
    border-color: #dc2626; /* Focus borders go Red to match theme */
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
    outline: none;
}
.input-group-custom:focus-within .input-icon { color: #dc2626; }

/* Red Donation Submit Button */
.btn-donation-submit {
    background-color: #dc2626;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-donation-submit:hover {
    background-color: #b91c1c;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

/* Utilities */
.extra-small-text { font-size: 0.72rem; }
.z-index-3 { z-index: 3; }

@media (max-width: 575.98px) {
    .donation-form-wrapper { padding: 20px !important; }
}



/* --- Premium Institutional Overview Section Styles --- */
.sansthan-about-section {
    font-family: 'Poppins', sans-serif;
}

/* Bento Card Framework Architecture */
.sansthan-bento-card {
    background-color: #ffffff;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sansthan-bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

/* Color Variances for Bento Grid */
.bento-primary {
    background-color: #fffafb;
    border-left: 4px solid #dc2626 !important;
}
.bg-soft-red { background-color: rgba(220, 38, 38, 0.07); }
.text-danger-dark { color: #991b1b; }

.bento-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.bg-soft-blue { background-color: rgba(37, 99, 235, 0.07); }
.text-primary-blue { color: #2563eb; }
.bg-soft-purple { background-color: rgba(139, 92, 246, 0.07); }
.text-purple { color: #8b5cf6; }

/* Custom Text Hierarchy Utilities */
.lead-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569 !important;
}
.text-secondary-slate { color: #475569; }
.small-medium { font-size: 0.92rem; font-weight: 500; color: #334155; }
.extra-small-text { font-size: 0.72rem; letter-spacing: 1px; }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }

/* Objective Counters Style */
.obj-counter {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

/* Premium Profile Card (Rich Gradient Mesh) */
.profile-premium-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: none !important;
}
.profile-mesh-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.profile-avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}
.bg-blur-white {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #ffffff;
}
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

/* Right Sidebar Midnight Theme Layout */
.bg-dark-midnight { background-color: #090d16; border: none !important; }
.text-amber-gold { color: #fbbf24; }
.contact-mini-icon { font-size: 1.1rem; width: 24px; }
.hover-amber { transition: color 0.3s ease; }
.hover-amber:hover { color: #fbbf24 !important; }

/* Background Glow Utility For Grid Decoration */
.bento-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.02) 0%, transparent 70%);
    top: -150px; right: -150px;
    pointer-events: none;
}
.qr-glow-effect {
    position: absolute;
    top: -20%; right: -20%; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Custom Breakpoint adjustments */
@media (min-width: 768px) {
    .border-start-md { border-left: 1px solid transparent !important; }
}



/* --- Ultra-Premium Focus Areas Interface System --- */
.focus-areas-interface {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

/* Typography Overrides */
.fw-black { font-weight: 900 !important; }
.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.small-medium { font-size: 0.95rem; font-weight: 500; color: #64748b; }
.small-heading { font-size: 1.05rem; letter-spacing: -0.3px; }
.extra-small-text { font-size: 0.72rem; letter-spacing: 1.2px; }
.text-white-80 { color: rgba(255, 255, 255, 0.85); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-balance { text-wrap: balance; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.12) !important; }
.max-w-600 { max-w: 600px; }

/* Ambient Light Effects (High-End SaaS Feel) */
.ambient-blur {
    position: absolute; width: 450px; height: 450px;
    border-radius: 50%; filter: blur(140px); opacity: 0.4; pointer-events: none;
}
.blur-1 { background: rgba(37, 99, 235, 0.08); top: -10%; left: -5%; }
.blur-2 { background: rgba(220, 38, 38, 0.06); bottom: -10%; right: -5%; }

/* Glassmorphic Tabs Custom System */
.modern-glass-tabs {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-color: rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}
.modern-glass-tabs .nav-link {
    color: #475569;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modern-glass-tabs .nav-link:hover {
    color: #0f172a;
    background: rgba(241, 245, 249, 0.8);
}
.modern-glass-tabs .nav-link.active {
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}
.icon-agri { color: #16a34a; }
.icon-env { color: #0d9488; }
.icon-edu { color: #7c3aed; }

/* Main Accent Hero Blocks */
.premium-pillar-card {
    border: none !important;
    position: relative;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}
.card-agri-main { background: linear-gradient(135deg, #15803d 0%, #166534 100%); }
.card-env-main { background: linear-gradient(135deg, #0f766e 0%, #115e59 100%); }
.card-edu-main { background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%); }

.pillar-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Grid Child Cards Engine */
.sub-feature-card {
    border-color: rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub-feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    background-color: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.04);
}
.sub-icon {
    font-size: 1.4rem;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.text-teal { color: #0d9488; }
.text-purple { color: #7c3aed; }
.sub-feature-card .text-success { background: rgba(22, 163, 74, 0.06); }
.sub-feature-card .text-teal { background: rgba(13, 148, 136, 0.06); }
.sub-feature-card .text-purple { background: rgba(124, 58, 237, 0.06); }

/* Animation Overrides for Tab Switch */
.tab-pane.fade {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}


/* --- Ultra-Modern Advisory Board System --- */
.advisors-board-section {
    font-family: 'Poppins', sans-serif;
}

/* Design Utilities */
.fw-black { font-weight: 900 !important; }
.text-gradient-danger {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.small-medium { font-size: 0.95rem; font-weight: 500; color: #64748b; line-height: 1.6; }
.extra-small-text { font-size: 0.7rem; letter-spacing: 1px; }
.line-height-relaxed { line-height: 1.65; }
.text-dark-slate { color: #334155; }
.bg-soft-dark { background-color: #f1f5f9; }
.border-slate-100 { border-color: #f1f5f9 !important; }

/* Advisor Premium Identity Frame */
.advisor-premium-card {
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.advisor-premium-card:hover {
    transform: translateY(-5px);
    border-color: #0f172a !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

/* Avatar Abstract Tech Frame */
.advisor-meta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.avatar-inner-glow {
    font-size: 1.3rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}
.advisor-premium-card:hover .avatar-inner-glow {
    transform: rotate(8deg) scale(1.05);
}

/* Minimal Actionable Social Buttons */
.social-mini-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.social-mini-btn:hover {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

/* Custom Responsive Sidebar Line */
@media (min-width: 992px) {
    .border-start-lg { border-left: 2px solid #e2e8f0 !important; }
}



/* --- Premium Administrative Setup Architecture --- */
.admin-matrix-section {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfdfe;
}

/* Base Typo & Utilities */
.fw-black { font-weight: 900 !important; }
.font-medium { font-weight: 500; }
.text-gradient-success {
    background: linear-gradient(135deg, #16a34a, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-warning {
    background: linear-gradient(135deg, #ea580c, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.small-medium { font-size: 0.95rem; font-weight: 500; color: #64748b; }
.extra-small-text { font-size: 0.68rem; letter-spacing: 0.8px; }
.text-dark-slate { color: #475569; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.max-w-700 { max-width: 700px; }
.gap-2\.5 { gap: 0.65rem !important; }

/* Subtle Technical Tech Lines Overlay */
.matrix-grid-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(15, 23, 42, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 23, 42, 0.01) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}

/* Administrative Tiers Grid Layout Architecture */
.setup-tier-card {
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.setup-tier-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.04);
}

/* Featured Component Focus Accent */
.structural-mid-card {
    border-color: #cbd5e1 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Dynamic Tiers Inner Indicators */
.tier-numeric-badge {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}
.tier-status-pill {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    background-color: rgba(22, 163, 74, 0.08);
    color: #16a34a;
}
.tier-status-pill.pill-primary {
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}
.tier-status-pill.pill-warning {
    background-color: rgba(234, 88, 12, 0.08);
    color: #ea580c;
}

/* Function Rows */
.small-icon {
    font-size: 0.85rem;
}
.text-success { color: #16a34a !important; }
.text-primary { color: #2563eb !important; }
.text-warning { color: #ea580c !important; }



/* --- GLOBAL STANDARD CONFIGURATION --- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #475569;
    letter-spacing: -0.1px;
}
.bg-minimal-surface { background-color: #f8fafc; }
.z-index-2 { position: relative; z-index: 2; }

/* Custom Micro Utilities */
.fw-black { font-weight: 800 !important; }
.text-dark-slate { color: #0f172a; }
.text-white-10 { background-color: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); }
.border-slate-100 { border-color: #e2e8f0 !important; }
.bg-red-soft { background-color: #fef2f2; }
.extra-small-text { font-size: 0.72rem; letter-spacing: 0.8px; font-weight: 600; }
.small-medium { font-size: 0.95rem; line-height: 1.6; }
.max-w-500 { max-width: 500px; }
.gap-3\.5 { gap: 0.85rem !important; }

/* ==========================================
   PREMIUM HERO SECTION (GLASSMORPHISM BASE)
   ========================================== */
.minimal-hero {
    background: linear-gradient(135deg, #090d16 0%, #111827 100%);
    border-bottom: 1px solid #1e293b;
}
.hero-blur-glow {
    position: absolute; width: 350px; height: 350px;
    background: #3b82f6; opacity: 0.12; filter: blur(100px);
    border-radius: 50%; top: -50%; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}

/* ==========================================
   INTERACTIVE PDF ANCHOR CARDS ENGINE
   ========================================== */
.pdf-premium-anchor-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Body Structural Layer */
.pdf-card-body {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic Hover States (Whole Card Actionable) */
.pdf-premium-anchor-card:hover {
    transform: translateY(-3px);
}
.pdf-premium-anchor-card:hover .pdf-card-body {
    border-color: #0f172a !important;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
    background-color: #ffffff;
}

/* Avatar File Representation */
.pdf-icon-avatar {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
    transition: transform 0.35s ease;
}
.pdf-premium-anchor-card:hover .pdf-icon-avatar {
    transform: scale(1.05);
}

/* Action View Buttons Styles */
.btn-view-pdf {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Hover Synchronization across Card & Button */
.pdf-premium-anchor-card:hover .btn-view-pdf {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Responsive Fluid Adjustments for Mobile Views */
@media (max-width: 767.98px) {
    .pdf-card-body {
        text-align: center;
    }
    .pdf-card-body .d-flex {
        flex-direction: column;
        justify-content: center;
    }
    .btn-view-pdf {
        width: 100%;
    }
}


.ngo-services{
    background:#f8f9fa;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-img{
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover .service-img img{
    transform:scale(1.1);
}

.service-content{
    padding:25px;
}

.service-content h5{
    font-weight:700;
    margin-bottom:12px;
}

.service-content p{
    color:#6c757d;
    margin-bottom:0;
    line-height:1.7;
}

@media(max-width:768px){

    .service-img img{
        height:220px;
    }

    .service-content{
        padding:20px;
    }
}