:root {
    /* PRIMARY COLORS (From Logo) */
    --primary-blue: #0ea5e9;
    --primary-green: #22c55e;

    /* DARK THEME (Premium Look) */
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --card-bg: rgba(255, 255, 255, 0.06);

    /* TEXT COLORS */
    --text-white: #ffffff;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;

    /* GRADIENTS */
    --gradient-main: linear-gradient(135deg, #0ea5e9, #22c55e);
    --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);

    /* SHADOW */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);

    /* BORDER RADIUS */
    --radius: 12px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* CONTAINER SPACING */
section {
    padding: 80px 0;
}

/* HEADINGS */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

/* BUTTON GLOBAL */
.btn-custom {
    background: var(--gradient-main);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* GLASS EFFECT */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* ======== HEADER ========= */
.header {
    background: transparent;
    padding: 15px 0;
    transition: 0.3s;
}

/* STICKY EFFECT */
.header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

/* NAV LINKS */
.nav-link {
    color: var(--text-light);
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* TOGGLER */
.navbar-toggler {
    border: none;
}

/* ======= HERO SECTION ========= */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* TEXT */
.hero-title {
    font-size: 52px;
    line-height: 1.2;
}

.hero-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 15px;
}

/* BUTTON */
.btn-outline-light {
    border-radius: 50px;
    padding: 12px 28px;
}

/* TRUST BADGES */
.hero-trust span {
    margin-right: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

/* LOAN CARD */
.loan-card {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* INPUT */
.loan-card input,
.loan-card select {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.card1 {
    top: -20px;
    right: 30px;
}

.card2 {
    bottom: -20px;
    left: 30px;
}

/* FLOAT ANIMATION */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* GLOW BACKGROUND */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    filter: blur(150px);
    top: 20%;
    left: 10%;
    opacity: 0.4;
}

/* ======= Service Section ======== */
/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* BOX */
.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

/* ICON */
.feature-box i {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

/* HOVER GLOW */
.feature-box::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.feature-box:hover::after {
    opacity: 1;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-soft);
}

/* ====== how works ======= */
/* PROCESS SECTION */
.process-section {
    background: var(--dark-secondary);
}

/* WRAPPER */
.process-wrapper {
    position: relative;
    margin-top: 40px;
}

/* LINE */
.process-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-main);
    transform: translateX(-50%);
}

/* STEP */
.process-step {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

/* LEFT RIGHT ALIGN */
.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
}

/* NUMBER */
.step-number {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gradient-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:nth-child(even) .step-number {
    left: -20px;
}

/* CONTENT */
.step-content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* ======= why TRUST SECTION ======== */
/* SECTION */
.trust-pro-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
}

/* IMAGE WRAPPER */
.trust-image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* IMAGE */
.main-img {
    border-radius: 20px;
    transition: 0.5s;
    width: 400px;
}

/* HOVER ZOOM */
.trust-image-wrapper:hover .main-img {
    transform: scale(1.05);
}

/* GLOW EFFECT */
.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    filter: blur(120px);
    top: 20%;
    left: 20%;
    opacity: 0.4;
    z-index: -1;
}

/* TEXT HIGHLIGHT */
.section-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TRUST LIST */
.trust-list {
    margin-top: 20px;
}

/* ITEM */
.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.6s forwards;
}

/* STAGGER ANIMATION */
.trust-item:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.4s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.6s;
}

.trust-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* ICON */
.trust-item i {
    background: var(--gradient-main);
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
}

/* ANIMATION KEYFRAME */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============= Loan section ========= */
/* SECTION */
.loan-advanced {
    background: var(--dark-secondary);
}

/* MENU */
.loan-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* MENU ITEM */
.loan-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE */
.loan-item.active {
    background: var(--gradient-main);
}

/* HOVER */
.loan-item:hover {
    transform: translateX(10px);
}

/* DISPLAY BOX */
.loan-display {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.loan-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.loan-content.active {
    display: block;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */
.loan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BADGE */
.badge {
    background: var(--gradient-main);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* DESCRIPTION */
.loan-desc {
    margin: 15px 0;
    color: var(--text-light);
}

/* FEATURES */
.loan-features div {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.loan-features i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* MINI CARDS */
.loan-mini-cards {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* MINI CARD */
.mini-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

/* HOVER */
.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.loan-display {
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.loan-display::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    filter: blur(120px);
    top: -50px;
    right: -50px;
    opacity: 0.3;
}

/* ========== laon calculater section ========= */
/* SECTION */
.calc-pro-section {
    background: var(--dark-bg);
}

/* PANEL */
.calc-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

/* INPUT */
.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* RESULT CARD */
.result-card {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

/* EMI */
.result-card h1 {
    font-size: 50px;
    margin: 10px 0;
}

/* GRID */
.result-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* BOX */
.res-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
}

/* ==== cta section ====== */
/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: var(--shadow-soft);
}

/* TEXT */
.cta-content h5 {
    margin: 0;
    font-size: 16px;
}

.cta-content p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

/* MOBILE */
@media(max-width: 576px) {
    .floating-cta {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        text-align: center;
    }
}

/* ======= Footer section ====== */
/* FOOTER */
.footer {
    background: #020617;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    color: var(--primary-green);
}

/* TEXT */
.footer-desc {
    color: var(--text-muted);
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    color: var(--text-muted);
}

/* FOOTER LOGO IMAGE */
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(1.2);
    transition: 0.3s;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* ===== Modal Form ====== */
/* MODAL BACKDROP */
.loan-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* SHOW */
.loan-modal.show {
    display: flex;
}

/* MODAL BOX */
.loan-modal-content {
    width: 90%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    animation: modalFade 0.4s ease;
}

/* ANIMATION */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* HEADER */
.modal-header-custom h3 {
    margin-bottom: 5px;
}

.modal-header-custom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* INPUTS */
.loan-modal-content input,
.loan-modal-content select,
.loan-modal-content textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.loan-modal-content select option {
    color: #0f172a;
}

/* LABEL */
.loan-modal-content label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/* FOCUS */
.loan-modal-content input:focus,
.loan-modal-content select:focus,
.loan-modal-content textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-green);
}

/* ============ Contact Page ============ */
.contact-hero {
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.25), transparent 40%),
        linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));

    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    filter: blur(120px);
    top: -80px;
    left: -80px;
    opacity: 0.25;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    filter: blur(120px);
    bottom: -80px;
    right: -80px;
    opacity: 0.25;
}

.contact-hero h1 {
    color: var(--text-white);
    font-size: 48px;
}

.contact-hero p {
    color: var(--text-light);
}

/* Info  */
/* SECTION */
.contact-premium {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* MAIN BOX */
.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
}

/* LEFT SIDE */
.contact-left {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* RIGHT SIDE */
.contact-right {
    padding: 40px;
}

/* INFO ITEM */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

/* ICON */
.contact-info-item i {
    font-size: 18px;
    margin-right: 15px;
    color: var(--primary-green);
}

/* TEXT */
.contact-info-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-info-item p {
    margin: 0;
    color: var(--text-white);
}

/* INPUT */
.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* FOCUS */
.contact-right input:focus,
.contact-right textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-green);
}

/* GLOW EFFECT */
.contact-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    filter: blur(120px);
    top: -100px;
    left: -100px;
    opacity: 0.2;
}

.contact-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    filter: blur(120px);
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
}

/* ======= Legal Page ======= */
/* LEGAL SECTION */
.legal-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* HEADINGS */
.legal-section h4 {
    margin-top: 30px;
    color: var(--primary-green);
}

/* TEXT */
.legal-section p {
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.7;
}

.legal-section .container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}