/* 
   Sanatani Sewa Foundation - Style Sheets
   Version: 1.0.0
   Author: Antigravity AI
*/

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

:root {
    /* Color Palette */
    --primary-color: #FF7043;
    /* Saffron Accent */
    --primary-dark: #E64A19;
    /* Dark Saffron */
    --secondary-color: #FFB74D;
    /* Golden Accent */
    --dark-color: #1A237E;
    /* Deep Spiritual Blue / Navy */
    --dark-bg: #0D1117;
    /* Elegant dark base if needed */
    --light-color: #FFF9F5;
    /* Warm Soft White */
    --text-dark: #212529;
    /* Charcoal Text */
    --text-muted: #6C757D;
    /* Soft Gray Text */
    --border-color: #FFE0B2;
    /* Soft Amber Border */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(230, 74, 25, 0.08);
    --shadow-md: 0 8px 24px rgba(230, 74, 25, 0.12);
    --shadow-lg: 0 16px 40px rgba(230, 74, 25, 0.16);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
}

/* Modern Top Header / Utility Bar */
.top-header {
    background-color: var(--dark-color);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 400;
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-header a:hover {
    color: var(--secondary-color);
}

.top-header-info span {
    margin-right: 20px;
}

.top-header-social a {
    margin-left: 15px;
}

/* Elegant Sticky Navbar */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

/* Logo Styling */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(255, 112, 67, 0.3));
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

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

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

/* CTA Donate Button in Navbar */
.btn-nav-donate {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
    transition: var(--transition-smooth);
}

.btn-nav-donate::after {
    display: none !important;
}

.btn-nav-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 112, 67, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff !important;
}

.btn-nav-donate:active {
    transform: translateY(0);
}

/* Hamburger Toggler Custom Style */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 5px;
}

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

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before {
    top: 4px;
}

.navbar-toggler-icon span {
    top: 11px;
}

.navbar-toggler-icon::after {
    bottom: 4px;
}

/* Toggler animation when open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Modern NGO Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

/* Dark elegant gradient overlay for rich contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(26, 35, 126, 0.6) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hero Action Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.4);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.6);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff !important;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background-color: #ffffff;
    color: var(--dark-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.scroll-down-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.scroll-down-indicator .arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down-indicator .arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    margin: -3px;
    animation: arrowScroll 1.5s infinite;
    opacity: 0;
}

.scroll-down-indicator .arrows span:nth-child(1) {
    animation-delay: 0.1s;
}

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

.scroll-down-indicator .arrows span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrowScroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* ==========================================================================
   Long Landing Page Sections Styling
   ========================================================================== */

/* Alternating Section Backgrounds */
.bg-white-smoke {
    background-color: #F8F9FA;
}

/* Common Section Badges and Titles */
.section-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    background-color: rgba(255, 112, 67, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
}

/* Custom NGO Primary Button */
/* Primary Button (Donate) */
.btn-ngo-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ngo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
    color: #fff !important;
}


