﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background: #0b0f1a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   FINAL RESPONSIVE NAVBAR
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #0b0f1a;
}

.nav-wrapper {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    display: block;
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .main-nav a {
        margin: 0;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        white-space: nowrap;
    }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: -5.5%;
        width: 111%;
        padding: 12px 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #0b0f1a;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
    }

        .main-nav.active {
            display: flex;
        }

        .main-nav a {
            display: block;
            width: 100%;
            padding: 13px 25px;
            text-align: left;
        }

            .main-nav a:hover {
                background: rgba(0, 123, 255, 0.18);
            }
}

/* button */
.btn {
    background: linear-gradient(45deg,#00e5ff,#7c4dff);
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: inline-block;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)), url(https://cdn.vectorstock.com/i/500p/23/07/web-blue-banner-software-ui-and-development-vector-42172307.jpg) center/ cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* glass card */
.glass {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
}

/* ===== SECTION ===== */
.section {
       padding: 80px 0;

}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: .35s;
}
    .card h3 {
        margin-top: 5px;
        font-weight: 700;
        color: #007bff;
        letter-spacing: 0.5px;
    }
    .card h4 {
        margin-top: 15px;
        font-weight: 600;
        color: #007bff;
        letter-spacing: 0.5px;
    }

    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 30px rgba(0,229,255,.5);
    }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 40px 0px;
    text-align: center;
    background: radial-gradient(circle at top,#1a237e,#000);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* ===== CONTACT ===== */
.form-box {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
}

    .form-box input,
    .form-box textarea {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: none;
        border-radius: 8px;
    }

/* footer */
.footer {
    text-align: center;
    padding: 25px;
    background: #05070f;
}

/* responsive */
@media(max-width:992px) {
    .hero-grid,
    .grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}
/* ===== MOBILE NAVBAR ===== */
.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav {
        position: relative;
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 14px 0;
        background: #0b0f1a;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 25px rgba(0, 0, 0, 0.3);
    }

        nav.active {
            display: flex;
        }

        nav a {
            width: 100%;
            margin: 0;
            padding: 12px 25px;
            text-align: center;
        }

            nav a:hover {
                background: rgba(0, 123, 255, 0.15);
            }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
    z-index: 999;
    transition: .3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }
/*-------*/

/* CLIENT GRID */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.client-card {
    background:url('assets/images/client_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .client-card img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .client-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .client-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .client-card p {
        font-size: 14px;
        color: #666;
    }

/* STATS */
.stats {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    gap: 30px;
}

.stats h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #00c6ff;
}

.stats p {
    font-size: 15px;
    opacity: 0.9;
}

/* TESTIMONIAL */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .testimonial:hover {
        transform: translateY(-8px);
    }

    .testimonial p {
        font-style: italic;
        margin-bottom: 15px;
    }

    .testimonial h4 {
        font-weight: 600;
        color: #007bff;
    }



/* TRUST */
.trust {
    background: rgba(255,255,255,0.05);
    padding: 70px 20px;
    text-align: center;
}

/* SCROLL ANIMATION */
/* DEFAULT VISIBLE */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    /* ONLY ANIMATE WHEN JS ADDS CLASS */
    .reveal.animate {
        opacity: 0;
        transform: translateY(40px);
    }

        .reveal.animate.active {
            opacity: 1;
            transform: translateY(0);
        }

html {
    scroll-behavior: smooth;
}

