  :root {
        --primary-dark: #1B3A6B;
        --primary-mid: #2E5FA3;
        --primary-light: #3A5590;
        --accent-gold: #F4A300;
        --text-light: #ecf0f1;
        --bg: #F9F9FC;
        --border: #E2E8F0;
        --text-muted: #d79121c7;
        --success: #10b981;
        --bg-light: #f8f9fa;
        --shadow: 0 2px 4px rgba(0,0,0,.1);
        --primary-deep: #0b2d4b;
        --saffron: #1B3A6B;
        --saffron-light: #3A5590;
        --saffron-dark: #2E5FA3;
        --gold: #F4A300;;
        --gold-light: #F0D06A;
        --maroon: #6B1A1A;
        --maroon-light: #8B2222;
        --forest: #1C3A28;
        --cream: #bfbdb91c;
        --warm-off: #faf5e95a;
        --text-dark: #231008;
        --text-body: #4A3728;
        --text-muted: #8A7060;
        --border: rgba(212, 168, 56, 0.28);
        --shadow-warm: 0 12px 48px rgba(232, 119, 34, 0.14);
        --shadow-card: 0 4px 28px rgba(35, 16, 8, 0.10);
        --radius: 16px;
        --radius-sm: 10px;
        --bs-body-bg:#fff;
        --white:#fff;
        --forest:       #1C3A28;
        --cream:        #FBF7EE;
        --warm:         #FAF4E6;
        --text:         #231008;
        --body:         #4A3728;
        --muted:        #8A7060;
        --border:       rgba(212,168,56,0.25);
        --r:            16px;
        --r-sm:         10px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--bg); }
        h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }
        a { text-decoration: none; }
        img { max-width: 100%; }
       
/* 
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: #1A1A2E;
      overflow-x: hidden;
    }

   h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        } */
    /* HERO SECTION */
    /* /* Hero Slider Styles */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -1px; /* Remove any gap */
}

.container-fluid.p-0 {
    padding: 0 !important;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.8s ease-in-out; /* Smooth sliding animation */
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
}

.hero-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optional overlay and text content */
.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
    max-width: 500px;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

