/* ================= ROOT COLORS (BASED ON YOUR LOGO) ================= */
:root {
    --bg-dark: #05070d;
    --bg-card: rgba(255, 255, 255, 0.05);

    --primary: #0f2a52;
    /* deep royal blue */
    --gold: #d4a937;
    /* premium gold */
    --gold-light: #f5d27a;

    --text-light: #e6e9f0;
    --text-muted: #9aa4b2;

    --border-glass: rgba(255, 255, 255, 0.1);

    --gradient-gold: linear-gradient(135deg, #d4a937, #f5d27a);
    --gradient-dark: linear-gradient(135deg, #0f2a52, #05070d);
}

/* ================= GLOBAL RESET ================= */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Smooth feel */
* {
    transition: all 0.3s ease;
}

/* ================= NAVBAR STYLE ================= */
/* NAVBAR BASE */
.premium-navbar {
    background: rgba(5, 7, 13, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

/* NAV LINKS */
.nav-link {
    color: var(--text-muted) !important;
    margin: 0 14px;
    font-weight: 500;
    position: relative;
}

/* HOVER EFFECT (GOLD UNDERLINE ANIMATION) */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-gold);
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.premium-btn {
    background: var(--gradient-gold);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(212, 169, 55, 0.5);
}

/* BUTTON HOVER */
.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 169, 55, 0.8);
}

/* MOBILE ICON */
.navbar-toggler i {
    color: #fff;
}

/* BODY OFFSET */
body {
    padding-top: 90px;
}

/* ================= HERO BASE ================= */
.hero-ultra {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, #0f2a52, #05070d);
    overflow: hidden;
}

/* ================= GLOW EFFECT ================= */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    filter: blur(120px);
    opacity: 0.25;
}

.glow-1 {
    top: -100px;
    left: -100px;
}

.glow-2 {
    bottom: -100px;
    right: -100px;
}

/* ================= TEXT ================= */
.hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-heading span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    margin: 20px 0;
    color: var(--text-muted);
    max-width: 500px;
}

/* ================= BUTTONS ================= */
.hero-buttons .btn-outline-light {
    border-radius: 30px;
    padding: 10px 22px;
}

/* CONTAINER */
.floating-ui {
    position: relative;
    height: 400px;
}

/* CARD BASE */
.ui-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 16px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatCard 5s ease-in-out infinite;
}

/* CARD TEXT */
.ui-card h6 {
    color: var(--text-muted);
    font-size: 14px;
}

.ui-card h3 {
    margin: 10px 0;
    font-weight: 700;
}

.ui-card span {
    font-size: 13px;
    color: var(--gold);
}

/* POSITIONING (THIS CREATES COOL LAYOUT) */
.card-1 {
    top: 0;
    left: 50px;
}

.card-2 {
    top: 120px;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 80px;
    animation-delay: 2s;
}

/* ================= FLOAT ANIMATION ================= */
.loan-glass-card {
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }

    .loan-glass-card {
        margin-top: 40px;
    }
}

/* ================= GLOBAL SECTION ================= */
.global-section {
    padding: 100px 0;
    background: #05070d;
}

/* TITLE */
.section-title {
    font-size: 40px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: auto;
}

/* ================= MAP ================= */
.global-map-wrapper {
    position: relative;
    /* margin-top: 50px; */
    text-align: center;
}

.world-map {
    width: 100%;
    opacity: 0.25;
    filter: grayscale(100%);
}

.world-map {
    width: 100%;
    opacity: 0.8;
}

/* ================= TAGS ================= */
.map-tag {
    position: absolute;
    background: var(--gradient-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* TAG POSITIONS (ADJUST IF NEEDED) */
.tag-usa {
    top: 30%;
    left: 20%;
}

.tag-uk {
    top: 25%;
    left: 48%;
}

.tag-india {
    top: 45%;
    left: 65%;
}

.tag-aus {
    top: 70%;
    left: 80%;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ================= NUMBERS ================= */
.global-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= LOAN SECTION ================= */
.loan-advanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #05070d, #0a1220);
}

/* TITLE */
.section-title {
    font-size: 40px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
}

/* ================= LEFT MENU ================= */
.loan-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* MENU ITEM */
.loan-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-muted);
}