.reveal {
    will-change: transform, opacity;
}
/* ===== SHORT PREMIUM FOOTER ===== */
.footer {
    background: #020617;
    color: #cbd5e1;
    padding: 45px 0 0;
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-mini {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* left */

.footer-left .logo {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.7px;
    line-height: 1.2;
}

    .footer-left .logo span {
        color: #4da3ff;
        font-weight: 600;
    }

.footer-left p {
    font-size: 14px;
    margin-top: 6px;
}

/* center links */
.footer-links {
    text-align: center;
}

    .footer-links a {
        margin: 0 10px;
        color: #cbd5e1;
        text-decoration: none;
        font-size: 14px;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #38bdf8;
        }

/* right */
.footer-right {
    text-align: right;
}

.socials {
    margin-bottom: 10px;
}

    .socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin-left: 8px;
        border-radius: 8px;
        background: rgba(255,255,255,.06);
        color: #fff;
        transition: .3s;
    }

        .socials a:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

/* mini newsletter */
.newsletter {
    display: inline-flex;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    overflow: hidden;
}

    .newsletter input {
        padding: 8px 10px;
        border: none;
        outline: none;
        background: transparent;
        color: #fff;
        width: 140px;
        font-size: 13px;
    }

    .newsletter button {
        border: none;
        background: #2563eb;
        color: #fff;
        padding: 8px 12px;
        cursor: pointer;
    }

/* bottom */
.footer-bottom {
    text-align: center;
    padding: 16px;
    margin-top: 30px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* mobile */
@media(max-width:900px) {
    .footer-mini {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .newsletter {
        justify-content: center;
    }
}

/* ===== Service Page ===== */
/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

    .page-header p {
        margin-top: 10px;
        color: #cbd5e1;
    }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-image: url('assets/images/product_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .service-card:hover {
        transform: translateY(-8px);
    }

    .service-card img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        margin-bottom: 10px;
    }

    .service-card ul {
        margin-top: 12px;
        padding-left: 18px;
        color: #475569;
    }

/* ===== PROCESS ===== */
.process {
    background: rgba(255,255,255,0.05);
    padding: 70px 0;
    margin-top: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    background: #475569;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

    .process-step span {
        display: inline-block;
        background: #2563eb;
        color: #fff;
        width: 42px;
        height: 42px;
        line-height: 42px;
        border-radius: 50%;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    margin-top: 60px;
}

    .cta p {
        margin: 10px 0 20px;
    }
/* ===== Product page ===== */
/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('assets/images/product_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
    height: 100%;
}

    /* HOVER EFFECT */
    .product-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* TEXT */
.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: snow;
    margin-bottom: 15px;
}

/* LIST */
.product-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .product-card ul li {
        margin-bottom: 8px;
        font-size: 14px;
    }

/* BUTTON */
.premium-btn {
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

    /* BUTTON HOVER */
    .premium-btn:hover {
        background: linear-gradient(135deg, #0056b3, #0096c7);
        transform: scale(1.05);
    }

/* ===== Team Page ===== */
/* ===== TEAM INTRO ===== */
.team-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

    .team-intro p {
        color: #64748b;
        margin-top: 10px;
    }

.team-section {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}

    .team-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
        color: #0f172a;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Image */
    .team-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

/* Content */
.team-info {
    padding: 15px;
    text-align: left;
}

    .team-info h3 {
        margin: 0;
        font-size: 25px;
        color: #fff;
    }

.role {
    font-size: 13px;
    color: #007bff;
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    color: #475569;
    line-height: 2;
}

/*==== About Page ====*/
/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: #64748b;
    margin: 12px 0;
    line-height: 1.7;
}

.about-points {
    margin-top: 18px;
    display: grid;
    gap: 8px;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* ===== STATS ===== */
.stats {
    background: #0f172a;
    color: #fff;
    padding: 60px 0;
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 25px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: #38bdf8;
}

/* ===== MISSION ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ===== WHY ===== */
.why {
    background: rgba(255,255,255,0.05);
    padding: 70px 0;
    margin-top: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* ===== MOBILE ===== */
@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* 🔷 Tracking Section */
.tracking-section {
    padding: 100px 20px;
    background: #0b0f1a;
    font-family: 'Poppins', sans-serif;
}

/* 🔷 Header */
.tracking-header-pro {
    text-align: center;
    margin-bottom: 50px;
}

    .tracking-header-pro h2 {
        font-size: 42px;
        font-weight: 700;
        color: #2563eb;
        position: relative;
        display: inline-block;
        letter-spacing: 1px;
    }

        .tracking-header-pro h2::after {
            content: '';
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #00c6ff);
            position: absolute;
            bottom: -10px;
            left: 20%;
            border-radius: 10px;
        }

    .tracking-header-pro p {
        margin-top: 20px;
        font-size: 16px;
        color: #6b7280;
    }

    .tracking-header-pro span {
        color: #2563eb;
        font-weight: 600;
    }

/* 🔷 Form Container */
.tracking-form {
    max-width: 650px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    /* Glass Effect */
    background-image: url('assets/images/tracking_bg.png'); /* fix path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 20px;
    transition: 0.3s ease;
}

    .tracking-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    }

/* 🔷 Input Group */
.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
    }

    /* 🔷 Inputs */
    .form-group input {
        padding: 14px 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        outline: none;
        font-size: 15px;
        /* Glass Effect */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: #0b1220;
        transition: all 0.3s ease;
    }

        /* Placeholder */
        .form-group input::placeholder {
            color: #fff;
        }

        /* Focus Effect */
        .form-group input:focus {
            border-color: rgba(37, 99, 235, 0.6);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
            background: rgba(255, 255, 255, 0.25);
        }

/* 🔷 Button */
.track-btn {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #00c6ff);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

    .track-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    }

    .track-btn:active {
        transform: scale(0.97);
    }

/* 🔷 Responsive */
@media (max-width: 600px) {
    .tracking-header-pro h2 {
        font-size: 30px;
    }

    .tracking-form {
        padding: 25px;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

    /* Normal nav links */
    nav a {
        text-decoration: none;
        color: white;
        font-size: 15px;
    }

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Button Style */
.dropbtn {
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: white;
    font-family: inherit;
    padding: 5px;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 5px;
    background: #0b0f1a;
    min-width: 260px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    /* Scroll */
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

    /* Dropdown Links */
    .dropdown-content a {
        display: block;
        padding: 12px 15px;
        text-decoration: none;
        color: white;
        font-size: 14px;
        transition: 0.3s;
    }

/* Show only when clicked */
.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background: #f3f4f6;
    color: #007bff;
}

/* Custom Scrollbar */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

    .dropdown-content::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* =====================================
   REFER & EARN HERO SECTION
===================================== */

.refer-hero {
    position: relative;
    overflow: hidden;
    padding: 15px 0 90px;
    background: radial-gradient(circle at 88% 12%, rgba(20, 143, 255, 0.22), transparent 25%), radial-gradient(circle at 8% 90%, rgba(13, 91, 215, 0.10), transparent 28%), linear-gradient(135deg, #f8fbff 0%, #eaf4ff 100%);
}

    .refer-hero::before {
        content: "";
        position: absolute;
        width: 440px;
        height: 440px;
        right: -180px;
        bottom: -220px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d5bd7, #22a7ff);
        opacity: 0.12;
    }

    .refer-hero::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        left: 4%;
        top: 18%;
        border: 1px solid rgba(13, 91, 215, 0.14);
        border-radius: 50%;
    }

.refer-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 65px;
}

.refer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    margin-bottom: 20px;
    border: 1px solid #c9e1ff;
    border-radius: 30px;
    background: #eaf4ff;
    color: #0d5bd7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .refer-badge i {
        font-size: 14px;
    }

.refer-hero-content h1 {
    margin: 0 0 20px;
    color: #071d49;
    font-size: clamp(38px, 5vw, 63px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

    .refer-hero-content h1 span {
        color: #0d5bd7;
    }

.refer-hero-content > p {
    max-width: 650px;
    margin-bottom: 28px;
    color: #60708a;
    font-size: 17px;
    line-height: 1.8;
}

.refer-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.refer-main-btn,
.refer-second-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.refer-main-btn {
    border: 1px solid #0d5bd7;
    background: #0d5bd7;
    color: #fff;
    box-shadow: 0 10px 20px rgba(13, 91, 215, 0.20);
}

    .refer-main-btn:hover {
        transform: translateY(-3px);
        background: #071d49;
        border-color: #071d49;
        color: #fff;
    }

.refer-second-btn {
    border: 1px solid #0d5bd7;
    background: transparent;
    color: #0d5bd7;
}

    .refer-second-btn:hover {
        background: #0d5bd7;
        color: #fff;
    }

.refer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
}

    .refer-trust div {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #50627e;
        font-size: 13px;
        font-weight: 600;
    }

    .refer-trust i {
        color: #10a96b;
        font-size: 15px;
    }

/* Reward Card */
.refer-reward-box {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(145deg, #061a42, #0d5bd7 65%, #20a7ff);
    color: #fff;
    box-shadow: 0 28px 55px rgba(13, 91, 215, 0.30);
}

    .refer-reward-box::before {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        top: -110px;
        right: -80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
    }

    .refer-reward-box::after {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        bottom: -75px;
        left: -55px;
        border-radius: 50%;
        border: 22px solid rgba(255, 255, 255, 0.08);
    }

.reward-top,
.reward-amount,
.reward-bottom,
.reward-divider {
    position: relative;
    z-index: 2;
}

.reward-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .reward-top span {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .reward-top i {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        font-size: 20px;
    }

.reward-amount {
    padding: 32px 0 26px;
}

    .reward-amount small {
        display: block;
        margin-bottom: 4px;
        color: rgba(255, 255, 255, 0.80);
        font-size: 14px;
    }

    .reward-amount h2 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 62px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .reward-amount p {
        margin: 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 15px;
    }

.reward-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
}

.reward-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.5;
}

    .reward-bottom i {
        color: #9fe2ff;
        font-size: 23px;
    }

/* Mobile */
@media (max-width: 900px) {
    .refer-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .refer-reward-box {
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .refer-hero {
        padding: 70px 0 65px;
    }

    .refer-hero-content h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .refer-hero-content > p {
        font-size: 15px;
    }

    .refer-hero-buttons a {
        width: 100%;
    }

    .refer-trust {
        display: grid;
        gap: 12px;
    }

    .refer-reward-box {
        padding: 25px 21px;
    }

    .reward-amount h2 {
        font-size: 54px;
    }
}

/* ==========================================
   REFER & EARN - HOW IT WORKS SECTION
========================================== */

.refer-steps {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: #f5f9ff;
}

    .refer-steps::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        top: -200px;
        left: -150px;
        border-radius: 50%;
        background: rgba(13, 91, 215, 0.08);
    }

.refer-section-title {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

    .refer-section-title > span {
        display: inline-block;
        margin-bottom: 12px;
        color: #0d5bd7;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .refer-section-title h2 {
        margin: 0 0 13px;
        color: #071d49;
        font-size: clamp(30px, 4vw, 45px);
        line-height: 1.15;
    }

        .refer-section-title h2 strong {
            color: #0d5bd7;
        }

    .refer-section-title p {
        margin: 0;
        color: #60708a;
        font-size: 16px;
        line-height: 1.75;
    }

.refer-steps-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

    /* Connecting line */
    .refer-steps-grid::before {
        content: "";
        position: absolute;
        top: 67px;
        left: 16%;
        width: 68%;
        height: 2px;
        border-top: 2px dashed #a9cdfa;
        z-index: -1;
    }

.refer-step-card {
    position: relative;
    min-height: 285px;
    padding: 27px 26px;
    border: 1px solid #dbe8fa;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 63, 145, 0.05);
    transition: 0.35s ease;
}

    .refer-step-card:hover {
        transform: translateY(-10px);
        border-color: #8ec4ff;
        box-shadow: 0 22px 40px rgba(13, 91, 215, 0.14);
    }

.refer-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.refer-step-count {
    color: #0d5bd7;
    font-size: 15px;
    font-weight: 800;
}

.refer-step-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #e1f0ff, #d2e9ff);
    color: #0d5bd7;
    font-size: 24px;
    transition: 0.35s ease;
}

.refer-step-card:hover .refer-step-icon {
    transform: rotate(-7deg) scale(1.08);
    background: #0d5bd7;
    color: #ffffff;
}

.refer-step-card h3 {
    margin: 0 0 11px;
    color: #071d49;
    font-size: 22px;
}

.refer-step-card p {
    margin: 0;
    color: #60708a;
    font-size: 14px;
    line-height: 1.75;
}

.refer-step-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #edf5ff;
    color: #0d5bd7;
    font-size: 14px;
    transition: 0.3s ease;
}

.refer-step-card:hover .refer-step-arrow {
    transform: translateX(5px);
    background: #0d5bd7;
    color: #ffffff;
}

.refer-step-reward {
    position: absolute;
    right: 22px;
    bottom: 23px;
    padding: 9px 12px;
    border-radius: 7px;
    background: #e7fff3;
    color: #07844d;
    font-size: 13px;
    font-weight: 800;
}

    .refer-step-reward i {
        margin-right: 4px;
    }

/* Responsive */
@media (max-width: 900px) {
    .refer-steps-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: auto;
    }

        .refer-steps-grid::before {
            display: none;
        }

    .refer-step-card {
        min-height: 240px;
    }
}

@media (max-width: 600px) {
    .refer-steps {
        padding: 70px 0;
    }

    .refer-section-title {
        margin-bottom: 35px;
    }

        .refer-section-title p {
            font-size: 14px;
        }

    .refer-step-card {
        padding: 24px 20px;
    }
}

/* ==========================================
   REFER & EARN - REFERRAL FORM SECTION
========================================== */

.refer-form-section {
    padding: 100px 0;
    background: #ffffff;
}

.refer-form-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    align-items: stretch;
}

/* Left Information Panel */
.refer-form-info {
    position: relative;
    overflow: hidden;
    padding: 40px 34px;
    border-radius: 22px;
    background: linear-gradient(145deg, #061a42, #0d5bd7 68%, #20a7ff);
    color: #ffffff;
}

    .refer-form-info::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        top: -130px;
        right: -110px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.11);
    }

    .refer-form-info::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        bottom: -95px;
        left: -75px;
        border: 25px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .refer-form-info > * {
        position: relative;
        z-index: 2;
    }

.refer-form-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.refer-form-info h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.2;
}

    .refer-form-info h2 span {
        color: #aee6ff;
    }

.refer-form-info > p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.75;
}

