/* ================= GLOBAL ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    padding-top: 90px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
/* ================= NAVBAR ================= */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 8px 0;
    z-index: 1000;
}

/* Logo */
.navbar-brand img {
    height: 60px;
    transition: 0.3s;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #2F4E85 !important;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #D4AF37 !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 10px 15px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #f5f7fb;
    color: #2F4E85;
}

/* CTA Button */
.btn-gold {
    background: linear-gradient(45deg, #D4AF37, #C89B2E);
    color: white;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212,175,55,0.3);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%232F4E85' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 10px;
    }

    .btn-gold {
        width: 100%;
    }
}


/* HERO BASE */
.pl-hero {
    min-height: 100vh;
    background: linear-gradient(120deg, #0a1f44, #1e3c72);
    color: white;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

/* LEFT CONTENT */
.pl-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.pl-hero-content h1 span {
    color: #D4AF37;
}

.subtitle {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.9;
}

/* POINTS */
.pl-points {
    margin-top: 25px;
}

.pl-points div {
    margin-bottom: 10px;
    font-size: 16px;
}

.pl-points i {
    color: #D4AF37;
    margin-right: 8px;
}

/* BUTTONS */
.pl-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 25px;
}

/* TRUST TEXT */
.pl-trust {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* RIGHT CARD */
.loan-card {
    background: white;
    color: #2F4E85;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.loan-card h5 {
    margin-bottom: 20px;
}

/* ITEMS */
.loan-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

    .pl-hero {
        text-align: center;
        padding: 80px 15px;
    }

    .pl-hero-content h1 {
        font-size: 28px;
    }

    .pl-buttons {
        flex-direction: column;
    }

    .pl-buttons .btn {
        width: 100%;
    }

    .pl-hero-card {
        margin-top: 30px;
    }
}

/* SECTION BASE */
.pl-highlights {
    padding: 70px 20px;
    background: #f5f7fb;
}

/* TITLE */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F4E85;
}

.section-subtitle {
    color: #666;
    margin-top: 5px;
}

/* CARD */
.highlight-card {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */
.highlight-card i {
    font-size: 26px;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* TEXT */
.highlight-card h6 {
    color: #2F4E85;
    margin-bottom: 5px;
}

.highlight-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .highlight-card {
        padding: 20px 10px;
    }
}


/* ================= EMI Calculator ================= */
.pl-emi {
    padding: 80px 20px;
    background: #ffffff;
}

/* CARD LEFT */
.emi-card {
    background: #f5f7fb;
    padding: 30px 25px;
    border-radius: 20px;
}

/* GROUP */
.emi-group {
    margin-bottom: 25px;
}

.emi-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* SLIDER */
.emi-group input[type="range"] {
    width: 100%;
    accent-color: #D4AF37;
}

/* RESULT CARD */
.emi-result-card {
    background: linear-gradient(120deg, #2F4E85, #1e3c72);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.emi-result-card h2 {
    font-size: 36px;
    color: #D4AF37;
    margin: 15px 0;
}

/* BREAKDOWN */
.emi-breakdown {
    margin-top: 20px;
    font-size: 14px;
}

.emi-breakdown p {
    margin: 5px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .emi-result-card {
        margin-top: 30px;
    }

    .emi-result-card h2 {
        font-size: 28px;
    }
}



/* ================= Benifites ================= */
.pl-benefits {
    padding: 80px 20px;
    background: linear-gradient(to right, #f8fbff, #eef3f9);
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2F4E85;
}

.section-header p {
    color: #666;
    margin-top: 10px;
}

/* CARD */
.benefit-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ICON */
.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4AF37, #C89B2E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

/* TEXT */
.benefit-card h5 {
    color: #2F4E85;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER PREMIUM */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 24px;
    }

    .benefit-card {
        padding: 20px 15px;
    }
}


/* ================= How it works ================= */
.pl-process {
    padding: 80px 20px;
    background: #ffffff;
}

/* WRAPPER */
.process-wrapper {
    position: relative;
    margin-top: 50px;
}

/* VERTICAL LINE */
.process-wrapper::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(#D4AF37, #2F4E85);
}

/* STEP */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

/* NUMBER CIRCLE */
.step-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4AF37, #C89B2E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 2;
}

/* CONTENT */
.step-content {
    margin-left: 20px;
}

.step-content h5 {
    color: #2F4E85;
    font-weight: 600;
}

.step-content p {
    color: #555;
    font-size: 14px;
}

/* HOVER EFFECT */
.process-step:hover .step-number {
    transform: scale(1.1);
    transition: 0.3s;
}

/* ================= DESKTOP (HORIZONTAL TIMELINE) ================= */
@media (min-width: 768px) {

    .process-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .process-wrapper::before {
        top: 20px;
        left: 0;
        width: 100%;
        height: 3px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 23%;
    }

    .step-content {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* ================= Eligibility ================= */
.pl-eligibility {
    padding: 80px 20px;
    background: linear-gradient(to right, #eef3f9, #f8fbff);
}

/* CARD */
.info-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

/* TITLE */
.info-card h3 {
    color: #2F4E85;
    margin-bottom: 20px;
    font-weight: 700;
}

/* LIST */
.info-card ul {
    padding-left: 0;
    list-style: none;
}

.info-card ul li {
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}

/* HOVER */
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* BUTTON VARIANT */
.btn-outline-primary {
    border-radius: 30px;
    padding: 10px 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .info-card {
        padding: 25px 20px;
    }
}


/* ================= Testimonials ================= */
.pl-testimonials {
    padding: 80px 20px;
    background: linear-gradient(to right, #ffffff, #f5f7fb);
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    padding: 25px 20px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
}

/* NAME */
.testimonial-card h6 {
    margin-top: 10px;
    color: #2F4E85;
}

/* STARS */
.stars {
    color: #D4AF37;
    margin: 10px 0;
}


/* ================= Final CTA ================= */
.pl-final-cta {
    padding: 80px 20px;
    background: linear-gradient(45deg, #2F4E85, #1f3560);
    color: white;
}

/* TITLE */
.pl-final-cta h2 {
    font-size: 32px;
    font-weight: 700;
}

/* TEXT */
.pl-final-cta p {
    margin-top: 10px;
    opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .pl-final-cta h2 {
        font-size: 24px;
    }
}


/* ================= FOOTER PRO ================= */

.footer-pro {
    background: #0f1e3a;
    color: white;
    padding: 60px 15px 20px;
}

/* LOGO */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-desc {
    font-size: 14px;
    color: #bbb;
}

/* HEADINGS */
.footer-pro h6 {
    color: #D4AF37;
    margin-bottom: 15px;
}

/* LINKS */
.footer-pro ul {
    list-style: none;
    padding: 0;
}

.footer-pro ul li {
    margin-bottom: 8px;
}

.footer-pro ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-pro ul li a:hover {
    color: #D4AF37;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    color: white;
}

.social-icons a:hover {
    color: #D4AF37;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-pro {
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }
}

/* ========================= */
/* WHATSAPP */
/* ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 15px;
    font-size: 20px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
}