/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f5f7;         /* light neutral */
    color: #0b3753;                    /* main navy text */
}

/* brand colors from logo */
:root {
    --navy: #0b3753;
    --navy-dark: #072538;
    --yellow: #f5a623;
    --yellow-soft: #ffe6b8;
    --light-border: #e5e7eb;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== NAVBAR ========== */

.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--light-border);
}

/* Bigger navbar */
.navbar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo with image */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--navy);
}

.logo-img {
    height: 64px;       /* adjust based on your image */
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-link {
    text-decoration: none;
    color: #344152;
    font-size: 1.02rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

/* underline hover in navy */
/* Remove underline completely */
.nav-link::after {
    display: none !important;
}

.nav-link:hover {
    color: var(--navy);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--navy);
}

.nav-link.active::after {
    width: 100%;
}

/* Refer & Earn button style using logo yellow */
.refer-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 2px solid var(--navy);
    background-color: var(--yellow);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(11, 55, 83, 0.25);
}

/* HAMBURGER MENU (MOBILE) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 30px;
    background: var(--navy);
    border-radius: 10px;
    transition: 0.3s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========== HERO SECTION ========== */

.hero {
    max-width: 1200px;
    margin: 2.6rem auto 2.5rem;
    padding: 0 2rem 2.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    gap: 2.8rem;
    align-items: flex-start;
}

/* Left column */
.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background-color: var(--yellow-soft);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.2rem, 3vw + 1.5rem, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 0.6rem;
}

.hero-title-accent {
    display: block;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 0.98rem;
    color: #515965;
    max-width: 32rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: #e5edf4;
    color: var(--navy-dark);
}

/* Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.3rem;
}

.btn-primary {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--navy);
    background-color: var(--navy);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(11, 55, 83, 0.3);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(7, 37, 56, 0.4);
    background-color: var(--navy-dark);
}

.btn-secondary {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--light-border);
    background-color: #ffffff;
    color: var(--navy-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    box-shadow: 0 5px 16px rgba(148, 163, 184, 0.4);
}

/* Note line */
.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--yellow);
}

/* Right column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

/* Card grid */
.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 100px;
}

.hero-card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.hero-card-text {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.hero-card-highlight {
    border-color: var(--yellow);
    background-color: #fffaf2;
}

/* Stats row */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-stat {
    flex: 1;
    min-width: 120px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.08);
}

.hero-stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 0.1rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ========== FOOTER ========== */

.footer {
    margin-top: auto;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        padding-inline: 1.5rem;
    }

    .hero-right {
        order: -1; /* cards above text on small screens */
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 1rem 1.3rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        padding: 1.2rem 1.5rem 1.4rem;
        gap: 1rem;
        border-bottom: 1px solid var(--light-border);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: 0.3s ease;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
    }

    .refer-btn {
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .brand-name {
        font-size: 1.3rem;
    }
}



/* ===== REFER & EARN PAGE ===== */

.refer-hero {
    max-width: 1200px;
    margin: 2.6rem auto 2.5rem;
    padding: 0 2rem 2.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2.4rem;
    align-items: flex-start;
}

.refer-left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.refer-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.refer-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.refer-step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.refer-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.refer-step p {
    font-size: 0.85rem;
    color: #6b7280;
}

.refer-note-box {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background-color: #fffaf2;
    border: 1px solid var(--yellow);
}

.refer-code {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background-color: var(--yellow);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.refer-note-text {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.4rem;
}

/* Right side card */

.refer-right {
    display: flex;
    justify-content: flex-end;
}

.refer-card {
    width: 100%;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.4rem 1.3rem 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--light-border);
}

.refer-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.refer-card-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.1rem;
}

/* Form styles */

.form-group {
    margin-bottom: 0.85rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--navy);
    background-color: #ffffff;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.refer-privacy-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.65rem;
}

/* Responsive */

@media (max-width: 900px) {
    .refer-hero {
        grid-template-columns: minmax(0, 1fr);
        padding-inline: 1.5rem;
    }

    .refer-right {
        justify-content: flex-start;
    }

    .refer-card {
        max-width: 100%;
    }
}


/* ===== THANK YOU POPUP ===== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;             /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-overlay.show {
    display: flex;
}

.popup-box {
    width: 90%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.4rem 1.6rem 1.3rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    text-align: center;
    border: 1px solid var(--light-border);
}

.popup-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.popup-box p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.1rem;
}

.popup-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
}


/* ===========================
        HERO SLIDER
   =========================== */