/* Dark overlay on slides */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    z-index: 1;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* Dots/Indicators */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 300px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .hero-slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
}
    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat .num {
      font-family: 'Poppins', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent-gold);
      line-height: 1;
    }

    .hero-stat .lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, .7);
      text-transform: uppercase;
      letter-spacing: .7px;
      margin-top: 4px;
    }

    .hero-stat-divider {
      width: 1px;
      background: rgba(255, 255, 255, .2);
      align-self: stretch;
    }

    /* Counter Strip */
    .counter-strip {
      background: var(--primary-dark);
      padding: 2.2rem 0;
    }

    .counter-item {
      text-align: center;
      padding: 0 1rem;
      position: relative;
    }

    .counter-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255, 255, 255, .15);
    }

    .counter-num {
      font-family: 'Poppins', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--accent-gold);
    }

    .counter-label {
      color: rgba(255, 255, 255, .75);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 4px;
    }

    .counter-icon {
      font-size: 2rem;
      color: rgba(255, 255, 255, .3);
      margin-bottom: .4rem;
    }

    /* Section Styles */
    .section-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }

    .section-divider {
      width: 60px;
      height: 3px;
      background: var(--accent-gold);
      margin: 1rem 0 1.5rem;
    }

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

    .section-subtitle {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Who We Are Cards */
    .who-card {
      background: #fff;
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(27, 58, 107, .07);
      transition: all .3s;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .who-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--accent-gold);
    }

    .who-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(27, 58, 107, .12);
    }

    .who-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .who-card h4 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--primary-dark);
    }

    /* Impact Section */
    .impact-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
      padding: 5rem 0;
    }

    .impact-card {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all .3s;
    }

    .impact-card:hover {
      background: rgba(255, 255, 255, .14);
      transform: translateY(-4px);
    }

    .impact-num {
      font-family: 'Poppins', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--accent-gold);
    }

    .impact-label {
      color: rgba(255, 255, 255, .85);
      font-size: 14px;
      margin-top: .4rem;
    }

    .impact-icon {
      font-size: 2.4rem;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 1rem;
    }

    /* Events Cards */
    .event-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 16px rgba(27, 58, 107, .07);
      transition: all .3s;
      height: 100%;
    }

    .event-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 36px rgba(27, 58, 107, .13);
    }

    .event-img {
      height: 180px;
      background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
      position: relative;
      overflow: hidden;
    }

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

    .event-date-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--accent-gold);
      color: var(--primary-dark);
      border-radius: 10px;
      padding: .4rem .8rem;
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .event-status-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      border-radius: 50px;
      padding: .3rem .8rem;
      font-size: 11px;
      font-weight: 600;
    }

    .event-body {
      padding: 1.4rem;
    }

    .event-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: .5rem;
    }

    .event-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: .6rem;
      line-height: 1.4;
    }

    .event-slots {
      background: #f0f4ff;
      border-radius: 8px;
      padding: .5rem .8rem;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-mid);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .btn-register {
      background: var(--primary-dark);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: .5rem 1.2rem;
      font-size: 13px;
      font-weight: 600;
      transition: all .2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .btn-register:hover {
      background: var(--primary-mid);
      color: #fff;
    }

    /* News Cards */
    .news-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 3px 14px rgba(27, 58, 107, .06);
      transition: all .3s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .news-card:hover {
      box-shadow: 0 10px 30px rgba(27, 58, 107, .12);
      transform: translateY(-4px);
    }

    .news-img {
      height: 160px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #f0f4ff, #dce7ff);
    }

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

    .news-category {
      position: absolute;
      bottom: 10px;
      left: 12px;
      background: var(--primary-dark);
      color: #fff;
      border-radius: 50px;
      padding: .25rem .7rem;
      font-size: 11px;
      font-weight: 600;
    }

    .news-body {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .news-date {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: .5rem;
    }

    .news-title {
      font-size: .95rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: .6rem;
      line-height: 1.45;
      flex: 1;
    }

    .news-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .btn-readmore {
      color: var(--primary-mid);
      font-weight: 600;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap .2s;
      text-decoration: none;
    }

    .btn-readmore:hover {
      gap: 8px;
      color: var(--primary-dark);
    }

    /* Donation CTA */
    .donation-cta {
      background: linear-gradient(135deg, #F4A300 0%, #d48a00 100%);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .donation-cta::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
    }

    .btn-cta-donate {
      background: var(--primary-dark);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 1rem 2.5rem;
      font-size: 17px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all .25s;
      text-decoration: none;
    }

    .btn-cta-donate:hover {
      background: #0f2447;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Partners */
    .partner-logo {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      text-align: center;
      font-weight: 700;
      color: var(--text-muted);
      font-size: 13px;
      transition: all .2s;
    }

    .partner-logo:hover {
      border-color: var(--primary-light);
      color: var(--primary-mid);
      background: #eef3ff;
    }

    /* ============================================
   SEVADAL NGO TRUST - HEADER & FOOTER STYLES
   ============================================ */

/* :root {
    --primary-dark: #1B3A6B;
    --primary-mid: #2E5FA3;
    --accent-gold: #F4A300;
    --white: #ffffff;
    --text-light: #ecf0f1;
    --border-light: rgba(255,255,255,0.1);
} */

/* ===== HEADER STYLES ===== */
.navbar-sevadal {
    background: var(--primary-dark);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-sevadal .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-sevadal .logo-circle {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-dark);
}

.navbar-sevadal .brand-text {
    line-height: 1.2;
}

.navbar-sevadal .brand-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar-sevadal .brand-tagline {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-sevadal .nav-link {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar-sevadal .btn-donate-nav {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-sevadal .btn-donate-nav:hover {
    background: #d49200;
    transform: translateY(-2px);
}

.navbar-sevadal .btn-login-nav {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-sevadal .btn-login-nav:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
 .user-chip {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: .4rem .8rem;
            background: var(--bg-light);
            border-radius: 30px;
            cursor: pointer;
        }

        .chip-name {
            font-size: .8rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .chip-role {
            font-size: .65rem;
            color: var(--text-muted);
        }
.sb-link {
            display: flex;
            align-items: center;
            gap: .75rem;
            padding: .6rem 1rem;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            margin: 2px 8px;
            border-radius: 6px;
            position: relative;
            font-size: 14px;
        }

        .sb-link i {
            width: 20px;
            font-size: 1.1rem;
        }

        .sb-link:hover {
            background: rgba(255,255,255,.1);
        }

        .sb-link.active {
            background: rgba(255,255,255,.15);
            border-left: 3px solid var(--accent-gold);
        }

        .sb-badge {
            margin-left: auto;
            background: var(--accent-red);
            color: white;
            font-size: .65rem;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: 600;
        }

        .sidebar-footer {
            padding: 1rem;
            border-top: 1px solid rgba(255,255,255,.1);
        }

        .sb-user {
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .sb-avatar {
            width: 32px;
            height: 32px;
            background: var(--accent-gold);
            color: var(--primary-dark);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: .8rem;
        }

        .sb-user-name {
            font-size: .8rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .sb-user-role {
            font-size: .65rem;
            opacity: .7;
        }


/* ===== FOOTER STYLES ===== */
.footer-main {
    background: #2E5FA3;
    color: var(--text-light);
    padding: 3rem 0 0;
    font-size: 14px;
}

.footer-main .footer-brand {
    margin-bottom: 1.5rem;
}

.footer-main .logo-circle {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.footer-main .brand-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-main .brand-tagline {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-main p {
    font-size: 13.5px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-main .social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-main .social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-main .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-main .footer-heading {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-main .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-main .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .footer-links li {
    margin-bottom: 0.6rem;
}

.footer-main .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-main .footer-links a i {
    font-size: 12px;
    margin-right: 5px;
    color: var(--accent-gold);
}

.footer-main .footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-main .footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 13px;
    line-height: 1.6;
}

.footer-main .footer-contact-item i {
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-main .footer-contact-item span {
    color: var(--text-light);
}

.footer-main .footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-main .footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-main .btn-donate-nav {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-main .btn-donate-nav:hover {
    background: #d49200;
    transform: translateY(-2px);
}

.footer-main .btn-volunteer {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-main .btn-volunteer:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.footer-main .footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.footer-main .footer-bottom p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

.footer-main .legal-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-main .legal-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
}

.footer-main .footer-bottom-links {
    display: flex;
    gap: 1rem;
    font-size: 12px;
}

.footer-main .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-main .footer-bottom-links a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-sevadal .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .navbar-sevadal .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-sevadal .d-flex {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-sevadal .btn-donate-nav,
    .navbar-sevadal .btn-login-nav {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-main .row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer-main .footer-bottom .d-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-main .legal-badges {
        justify-content: center;
    }
}
    /* Animations */
    .fade-in-up {
      animation: fadeInUp 0.6s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.2s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .delay-2 {
      animation-delay: 0.4s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .delay-3 {
      animation-delay: 0.6s;
      opacity: 0;
      animation-fill-mode: forwards;
    }

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

    /* Responsive */
    @media(max-width:767px) {
      .hero-section {
        min-height: 85vh;
      }

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

      .hero-stats {
        gap: 1rem;
        justify-content: center;
      }
      
      .counter-item:not(:last-child)::after {
        display: none;
      }
    }
    
    @media (max-width: 991px) {
      .navbar-main .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
    }
    .activities-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
    }

    .activities-carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 20px;
    }

    .activities-carousel-slide {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 280px;
    }

    .activity-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 4px 16px rgba(27, 58, 107, .07);
        transition: all .3s;
        height: 100%;
    }

    .activity-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 36px rgba(27, 58, 107, .13);
    }

    .activity-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .activity-body {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .activity-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--primary-dark);
    }

    .activity-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .btn-link-icon {
        color: var(--primary-mid);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s;
    }

    .btn-link-icon:hover {
        color: var(--accent-gold);
        gap: 0.8rem;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--accent-gold);
        color: var(--accent-gold);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .carousel-arrow:hover {
        background: var(--accent-gold);
        color: white;
    }

    .carousel-arrow-left {
        left: -20px;
    }

    .carousel-arrow-right {
        right: -20px;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }

    .carousel-dot.active {
        background: var(--accent-gold);
        transform: scale(1.3);
    }

    @media (max-width: 992px) {
        .activities-carousel-slide {
            flex: 0 0 calc(50% - 10px);
        }
    }

    @media (max-width: 576px) {
        .activities-carousel-slide {
            flex: 0 0 100%;
        }
        
        .carousel-arrow {
            width: 30px;
            height: 30px;
        }
        
        .carousel-arrow-left {
            left: 5px;
        }
        
        .carousel-arrow-right {
            right: 5px;
        }
    }
    /* :root {
        --primary-dark: #1B3A6B;
        --primary-mid: #2E5FA3;
        --primary-light: #4472C4;
        --accent-gold: #F4A300;
        --success: #1E6B3A;
        --danger: #C00000;
        --bg: #F4F6FA;
        --text-dark: #1A1A2E;
        --text-muted: #6C757D;
        --border: #DEE2E6;
    } */

    .reg-wrapper {
        min-height: 100vh;
        background: var(--bg);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 1rem;
    }

    .reg-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(27, 58, 107, .12);
        border: 1px solid var(--border);
        width: 100%;
        max-width: 820px;
        margin-top: 20px;
    }

    .reg-header {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
        padding: 2.5rem;
        color: #fff;
        text-align: center;
    }

    .reg-step {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        border: 2px solid rgba(255, 255, 255, .4);
        transition: all .3s;
    }

    .reg-step.active {
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        color: var(--primary-dark);
    }

    .reg-step.done {
        background: var(--success);
        border-color: var(--success);
        color: #fff;
    }

    .step-connector {
        flex: 1;
        height: 2px;
        background: rgba(255, 255, 255, .2);
        margin: 0 .5rem;
    }

    .step-connector.done {
        background: var(--success);
    }

    .step-pane {
        display: none;
        padding: 2.5rem;
    }

    .step-pane.active {
        display: block;
    }

    .skill-chip {
        background: #f4f6fa;
        border: 2px solid var(--border);
        border-radius: 50px;
        padding: .4rem .9rem;
        font-size: 12.5px;
        cursor: pointer;
        display: inline-block;
        margin: .2rem;
        transition: all .2s;
    }

    .skill-chip:hover,
    .skill-chip.selected {
        background: var(--primary-dark);
        color: #fff;
        border-color: var(--primary-dark);
    }

    .availability-chip {
        background: #f4f6fa;
        border: 2px solid var(--border);
        border-radius: 8px;
        padding: .5rem .9rem;
        font-size: 12.5px;
        cursor: pointer;
        text-align: center;
        transition: all .2s;
    }

    .availability-chip:hover,
    .availability-chip.selected {
        background: var(--success);
        color: #fff;
        border-color: var(--success);
    }

    /* Form styling */
    .form-floating>label {
        font-size: 14px;
        color: var(--text-muted);
    }

    .form-control, .form-select {
        border-radius: 10px !important;
        border: 1.5px solid var(--border) !important;
        font-size: 14px;
        padding: .9rem .9rem .9rem 1rem !important;
        height: calc(3.5rem + 2px) !important;
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-mid) !important;
        box-shadow: 0 0 0 3px rgba(46, 95, 163, .12) !important;
    }

    .btn-primary {
        background: var(--primary-dark);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 1rem 2rem;
        font-size: 16px;
        font-weight: 700;
        transition: all .25s;
        box-shadow: 0 4px 16px rgba(27, 58, 107, .3);
    }

    .btn-primary:hover {
        background: var(--primary-mid);
        transform: translateY(-1px);
        box-shadow: 0 7px 22px rgba(27, 58, 107, .35);
    }

    .btn-outline-secondary {
        border-radius: 50px;
        padding: 1rem 2rem;
    }

    /* Alert styling */
    .alert {
        border-radius: 10px;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 14px;
    }
    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    /* Password toggle */
    .password-wrapper {
        position: relative;
    }
    .password-wrapper input {
        width: 100%;
        padding: 0.9rem 2.5rem 0.9rem 1rem !important;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14px;
        height: calc(3.5rem + 2px);
    }
    .password-wrapper input:focus {
        border-color: var(--primary-mid);
        box-shadow: 0 0 0 3px rgba(46, 95, 163, .12);
        outline: none;
    }
    .password-toggle-btn, .conpassword-toggle-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--text-muted);
        cursor: pointer;
        font-size: 18px;
        z-index: 10;
    }
    .password-toggle-btn:hover, .conpassword-toggle-btn:hover {
        color: var(--primary-dark);
    }

    /* Error messages */
    #error_msgf, #error_msgl, #error_msgu, #error_msge, #error_msgmo, 
    #error_msgp, #error_msgcp, #error_msgcap, #error_msga, #error_msgterm, 
    #error_msg {
        font-size: 12px;
        margin-top: 5px;
        display: block;
        color: var(--danger);
    }

    #error_msg.text-success {
        color: var(--success);
    }

    /* Username check colors */
    #error_msgu.text-success {
        color: var(--success);
    }

    /* Captcha styling */
    .captcha-container {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    .captcha-header {
        text-align: center;
        margin-bottom: 1rem;
    }
    .captcha-header h4 {
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    .captcha-content {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
    }
    .captcha-display-section {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .captcha-image-container {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .captcha-refresh-btn {
        background: none;
        border: none;
        color: var(--primary-mid);
        cursor: pointer;
        font-size: 0.85rem;
    }
    .captcha-input-section {
        flex: 1;
    }
    .captcha-input {
        width: 100%;
        padding: 0.9rem 1rem;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14px;
    }
    .captcha-input:focus {
        border-color: var(--primary-mid);
        outline: none;
    }
    .captcha-error {
        margin-top: 0.5rem;
        color: var(--danger);
        font-size: 0.85rem;
    }

    /* Checkbox styling */
    .checkbox-group.large-text {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-dark);
    }

    /* Referral code highlight */
    .referral-badge {
        background-color: var(--primary-dark);
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 20px;
        font-size: 12px;
        margin-left: 0.5rem;
    }

    /* Username check button */
    .username-check-btn {
        background: var(--primary-light);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 0.9rem;
        font-weight: 600;
        transition: all .2s;
        height: calc(3.5rem + 2px);
    }
    .username-check-btn:hover {
        background: var(--primary-dark);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .reg-header {
            padding: 1.5rem;
        }
        .step-pane {
            padding: 1.5rem;
        }
    }
    .iti-container {
    width: 100%;
}
.iti-container .form-control {
    width: 100%;
    padding-left: 285px !important; 
}
/* header.php */
