/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-saffron: #FF9933;
    --color-saffron-light: rgba(255, 153, 51, 0.1);
    --color-saffron-hover: #e07b16;
    
    --color-green: #138808;
    --color-green-light: rgba(19, 136, 8, 0.1);
    --color-green-hover: #0f6c06;
    
    --color-blue: #0D6EFD;
    --color-blue-light: rgba(13, 110, 253, 0.08);
    --color-blue-dark: #002e73;
    --color-blue-hover: #0256cf;
    
    --color-white: #FFFFFF;
    --color-light-bg: #F8FAFC;
    --color-card-bg: #FFFFFF;
    
    /* Text Colors */
    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;
    
    /* Borders & Shadows */
    --border-color: #E2E8F0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-round: 50%;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gray-medium);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-bg {
    background-color: var(--color-light-bg);
}

.grid {
    display: grid;
    gap: 32px;
}

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

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

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge-saffron {
    background-color: var(--color-saffron-light);
    color: var(--color-saffron-hover);
}

.badge-green {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.badge-blue {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
}

/* Section Header styling */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-blue);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-blue-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-solid {
    background-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-solid:hover {
    background-color: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

.btn-secondary {
    background-color: var(--color-saffron);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.btn-secondary:hover {
    background-color: var(--color-saffron-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
}

.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(19, 136, 8, 0.3);
}

.btn-green:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 136, 8, 0.4);
}

.btn-outline {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn-outline:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-blue);
    font-size: 0.95rem;
}

.btn-text i {
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-blue-hover);
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* Text alignment & weight utilities */
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.hidden { display: none !important; }

/* ==========================================================================
   TOP BAR SECTION
   ========================================================================== */
.top-bar {
    background-color: var(--color-blue-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--color-saffron);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.registration-tag {
    font-weight: 500;
    color: var(--color-saffron);
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-links-top a {
    margin-left: 12px;
    font-size: 0.9rem;
}

.social-links-top a:hover {
    color: var(--color-saffron);
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile to prioritize main content */
    }
}

/* ==========================================================================
   MAIN STICKY HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    transition: var(--transition-normal);
}

.main-header.scrolled .nav-container {
    padding: 8px 24px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 1.5px;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-saffron);
    transition: var(--transition-fast);
    border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-saffron);
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--color-blue-dark);
    border-radius: 4px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: var(--transition-normal);
        gap: 32px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Burger Menu Active Animation */
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background-color: var(--color-blue-dark);
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay: Dark blue/black fading to right, inspired by branding colors */
    background: linear-gradient(135deg, rgba(0, 46, 115, 0.92) 0%, rgba(0, 46, 115, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 5;
    color: var(--color-white);
}

.hero-content {
    max-width: 680px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Scroll Down Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-saffron);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator .arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6px;
}

.scroll-indicator .arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin-top: -3px;
    animation: arrowDown 1.5s infinite;
}

.scroll-indicator .arrows span:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes arrowDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-2px, -2px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(2px, 2px); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   STATS BAR (Floating counter summary)
   ========================================================================== */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap effect on hero banner */
}

.stats-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-blue-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-blue);
    flex-shrink: 0;
}

.stat-card:nth-child(2) .stat-icon-wrapper {
    background-color: var(--color-saffron-light);
    color: var(--color-saffron);
}

.stat-card:nth-child(3) .stat-icon-wrapper {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.stat-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: -30px;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }
    .stat-card:nth-child(3), .stat-card:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .stat-card {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 16px;
        padding-top: 0;
    }
    .stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-images {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.main-about-img-box {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--color-saffron);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.experience-badge .exp-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-about-img-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-white);
    z-index: 4;
}

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