.refer-feature-list {
    display: grid;
    gap: 19px;
}

.refer-feature-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.refer-feature-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #bceaff;
    font-size: 17px;
}

.refer-feature-item h4 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 15px;
}

.refer-feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
}

.refer-contact-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.10);
}

    .refer-contact-box > i {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        border-radius: 10px;
        background: #ffffff;
        color: #0d5bd7;
        font-size: 16px;
    }

    .refer-contact-box small {
        display: block;
        margin-bottom: 2px;
        color: rgba(255, 255, 255, 0.70);
        font-size: 11px;
    }

    .refer-contact-box a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 800;
    }

/* Form Card */
.refer-referral-form {
    padding: 38px 34px;
    border: 1px solid #dce7f7;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 57, 135, 0.09);
}

.refer-form-heading {
    margin-bottom: 28px;
}

    .refer-form-heading > span {
        display: block;
        margin-bottom: 7px;
        color: #0d5bd7;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .refer-form-heading h3 {
        margin: 0 0 7px;
        color: #071d49;
        font-size: 29px;
    }

    .refer-form-heading p {
        margin: 0;
        color: #60708a;
        font-size: 14px;
        line-height: 1.6;
    }

.refer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.refer-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .refer-input-group label {
        color: #253554;
        font-size: 13px;
        font-weight: 700;
    }

        .refer-input-group label b {
            color: #e03a3a;
        }

