﻿ 

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --gold: #c9870a;
    --gold-light: #f5c842;
    --gold-dark: #9a6500;
    --navy: #0d1b3e;
    --navy-mid: #1a2f5e;
    --bg-soft: #f8f6f0;
    --bg-card: #fffdf7;
    --text-muted2: #5a5a6e;
    --border-gold: rgba(201,135,10,0.2);
    --shadow: 0 4px 24px rgba(13,27,62,0.10);
    --shadow-lg: 0 8px 40px rgba(13,27,62,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    font-size: 13px;
}

    .topbar a {
        color: rgba(255,255,255,0.85);
        transition: color 0.2s;
    }

        .topbar a:hover {
            color: var(--gold-light);
        }

    .topbar .highlight {
        color: var(--gold-light);
        font-weight: 600;
    }
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 120px;
}
/* ===== NAVBAR ===== */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo-icon {
    width: 56px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.navbar-brand strong {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1.2;
}

.navbar-brand small {
    font-size: 11px;
    color: var(--text-muted2);
    letter-spacing: 0.4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.2s;
}

    .nav-link:hover, .nav-link.active-page {
        background: rgba(201,135,10,0.1);
        color: var(--gold-dark) !important;
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 24px;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(201,135,10,0.35);
    transition: all 0.3s;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201,135,10,0.45);
        color: #fff;
    }

.btn-gold-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 24px;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn-gold-outline:hover {
        background: var(--gold);
        color: #fff;
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn-whatsapp:hover {
        background: #1da851;
        color: #fff;
        transform: translateY(-2px);
    }

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 72px 0;
}

    .page-hero h1 {
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 800;
        color: #fff;
    }

    .page-hero p {
        color: rgba(255,255,255,0.72);
        font-size: 16px;
    }

/* ===== BADGE LABEL ===== */
.badge-label {
    background: rgba(201,135,10,0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--navy);
}

/* ===== TRUST CARDS ===== */
.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    transition: all 0.3s;
    cursor: default;
}

    .trust-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--gold);
    }

    .trust-card .icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(201,135,10,0.1), rgba(201,135,10,0.2));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 24px;
        color: var(--gold);
    }

    .trust-card h4 {
        font-size: 24px;
        font-weight: 800;
        color: var(--navy);
    }

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--gold-dark));
        transform: scaleX(0);
        transition: transform 0.3s;
        transform-origin: left;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.s-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.s1 .s-icon {
    background: rgba(201,135,10,0.1);
    color: var(--gold);
}

.s2 .s-icon {
    background: rgba(26,127,78,0.1);
    color: #1a7f4e;
}

.s3 .s-icon {
    background: rgba(13,27,62,0.08);
    color: var(--navy);
}

.s4 .s-icon {
    background: rgba(232,93,4,0.1);
    color: #e85d04;
}

.s5 .s-icon {
    background: rgba(201,135,10,0.08);
    color: var(--gold-dark);
}

.s6 .s-icon {
    background: rgba(26,127,78,0.08);
    color: #1a7f4e;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted2);
    line-height: 1.7;
}

.service-card ul {
    font-size: 13px;
    color: var(--text-muted2);
    line-height: 2;
}

.service-tag {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ===== WHY SECTION ===== */
.why-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.float-badge {
    background: var(--gold);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

/* ===== PROCESS STEPS ===== */
.step-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(201,135,10,0.4);
    margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.stars {
    color: var(--gold);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    position: relative;
    overflow: hidden;
}

    .cta-banner::after {
        content: '';
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(201,135,10,0.08);
        right: -80px;
        top: -80px;
        pointer-events: none;
    }

/* ===== MARQUEE ===== */
.marquee-strip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

    .marquee-inner span {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== HERO (Home) ===== */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #102252 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201,135,10,0.07) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,135,10,0.15);
    border: 1px solid rgba(201,135,10,0.3);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

    .hero-title .gold {
        color: var(--gold-light);
    }

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.hero-stat .num {
    font-size: 30px;
    font-weight: 800;
    color: var(--gold-light);
}

.hero-stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* EMI Card */
.emi-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
}

    .emi-card h5 {
        color: #fff;
        font-weight: 700;
    }

    .emi-card label {
        font-size: 13px;
        color: rgba(255,255,255,0.75);
        font-weight: 500;
    }

    .emi-card select, .emi-card input[type=range] {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        border-radius: 8px;
    }

    .emi-card select {
        padding: 10px 14px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        width: 100%;
    }

        .emi-card select option {
            background: var(--navy);
        }

.emi-result-box {
    background: rgba(201,135,10,0.2);
    border: 1px solid rgba(201,135,10,0.4);
    border-radius: 10px;
}

    .emi-result-box .big {
        font-size: 28px;
        font-weight: 800;
        color: var(--gold-light);
    }

    .emi-result-box small {
        color: rgba(255,255,255,0.65);
        font-size: 12px;
    }

/* ===== CONTACT ===== */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    transition: all 0.3s;
}

    .contact-info-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow);
    }