.hero-slider {
    width: 100%;
    margin-top: 1rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px; /* BIG SLIDER HEIGHT */
    overflow: hidden;
    border-radius: 18px;
}

/* Each Slide */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slide Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Text Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 460px;
    z-index: 5;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.slide-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    line-height: 1.5;
}

/* Button on slide */
.slide-content .btn-primary {
    padding: 0.75rem 1.4rem;
    background: var(--yellow);
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* Slider Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    border: none !important;       /* Removes border */
    outline: none !important;      /* Removes outline on click */
    color: #fff;
    padding: 12px 16px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}


.prev:hover, .next:hover {
    background: rgba(0,0,0,0.65);
}

.prev { left: 18px; }
.next { right: 18px; }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider-dots span {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #ffffff80;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.slider-dots .active-dot {
    background: var(--yellow);
    width: 13px;
    height: 13px;
}

/* RESPONSIVE SETTINGS */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    .slider-container {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 420px;
    }

    .slide-content {
        left: 5%;
        max-width: 300px;
    }

    .slide-content h2 {
        font-size: 1.7rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }

    .prev, .next {
        padding: 8px 10px;
        font-size: 18px;
    }
}



/* ===========================
        ABOUT PAGE
   =========================== */

.about-hero {
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 2.5rem 2rem;
    background-color: var(--navy);
    border-radius: 18px;
    color: #ffffff;
}

.about-hero-inner {
    max-width: 700px;
}

.about-hero h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.about-hero p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* MAIN ABOUT LAYOUT */

.about-main {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem 2rem;
}

.about-section {
    margin-top: 2.3rem;
}

.about-container {
    max-width: 1000px;
}

.about-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.about-section p {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0.4rem;
}

.about-highlight-quote {
    margin-top: 0.9rem;
    padding-left: 0.8rem;
    border-left: 3px solid var(--yellow);
    font-style: italic;
}

/* TWO COLUMN GRID BLOCKS */

.grid-two {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
}

/* DIFFERENCE / CARDS */

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 1rem 1rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.about-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* SERVICES GRID */

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.about-service-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 1rem 1rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.about-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.about-service-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* WHO WE SERVE PILL STYLES */

.about-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.about-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background-color: #e5edf4;
    font-size: 0.85rem;
    color: var(--navy-dark);
}

/* PROMISE BOX */

.about-promise-box {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.3rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.about-list-inline {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.9rem 0 1rem;
    padding-left: 0;
}

.about-list-inline li {
    font-size: 0.9rem;
    color: #374151;
}

.about-cta-btn {
    display: inline-flex;
    padding-inline: 1.6rem;
}

/* SIMPLE FADE-IN ANIMATION ON SECTIONS */

.section-fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.7s ease forwards;
}

.section-fade-in:nth-of-type(2) {
    animation-delay: 0.1s;
}
.section-fade-in:nth-of-type(3) {
    animation-delay: 0.2s;
}
.section-fade-in:nth-of-type(4) {
    animation-delay: 0.3s;
}
.section-fade-in:nth-of-type(5) {
    animation-delay: 0.4s;
}
.section-fade-in:nth-of-type(6) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE ABOUT PAGE */