/* WhatsApp Button */
.btn-ngo-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ngo-whatsapp:hover {
    background: linear-gradient(135deg, #1EBE5D 0%, #0E6F63 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    color: #ffffff !important;
}

.btn-ngo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 112, 67, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Custom NGO Secondary Button */
.btn-ngo-secondary {
    background-color: transparent;
    color: var(--dark-color) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 50px;
    border: 2px solid var(--dark-color);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-ngo-secondary:hover {
    background-color: var(--dark-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* 1. About Preview Styles */
.about-image-wrapper {
    padding-right: 15px;
    padding-bottom: 15px;
}

.about-image-wrapper img {
    border: 8px solid #ffffff;
    transition: var(--transition-smooth);
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.navbar-brand span {
    color: #ff6600;
}

.brand-text-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.1;
}

.brand-line-1 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-line-2 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-image-wrapper img:hover {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFA000 100%);
    color: var(--dark-color);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 183, 77, 0.4);
    text-align: center;
    z-index: 5;
    animation: pulse 2s infinite;
}

.about-experience-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    font-weight: 700;

    display: block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* 2. Mission & Vision Styles */
.mission-card {
    transition: var(--transition-smooth);
    background-color: #ffffff;
    border: 1px solid var(--border-color) !important;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md) !important;
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 112, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.mission-card:hover .card-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

/* 3. Our Services Preview Styles */
.service-card {
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(255, 112, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
}

.service-card:hover .service-icon-box i {
    color: #ffffff !important;
}

/* 4. Why Choose Us Styles */
.why-icon-box {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* 5. Impact Statistics Styles */
#impact-stats {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(13, 17, 23, 0.9) 100%);
    z-index: 1;
}

.stat-item {
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* 6. Featured Projects Styles */
.project-card {
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.project-zoom-img {
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 3;
    font-family: var(--font-heading);
}

.progress-bar {
    background-color: var(--primary-color) !important;
}

/* 7. Gallery Preview Styles */
.gallery-item {
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 35, 126, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
}

.gallery-hover-overlay i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-hover-overlay h4 {
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

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

.gallery-item:hover .gallery-hover-overlay i,
.gallery-item:hover .gallery-hover-overlay h4 {
    transform: translateY(0);
}

/* 8. Upcoming Events Styles */
.event-card {
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md) !important;
}

.event-date-badge-col {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0D1117 100%);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date-badge-col .date-num {
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--secondary-color);
}

.event-date-badge-col .date-month {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* 9. Testimonials Styles */
.testimonial-card {
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.testimonial-card .italic {
    font-style: italic;
    line-height: 1.7;
}

/* 10. Donation CTA Styles */
#donation-cta {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.donation-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 74, 25, 0.95) 0%, rgba(26, 35, 126, 0.8) 100%);
    z-index: 1;
}

.donation-quick-box {
    border: 1px solid #FFE0B2;
}

.btn-outline-primary-ngo {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 10px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.btn-outline-primary-ngo:hover,
.btn-outline-primary-ngo.active {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

.custom-amt-input {
    border-radius: 10px;
    border: 2px solid #ced4da;
    font-family: var(--font-heading);
    font-weight: 700;
    height: 42px;
}

.custom-amt-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 112, 67, 0.25);
}

/* 11. Partners Styles */
.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    opacity: 0.55;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* 12. Contact Preview Styles */
.contact-info-circle {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(26, 35, 126, 0.08);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-form-card {
    border: 1px solid var(--border-color) !important;
}

.contact-form-card input,
.contact-form-card textarea {
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition-smooth);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 112, 67, 0.15);
}

/* 13. Footer Styles */
#footer {
    background-color: #ffffff !important;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Make all footer text, headings, paragraphs, dates, links, and icons black by default */
#footer,
#footer p,
#footer span,
#footer a,
#footer i,
#footer small,
#footer .text-white-50 {
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Footer Section Headings styling */
#footer h5 {
    color: #ff6600 !important;
    font-weight: 700 !important;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 8px;
    border-bottom: none !important;
    display: inline-block;
}

#footer h5::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6600;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#footer h5:hover::after {
    width: 100%;
}

/* Description paragraph: darker gray, better line-height */
#footer .text-white-60 {
    line-height: 1.8 !important;
    color: #555555 !important;
}

/* Tagline tracking effect */
#footer .tracking-wider {
    color: #ff6600 !important;
    font-weight: 700 !important;
    transition: letter-spacing 0.3s ease;
}

#footer .tracking-wider:hover {
    letter-spacing: 2px !important;
}

/* Organization brand name and logo scale */
#footer .footer-brand-text {
    color: #ff6600 !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

#footer .navbar-brand {
    transition: transform 0.3s ease;
}

#footer .navbar-brand img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#footer .navbar-brand:hover img {
    transform: scale(1.05);
}

#footer .navbar-brand:hover .footer-brand-text {
    color: #e64a19 !important;
}