.about-content .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-blue-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 1.3rem;
    color: var(--color-green);
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-blue-dark);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-images {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 32px;
    }
    
    .main-about-img {
        height: 300px;
    }
    
    .sub-about-img-box {
        display: none; /* Hide mini overlay image on mobile to save space */
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MISSION & VISION SECTION
   ========================================================================== */
.mission-vision-grid {
    margin-top: 20px;
}

.mv-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.mission-card::before {
    background-color: var(--color-saffron);
}

.vision-card::before {
    background-color: var(--color-green);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mv-icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.mission-card .mv-icon-box {
    background-color: var(--color-saffron-light);
    color: var(--color-saffron);
}

.vision-card .mv-icon-box {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 16px;
}

.mv-text {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.mv-list li i {
    font-size: 0.75rem;
}

.mission-card .mv-list li i {
    color: var(--color-saffron);
}

.vision-card .mv-list li i {
    color: var(--color-green);
}

@media (max-width: 768px) {
    .mv-card {
        padding: 32px;
    }
}

/* ==========================================================================
   OBJECTIVES SECTION
   ========================================================================== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}

.objective-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 253, 0.2);
}

.obj-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.obj-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Sub-branding icon accent colors */
.edu-icon { background-color: rgba(13, 110, 253, 0.08); color: var(--color-blue); }
.health-icon { background-color: rgba(255, 153, 51, 0.1); color: var(--color-saffron); }
.women-icon { background-color: rgba(19, 136, 8, 0.08); color: var(--color-green); }
.child-icon { background-color: rgba(13, 110, 253, 0.08); color: var(--color-blue); }
.skill-icon { background-color: rgba(255, 153, 51, 0.1); color: var(--color-saffron); }
.agri-icon { background-color: rgba(19, 136, 8, 0.08); color: var(--color-green); }
.env-icon { background-color: rgba(19, 136, 8, 0.08); color: var(--color-green); }
.live-icon { background-color: rgba(13, 110, 253, 0.08); color: var(--color-blue); }
.welfare-icon { background-color: rgba(255, 153, 51, 0.1); color: var(--color-saffron); }
.consumer-icon { background-color: rgba(13, 110, 253, 0.08); color: var(--color-blue); }
.culture-icon { background-color: rgba(255, 153, 51, 0.1); color: var(--color-saffron); }

.objective-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.obj-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.obj-bullets {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.obj-bullets li {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
}

.obj-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: var(--border-radius-round);
}

.objective-card:nth-child(3n+1) .obj-bullets li::before { background-color: var(--color-blue); }
.objective-card:nth-child(3n+2) .obj-bullets li::before { background-color: var(--color-saffron); }
.objective-card:nth-child(3n) .obj-bullets li::before { background-color: var(--color-green); }

.obj-bullets li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   PROGRAMS SECTION
   ========================================================================== */
.program-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.15);
}

.program-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.program-card:hover .program-img {
    transform: scale(1.08);
}

.program-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-white);
    color: var(--color-blue-dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.program-card:nth-child(3n+1) .program-tag { color: var(--color-blue); }
.program-card:nth-child(3n+2) .program-tag { color: var(--color-saffron-hover); }
.program-card:nth-child(3n) .program-tag { color: var(--color-green); }

.program-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 12px;
}

.program-content p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.impact-metric {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.impact-metric i {
    color: var(--color-blue);
}

.program-card:nth-child(3n+2) .impact-metric i {
    color: var(--color-saffron);
}

.program-card:nth-child(3n) .impact-metric i {
    color: var(--color-green);
}

/* ==========================================================================
   IMPACT TIMELINE SECTION
   ========================================================================== */
.timeline-section {
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 0;
}

/* Vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Left & Right placement */
.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

/* Timelime Dot marker */
.timeline-dot {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: var(--color-white);
    border: 4px solid var(--color-blue);
    border-radius: var(--border-radius-round);
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:nth-child(2) .timeline-dot { border-color: var(--color-saffron); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--color-green); }
.timeline-item:nth-child(4) .timeline-dot { border-color: var(--color-blue); }

/* Timeline Date label */
.timeline-date {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.timeline-item:nth-child(odd) .timeline-date {
    text-align: right;
    color: var(--color-blue);
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    color: var(--color-saffron-hover);
}

.timeline-item:nth-child(3) .timeline-date { color: var(--color-green); }
.timeline-item:nth-child(4) .timeline-date { color: var(--color-blue); }

/* Timeline Content card */
.timeline-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    /* Responsive timeline collapse to single column left align */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 24px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        text-align: left;
    }
}

/* ==========================================================================
   VOLUNTEER CTA SECTION
   ========================================================================== */
.volunteer-cta {
    position: relative;
    background-color: var(--color-blue-dark);
    overflow: hidden;
}

/* CSS background fallback image is set in CSS, overlay gives contrast */
.volunteer-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 46, 115, 0.9), rgba(0, 46, 115, 0.95));
    z-index: 1;
}

.volunteer-cta-container {
    position: relative;
    z-index: 5;
    color: var(--color-white);
    max-width: 800px;
}

.volunteer-cta-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.volunteer-cta-container p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .volunteer-cta-container h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   DONATION CARD SECTION
   ========================================================================== */