.refer-input-wrap {
    position: relative;
}

    .refer-input-wrap > i {
        position: absolute;
        top: 50%;
        left: 14px;
        z-index: 1;
        color: #7d91af;
        font-size: 14px;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .refer-input-wrap input,
    .refer-input-wrap select,
    .refer-input-wrap textarea {
        width: 100%;
        padding: 13px 13px 13px 40px;
        border: 1px solid #cfdbec;
        border-radius: 9px;
        outline: none;
        background: #fbfdff;
        color: #071d49;
        font-family: inherit;
        font-size: 14px;
        transition: 0.25s ease;
    }

    .refer-input-wrap select {
        cursor: pointer;
    }

    .refer-input-wrap textarea {
        min-height: 110px;
        padding-top: 14px;
        resize: vertical;
    }

.refer-textarea-wrap > i {
    top: 17px;
    transform: none;
}

.refer-input-wrap input:focus,
.refer-input-wrap select:focus,
.refer-input-wrap textarea:focus {
    border-color: #0d5bd7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 91, 215, 0.10);
}

.refer-input-wrap:focus-within > i {
    color: #0d5bd7;
}

.refer-full-width {
    grid-column: 1 / -1;
}

.refer-checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 23px 0;
    color: #60708a;
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

    .refer-checkbox-row input {
        width: 17px;
        height: 17px;
        margin-top: 2px;
        accent-color: #0d5bd7;
    }

.refer-submit-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #0d5bd7;
    border-radius: 9px;
    background: #0d5bd7;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

    .refer-submit-btn:hover {
        transform: translateY(-3px);
        border-color: #071d49;
        background: #071d49;
        box-shadow: 0 12px 22px rgba(7, 29, 73, 0.18);
    }

.refer-form-message {
    display: none;
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    background: #e8fff3;
    color: #07844d;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

    .refer-form-message i {
        margin-right: 5px;
    }

/* Responsive */
@media (max-width: 950px) {
    .refer-form-layout {
        grid-template-columns: 1fr;
    }

    .refer-form-info {
        max-width: 650px;
    }
}

@media (max-width: 650px) {
    .refer-form-section {
        padding: 70px 0;
    }

    .refer-form-info,
    .refer-referral-form {
        padding: 28px 20px;
        border-radius: 16px;
    }

        .refer-form-info h2 {
            font-size: 29px;
        }

    .refer-form-grid {
        grid-template-columns: 1fr;
    }

    .refer-full-width {
        grid-column: auto;
    }

    .refer-form-heading h3 {
        font-size: 25px;
    }
}
/* ==========================================
   REFER & EARN - BENEFITS SECTION
========================================== */

.refer-benefits {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f5f9ff;
}

    .refer-benefits::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        top: -210px;
        right: -150px;
        border-radius: 50%;
        background: rgba(13, 91, 215, 0.08);
    }

    .refer-benefits::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        bottom: -110px;
        left: -85px;
        border: 28px solid rgba(13, 91, 215, 0.06);
        border-radius: 50%;
    }