/* Contact Information Styling */
.footer-contact-list {
    padding-left: 0;
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-list li i {
    color: #ff6600 !important;
    font-size: 1.15rem;
    width: 24px;
    margin-top: 3px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-contact-list li:hover i {
    transform: scale(1.25) translateY(-2px);
}

.footer-contact-list a {
    color: #000000 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #ff6600 !important;
}

/* Quick Links styling */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #000000 !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-links-list a i {
    color: #000000 !important;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #ff6600 !important;
    transform: translateX(8px);
}

.footer-links-list a:hover i {
    color: #ff6600 !important;
}

/* Footer Divider */
#footer hr {
    height: 1px;
    border: none !important;
    background: linear-gradient(to right, rgba(255, 102, 0, 0) 0%, rgba(255, 102, 0, 0.8) 50%, rgba(255, 102, 0, 0) 100%) !important;
    opacity: 0.8 !important;
    margin: 25px 0 !important;
}

.footer-social-links .social-circle {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-links .social-circle:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Subpage Hero Styles */
.subpage-hero {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.subpage-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.9) 0%, rgba(26, 35, 126, 0.75) 100%);
    z-index: 1;
}

.subpage-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    /* Above navbar and most overlays */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.float-whatsapp {
    background-color: #25D366;
    animation: whatsappPulse 3s infinite;
}

.float-call {
    background-color: var(--primary-color);
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

/* Responsive adjustment for small viewports */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

/* 14. Activities Section Video Cards Styling */
.activity-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.thumbnail-container {
    position: relative;
    overflow: hidden;
}

.thumbnail-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-card:hover .thumbnail-container img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 3rem;
    color: #ffffff;
    transition: all 0.3s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.activity-card:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.activity-card:hover .play-overlay i {
    transform: scale(1.15);
    color: #ff6600;
}

/* Donate Page Custom Styles */
.navbar-nav .nav-item.active .btn-nav-donate,
.navbar-nav .nav-item.active .btn-nav-donate:hover {
    color: #ffffff !important;
}

.donation-qr-container {
    max-width: 280px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    padding: 15px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.donation-qr-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.upi-apps-list {
    list-style: none;
    padding: 0;
}

.upi-apps-list li {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.upi-apps-list li:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background-color: var(--light-color);
}

.copy-btn {
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding: 0 4px;
}

.copy-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.15);
}

.copy-tooltip {
    font-size: 0.75rem;
    color: #28a745;
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
}

.donation-message-card {
    border: 2px dashed var(--primary-color) !important;
    background-color: rgba(255, 112, 67, 0.03) !important;
    position: relative;
    overflow: hidden;
}

.donation-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary-color);
}

.bank-details-table th {
    color: var(--dark-color);
    font-weight: 700;
    width: 35%;
    border-color: var(--border-color);
}

.bank-details-table td {
    color: var(--text-dark);
    border-color: var(--border-color);
}

/* ==========================================================================
   Registrations & Certifications Custom Styles
   ========================================================================== */

/* Cards with icons and hover animations */
.cert-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cert-card .card-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 112, 67, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.cert-card:hover .card-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.cert-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cert-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.cert-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Certificate image container & transitions */
.cert-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition-smooth);
}

.cert-img-wrapper img {
    transition: var(--transition-smooth);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Directors Profile Card */
.director-profile-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.director-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.director-img-wrapper {
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.director-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-smooth);
}

.director-profile-card:hover .director-img-wrapper img {
    transform: scale(1.05);
}

.director-info {
    padding: 20px;
    text-align: center;
}

.director-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.director-designation {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.director-state {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.director-state i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Verification Gallery Document Card */
.doc-gallery-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doc-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.doc-img-wrapper {
    height: 380px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.doc-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.doc-gallery-card:hover .doc-img-wrapper img {
    transform: scale(1.05);
}

.doc-card-body {
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
}

/* Lightbox Modal styles */
#lightboxImage {
    max-height: 75vh;
    object-fit: contain;
    width: auto;
    margin: 0 auto;
}