
/* ========================= */
/* RESET */
/* ========================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    margin: 0;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= 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%;
    }
}



/* ========================= */
/* WHATSAPP */
/* ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 15px;
    font-size: 20px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
}

/* ========================= */
/* DESKTOP */
/* ========================= */
@media (min-width: 768px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero .btn-group {
        flex-direction: row;
        justify-content: center;
    }

    .btn-gold {
        width: auto;
    }

    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .partner-box img {
        height: 40px;
    }
}

@media (min-width: 992px) {

    .navbar-brand img {
        height: 90px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* ================= HERO ================= */
/* ================= HERO PREMIUM ================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background: radial-gradient(circle at 20% 50%, rgba(47,78,133,0.9), #0a1432);

    color: white;
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212,175,55,0.2);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #D4AF37;
}

.hero-content p {
    margin-top: 15px;
    font-size: 17px;
    opacity: 0.85;
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-gold {
    background: linear-gradient(45deg, #D4AF37, #C89B2E);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 25px;
}

/* IMAGE */
.hero-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero {
        text-align: center;
        padding: 100px 15px 40px;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-badges {
        justify-content: center;
    }

     .hero-image {
        margin-top: 40px;
    }


}


/* ================= TRUST SECTION ================= */

.trust-section {
    padding: 70px 15px;
    background: #f5f7fb;
}

/* CARD */
.trust-card {
    background: white;
    padding: 25px 15px;
    border-radius: 18px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.trust-card i {
    font-size: 28px;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* NUMBER */
.trust-card h3 {
    font-size: 28px;
    color: #2F4E85;
    margin: 5px 0;
}

/* TEXT */
.trust-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER */
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .trust-card {
        padding: 20px 10px;
    }

    .trust-card h3 {
        font-size: 22px;
    }
}


/* ================= LOAN SECTION ================= */

.loan-section {
    padding: 80px 15px;
    background: white;
}

/* CARD */
.loan-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* TOP GLOW EFFECT */
.loan-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120px;
    background: linear-gradient(45deg, rgba(212,175,55,0.15), transparent);
    top: -40px;
    left: -10%;
}

/* ICON */
.loan-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #2F4E85, #1f3560);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TITLE */
.loan-card h5 {
    color: #2F4E85;
    font-weight: 600;
}

/* TEXT */
.loan-card p {
    font-size: 14px;
    color: #555;
}

/* LIST */
.loan-card ul {
    padding-left: 0;
    list-style: none;
    margin: 15px 0;
}

.loan-card ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* ACTIONS */
.loan-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.loan-actions a {
    font-size: 14px;
    color: #2F4E85;
    text-decoration: none;
    font-weight: 500;
}

/* HOVER */
.loan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {

    .loan-actions {
        flex-direction: column;
        gap: 10px;
    }

    .loan-actions .btn {
        width: 100%;
    }
}

/* ================= WHY SECTION ================= */

.why-section {
    padding: 80px 15px;
    background: linear-gradient(to right, #f5f7fb, #ffffff);
}

/* LEFT TEXT */
.why-subtext {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
}

/* CARD */
.why-card-pro {
    background: white;
    padding: 25px 20px;
    border-radius: 18px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ICON */
.why-card-pro i {
    font-size: 22px;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* TITLE */
.why-card-pro h6 {
    color: #2F4E85;
    font-weight: 600;
}

/* TEXT */
.why-card-pro p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
.why-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {

    .section-title.text-left {
        text-align: center !important;
    }

    .why-subtext {
        text-align: center;
    }

    .why-section .btn {
        display: block;
        margin: 20px auto 0;
    }
}


/* ================= Partners ================= */
.partners-section {
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

/* SCROLL WRAPPER */
.partners-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: scrollPartners 10s linear infinite;
}

/* ITEM */
.partner-item {
    min-width: 150px;
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* IMAGE */
.partner-item img {
    max-height: 40px;
    
}

/* HOVER EFFECT */
.partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* AUTO SCROLL */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .partner-item {
        min-width: 120px;
        padding: 15px;
    }

    .partner-item img {
        max-height: 30px;
    }
}



/* ================= TESTIMONIAL ================= */

.testimonial-section {
    padding: 80px 15px;
    background: linear-gradient(to right, #ffffff, #f5f7fb);
}

/* CARD */
.testimonial-card-pro {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

/* HOVER */
.testimonial-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* STARS */
.stars {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-card-pro p {
    font-size: 14px;
    color: #555;
    min-height: 80px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

/* AVATAR */
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2F4E85;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* NAME */
.user h6 {
    margin: 0;
    font-size: 14px;
    color: #2F4E85;
}

/* ROLE */
.user span {
    font-size: 12px;
    color: #888;
}

/* MOBILE */
@media (max-width: 768px) {

    .testimonial-card-pro p {
        min-height: auto;
    }

}

/* ================= FINAL CTA ================= */

.final-cta {
    padding: 80px 15px;
    background: linear-gradient(135deg, #2F4E85, #1f3560);
    color: white;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
}

.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) {

    .final-cta h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ================= Footer 1 ================= */
/* ================= 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;
    }
}


/* ================= POPUP PREMIUM ================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 99999; /* ABOVE navbar */
}

/* ACTIVE STATE */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* BOX */
.popup-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;

    text-align: center;
    position: relative;

    transform: translateY(30px) scale(0.95);
    transition: 0.3s ease;
}

/* ANIMATE IN */
.popup-overlay.active .popup-box {
    transform: translateY(0) scale(1);
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* INPUTS */
.popup-box input,
.popup-box select {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* BUTTON */
.popup-box .btn {
    width: 100%;
}

/* BODY LOCK */
body.popup-open {
    overflow: hidden;
}
  