.refer-benefit-heading {
    position: relative;
    z-index: 2;
    max-width: 730px;
    margin: 0 auto 52px;
    text-align: center;
}

.refer-small-title {
    display: inline-block;
    margin-bottom: 12px;
    color: #0d5bd7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.refer-benefit-heading h2 {
    margin: 0 0 13px;
    color: #071d49;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}

    .refer-benefit-heading h2 strong {
        color: #0d5bd7;
    }

.refer-benefit-heading p {
    margin: 0;
    color: #60708a;
    font-size: 16px;
    line-height: 1.75;
}

.refer-benefit-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.refer-benefit-card {
    position: relative;
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 27px 23px;
    border: 1px solid #dbe8fa;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 63, 145, 0.05);
    transition: 0.35s ease;
}

    .refer-benefit-card:hover {
        transform: translateY(-9px);
        border-color: #9bcaff;
        box-shadow: 0 22px 42px rgba(13, 91, 215, 0.14);
    }

.refer-benefit-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #e3f1ff, #d4ebff);
    color: #0d5bd7;
    font-size: 22px;
    transition: 0.35s ease;
}

.refer-benefit-card:hover .refer-benefit-icon {
    transform: rotate(-7deg) scale(1.07);
    background: #0d5bd7;
    color: #ffffff;
}

