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

:root {
    --font-sans: "Inter", system-ui, sans-serif;
    --primary-color: #0284c7;
    /* 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: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: ffffffc7;
    overflow-x: hidden;
    /* padding-top: 120px; */
}

@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;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-top: 20px;
    
}

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: 44px 0;
        background: transparent;
  height: 15px;
    margin-top: 10px;
    min-height: 105px; /* 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: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.dignity-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-color: rgba(2, 132, 199, 0.15);
}

/* 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;
    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: #f8fafc;
    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;
    /* 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;

}



/* Mission and Vision Hover background colors */
.card-mission {
    background-color: #ffffff !important;
    border-left: 5px solid #0284c7 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-mission:hover {
    background-color: #f0f9ff !important;
    /* Soft blue */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08) !important;
}

.card-vision {
    background-color: #ffffff !important;
    border-left: 5px solid #22c55e !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-vision:hover {
    background-color: #f0fdf4 !important;
    /* Soft green */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.08) !important;
}
/* Pop up CSS */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-body h2 {
    color: #1a237e;
}

.btn-primary {
    border-radius: 50px;
    padding: 12px 20px;
}

.btn-outline-primary {
    border-radius: 50px;
    padding: 12px 20px;
}
.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    font-weight: 600;
}
.modal-body {
    padding: 10px;
}
/* Welcome  */

.welcome-section {
    background: #f5f7fb;
    min-height: 100vh;
    padding: 60px 15px;
}
body{
    padding: 40px 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;
    }
}
