/* =========================================================
   Manaveeyam Pravasi Association — Bootstrap 5.3 Theme
   Palette: deep teal/emerald (trust) + saffron/gold (warmth)
   Overrides Bootstrap CSS variables rather than fighting them
   ========================================================= */

:root {
    /* ---- Brand palette (overrides Bootstrap) ---- */
    --bs-primary: #0f766e;               /* deep teal / emerald */
    --bs-primary-rgb: 15, 118, 110;
    --bs-secondary: #d97706;             /* warm saffron/gold */
    --bs-secondary-rgb: 217, 119, 6;
    --bs-success: #1c7c54;
    --bs-success-rgb: 28, 124, 84;
    --bs-warning: #f59e0b;
    --bs-warning-rgb: 245, 158, 11;
    --bs-body-color: #2d2f34;            /* charcoal text */
    --bs-body-bg: #fdfaf3;               /* soft cream background */
    --bs-border-color: #e7e0d3;
    --bs-link-color: #0f766e;
    --bs-link-hover-color: #0b5f58;

    /* ---- Custom brand tokens ---- */
    --brand-teal: #0f766e;
    --brand-teal-dark: #0b5f58;
    --brand-saffron: #d97706;
    --brand-gold: #f59e0b;
    --brand-cream: #fdfaf3;
    --brand-cream-alt: #f7f1e6;
    --brand-charcoal: #2d2f34;
    --brand-navy: #123a36;
    --heading-font: "Noto Sans Malayalam", "Poppins", sans-serif;
    --body-font: "Noto Sans Malayalam", "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: var(--heading-font);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-charcoal);
    line-height: 1.3;
}

a {
    transition: color 0.2s ease;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--brand-navy);
    color: #fff;
    padding: 0.5rem 0;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--brand-gold);
}

/* ---------- Language toggle ---------- */
.lang-toggle .lang-btn {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.35rem;
    font-size: 0.82rem;
    padding: 0.2rem 0.7rem;
}

.lang-toggle .lang-btn.active {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-navy);
    font-weight: 700;
}

.lang-toggle .lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Language toggle inside the light navbar (mobile) */
.main-navbar .lang-toggle .lang-btn {
    color: var(--brand-charcoal);
    border-color: var(--bs-border-color);
    background: transparent;
}

.main-navbar .lang-toggle .lang-btn:hover:not(.active) {
    background: #eaf5f3;
    color: var(--brand-teal);
}

.main-navbar .lang-toggle .lang-btn.active {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #fff;
}

/* ---------- Navbar ---------- */
.main-navbar {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.brand-logo {
    max-width: 210px;
    height: auto;
}

.main-navbar .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-charcoal);
    padding: 0.6rem 1rem !important;
    position: relative;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--brand-teal);
}

.dropdown-menu {
    border: 0;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 0.5rem;
    padding: 0.55rem 0.9rem;
    font-weight: 500;
    font-size: 0.92rem;
}

.dropdown-item:hover {
    background: #eaf5f3;
    color: var(--brand-teal);
}

.btn-join {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    box-shadow: 0 0.4rem 0.9rem rgba(15, 118, 110, 0.25);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 86vh;
    background:
        linear-gradient(100deg, rgba(11, 34, 31, 0.92) 0%, rgba(15, 118, 110, 0.55) 100%),
        url("../img/banner/banner.png") center / cover no-repeat;
    padding: 6rem 0;
    color: #fff;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    pointer-events: none;
}

.hero-shape-1 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.7), transparent 70%);
    top: -140px;
    right: -120px;
}

.hero-shape-2 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.8), transparent 70%);
    bottom: -120px;
    left: -80px;
}

.hero-eyebrow {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50rem;
    padding: 0.45rem 1.1rem;
    font-weight: 500;
    font-size: 0.88rem;
    backdrop-filter: blur(6px);
    width: fit-content;
}

.hero-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.12rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-trust span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust i {
    font-size: 1.05rem;
}

/* ---------- Section headers ---------- */
.section {
    padding: 5rem 0;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-teal);
    margin-bottom: 0.75rem;
}

.section-eyebrow.eyebrow-normal {
    text-transform: none;
    letter-spacing: 0.04em;
}