.refer-benefit-card h3 {
    margin: 0 0 10px;
    color: #071d49;
    font-size: 20px;
}

.refer-benefit-card p {
    margin: 0;
    color: #60708a;
    font-size: 14px;
    line-height: 1.75;
}

.refer-benefit-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 21px;
    color: #0d5bd7;
    font-size: 12px;
    font-weight: 800;
}

    .refer-benefit-bottom i {
        display: grid;
        width: 31px;
        height: 31px;
        place-items: center;
        border-radius: 50%;
        background: #edf5ff;
        color: #0d5bd7;
        font-size: 12px;
        transition: 0.3s ease;
    }

.refer-benefit-card:hover .refer-benefit-bottom i {
    transform: translateX(5px);
    background: #0d5bd7;
    color: #ffffff;
}

/* Highlight Reward Card */
.refer-benefit-highlight {
    border-color: transparent;
    background: linear-gradient(145deg, #071d49, #0d5bd7 72%, #1fa6ff);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(13, 91, 215, 0.22);
}

    .refer-benefit-highlight:hover {
        border-color: transparent;
        box-shadow: 0 25px 48px rgba(13, 91, 215, 0.30);
    }

    .refer-benefit-highlight .refer-benefit-icon {
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
    }

    .refer-benefit-highlight:hover .refer-benefit-icon {
        background: #ffffff;
        color: #0d5bd7;
    }

.refer-benefit-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.refer-benefit-tag {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.refer-benefit-highlight h3 {
    color: #ffffff;
}

.refer-benefit-highlight p {
    color: rgba(255, 255, 255, 0.82);
}

.refer-benefit-highlight .refer-benefit-bottom {
    color: #d7f1ff;
}

    .refer-benefit-highlight .refer-benefit-bottom i {
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
    }

.refer-benefit-highlight:hover .refer-benefit-bottom i {
    background: #ffffff;
    color: #0d5bd7;
}

@media (max-width: 1000px) {
    .refer-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .refer-benefits {
        padding: 70px 0;
    }

    .refer-benefit-heading {
        margin-bottom: 35px;
    }

        .refer-benefit-heading p {
            font-size: 14px;
        }

    .refer-benefit-grid {
        grid-template-columns: 1fr;
    }

    .refer-benefit-card {
        min-height: 250px;
        padding: 25px 20px;
    }
}

/* ==========================================
   REFER & EARN - FAQ SECTION
========================================== */

.refer-faq-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

    .refer-faq-section::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        top: -185px;
        left: -150px;
        border-radius: 50%;
        background: rgba(13, 91, 215, 0.07);
    }

.refer-faq-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

    .refer-faq-heading > span {
        display: inline-block;
        margin-bottom: 12px;
        color: #0d5bd7;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .refer-faq-heading h2 {
        margin: 0 0 13px;
        color: #071d49;
        font-size: clamp(30px, 4vw, 45px);
        line-height: 1.15;
    }

        .refer-faq-heading h2 strong {
            color: #0d5bd7;
        }

    .refer-faq-heading p {
        margin: 0;
        color: #60708a;
        font-size: 16px;
        line-height: 1.75;
    }

.refer-faq-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
    align-items: start;
}