.c-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

    .contact-form-wrap .form-control, .contact-form-wrap .form-select {
        border: 1.5px solid var(--border-gold);
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
    }

        .contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,135,10,0.12);
        }

    .contact-form-wrap label {
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
    }

/* ===== ABOUT ===== */
.about-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,135,10,0.15);
    border: 1px solid rgba(201,135,10,0.3);
    color: var(--gold-light);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}

.profile-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    min-width: 60px;
}

.stat-mini {
    background: var(--bg-soft);
    border-radius: var(--radius);
}

    .stat-mini .val {
        font-size: 28px;
        font-weight: 800;
    }

/* ===== TERMS ===== */
.terms-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.terms-num {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    min-width: 28px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    display: block;
    line-height: 2.2;
    transition: color 0.2s;
    text-decoration: none;
}

    .footer-col a:hover {
        color: var(--gold-light);
    }

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    font-size: 16px;
    text-decoration: none;
}

    .social-btn:hover {
        background: var(--gold);
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .footer-bottom p, .footer-bottom a {
        font-size: 13px;
        color: rgba(255,255,255,0.45);
    }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

.footer-disclaimer {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
}

    .footer-disclaimer p {
        font-size: 11px;
        color: rgba(255,255,255,0.38);
        line-height: 1.8;
    }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all 0.3s;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: #fff;
    }

.phone-float {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(201,135,10,0.5);
    transition: all 0.3s;
    text-decoration: none;
}

    .phone-float:hover {
        transform: scale(1.1);
        color: #fff;
    }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== BG SOFT ===== */
.bg-soft {
    background: var(--bg-soft);
}

.bg-card {
    background: var(--bg-card);
}
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f6fa;
}

.auth-card {
    width: 950px;
 height:500px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    position: relative;
}

/* Form Section */
.form-side {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    padding:30px;
    background: #fff;
    z-index: 2;
    transition: all .6s ease;
}

/* Overlay Section */
.overlay-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), #A7E5E8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .6s ease;
    z-index: 1;
}

/* Signup Animation */
.auth-card.signup-mode .form-side {
    left: 50%;
}

.auth-card.signup-mode .overlay-panel {
    right: 50%;
}

.overlay-content {
    text-align: center;
    padding: 30px;
}

    .overlay-content h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .overlay-content p {
        font-size: 14px;
        line-height: 1.6;
    }

.tab-buttons {
    display: flex;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    border: none;
    padding: 10px;
    background: #eee;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

    .tab-btn.active {
        background: #c9870a;
        color: #fff;
    }

input.form-control {
    height: 60px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.btn-warning {
    height: 60px;
    border-radius: 15px;
    font-size: 18px;
}
.team-heading {
    font-size: 50px;
    font-weight: 800;
    color: #0d1b3e;
}

.team-subtitle {
    color: #777;
    max-width: 700px;
    margin: auto;
}

.team-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    position: relative;
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d1b3e,#d89b13);
    }

    .team-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0,0,0,.18);
    }

.team-img {
    width: 90%;
    height: 160px;
    margin: auto;
    margin-top:10px;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #F5B400;

}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-content {
    padding: 25px;
    text-align: center;
}

    .team-content h4 {
        color: #0d1b3e;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .team-content span {
        color: #d89b13;
        font-weight: 600;
        display: block;
        margin-bottom: 15px;
    }

    .team-content p {
        color: #666;
        font-size: 14px;
        min-height: 65px;
    }
 
    