.section-eyebrow.text-warning {
    color: var(--brand-gold);
}

.section-title {
    font-weight: 800;
    color: var(--brand-charcoal);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-gold));
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-title.text-white {
    color: #fff;
}

.section-lead {
    max-width: 660px;
}

/* ---------- Stats ---------- */
.stats-section {
    background:
        linear-gradient(120deg, rgba(11, 34, 31, 0.96), rgba(15, 118, 110, 0.85)),
        url("../img/banner/bradcam.png") center / cover no-repeat;
}

.stat-icon {
    font-size: 1.6rem;
    color: var(--brand-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.03em;
}

/* ---------- Service cards ---------- */
.card {
    border-radius: 1rem;
    border: 1px solid var(--bs-border-color);
}

/* Floating badge over featured image */
.ambulance-float {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* Gallery strip images */
.gallery-img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 1rem 2rem rgba(18, 58, 54, 0.18);
}

.service-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.25rem 2.5rem rgba(18, 58, 54, 0.14);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 1.25rem;
    background: #eaf5f3;
    color: var(--brand-teal);
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--brand-teal);
    color: #fff;
    transform: scale(1.05);
}

.service-link {
    color: var(--brand-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.service-link:hover {
    color: var(--brand-teal-dark);
}

/* ---------- About ---------- */
.bg-soft {
    background: var(--brand-cream-alt);
}

.about-image {
    padding-bottom: 1.25rem;
}

.about-badge {
    position: absolute;
    bottom: 0;
    left: -0.5rem;
    background: #fff;
    padding: 0.9rem 1.2rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.12);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 1.6rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-teal), var(--brand-gold));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.25rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.6rem;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--brand-teal);
}

/* ---------- Testimonials ---------- */
.testimonial-section {
    background:
        linear-gradient(120deg, rgba(11, 34, 31, 0.94), rgba(15, 118, 110, 0.85)),
        url("../img/banner/testmonial.png") center / cover no-repeat;
}

.testimonial-card {
    max-width: 680px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.25);
    color: var(--brand-charcoal);
}

.testimonial-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-gold);
    margin-bottom: 1rem;
}

.testimonial-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eaf5f3;
    color: var(--brand-teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--brand-charcoal);
}

.testimonial-rating i {
    color: var(--brand-gold);
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: auto;
    color: var(--brand-gold);
    opacity: 1;
}

#testimonialCarousel .carousel-control-prev {
    left: -2.5rem;
}

#testimonialCarousel .carousel-control-next {
    right: -2.5rem;
}

#testimonialCarousel .carousel-control-prev i,
#testimonialCarousel .carousel-control-next i {
    font-size: 1.6rem;
}

/* ---------- News cards ---------- */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(18, 58, 54, 0.12);
}

.news-img {
    height: 180px;
    object-fit: cover;
}

.news-badge {
    background: #eaf5f3;
    color: var(--brand-teal);
    font-weight: 600;
    padding: 0.45rem 0.7rem;
}

.news-badge.success {
    background: #e7f4ec;
    color: var(--bs-success);
}

.news-badge.info {
    background: #fff3e0;
    color: var(--brand-saffron);
}

/* ---------- Quick help ---------- */
.quick-help {
    background:
        linear-gradient(120deg, rgba(11, 34, 31, 0.95), rgba(15, 118, 110, 0.9)),
        url("../img/banner/contact_bg.png") center / cover no-repeat;
}

.help-card {
    display: block;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    color: var(--brand-charcoal);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
    color: var(--brand-teal);
}

.help-card i {
    font-size: 2rem;
    color: var(--brand-teal);
}

.help-card small {
    display: block;
    color: #6b7280;
}

/* ---------- Membership CTA ---------- */
.membership-card {
    background:
        linear-gradient(120deg, rgba(217, 119, 6, 0.12), rgba(245, 158, 11, 0.18)),
        #fff;
    border: 1px solid #f3e0c2;
    padding: 2.5rem;
}

/* ---------- Contact cards ---------- */
.contact-card {
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(18, 58, 54, 0.14);
}

.contact-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-teal);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.08);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
    max-width: 180px;
}

.footer-about {
    font-size: 0.92rem;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--brand-gold);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
}

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

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