/* ICON */
.loan-item i {
    margin-right: 10px;
    color: var(--gold);
}

/* ACTIVE ITEM */
.loan-item.active {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 600;
}

/* HOVER */
.loan-item:hover {
    transform: translateX(8px);
    color: #fff;
}

/* ================= RIGHT PANEL ================= */
.loan-display {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    min-height: 300px;
}

/* TEXT */
.loan-display h3 {
    font-weight: 700;
}

.loan-display p {
    color: var(--text-muted);
    margin: 15px 0;
}

/* FEATURES */
.loan-display ul {
    list-style: none;
    padding-left: 0;
}

.loan-display ul li {
    margin: 10px 0;
    color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
    .loan-menu {
        margin-bottom: 30px;
    }
}

/* ================= Why Choose Us ================= */
/* ================= SECTION ================= */
.why-ultimate {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1220, #05070d);
}

/* ================= BIG CARD ================= */
.why-big-card {
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 169, 55, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 169, 55, 0.3);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

/* ICON */
.why-big-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* TEXT */
.why-big-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.why-big-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.why-big-card ul {
    list-style: none;
    padding: 0;
}

.why-big-card ul li {
    margin: 8px 0;
}

/* GLOW EFFECT */
.why-big-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    filter: blur(120px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

/* ================= MINI CARDS ================= */
.why-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
}

/* ICON */
.why-mini-card i {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* TEXT */
.why-mini-card h6 {
    font-weight: 600;
}

/* HOVER */
.why-mini-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 169, 55, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* ================= FINANCIAL INSIGHTS ================= */
/* ================= SECTION ================= */
.insight-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #05070d, #0a1220);
}

/* ================= CARD ================= */
.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
}

/* ITEM */
.insight-item {
    margin-bottom: 25px;
}

/* TEXT */
.insight-item span {
    color: var(--text-muted);
    font-size: 14px;
}

/* PROGRESS BAR */
.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

/* FILL */
.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    transition: width 1s ease;
}

/* ================= CTA SECTION ================= */
.cta-ultra {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at center, #0f2a52, #05070d);
    overflow: hidden;
}

/* GLOW EFFECT */
.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    filter: blur(150px);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* TEXT */
.cta-title {
    font-size: 42px;
    font-weight: 700;
}

.cta-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: auto;
}

/* BUTTONS */
.cta-buttons .btn-outline-light {
    border-radius: 30px;
    padding: 10px 22px;
}

/* HOVER */
.cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 30px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #05070d;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* TEXT */
.footer-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* TITLES */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ICONS */
.footer-text i {
    margin-right: 8px;
    color: var(--gold);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ================= POPUP ================= */
.loan-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

/* SHOW */
.loan-popup.active {
    display: block;
}

/* OVERLAY */
.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* CONTENT */
.popup-content {
    position: relative;
    max-width: 420px;
    margin: 80px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    z-index: 2;
    animation: popupFade 0.4s ease;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

/* TITLE */
.popup-content h3 {
    font-weight: 700;
}

.popup-subtitle {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
    border-radius: 10px;
}

.form-group select option {
    color: #0f2a52;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

/* ================= Contact page ================= */
.contact-hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at center, #0f2a52, #05070d);
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: auto;
}

.contact-info {
    padding: 60px 0;
    background: #05070d;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
}

.contact-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #05070d, #0a1220);
}

/* FORM BOX */
.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
    border-radius: 10px;
}

.contact-form-box select option {
    color: #0f2a52;
}

/* FOCUS */
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.legal-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at center, #0f2a52, #05070d);
}

.legal-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.legal-hero p {
    color: var(--text-muted);
}

/* ================= Legal page ================= */
/* CONTENT */
.legal-content {
    padding: 80px 0;
    background: #05070d;
}

.legal-box {
    max-width: 900px;
    margin: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
}

.legal-box h4 {
    margin-top: 25px;
    font-weight: 600;
}

.legal-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 10px;
}