.donation-box-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.donation-text-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.donation-badge {
    color: var(--color-saffron-hover);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.donation-text-side h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.donation-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.donation-impact-examples {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.die-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.die-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-green);
    background-color: var(--color-green-light);
    padding: 6px 16px;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

.die-label {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.donation-form-side {
    background-color: var(--color-light-bg);
    padding: 60px;
    border-left: 1px solid var(--border-color);
}

.donation-form-side h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 24px;
}

.donation-cause-select {
    margin-bottom: 20px;
}

.donation-cause-select label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-cause-select select {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    outline: none;
}

.donation-cause-select select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px var(--color-blue-light);
}

.donation-amounts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    background-color: var(--color-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 6px;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.amount-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.amount-btn.active {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.custom-amount-wrapper {
    margin-bottom: 24px;
}

.custom-amount-wrapper label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.amount-input-box {
    position: relative;
}

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

.amount-input-box input {
    width: 100%;
    padding: 12px 16px 12px 36px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    outline: none;
}

.amount-input-box input:focus {
    border-color: var(--color-blue);
}

.donation-footer-info {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.donation-footer-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.donation-footer-info i {
    color: var(--color-green);
}

@media (max-width: 992px) {
    .donation-box-card {
        grid-template-columns: 1fr;
    }
    
    .donation-text-side {
        padding: 40px;
    }
    
    .donation-form-side {
        padding: 40px;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .donation-text-side, .donation-form-side {
        padding: 24px;
    }
    .donation-amounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   IMAGE GALLERY SECTION (Filterable Grid)
   ========================================================================== */
.gallery-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.filter-btn.active {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    display: none; /* Controlled via active JS filter Class */
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.gallery-item.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.gallery-inner {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.gallery-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 46, 115, 0.9) 0%, rgba(0, 46, 115, 0.4) 60%, rgba(0, 46, 115, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: var(--color-white);
}

.gallery-inner:hover img {
    transform: scale(1.1);
}

.gallery-inner:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-hover-overlay p {
    font-size: 0.8rem;
    color: var(--color-saffron);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    font-size: 2.2rem;
    color: rgba(13, 110, 253, 0.1);
    position: absolute;
    top: 24px;
    right: 24px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.author-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.author-details span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-saffron-hover);
}

/* ==========================================================================
   NEWS & EVENTS SECTION
   ========================================================================== */
.news-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.news-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: var(--color-saffron);
    color: var(--color-white);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.news-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    color: var(--color-blue-hover);
}

/* ==========================================================================
   PARTNERS SECTION (Logo seamless slider)
   ========================================================================== */
.partners-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 12px;
}

.partners-carousel {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}

.partners-carousel::before, .partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), rgba(255,255,255,0));
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), rgba(255,255,255,0));
}

.partners-track {
    display: inline-flex;
    animation: partnerScroll 25s linear infinite;
    gap: 60px;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-light);
    border: 2px solid var(--border-color);
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
}

.logo-box i {
    font-size: 1.4rem;
}

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

/* ==========================================================================
   FAQ SECTION (Accordions)
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-accordion-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600;
    color: var(--color-blue-dark);
    font-size: 1.05rem;
    background: none;
    outline: none;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-light-bg);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--color-light-bg);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-saffron);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    margin-top: 40px;
}

.contact-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-blue);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px var(--color-blue-light);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.office-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-blue-light);
    color: var(--color-blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item:nth-child(even) .info-icon {
    background-color: var(--color-saffron-light);
    color: var(--color-saffron);
}

.info-item:nth-child(3n) .info-icon {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.info-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 24px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--color-blue-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-logo .logo-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-links-footer a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-radius: var(--border-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links-footer a:hover {
    background-color: var(--color-saffron);
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-saffron);
    border-radius: 4px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-saffron);
    padding-left: 4px;
}

.newsletter-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.newsletter-input-group input {
    flex-grow: 1;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--color-white);
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group button {
    background-color: var(--color-saffron);
    color: var(--color-white);
    padding: 0 20px;
    transition: var(--transition-fast);
}

.newsletter-input-group button:hover {
    background-color: var(--color-saffron-hover);
}

.legal-pages-links a {
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 16px;
}

.legal-pages-links a:hover {
    color: var(--color-saffron);
}

.footer-bottom {
    background-color: #001f52;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text i {
    color: var(--color-saffron);
}

.reg-number {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   MODAL WINDOW DIALOGS (Donations & Volunteer signup)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 46, 115, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: translateY(30px);
    transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 0.5;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-text-dark);
}

.modal-header {
    margin-bottom: 28px;
    padding-right: 32px;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.modal-form .form-group-row {
    margin-bottom: 0;
}

.amount-display-value {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
    padding: 12px 16px;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    border: 1px dashed var(--color-blue);
}

/* Payment selection in Modal */
.payment-method-selector {
    margin-bottom: 24px;
}

