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

:root {
    --font-sans: "Inter", system-ui, sans-serif;
    /* --primary-color: #0284c7; */
    --primary-color: #1565C0;
    /* deeper blue — more professional */
    --bg-light: #F5F7FA;
    /* warm light gray page background */

    /* Sky blue */
    --primary-dark: #0369a1;
    --secondary-color: #0f172a;
    /* Slate navy */
    --accent-color: #22c55e;
    /* Vibrant green */
    --accent-light: #f0fdf4;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    /* --bg-light: #f8fafc; */

    --bg-dark-deep: #0b1120;
    --bg-dark-card: #1e293b;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}




body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: linear-gradient(135deg, #fff9f2 0%, #ffffff 50%, #f2faf4 100%) fixed;
    overflow-x: hidden;
    line-height: 1.6;

    /* padding-top: 120px; */
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    /* always show scrollbar track, even when not needed */
    scrollbar-gutter: stable;

}

@media (max-width: 991.98px) {
    body {
        padding-top: 0px;
    }

    .navbar-logo-img {
        max-height: 20px;
    }
}

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

/* Red cursive text style */
.cursive-red {
    /* font-family: var(--font-heading); */
    font-style: italic !important;
    color: #e43a3a;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    /* Optional: adds a subtle shadow */
    font-family: 'Caveat';
    /* Use a handwriting/cursive font */
}

/* Badge styling */
.badge-national {
    background-color: var(--bg-dark-deep);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-national i {
    color: var(--accent-color);
}

/* Navbar */
.indiwa-topbar {
    background-color: var(--primary-color) !important;
    padding: 6px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    width: 100%;
}

.indiwa-topbar-links {
    display: flex;
    gap: 20px;
}

.indiwa-topbar a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.indiwa-topbar a:hover {
    color: rgba(255, 255, 255, 0.85);
}

header {

    background: #ffffff;
    /* border-bottom: 0.5px solid #dbe4f7; */
    padding: 0 40px;
    min-height: 64px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 0px;
    transition: padding 0.3s ease;
    /* add this */

}

header.scrolled {
    padding-top: 1.9rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.85);
    /* background: transparent; */

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 0.1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    */ border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .navbar-custom {
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08) !important;
    /* background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.7) !important; */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

header.scrolled .navbar-logo-img {
    max-height: 55px;
}

.navbar-toggler {
    display: block !important;
}

/* ==========================
   MOBILE NAVBAR
========================== */
@media (max-width: 991.98px) {

    header {
        padding: 10px 0;
        background: transparent;
        height: auto;
        margin-top: 0px;
        min-height: 60px;
        /* Match the height you've set for mobile */
        display: flex;
        flex-direction: column;

    }

    /* Outer pill card — logo row */
    .navbar-custom {
        width: 100%;
        margin: 0 auto;
        border-radius: 50px;
        /* padding: 10px 16px; */
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }

    /* Top row: logo + JOIN + ✕ */
    .container-fluid.d-flex {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        flex: 1;
    }



    /* Mobile JOIN pill button (top right) */
    .btn-join-mobile {
        background: var(--primary-color);
        color: #ffffff !important;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 9px 20px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .btn-join-mobile:hover {
        background: var(--primary-dark);
    }

    /* Hamburger / close button */
    .navbar-toggler {
        display: flex !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none !important;
        background: #f3f4f6 !important;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        padding: 0;
    }

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

    .navbar-toggler-icon {
        display: none;
    }

    .menu-icon {
        font-size: 20px;
        font-weight: bold;
        color: #1a1a2e;
        line-height: 1;
    }

    /* Collapsed menu panel */
    .navbar-collapse {
        background: #f0f4fa;
        margin-top: 12px;
        border-radius: 20px;
        padding: 16px 12px 20px;
        width: 100%;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .navbar-collapse.show {
        display: block;
    }

    /* Nav list */
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        gap: 4px !important;
        padding: 0;
    }

    .nav-link-custom {
        text-align: center;
        padding: 12px 20px !important;
        font-size: 13px;
        letter-spacing: 0.1em;
        color: #374151 !important;
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .nav-link-custom:hover {
        background: rgba(2, 132, 199, 0.07);
        color: var(--primary-color) !important;
    }

    .nav-link-custom.active {
        background: rgba(2, 132, 199, 0.10);
        color: var(--primary-color) !important;
        border-bottom: none;
        /* remove underline on mobile */
        font-weight: 800;
    }

    /* Divider between nav links and JOIN NOW */
    .navbar-collapse .mt-3 {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        padding-top: 16px !important;
        margin-top: 12px !important;
    }

    /* Full-width JOIN NOW button at bottom of menu */
    .btn-join-now-mobile {
        background: var(--primary-color);
        color: #ffffff !important;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 14px;
        border-radius: 50px;
        text-decoration: none;
        text-align: center;
        display: block;
        transition: all 0.2s ease;
        border: none;
    }

    .btn-join-now-mobile:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

    /* Hide topbar on mobile to keep it clean */
    /* .indiwa-topbar {
        display: blo;
    } */
}

/* =============================================
   DESKTOP OVERRIDES (≥ 992px)
   ============================================= */
@media (min-width: 992px) {

    .btn-join-mobile,
    .navbar-toggler,
    .menu-icon,
    .btn-join-now-mobile {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        position: static !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}


.nav-link-custom {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: #475569 !important;
    /* Stylish slate color */
    text-transform: uppercase;
    padding: 0.6rem 1.25rem !important;
    border-radius: 50px;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    transition: background 0.3s ease;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #ef4444 100%);
    transition: all 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
    left: 0;
}

.nav-link-custom:hover {
    /* color: var(--primary-color) !important; 

    background-color: rgba(2, 132, 199, 0.05);
    webkit-background-clip: text;
    background-clip: text;
    
    color: transparent; */
    color: linear-gradient(135deg, #22c55e 0%, #ef4444 100%) !important;
}

.nav-link-custom.active {

    color: var(--primary-color) !important;
    background-color: rgba(2, 132, 199, 0.08);
}

.btn-join-movement {
    background-color: var(--primary-color);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-join-movement:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

/* Card designs */
.card-channel {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.1);
}

.icon-box-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-box-circle.green {
    background-color: var(--accent-color);
}

/* Large image card with headset overlay */
.headset-card-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.headset-card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headset-badge-top {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.25rem;
    width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.headset-badge-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-dark-deep);
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Footer Section styling */
.footer-main {
    background-color: var(--bg-dark-deep);
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-main h5 {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.footer-banner-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

/* Core Values Cards */
.value-card {
    border-radius: 1.25rem;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(2, 132, 199, 0.15);
}

/* Roadmap and events */
.event-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

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

/* Support Portal Card on Contact/Home */
.support-portal-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.support-portal-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

/* Membership benefits card */
.benefit-card {
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card .text-primary {
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), linear-gradient(135deg, #22c55e 0%, #ef4444 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent !important;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.12), 0 20px 40px rgba(239, 68, 68, 0.12);
}

.benefit-card:hover .text-primary {
    color: #22c55e !important;
    transform: scale(1.1);
}

/* Dignity Section Cards */
.dignity-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-top: 4px solid transparent;
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.dignity-icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Hover States & Animations */
.dignity-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px var(--hover-shadow-color, rgba(0, 0, 0, 0.08)),
        0 10px 10px -5px var(--hover-shadow-color, rgba(0, 0, 0, 0.04));
    border-color: var(--hover-border-color, rgba(226, 232, 240, 0.8));
}

.dignity-card:hover .dignity-icon-container {
    transform: scale(1.1) rotate(6deg);
    background-color: var(--hover-icon-bg, #f1f5f9) !important;
    color: var(--hover-icon-color, #ffffff) !important;
}

/* Color Modifier Classes */

/* Card Red: PROTECTIVE STRIKES */
.dignity-card.card-red {
    border-top-color: #ef4444;
    --hover-shadow-color: rgba(239, 68, 68, 0.15);
    --hover-border-color: rgba(239, 68, 68, 0.2);
    --hover-icon-bg: #ef4444;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-red .dignity-icon-container {
    background-color: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

/* Card Saffron: PUBLIC AWARENESS */
.dignity-card.card-saffron {
    border-top-color: #f97316;
    --hover-shadow-color: rgba(249, 115, 22, 0.15);
    --hover-border-color: rgba(249, 115, 22, 0.2);
    --hover-icon-bg: #f97316;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-saffron .dignity-icon-container {
    background-color: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

/* Card Blue: LEGAL ADVOCACY */
.dignity-card.card-blue {
    border-top-color: #3b82f6;
    --hover-shadow-color: rgba(59, 130, 246, 0.15);
    --hover-border-color: rgba(59, 130, 246, 0.2);
    --hover-icon-bg: #3b82f6;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-blue .dignity-icon-container {
    background-color: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

/* Card Purple: MEDIA INFLUENCE */
.dignity-card.card-purple {
    border-top-color: #8b5cf6;
    --hover-shadow-color: rgba(139, 92, 246, 0.15);
    --hover-border-color: rgba(139, 92, 246, 0.2);
    --hover-icon-bg: #8b5cf6;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-purple .dignity-icon-container {
    background-color: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

/* Card Green: DIRECT SUPPORT */
.dignity-card.card-green {
    border-top-color: #22c55e;
    --hover-shadow-color: rgba(34, 197, 94, 0.15);
    --hover-border-color: rgba(34, 197, 94, 0.2);
    --hover-icon-bg: #22c55e;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-green .dignity-icon-container {
    background-color: rgba(34, 197, 94, 0.08);
    color: #22c55e;
}

/* Card Gold: INDUSTRY PRIDE */
.dignity-card.card-gold {
    border-top-color: #eab308;
    --hover-shadow-color: rgba(234, 179, 8, 0.15);
    --hover-border-color: rgba(234, 179, 8, 0.2);
    --hover-icon-bg: #eab308;
    --hover-icon-color: #ffffff;
}

.dignity-card.card-gold .dignity-icon-container {
    background-color: rgba(234, 179, 8, 0.08);
    color: #eab308;
}

/* CTA Banner Blue */
.cta-banner-blue {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    color: #ffffff;
}

.btn-white-pill {
    background: #ffffff !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-white-pill:hover {
    background: #18c026 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image styling utils */
.img-rounded-3xl {
    border-radius: 2rem;
    overflow: hidden;
}

/* Form Styling */
.form-control-custom {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    font-family: var(--font-body);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

/* Logo Sizing and Positioning */
.navbar-logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    padding: 1px;
    /* mix-blend-mode: multiply; */
    transition: all 0.3s ease;
}

.footer-logo-img {
    background-color: transparent !important;
    max-height: 70px;
    width: auto;
    /* object-fit: contain;
    mix-blend-mode: multiply; */
}

.d-inline-flex {
    background-color: transparent !important;

}



/* Unique Mission & Vision Cards */
.card-mission,
.card-vision {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-left: 6px solid transparent !important;
    border-radius: 1.75rem !important;
    padding: 2.5rem 2.25rem !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04) !important;
}

/* Watermark styles */
.card-mission::before,
.card-vision::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.04;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.card-mission::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f97316'%3E%3Cpath d='M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.card-vision::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
}

/* Specific left borders */
.card-mission {
    border-left-color: #f97316 !important;
}

.card-vision {
    border-left-color: #22c55e !important;
}

/* Hover States */
.card-mission:hover {
    background: #ffffff !important;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 30px -5px rgba(249, 115, 22, 0.12), 0 10px 15px -5px rgba(249, 115, 22, 0.06) !important;
    border-color: rgba(249, 115, 22, 0.25) !important;
    border-left-color: #ea580c !important;
}

.card-vision:hover {
    background: #ffffff !important;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 30px -5px rgba(34, 197, 94, 0.12), 0 10px 15px -5px rgba(34, 197, 94, 0.06) !important;
    border-color: rgba(34, 197, 94, 0.25) !important;
    border-left-color: #16a34a !important;
}

.card-mission:hover::before,
.card-vision:hover::before {
    opacity: 0.1;
    transform: scale(1.1) rotate(-10deg);
}

/* Premium Icon Double Rings */
.icon-box-circle-wrap {
    position: relative;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
}

.icon-box-circle-wrap::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px dashed var(--ring-color, #f97316);
    opacity: 0.4;
    animation: rotate-dashed 20s infinite linear;
}

.icon-box-circle-inner {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--inner-bg, #f97316);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Color assignments for Inner Rings */
.card-mission .icon-box-circle-wrap {
    --ring-color: #f97316;
}

.card-mission .icon-box-circle-inner {
    --inner-bg: #f97316;
}

.card-vision .icon-box-circle-wrap {
    --ring-color: #22c55e;
}

.card-vision .icon-box-circle-inner {
    --inner-bg: #22c55e;
}

/* Hover rotation of inner icon box */
.card-mission:hover .icon-box-circle-inner {
    transform: scale(1.1);
    background-color: #ea580c;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.card-vision:hover .icon-box-circle-inner {
    transform: scale(1.1);
    background-color: #16a34a;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

@keyframes rotate-dashed {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pop up / Welcome Modal CSS */
.modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.welcome-modal-card {
    display: flex;
    flex-direction: row;
    min-height: 420px;
    background-color: #ffffff;
}

.welcome-modal-left {
    flex: 0 0 38%;
    background: linear-gradient(135deg, #0b1120 0%, #0284c7 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-modal-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.welcome-modal-left::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
    z-index: 1;
}

.welcome-modal-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.welcome-modal-left-content .logo-glowing {
    max-height: 85px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.12));
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.welcome-modal-left-content .logo-glowing:hover {
    transform: scale(1.05);
}

.welcome-modal-left-content .org-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.welcome-modal-right {
    flex: 1;
    padding: 2.2rem 2.2rem;
    position: relative;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 15;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.welcome-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.05);
}

.welcome-modal-badge {
    display: inline-flex;
    align-items: center;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.welcome-modal-title {
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.welcome-modal-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Modal Pillars List */
.welcome-modal-pillars {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.welcome-modal-pillar-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.welcome-modal-pillar-item i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-right: 0.85rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.welcome-modal-pillar-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.welcome-modal-pillar-desc {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
    font-weight: 400;
    margin-top: 0.15rem;
}

/* Modal Custom Actions */
.welcome-modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.btn-modal-primary {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(2, 132, 199, 0.35);
}

.btn-modal-secondary {
    background: #ffffff;
    color: #475569 !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a !important;
}

/* Responsive Welcome Modal */
@media (max-width: 991.98px) {
    .welcome-modal-card {
        flex-direction: column;
        min-height: auto;
    }

    .welcome-modal-left {
        flex: 0 0 auto;
        padding: 2.5rem 1.5rem;
    }

    .welcome-modal-left-content .logo-glowing {
        max-height: 70px;
        margin-bottom: 1rem;
    }

    .welcome-modal-right {
        padding: 2.5rem 2rem;
    }

    .welcome-modal-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .welcome-modal-right {
        padding: 2rem 1.25rem;
    }

    .welcome-modal-actions {
        flex-direction: row-reverse;
        ;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100%;
        padding: 0.85rem;
    }
}

/* Welcome  */

.welcome-section {
    background: #f5f7fb;
    min-height: 100vh;
    padding: 60px 15px;
}

body {
    padding: 16px 16px;
}

.welcome-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.welcome-header {
    background: linear-gradient(135deg, #0d3b66, #1f5c99);
    color: #fff;
    text-align: center;
    padding: 40px;
}

.welcome-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.welcome-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-header p {
    margin: 0;
    opacity: 0.9;
}

.welcome-body {
    padding: 40px;
}

.status-box {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
}

.member-details {
    border-radius: 15px;
    overflow: hidden;
}

.member-details th {
    width: 35%;
    background: #f8f9fa;
    color: #0d3b66;
    font-weight: 600;
    padding: 15px;
}

.member-details td {
    padding: 15px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-dashboard {
    background: #0d3b66;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-dashboard:hover {
    background: #082743;
    color: #fff;
    transform: translateY(-2px);
}

.btn-profile {
    border: 2px solid #0d3b66;
    color: #0d3b66;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-profile:hover {
    background: #0d3b66;
    color: #fff;
}

@media (max-width: 768px) {

    .welcome-body {
        padding: 20px;
    }

    .welcome-header {
        padding: 30px 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-dashboard,
    .btn-profile {
        width: 100%;
        text-align: center;
    }
}

/* =============================================
   HOMEPAGE PREMIUM IMAGE SLIDER (DASHBOARD FORMAT)
   ============================================= */
.home-slider-wrapper {
    background-color: #ffffff;
    padding: 2.5rem 0;
}

.home-carousel-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(2, 132, 199, 0.06);
}

.slider-slide-wrapper {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 6rem;
    color: #ffffff;
}

/* Vignette overlay on top of slide images */
.slider-slide-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.slider-slide-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.slider-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.1);
}

.slider-badge.blue {
    background-color: rgba(2, 132, 199, 0.12);
    border-color: rgba(2, 132, 199, 0.35);
    color: #38bdf8;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.1);
}

.slider-badge.red {
    background-color: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #f87171;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.1);
}

.slider-title {
    color: #ffffff;
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.slider-desc {
    color: rgba(241, 245, 249, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Custom indicators */
.home-carousel .carousel-indicators {
    margin-bottom: 2.5rem;
    z-index: 5;
    justify-content: flex-start;
    padding-left: 6rem;
    margin-left: 0;
    margin-right: 0;
}

.home-carousel .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    margin: 0 6px 0 0;
    transition: all 0.3s ease;
}

.home-carousel .carousel-indicators .active {
    background-color: #ffffff;
    width: 50px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Custom Controls Chevron styling */
.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next {
    width: 6%;
    z-index: 5;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.home-carousel .carousel-control-prev:hover,
.home-carousel .carousel-control-next:hover {
    opacity: 0.95;
    transform: scale(1.08);
}

.home-carousel .carousel-control-prev-icon,
.home-carousel .carousel-control-next-icon {
    width: 2.2rem;
    height: 2.2rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .slider-slide-wrapper {
        height: 400px;
        padding: 0 4.5rem;
    }

    .slider-title {
        font-size: 2.1rem;
        margin-bottom: 0.85rem;
    }

    .slider-desc {
        font-size: 0.95rem;
    }

    .home-carousel .carousel-indicators {
        margin-bottom: 1.75rem;
        padding-left: 4.5rem;
    }
}

@media (max-width: 768px) {
    .home-slider-wrapper {
        padding: 1.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .home-carousel-container {
        border-radius: 16px;
    }

    .slider-slide-wrapper {
        height: 300px;
        padding: 0 2.25rem;
    }

    .slider-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 0.85rem;
    }

    .slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.65rem;
    }

    .slider-desc {
        font-size: 0.82rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        display: none;
    }

    .home-carousel .carousel-indicators {
        margin-bottom: 1.25rem;
        padding-left: 2.25rem;
    }

    .home-carousel .carousel-indicators [data-bs-target] {
        width: 24px;
        height: 3px;
    }

    .home-carousel .carousel-indicators .active {
        width: 32px;
    }
}

/* =============================================
   STAGGERED SLIDE-UP ANIMATIONS (ON LOAD)
   ============================================= */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* 1. Modal Staggered Slide-up on Open */
.modal .welcome-modal-badge,
.modal .welcome-modal-title,
.modal .welcome-modal-text,
.modal .welcome-modal-pillars,
.modal .welcome-modal-actions {
    opacity: 0;
}

.modal.show .welcome-modal-badge {
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.1s;
}

.modal.show .welcome-modal-title {
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

.modal.show .welcome-modal-text {
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.modal.show .welcome-modal-pillars {
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.modal.show .welcome-modal-actions {
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.5s;
}

/* 2. Carousel Active Slide Text Staggered Slide-up */
.carousel-item .slider-badge,
.carousel-item .slider-title,
.carousel-item .slider-desc {
    opacity: 0;
    will-change: transform, opacity;
}

.carousel-item.active .slider-badge {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.15s;
}

.carousel-item.active .slider-title {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.carousel-item.active .slider-desc {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.45s;
}

/* =============================================
   SCROLL-TRIGGERED REVEAL SYSTEM
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    /* border-radius: 50px; */
}

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

/* Scroll reveal delays for staggered children animations */
.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

.reveal-delay-5 {
    transition-delay: 0.75s;
}

.reveal-delay-6 {
    transition-delay: 0.9s;
}

/* Glassmorphic Section Overrides for Body Background Visibility */
.bg-white {
    background-color: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bg-light {
    background-color: rgba(248, 250, 252, 0.62) !important;
    /* background-color: var(--secondary-color) !important; */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Running Focus Pillars Marquee */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2.5rem 0;
    /* Seamless mask to fade out items on left/right screen edges */
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.marquee-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: scroll-marquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 380px;
    margin-right: 24px;
    flex-shrink: 0;
    display: flex;
}

.focus-pillar-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.focus-pillar-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.12), 0 10px 10px -5px rgba(2, 132, 199, 0.06);
    border-color: rgba(2, 132, 199, 0.25);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 290px;
        margin-right: 16px;
    }

    .focus-pillar-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Unique Animated Background for Focus Pillars Section */
.focus-pillars-section {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.focus-pillars-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 153, 51, 0.16), transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(19, 136, 8, 0.14), transparent 50%),
        radial-gradient(circle at 50% 40%, rgba(2, 132, 199, 0.12), transparent 40%);
    animation: rotate-bg 35s infinite linear;
    z-index: 0;
    pointer-events: none;
}

.focus-pillars-section>* {
    position: relative;
    z-index: 1;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dark Dignity Section Override */
.dignity-section-dark {
    background: #0b1120 !important;
    /* Premium dark navy matching welcome modal */
    position: relative;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dignity-section-dark h2 {
    color: #ffffff !important;
}

.dignity-section-dark p.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Adjust cards within the dark dignity section */
.dignity-section-dark .dignity-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top-width: 4px !important;
    border-top-style: solid !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
}

.dignity-section-dark .dignity-card h4 {
    color: #ffffff !important;
}

.dignity-section-dark .dignity-card p.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Maintain colored top-borders on dark background */
.dignity-section-dark .dignity-card.card-red {
    border-top-color: #ef4444 !important;
}

.dignity-section-dark .dignity-card.card-saffron {
    border-top-color: #f97316 !important;
}

.dignity-section-dark .dignity-card.card-blue {
    border-top-color: #3b82f6 !important;
}

.dignity-section-dark .dignity-card.card-purple {
    border-top-color: #8b5cf6 !important;
}

.dignity-section-dark .dignity-card.card-green {
    border-top-color: #22c55e !important;
}

.dignity-section-dark .dignity-card.card-gold {
    border-top-color: #eab308 !important;
}

.dignity-section-dark .dignity-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--hover-border-color, rgba(255, 255, 255, 0.2)) !important;
}

/* Interactive Accordion Layout for Focus Pillars */
.pillars-accordion {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: 2rem 0;
    display: flex;
    gap: 15px;
    width: 100%;
    margin: 2rem 0;
    border-radius: 30px;
    /* Increase for more curve */
    overflow: hidden;
}

.accordion-item {
    flex: 1;
    height: 480px;
    border-radius: 1.75rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Dark gradient overlay for readability */
.accordion-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.82) 100%);
    transition: background 0.6s ease;
    z-index: 1;
}

/* Expanded active state */
.accordion-item.active {
    flex: 2.8;
}

.accordion-item.active::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.88) 100%);
}

/* Content wrapper */
.accordion-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.25rem;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

/* Collapsed Content State */
.accordion-collapsed-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: opacity 0.4s ease;
}

.accordion-vertical-title {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
    color: #ffffff;
    transform: rotate(180deg);
    margin: auto 0;
}

.accordion-badge-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

/* Expanded Content State */
.accordion-expanded-view {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.accordion-item.active .accordion-collapsed-view {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.accordion-item.active .accordion-expanded-view {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inner elements styling */
.accordion-tag-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 2rem;
    display: inline-block;
}

.accordion-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.accordion-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.accordion-link {
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.accordion-link:hover {
    color: #93c5fd;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .pillars-accordion {
        flex-direction: column;
        gap: 1rem;
        display: flex;
        gap: 15px;
        width: 100%;
        margin: 2rem 0;
        border-radius: 30px;
        /* Increase for more curve */
        overflow: hidden;
    }

    .accordion-item {
        height: 120px;
        flex: none !important;
        width: 100%;
    }

    .accordion-item.active {
        height: 380px;
    }

    .accordion-collapsed-view {
        flex-direction: row;
        width: 100%;
        padding: 0 1rem;
        align-items: center;
    }

    .accordion-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0;
        font-size: 1.1rem;
    }

    .accordion-badge-circle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* =============================================
   INTERACTIVE CORE VALUES SECTION (DARK MODE)
   ============================================= */
.values-interactive-section {
    background-color: #0b1120 !important;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glowing decorative mesh background */
.values-interactive-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.values-interactive-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.values-interactive-section>* {
    position: relative;
    z-index: 1;
}

/* Left focus display card */
.value-focus-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2.25rem;
    padding: 3rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
}

/* Left focus glow effect based on active theme */
.value-focus-card::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--theme-color-glow, rgba(2, 132, 199, 0.2)) 0%, transparent 70%);
    transition: background 0.4s ease;
    pointer-events: none;
}

/* Circular ring wrapper for icon inside focus card */
.focus-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--theme-color, #0284c7);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.value-focus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.value-focus-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.8) !important;
    margin-bottom: 0;
}

/* Right interactive value list card */
.value-interactive-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 1.75rem !important;
    padding: 2rem !important;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15) !important;
    position: relative;
    overflow: hidden;
}

.value-interactive-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-color, #64748b);
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover and active states for interactive cards */
.value-interactive-card:hover,
.value-interactive-card.active {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--theme-color-shadow, rgba(2, 132, 199, 0.12)) !important;
}

.value-interactive-card:hover::before,
.value-interactive-card.active::before {
    opacity: 1;
    transform: scaleY(1.05);
}

/* Small icon container inside interactive card */
.card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--theme-color, #64748b);
    transition: all 0.4s ease;
}

.value-interactive-card:hover .card-icon-wrap,
.value-interactive-card.active .card-icon-wrap {
    background: var(--theme-color);
    color: #ffffff !important;
    box-shadow: 0 0 15px var(--theme-color-shadow);
    transform: rotate(360deg);
}

.value-interactive-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.value-interactive-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(241, 245, 249, 0.65) !important;
    margin-bottom: 0;
}

/* Color theme mappings */
.theme-integrity {
    --theme-color: #0ea5e9;
    --theme-color-shadow: rgba(14, 165, 233, 0.25);
    --theme-color-glow: rgba(14, 165, 233, 0.2);
}

.theme-transparency {
    --theme-color: #10b981;
    --theme-color-shadow: rgba(16, 185, 129, 0.25);
    --theme-color-glow: rgba(16, 185, 129, 0.2);
}

.theme-unity {
    --theme-color: #6366f1;
    --theme-color-shadow: rgba(99, 102, 241, 0.25);
    --theme-color-glow: rgba(99, 102, 241, 0.2);
}

.theme-growth {
    --theme-color: #f59e0b;
    --theme-color-shadow: rgba(245, 158, 11, 0.25);
    --theme-color-glow: rgba(245, 158, 11, 0.2);
}

.theme-protection {
    --theme-color: #f43f5e;
    --theme-color-shadow: rgba(244, 63, 94, 0.25);
    --theme-color-glow: rgba(244, 63, 94, 0.2);
}

.theme-leadership {
    --theme-color: #06b6d4;
    --theme-color-shadow: rgba(6, 182, 212, 0.25);
    --theme-color-glow: rgba(6, 182, 212, 0.2);
}

/* =============================================
   STYLISH PREMIUM FOOTER REDESIGN
   ============================================= */
.footer-main {
    background-color: #080d1a !important;
    /* Rich deep luxury dark slate */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background glows for ambient design */
.footer-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphic premium CTA Banner inside Footer */
.footer-banner-container-stylish {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.9) 0%, rgba(34, 197, 94, 0.9) 100%) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2.25rem !important;
    padding: 3rem;
    margin-bottom: 4.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-banner-container-stylish:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.pulse-shield-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1565C0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    animation: footer-shield-pulse 2s infinite;
}

@keyframes footer-shield-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Interactive list links */
.footer-links li a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links li a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}

.footer-links li a i {
    transition: transform 0.3s ease;
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

/* Stylish social media button circles */
.social-btn-stylish {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1.1rem;
    text-decoration: none;
}

.social-btn-stylish:hover {
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.08);
}

.social-btn-stylish.chat:hover {
    background-color: #0088cc;
    border-color: #0088cc;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.4);
}

.social-btn-stylish.telegram:hover {
    background-color: #229ED9;
    border-color: #229ED9;
    box-shadow: 0 10px 20px rgba(34, 158, 217, 0.4);
}

.social-btn-stylish.broadcast:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

.social-btn-stylish.globe:hover {
    background-color: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.4);
}

/* Glassmorphic support hub card with left neon border */
.footer-support-card-stylish {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid var(--neon-border, #1565C0) !important;
    border-radius: 1.25rem !important;
    padding: 1.25rem !important;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.footer-support-card-stylish:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-3px);
}

.footer-support-card-stylish i {
    transition: transform 0.4s ease;
}

.footer-support-card-stylish:hover i {
    transform: scale(1.18) rotate(12deg);
}

/* =============================================
   INTERACTIVE LOGO MEANING CARDS
   ============================================= */
.meaning-card-interactive {
    background: #ffffff;
    border: 1px solid #f1f5f9 !important;
    border-radius: 1.5rem !important;
    padding: 2.25rem 2rem !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Card-specific accent color themes */
.meaning-card-interactive.card-blue {
    --card-theme: #0ea5e9;
    --card-theme-glow: rgba(14, 165, 233, 0.15);
    --card-theme-bg: rgba(14, 165, 233, 0.06);
}

.meaning-card-interactive.card-green {
    --card-theme: #10b981;
    --card-theme-glow: rgba(16, 185, 129, 0.15);
    --card-theme-bg: rgba(16, 185, 129, 0.06);
}

.meaning-card-interactive.card-red {
    --card-theme: #ef4444;
    --card-theme-glow: rgba(239, 68, 68, 0.15);
    --card-theme-bg: rgba(239, 68, 68, 0.06);
}

.meaning-card-interactive.card-gold {
    --card-theme: #f59e0b;
    --card-theme-glow: rgba(245, 158, 11, 0.15);
    --card-theme-bg: rgba(245, 158, 11, 0.06);
}

/* Hover state effects */
.meaning-card-interactive:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--card-theme) !important;
    box-shadow: 0 20px 30px var(--card-theme-glow) !important;
    background: linear-gradient(135deg, #ffffff 65%, var(--card-theme-bg) 100%) !important;
}

/* Circular icon wrap badge */
.meaning-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: var(--card-theme-bg);
    color: var(--card-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.5rem;
}

.meaning-card-interactive:hover .meaning-icon-wrap {
    background: var(--card-theme);
    color: #ffffff !important;
    transform: scale(1.12) rotate(10deg);
    box-shadow: 0 8px 16px var(--card-theme-glow);
}

.meaning-card-interactive h4 {
    transition: color 0.3s ease;
}

.meaning-card-interactive:hover h4 {
    color: var(--card-theme) !important;
}