@media (max-width: 900px) {
    .about-hero {
        padding: 2rem 1.5rem;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .grid-two {
        grid-template-columns: minmax(0, 1fr);
    }
    .about-main {
        padding-inline: 1.3rem;
    }
}




/* ===========================
        SERVICES PAGE
   =========================== */

.services-hero {
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 2.4rem 2rem;
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.services-hero-inner {
    max-width: 720px;
}

.services-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.6rem;
}

.services-hero p {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
}

/* MAIN LAYOUT */

.services-main {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem 2rem;
}

.services-section {
    margin-top: 2.4rem;
}

.services-container {
    max-width: 1100px;
}

.services-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.services-intro {
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0.4rem;
}

/* SERVICE GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
    margin-top: 1.3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.1rem 1rem 1.1rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background-color: #e5edf4;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.service-card ul {
    margin-top: 0.4rem;
    padding-left: 1.2rem;
}

.service-card ul li {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.2rem;
}

/* HOW WE WORK STEPS */

.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.service-step {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 0.9rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.service-step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background-color: var(--yellow);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
}

.service-step p {
    font-size: 0.86rem;
    color: #4b5563;
}

/* INDUSTRIES */

.industry-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.industry-pill {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background-color: #e5edf4;
    font-size: 0.85rem;
    color: var(--navy-dark);
}

/* CTA SECTION */

.services-cta-box {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.4rem 1.3rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.services-cta-box p {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.services-cta-btn {
    margin-top: 0.9rem;
    padding-inline: 1.7rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .services-hero {
        padding: 2rem 1.5rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-main {
        padding-inline: 1.3rem;
    }
}


/* ===========================
       CONTACT PAGE
=========================== */

.contact-hero {
    max-width: 1200px;
    margin: 1.5rem auto;
    background-color: var(--navy);
    padding: 2.4rem 2rem;
    border-radius: 18px;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
}

.contact-hero p {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: #e5e7eb;
}

/* GRID LAYOUT */
.contact-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.contact-form-box, .contact-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 22px rgba(15,23,42,0.06);
}

.contact-form-box h2,
.contact-info-box h2 {
    font-size: 1.5rem;
    color: var(--navy-dark);
}

.contact-form-box label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #374151;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-top: 0.3rem;
    font-size: 0.95rem;
}

.contact-info-box .info-item {
    margin-bottom: 1rem;
}

.contact-info-box h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.contact-info-box p {
    color: #4b5563;
}

/* MAP */
.contact-map {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.contact-map h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================
           FAQ PAGE
   =========================== */

.faq-hero {
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 2.4rem 2rem;
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.faq-hero-inner {
    max-width: 720px;
}

.faq-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.6rem;
}

.faq-hero p {
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.7;
}

/* MAIN FAQ LAYOUT */

.faq-main {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem 2rem;
}

.faq-section {
    margin-top: 2.2rem;
}

.faq-container {
    max-width: 1000px;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

.faq-list {
    border-radius: 14px;
}

/* FAQ ITEM / ACCORDION */

.faq-item {
    border-radius: 12px;
    border: 1px solid var(--light-border);
    background-color: #ffffff;
    margin-bottom: 0.6rem;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-icon {
    font-size: 1.2rem;
    margin-left: 0.7rem;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg); /* + to x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 1rem;
    background-color: #f9fafb;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    padding: 0.7rem 0 0.9rem;
}

.faq-answer a {
    color: var(--navy);
    text-decoration: underline;
}

/* FINAL CTA */

.faq-final-cta {
    margin-top: 2.5rem;
    padding: 1.5rem 1.4rem;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.faq-final-cta h2 {
    font-size: 1.4rem;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.faq-final-cta p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .faq-hero {
        padding: 2rem 1.5rem;
    }
    .faq-hero h1 {
        font-size: 2rem;
    }
    .faq-main {
        padding-inline: 1.3rem;
    }
}


.admin-login-box,
.admin-panel {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    text-align: center;
}

.admin-item {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin-bottom: 1rem;
    text-align: left;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-left: 0.5rem;
}
/* ===========================
      TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.testimonial-rating {
    font-size: 1rem;
    color: #fbbf24;
    margin: 0.4rem 0;
}

.testimonial-message {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* POPUP */

.testimonial-popup {
    display: none; /* hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 1.5rem;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popup-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--navy-dark);
}

.popup-content label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
    margin-top: 0.7rem;
    display: block;
}

.popup-content input,
.popup-content textarea,
.popup-content select {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.close-popup {
    background: #dc2626;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: none;
    margin-top: 0.6rem;
    cursor: pointer;
}

.close-popup:hover {
    opacity: 0.9;
}


.admin-panel {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 22px rgba(15,23,42,0.08);
}

.admin-panel h1 {
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.admin-list {
    margin-bottom: 1.5rem;
}

.admin-item {
    background: #f9fafb;
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin-bottom: 0.6rem;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 0.4rem;
}


/* style.css - S&P Associates UI kit
   Colors:
   --navy: #0b3753
   --navy-dark: #072538
   --yellow: #f5a623
   --muted: #6b7280
*/

:root{
  --navy:#0b3753;
  --navy-dark:#072538;
  --yellow:#f5a623;
  --muted:#6b7280;
  --bg:#f6f7fb;
  --card:#ffffff;
  --radius:14px;
  --glass: rgba(11,55,83,0.04);
  --shadow: 0 10px 30px rgba(11,55,83,0.08);
  --maxw:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  background:var(--bg);
  color:var(--navy-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Page wrapper */
.container{
  max-width:var(--maxw);
  margin:28px auto;
  padding:20px;
}

/* Card */
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,0.04);
}

/* ---------- Forms / Auth ---------- */

.auth-wrap{
  max-width:980px;
  margin:24px auto;
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:28px;
  align-items:center;
  padding:18px;
}

@media (max-width:980px){
  .auth-wrap{ grid-template-columns: 1fr; padding:12px }
}

.auth-intro{
  padding:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-img{
  height:64px; width:auto; object-fit:contain;
  border-radius:10px;
  background:linear-gradient(180deg,#fff,#fff);
  padding:6px;
}
.brand h1{font-size:1.6rem;margin:0;color:var(--navy);letter-spacing:0.01em}
.brand p{margin:6px 0 0;color:var(--muted)}

.auth-card{
  padding:22px;
  border-radius:12px;
}

.huge-title{font-size:1.35rem; margin:0 0 6px; color:var(--navy-dark); font-weight:700}
.subtle{color:var(--muted); font-size:0.95rem; margin-bottom:14px}

/* form fields */
.form-row{margin-bottom:12px}
label{display:block;margin-bottom:6px;font-weight:600;color:#243447;font-size:0.92rem}
.input, .select {
  width:100%;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,0.06);
  background:#fbfdff;
  font-size:0.95rem;
  outline:none;
  transition:box-shadow .18s ease, border-color .12s ease;
}
.input:focus{box-shadow:0 4px 18px rgba(11,55,83,0.06); border-color:var(--navy)}
.row{display:flex; gap:10px}
.row .col{flex:1}

/* password eye */
.input-password{
  position:relative;
}
.input-password .toggle-eye{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  background:transparent;
  border:none;
  cursor:pointer;
  font-size:0.95rem;
  color:var(--muted);
}

/* primary button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-weight:700;
  font-size:0.95rem;
}
.btn-primary{
  background:var(--navy);
  color: #fefcf7;
  box-shadow:0 8px 22px rgba(11,55,83,0.12);
}
.btn-ghost{
  background:transparent;
  color:var(--navy-dark);
  border:1px solid rgba(11,55,83,0.06);
}

/* small muted text */
.helper{font-size:0.88rem;color:var(--muted)}

/* inline links */
.link{color:var(--navy); text-decoration:none; font-weight:600}

/* ---------- Dashboard ---------- */

.dashboard-grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:18px;
}
@media (max-width:980px){ .dashboard-grid{ grid-template-columns: 1fr } }

.sidebar{
  padding:18px; border-radius:12px;
}
.nav-item{
  display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:10px; color:var(--navy-dark); text-decoration:none; margin-bottom:8px;
}
.nav-item:hover{background:var(--glass)}
.nav-item.active{background:var(--navy); color:#fff; box-shadow:0 8px 20px rgba(11,55,83,0.08)}

.main{
  padding:18px;
}
.kpis{display:grid; grid-template-columns: repeat(3,1fr); gap:12px}
@media (max-width:800px){ .kpis{grid-template-columns:repeat(1,1fr)} }
.kpi{
  padding:14px; border-radius:12px; background:linear-gradient(180deg,#fff,#fff); border:1px solid rgba(11,55,83,0.04);
  display:flex; justify-content:space-between; align-items:center;
}
.kpi .num{font-size:1.4rem;font-weight:800;color:var(--navy-dark)}
.kpi .label{font-size:0.9rem;color:var(--muted)}

/* documents list */
.table{
  width:100%; border-collapse:collapse; margin-top:12px; font-size:0.95rem;
}
.table th, .table td{ padding:10px 12px; border-bottom:1px solid rgba(11,55,83,0.04) }
.table th{ text-align:left; color:var(--muted); font-weight:700 }

/* file input */
.file-box{
  border:1px dashed rgba(11,55,83,0.06);
  padding:12px; border-radius:10px; background:#fbfdff;
}

/* toast */
.toast{
  position:fixed; right:18px; bottom:18px; background:var(--navy); color:#fff; padding:12px 16px; border-radius:10px; box-shadow:0 12px 40px rgba(7,30,50,0.35); display:none; z-index:9999;
}

/* small footer */
.footer{ text-align:center; color:var(--muted); font-size:0.9rem; margin-top:28px; padding-bottom:28px }

/* style.css — polished modern UI for S&P Associates */
:root{
  --navy:#0b3753; --muted:#6b7280; --gold:#f5a623; --bg:#f6f7fb;
  --card:#fff; --radius:12px; --maxw:1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,Arial,sans-serif;background:var(--bg);color:var(--navy)}
.container{max-width:var(--maxw);margin:28px auto;padding:20px}
.card{background:var(--card);border-radius:var(--radius);box-shadow:0 12px 30px rgba(11,55,83,0.06);border:1px solid rgba(11,55,83,0.04)}
.header{display:flex;align-items:center;gap:16px;padding:18px}
.logo-img{height:56px;object-fit:contain}
.auth-grid{display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:center;padding:28px}
@media (max-width:980px){.auth-grid{grid-template-columns:1fr;padding:18px}}
.huge{font-size:1.55rem;font-weight:800;margin:0}
.helper{color:var(--muted);font-size:0.95rem}
.input{width:100%;padding:12px;border-radius:10px;border:1px solid rgba(11,55,83,0.06);background:#fbfdff;margin-top:8px;margin-bottom:12px;font-size:1rem}
.input:focus{outline:none;box-shadow:0 8px 24px rgba(11,55,83,0.06)}
.input-password{position:relative}
.toggle-eye{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:transparent;border:none;cursor:pointer;font-size:16px;color:var(--muted)}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;border:none;cursor:pointer;font-weight:700}
.btn-primary{background:var(--navy);color:#fff}
.btn-ghost{background:transparent;border:1px solid rgba(11,55,83,0.06);color:var(--navy)}
.small-muted{font-size:0.9rem;color:var(--muted)}
.otp-area{display:flex;flex-direction:column;gap:10px}
.otp-input{font-size:1.2rem;padding:10px;text-align:center;letter-spacing:2px;border-radius:8px}
.dashboard{display:grid;grid-template-columns:260px 1fr;gap:18px}
@media (max-width:980px){.dashboard{grid-template-columns:1fr}}
.sidebar{padding:18px}
.nav-item{display:block;padding:10px;border-radius:8px;color:var(--navy);text-decoration:none;margin-bottom:8px}
.kpi{background:linear-gradient(180deg,#fff,#fbfdff);padding:12px;border-radius:10px;border:1px solid rgba(11,55,83,0.04)}
.card-section{padding:18px;background:var(--card);border-radius:10px;border:1px solid rgba(11,55,83,0.04);box-shadow:0 8px 22px rgba(11,55,83,0.04)}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #f3f4f6}
.file-preview{font-size:0.95rem;color:var(--muted)}
.footer{margin-top:34px;text-align:center;color:var(--muted);font-size:0.95rem;padding-bottom:26px}
.notice{padding:10px;border-radius:10px;background:#f8fafc;border:1px solid #e6eef6;color:var(--muted)}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn img {
    width: 30px;
    height: 30px;
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* WhatsApp color glow */
.whatsapp-btn {
    border: 3px solid #25D366;
}

/* Instagram gradient border */
.instagram-btn {
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), 
                      radial-gradient(circle at top left, #feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* ===========================
        FOOTER STYLES
=========================== */

.main-footer {
    background: linear-gradient(to right, #0f172a, #0b1120);
    color: #eee;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-top {
    padding: 20px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

/* Titles */
.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #facc15;
    font-weight: bold;
}

/* Text */
.footer-col p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #facc15;
}

/* Social Icons */
.footer-social a img {
    width: 28px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-social a img:hover {
    transform: scale(1.2);
}

/* Contact section */
.footer-contact li {
    margin-bottom: 10px;
}

/* Bottom Bar */
.footer-bottom {
    background: #0b1120;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    border-top: 1px solid #1e293b;
    margin-top: 15px;
}

/* style.css — Modern, simple, responsive UI for auth & dashboard */
/* Colors tuned to your logo: navy & warm yellow */
:root{
  --navy: #0b3753;
  --navy-2: #072538;
  --accent: #f5a623;
  --muted:#6b7280;
  --bg:#f6f7fb;
  --card:#ffffff;
  --border:#e6eef6;
  --success:#16a34a;
  --danger:#dc2626;
  --glass: rgba(11,55,83,0.04);
  --radius:14px;
  --shadow: 0 12px 36px rgba(11,55,83,0.06);
  --ui-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--ui-font);
  background:var(--bg);
  color:var(--navy-2);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Generic container */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* ---------- AUTH LAYOUT ---------- */
.auth-shell {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 14px;
}

.auth-card{
  width:100%;
  max-width:960px;
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:28px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* LEFT - branding / hero */
.auth-hero {
  padding:36px 32px;
  background: linear-gradient(180deg, rgba(11,55,83,0.02), rgba(245,166,35,0.01));
  display:flex;
  flex-direction:column;
  gap:18px;
}
.brand-row {
  display:flex;
  gap:14px;
  align-items:center;
}
.brand-logo {
  height:62px;
  width:62px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--glass);
  flex-shrink:0;
}
.brand-logo img{height:46px; width:auto; display:block}
.brand-title{font-size:20px; font-weight:800; color:var(--navy-2)}
.brand-sub{color:var(--muted); font-size:14px}

/* hero text */
.hero-h{
  font-size:22px;
  font-weight:700;
  margin-top:6px;
  color:var(--navy-2);
  line-height:1.15;
}
.hero-p{color:var(--muted); font-size:14px; line-height:1.6; max-width:48ch}

/* LEFT small features */
.features {
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.feature {
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 6px 18px rgba(11,55,83,0.02);
}
.feature .dot{width:10px; height:10px; border-radius:99px; background:var(--accent)}
.feature p{margin:0; font-size:13px; color:var(--muted)}

/* RIGHT - form column */
.auth-form {
  padding:28px;
}
.form-head {display:flex; align-items:center; gap:12px; margin-bottom:8px}
.form-head h2{margin:0; font-size:20px}
.form-sub{color:var(--muted); font-size:13px}

.form {
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.input {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#fff;
  outline:none;
  font-size:15px;
  color:var(--navy-2);
}
.input:focus{box-shadow:0 6px 18px rgba(11,55,83,0.06); border-color: rgba(11,55,83,0.12)}

.input-row{display:flex; gap:10px}
.input-row .input{flex:1}

/* fancy input with right icon (password eye) */
.input-with-icon{position:relative}
.input-with-icon .icon {
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  background:transparent; border:none; cursor:pointer; padding:6px;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:16px;
}

/* Buttons */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:10px; border:none; cursor:pointer; font-weight:700;
}
.btn-primary { background:var(--navy); color:white; box-shadow:0 8px 22px rgba(11,55,83,0.12) }
.btn-outline { background:transparent; border:1px solid var(--border); color:var(--navy-2) }
.btn-ghost { background:transparent; color:var(--navy-2); border:1px dashed var(--border) }

/* small text */
.row-between { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:6px }
.muted{ color:var(--muted); font-size:13px }

/* alerts */
.alert { padding:10px 12px; border-radius:10px; font-weight:600; font-size:13px }
.alert-error { background:#fff2f2; color:var(--danger); border:1px solid #ffdede }
.alert-success { background:#f0fff4; color:var(--success); border:1px solid #c7f3d4 }

/* OTP small helpers */
.otp-grid { display:flex; gap:8px; justify-content:center; margin-top:6px }
.otp-cell { width:44px; height:54px; border-radius:10px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; background:#fff}

/* ---------- DASHBOARD ---------- */
.dash-wrap {
  padding:28px;
  max-width:1100px;
  margin:20px auto;
}
.topbar {
  display:flex; gap:16px; align-items:center; background:var(--card); padding:12px 16px; border-radius:12px; box-shadow:var(--shadow)
}
.topbar .brand { display:flex; gap:12px; align-items:center }
.topbar .brand img { height:46px }
.topbar .actions { margin-left:auto; display:flex; gap:10px; align-items:center }
.kpi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:18px }
.kpi { background:var(--card); padding:16px; border-radius:12px; box-shadow:0 6px 20px rgba(11,55,83,0.04) }
.kpi h3{ margin:0; font-size:14px; color:var(--muted) }
.kpi .val { font-weight:800; font-size:20px; margin-top:6px }

/* small utility */
.card { background:var(--card); padding:16px; border-radius:12px; box-shadow:0 8px 24px rgba(11,55,83,0.04) }

/* ---------- FOOTER ---------- */
.footer { text-align:center; margin:40px 0; color:var(--muted) }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1000px){
  .auth-card { grid-template-columns: 1fr; }
  .auth-hero{ padding:24px }
  .auth-form{ padding:20px }
  .kpi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:600px){
  .auth-hero{ display:none } /* compact mobile: show just form */
  .auth-card { border-radius:12px; box-shadow:none; background:transparent }
  .auth-form{ padding:18px; background:var(--card); border-radius:12px; box-shadow:var(--shadow) }
  .kpi-grid { grid-template-columns: 1fr; }
}