.payment-method-selector label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pay-method-card {
    background-color: var(--color-light-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.78rem;
    text-align: center;
    transition: var(--transition-fast);
}

.pay-method-card input {
    display: none; /* Hide real radio */
}

.pay-method-card i {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.pay-method-card:hover {
    border-color: var(--color-blue);
}

.pay-method-card.active {
    border-color: var(--color-blue);
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.pay-method-card.active i {
    color: var(--color-blue);
}

@media (max-width: 576px) {
    .modal-card {
        padding: 24px;
    }
    .payment-grid {
        grid-template-columns: 1fr;
    }
    .pay-method-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 16px;
        gap: 12px;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal {
    animation: textReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes textReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   DROPDOWN NAVIGATION MENU
   ========================================================================== */
.dropdown-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 100;
}

.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    border-bottom: none !important;
}

.dropdown-menu li a::after {
    display: none !important; /* disable hover underline for dropdown links */
}

.dropdown-menu li a:hover {
    background-color: var(--color-light-bg) !important;
    color: var(--color-saffron) !important;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform var(--transition-fast);
}

.dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        transform: none;
        padding: 10px 0 0 15px;
        display: none;
        background-color: transparent;
    }
    
    .dropdown-item.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-arrow {
        float: right;
        margin-top: 5px;
    }
}

/* ==========================================================================
   CHAIRMAN DESK SECTION
   ========================================================================== */
.chairman-grid {
    align-items: center;
}

.chairman-speech-body p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.chairman-signature {
    margin-top: 30px;
    border-left: 3px solid var(--color-saffron);
    padding-left: 16px;
}

.chairman-signature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.chairman-signature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.chairman-portrait-box {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--color-white);
}

.chairman-portrait-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.chairman-quote-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(0, 46, 115, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.chairman-quote-badge i {
    font-size: 1.2rem;
    color: var(--color-saffron);
    margin-top: 2px;
}

.chairman-quote-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .chairman-portrait-box img {
        height: 320px;
    }
}

/* ==========================================================================
   BOARD OF DIRECTORS
   ========================================================================== */
.board-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 253, 0.2);
}

.board-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.director-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-round);
    background-color: var(--color-blue-light);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.board-card:nth-child(3n+1) .director-avatar {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
}

.board-card:nth-child(3n+2) .director-avatar {
    background-color: var(--color-saffron-light);
    color: var(--color-saffron);
}

.board-card:nth-child(3n+3) .director-avatar {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.director-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 2px;
}

.director-info .role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   APPROVALS SECTION
   ========================================================================== */
.approval-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-normal);
}

.approval-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 253, 0.15);
}

.approval-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.saffron-icon { background-color: var(--color-saffron-light); color: var(--color-saffron); }
.blue-icon { background-color: var(--color-blue-light); color: var(--color-blue); }
.green-icon { background-color: var(--color-green-light); color: var(--color-green); }

.approval-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 6px;
}

.approval-card .reg-no {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-saffron-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.approval-card:nth-child(2) .reg-no { color: var(--color-blue); }
.approval-card:nth-child(3) .reg-no { color: var(--color-green); }
.approval-card:nth-child(4) .reg-no { color: var(--color-saffron-hover); }

.approval-card .desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   CAREER SECTION
   ========================================================================== */
.career-info-side h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 16px;
}

.career-info-side .lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-blue-dark);
    margin-bottom: 16px;
}

.career-info-side p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.job-openings-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.job-openings-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-saffron-light);
    padding-bottom: 8px;
}

.job-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.job-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-list li:first-child {
    padding-top: 0;
}

.job-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-title i {
    color: var(--color-blue);
}

.job-list li:nth-child(2) .job-title i { color: var(--color-saffron); }
.job-list li:nth-child(3) .job-title i { color: var(--color-green); }

.job-loc {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-light-bg);
    padding: 4px 10px;
    border-radius: 4px;
}