.refer-faq-list {
    display: grid;
    gap: 13px;
}

.refer-faq-item {
    overflow: hidden;
    border: 1px solid #dbe8fa;
    border-radius: 12px;
    background: #ffffff;
    transition: 0.3s ease;
}

    .refer-faq-item:hover {
        border-color: #a6d0ff;
        box-shadow: 0 10px 24px rgba(13, 91, 215, 0.07);
    }

    .refer-faq-item[open] {
        border-color: #8ec4ff;
        box-shadow: 0 12px 28px rgba(13, 91, 215, 0.10);
    }

    .refer-faq-item summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 19px 20px;
        color: #152b52;
        cursor: pointer;
        font-size: 15px;
        font-weight: 800;
        list-style: none;
    }

        .refer-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .refer-faq-item summary i {
            display: grid;
            flex: 0 0 31px;
            width: 31px;
            height: 31px;
            place-items: center;
            border-radius: 50%;
            background: #edf5ff;
            color: #0d5bd7;
            font-size: 12px;
            transition: 0.3s ease;
        }

    .refer-faq-item[open] summary i {
        transform: rotate(45deg);
        background: #0d5bd7;
        color: #ffffff;
    }

.refer-faq-answer {
    padding: 0 20px 19px;
}

    .refer-faq-answer p {
        margin: 0;
        color: #60708a;
        font-size: 14px;
        line-height: 1.75;
    }

/* Help Card */
.refer-faq-help {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border-radius: 18px;
    background: linear-gradient(145deg, #071d49, #0d5bd7 72%, #20a7ff);
    color: #ffffff;
    box-shadow: 0 20px 42px rgba(13, 91, 215, 0.20);
}

    .refer-faq-help::before {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        top: -105px;
        right: -80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
    }

    .refer-faq-help > * {
        position: relative;
        z-index: 2;
    }

.refer-faq-help-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 23px;
}

.refer-faq-help > span {
    display: block;
    margin-bottom: 8px;
    color: #bdeaff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.refer-faq-help h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.refer-faq-help p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.refer-faq-call-btn,
.refer-faq-refer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.refer-faq-call-btn {
    margin-bottom: 11px;
    background: #ffffff;
    color: #0d5bd7;
}

    .refer-faq-call-btn:hover {
        transform: translateY(-2px);
        background: #e9f5ff;
    }

.refer-faq-refer-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

    .refer-faq-refer-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

/* Mobile */
@media (max-width: 900px) {
    .refer-faq-layout {
        grid-template-columns: 1fr;
    }

    .refer-faq-help {
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .refer-faq-section {
        padding: 70px 0;
    }

    .refer-faq-heading {
        margin-bottom: 35px;
    }

        .refer-faq-heading p {
            font-size: 14px;
        }

    .refer-faq-item summary {
        padding: 16px;
        font-size: 14px;
    }

    .refer-faq-answer {
        padding: 0 16px 16px;
    }

    .refer-faq-help {
        padding: 28px 21px;
    }
}

/* ==============================
   REFER PAGE - TRUST SECTION
============================== */

.refer-trust-section {
    padding: 50px 0;
    background: #f7f9fc;
}

.refer-trust-heading {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

    .refer-trust-heading span {
        display: inline-block;
        margin-bottom: 12px;
        color: #0d6efd;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .refer-trust-heading h2 {
        margin: 0 0 16px;
        color: #101828;
        font-size: 42px;
        line-height: 1.2;
    }

        .refer-trust-heading h2 strong {
            color: #0d6efd;
        }

    .refer-trust-heading p {
        margin: 0;
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

.refer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.refer-trust-card {
    min-height: 255px;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e7ecf3;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .refer-trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(16, 24, 40, 0.1);
    }

.refer-trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 23px;
}

.refer-trust-card h3 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 19px;
}

.refer-trust-card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

.refer-trust-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding: 22px 28px;
    border-radius: 16px;
    background: #0b0f1a;
}

.refer-trust-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
}

    .refer-trust-footer-left i {
        color: #32d583;
        font-size: 20px;
    }

.refer-trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .refer-trust-btn:hover {
        background: #0b5ed7;
        transform: translateY(-2px);
    }