.footer-contact li {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover {
    color: var(--brand-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-circle:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-navy);
    transform: translateY(-3px);
}

.footer .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-gold);
    box-shadow: none;
    color: #fff;
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--brand-teal);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.back-to-top:hover {
    background: var(--brand-gold);
    transform: translateY(-3px);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
    min-height: 36vh;
    background:
        linear-gradient(90deg, rgba(11, 34, 31, 0.9), rgba(15, 118, 110, 0.65)),
        url("../img/banner/bradcam.png") center / cover no-repeat;
    padding: 5rem 0;
    color: #fff;
}

.page-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--brand-gold);
}

.page-header .breadcrumb-item.active {
    color: var(--brand-gold);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Forms (contact & auth) ---------- */
.form-control, .form-select {
    border-radius: 0.6rem;
    padding: 0.65rem 0.9rem;
    border-color: var(--bs-border-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.15);
}

.btn {
    border-radius: 0.6rem;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--brand-teal-dark);
    --bs-btn-hover-border-color: var(--brand-teal-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-teal);
    --bs-btn-border-color: var(--brand-teal);
    --bs-btn-hover-bg: var(--brand-teal);
    --bs-btn-hover-border-color: var(--brand-teal);
}

.btn-warning {
    --bs-btn-hover-bg: #d97706;
    --bs-btn-hover-border-color: #d97706;
}

/* ---------- Gallery ---------- */
.gallery-item {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item .gallery-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 2rem rgba(18, 58, 54, 0.18);
}

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

.gallery-overlay {
    background: rgba(15, 118, 110, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ---------- Auth (login) ---------- */
.auth-wrapper {
    min-height: 100vh;
    padding: 3rem 1rem;
    background:
        linear-gradient(120deg, rgba(11, 34, 31, 0.94), rgba(15, 118, 110, 0.8)),
        url("../img/banner/banner.png") center / cover no-repeat;
}

.auth-card {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 0;
}

/* ---------- Member area ---------- */
.member-nav .list-group-item {
    border: 0;
    border-bottom: 1px solid var(--bs-border-color);
    padding: 0.9rem 1.25rem;
    font-weight: 500;
    color: var(--brand-charcoal);
    transition: all 0.2s ease;
}

.member-nav .list-group-item:last-child {
    border-bottom: 0;
}

.member-nav .list-group-item:hover {
    background: #eaf5f3;
    color: var(--brand-teal);
    padding-left: 1.5rem;
}

.member-nav .list-group-item.active {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
}

.minutes-content img {
    max-width: 100%;
    height: auto;
}

/* ---------- Member hero card ---------- */
.member-hero {
    background:
        linear-gradient(120deg, rgba(11, 34, 31, 0.96), rgba(15, 118, 110, 0.88)),
        url("../img/banner/bradcam.png") center / cover no-repeat;
    color: #fff;
    border-radius: 1.25rem;
}

.member-hero-avatar {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border: 3px solid var(--brand-gold);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}

.member-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.member-stat-value {
    font-weight: 600;
    color: #fff;
}

/* ---------- Profile tabs ---------- */
.profile-tabs .nav-link {
    border: 0;
    color: var(--brand-charcoal);
    font-weight: 600;
    padding: 0.9rem 1rem;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}

.profile-tabs .nav-link:hover {
    color: var(--brand-teal);
}

.profile-tabs .nav-link.active {
    color: var(--brand-teal);
    background: transparent;
    border-bottom: 3px solid var(--brand-saffron);
}

/* ---------- DataTables tweaks ---------- */
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--bs-border-color) !important;
    border-radius: 0.5rem;
    padding: 0.4rem 0.75rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: var(--brand-teal) !important;
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.15);
}

.dataTables_wrapper .dataTables_info {
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 0.4rem !important;
    padding: 0.25rem 0.7rem !important;
    margin-left: 0.2rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--brand-teal) !important;
    border-color: var(--brand-teal) !important;
    color: #fff !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 4.5rem 0;
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    #testimonialCarousel .carousel-control-prev {
        left: 0;
    }

    #testimonialCarousel .carousel-control-next {
        right: 0;
    }

    .section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .about-badge {
        display: none;
    }

    .membership-card {
        padding: 1.5rem;
        text-align: center;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}