/* Tablet */
@media (max-width: 992px) {
    .refer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refer-trust-heading h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .refer-trust-section {
        padding: 70px 0;
    }

    .refer-trust-heading {
        margin-bottom: 32px;
    }

        .refer-trust-heading h2 {
            font-size: 29px;
        }

    .refer-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .refer-trust-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .refer-trust-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 20px;
    }

    .refer-trust-btn {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
REFERRAL EARNERS SECTION
========================================= */

.referral-earners-section {
    padding: 50px 0;
    background: #f7faff;
}

.earners-heading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 45px;
}

    .earners-heading > span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border-radius: 30px;
        background: #e8f1ff;
        color: #1465d8;
        font-size: 14px;
        font-weight: 700;
    }

    .earners-heading h2 {
        margin: 16px 0 12px;
        font-size: 42px;
        color: #14213d;
    }

        .earners-heading h2 strong {
            color: #1465d8;
        }

    .earners-heading p {
        margin: 0;
        color: #667085;
        line-height: 1.8;
    }

/* Total Reward Banner */

.total-reward-banner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 34px;
    margin-bottom: 38px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0c4ca3, #1465d8);
    box-shadow: 0 18px 45px rgba(20, 101, 216, 0.22);
    color: #ffffff;
}

.total-reward-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 31px;
}

.total-reward-content {
    flex: 1;
}

    .total-reward-content span {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        opacity: 0.8;
    }

    .total-reward-content h3 {
        margin: 4px 0;
        font-size: 40px;
        line-height: 1.1;
    }

        .total-reward-content h3 span {
            font-size: 26px;
        }

    .total-reward-content p {
        margin: 0;
        font-size: 14px;
        opacity: 0.86;
    }

.total-reward-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

/* Earner Cards */

.earners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.earner-card {
    position: relative;
    padding: 26px;
    border: 1px solid #e5ebf5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(24, 54, 104, 0.06);
    transition: 0.3s ease;
}

    .earner-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(24, 54, 104, 0.12);
    }

.earner-featured {
    border: 2px solid #1465d8;
}

.top-earner-label {
    position: absolute;
    top: -14px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 20px;
    background: #f6b500;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.earner-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.earner-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.earner-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8f1ff;
    color: #1465d8;
    font-size: 15px;
    font-weight: 800;
}

.earner-profile h3 {
    margin: 0 0 4px;
    color: #14213d;
    font-size: 17px;
}

.earner-profile span {
    color: #7a8599;
    font-size: 13px;
}

.earner-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1ca55a;
    font-size: 11px;
    font-weight: 700;
}

.earner-divider {
    height: 1px;
    margin: 22px 0;
    background: #e8edf5;
}

.earner-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .earner-details div {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .earner-details span {
        color: #7a8599;
        font-size: 12px;
    }

    .earner-details strong {
        color: #14213d;
        font-size: 15px;
    }

    .earner-details .earned-amount {
        color: #1465d8;
        font-size: 20px;
    }

.earner-footer {
    display: flex;
    gap: 10px;
    margin-top: 23px;
    padding-top: 18px;
    border-top: 1px solid #edf1f6;
}

    .earner-footer i {
        color: #1465d8;
        font-size: 15px;
    }

    .earner-footer p {
        margin: 0;
        color: #667085;
        font-size: 13px;
        font-style: italic;
        line-height: 1.6;
    }

/* Bottom CTA */

.earners-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 25px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #e5ebf5;
}

    .earners-bottom-cta > div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #344054;
        font-size: 14px;
        font-weight: 600;
    }

        .earners-bottom-cta > div i {
            color: #1465d8;
            font-size: 20px;
        }

    .earners-bottom-cta a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 12px 20px;
        border-radius: 8px;
        background: #1465d8;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .earners-bottom-cta a:hover {
            background: #0d4da8;
            transform: translateY(-2px);
        }

/* Responsive */

@media (max-width: 900px) {
    .earners-grid {
        grid-template-columns: 1fr;
    }

    .total-reward-banner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .total-reward-badge {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 600px) {
    .referral-earners-section {
        padding: 70px 0;
    }

    .earners-heading h2 {
        font-size: 31px;
    }

    .total-reward-banner {
        padding: 24px 20px;
    }

    .total-reward-content h3 {
        font-size: 34px;
    }

    .earners-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
    }

        .earners-bottom-cta a {
            width: 100%;
            justify-content: center;
        }

   
}
