html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}
 

/* ===== GLOBAL FONT ===== */
:root {
    --font-primary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: #1f2937; /* professional dark gray */
}

 /* ===============================
   SERVICE TABS CONTAINER
   =============================== */
.service-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 16px 16px;
    border-radius: 18px;

    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);

    -webkit-overflow-scrolling: touch;

    /* Firefox */
    scrollbar-width: thick;
    scrollbar-color: #fd612c #f1f5f9;
}

/* ===============================
   HORIZONTAL SCROLLBAR (WEBKIT)
   =============================== */
.service-scroll::-webkit-scrollbar {
    height: 8px;                 /* 🔥 thickness */
}

.service-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.service-scroll::-webkit-scrollbar-thumb {
    background: #fd612c;         /* 🔥 orange */
    border-radius: 10px;
}

.service-scroll::-webkit-scrollbar-thumb:hover {
    background: #e55324;
}

/* ===============================
   TAB BUTTON BASE
   =============================== */
.service-tab {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 22px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 500;
    color: #1f2937;

    border: 1px solid #e5e7eb;
    cursor: pointer;
    white-space: nowrap;

    transition: all .25s ease;
}

/* ===============================
   INACTIVE HOVER (ACTIVE PREVIEW)
   =============================== */
.service-tab:not(.active):hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(37, 99, 235, 0.30),
        inset 0 -1px 0 rgba(255,255,255,0.25);
}

/* ===============================
   ACTIVE TAB
   =============================== */
.service-tab.active {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
    border: none;

    box-shadow:
        0 10px 20px rgba(37, 99, 235, 0.35),
        inset 0 -1px 0 rgba(255,255,255,0.25);
}

/* Icon color sync */
.service-tab i {
    transition: color .25s ease;
}

.service-tab:not(.active):hover i,
.service-tab.active i {
    color: #ffffff;
}

/* ===============================
   MOBILE TWEAK
   =============================== */
@media (max-width: 768px) {
    .service-scroll {
        padding-bottom: 18px;   /* scrollbar space */
    }

    .service-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
}


/* ===== CARD ===== */
.recharge-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn-primary {
    background-color: #1e40af;
    border: none;
}

.promo-box {
   background: linear-gradient(135deg, #4338ca, #312e81);
    border-radius: 16px;
    color: #fff;

    height: 320px;                 /* 🔒 FIXED HEIGHT */
    position: sticky;              /* ✅ scroll pe stable */
    top: 110px;                    /* header ke niche */

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 700;
}
}

@media (max-width: 768px) {
    .promo-box {
        min-height: 180px;
    }
}
 /* ===============================
   PLAN LIST GRID (UNCHANGED STRUCTURE)
=============================== */
.plan-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

/* ===============================
   PLAN CARD – POLISHED
=============================== */
.plan-card{
    border: 1px solid #e2e6ef;
    padding: 16px;
    border-radius: 14px;
    cursor: pointer;
    background: #ffffff;

    transition: all .25s ease;
}

.plan-card:hover{
    border-color: #3f37c9;
    box-shadow: 0 10px 24px rgba(63, 55, 201, 0.15);
    transform: translateY(-2px);
}

.plan-card.active{
    border: 2px solid #3f37c9;
    background: #f3f4ff;
}

/* ===============================
   PLAN PRICE
=============================== */
.plan-price{
    font-size: 20px;
    font-weight: 700;
    color: #3f37c9;
    margin-bottom: 6px;
}

/* ===============================
   PLAN DESCRIPTION (CLAMPED)
=============================== */
.plan-desc{
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-top: 6px;

    /* 👇 show only 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* expanded (Read more) */
.plan-desc.expanded{
    -webkit-line-clamp: unset;
}

/* ===============================
   READ MORE LINK
=============================== */
.read-more{
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #3f37c9;
    text-decoration: none;
}

.read-more:hover{
    text-decoration: underline;
}

/* ===============================
   PLAN SCROLL AREA (UNCHANGED)
=============================== */
.plan-scroll{
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

/* smooth scrollbar */
.plan-scroll::-webkit-scrollbar{
    width: 6px;
}

.plan-scroll::-webkit-scrollbar-thumb{
    background: #c7c7ff;
    border-radius: 10px;
}

/* ===== HEADER LOGO – FINAL SIZE FIX ===== */
.navbar {
    min-height: 80px;
     position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}
 
.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    animation: slideDown 0.35s ease;
}

/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

body.has-sticky-header {
    padding-top: 82px; /* navbar height ke approx */
}
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 64px;          /* ⬅️ MAIN CHANGE (48 → 64) */
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 56px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar {
        min-height: 70px;
    }

    .navbar-brand img {
        height: 48px;
    }
}
.services-marquee {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #2b2d42;
    margin-bottom: 60px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
}
.services-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;   /* 👈 yahin se gap aa raha tha */
}

 
.marquee-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
}


.service-pill {
    position: relative;
    background: #fff;
    padding: 24px 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    font-size: 16px;
  color: #000;
}

.service-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid #111;
    pointer-events: none;
}

/* Animations */
.marquee.left .marquee-track {
    animation: marquee-left 28s linear infinite;
}

.marquee.right .marquee-track {
    animation: marquee-right 28s linear infinite;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .service-pill {
        padding: 16px 26px;
        font-size: 15px;
    }
}
/* ===== HERO RECHARGE SECTION ===== */
.hero-recharge {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 40px 0 70px;
    font-family: 'Inter', sans-serif;
}

/* Tabs spacing fix */
.service-scroll-hero {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 14px 18px;
    margin-top: 12px;
    margin-bottom: 20px;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0,0,0,0.04);
}

/* Recharge card enhancement */
.recharge-card-hero {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Right side carousel */
.offer-carousel {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.offer-carousel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

/* Tabs look (slightly refined) */
.service-tab {
    border-radius: 14px;
    font-weight: 500;
    padding: 10px 22px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-recharge {
        padding: 30px 0;
    }

    .offer-carousel img {
        min-height: 260px;
    }
}
/* ===== RIGHT SIDE OFFER SLIDER ===== */
.offer-carousel {
    width: 100%;
    height: 100%;
    min-height: 420px;              /* form ke height ke barabar feel */
    border-radius: 20px;
    overflow: hidden;
    background: #f5f7ff;
}

/* Bootstrap carousel full height */
.offer-carousel .carousel,
.offer-carousel .carousel-inner,
.offer-carousel .carousel-item {
    height: 100%;
}

/* IMAGE FIX — MOST IMPORTANT */
.offer-carousel img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 991px) {
    .offer-carousel {
        min-height: 280px;
        margin-top: 24px;
    }
}
.recharge-section {
    align-items: stretch;
}

#loadMorePlans {
    display: none;   /* page load pe hidden */
}

.rh-hero {
    background: linear-gradient(135deg, #282998, #f67134);
    padding: 90px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.rh-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.rh-hero-content h1 span {
    color: #f67134
}

.rh-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e7ff;
    max-width: 520px;
}

.rh-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.rh-hero-actions .btn-primary {
   background: #f67134;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 26px;
}

.rh-hero-actions .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 12px 26px;
}

/* VISUAL */
.rh-hero-visual {
    position: relative;
    height: 420px;
}

.rh-hero-visual .phone {
    position: absolute;
    width: 220px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.rh-hero-visual .logo {
    position: absolute;
    width: 140px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* ROTATING ORBIT */
.orbit {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: spin 18s linear infinite;
}

.orbit img {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* MOBILE */
@media (max-width: 768px) {
    .rh-hero-content h1 {
        font-size: 36px;
    }

    .rh-hero-visual {
        margin-top: 75px;
        height: 300px;
    }

    .orbit {
        width: 260px;
        height: 260px;
    }
}


/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 90px 0;
    background: #f8fbff;
    font-family: 'Inter', sans-serif;
}

.faq-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
}

.faq-header p {
    max-width: 720px;
    margin: 14px auto 0;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* IMAGE */
.faq-image {
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* ACCORDION */
.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.accordion-button {
    font-weight: 600;
    color: #1e40af;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    background: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 30px;
    }

    .faq-section {
        padding: 60px 0;
      margin-bottom: 60px;
    }
}
/* ===== DUAL OFFER SECTION ===== */
.dual-offer-section {
    padding: 90px 0;
    background: #f8fbff;
    font-family: 'Inter', sans-serif;
}

.dual-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* COMMON CARD */
.offer-card {
    border-radius: 26px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

/* LEFT CARD – BLUE */
.offer-blue {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;
}

/* RIGHT CARD – LIGHT */
.offer-light {
    background: #e6f8ff;
    color: #1f2937;
}

/* CONTENT */
.offer-content {
    max-width: 55%;
}

.offer-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    opacity: 0.9;
}

.offer-content h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.offer-content h3 span {
    color: #fd5f2c;
}

.offer-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* BUTTON */
.offer-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #fd5f2c;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* OUTLINE BUTTON */
.offer-btn.outline {
    background: transparent;
    border: 2px solid #1e40af;
    color: #1e40af;
}

.offer-btn.outline:hover {
    background: #1e40af;
    color: #ffffff;
}

/* IMAGE */
.offer-image {
    width: 40%;
    text-align: right;
}

.offer-image img {
    max-width: 100%;
    height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .dual-offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .offer-content {
        max-width: 100%;
    }

    .offer-image {
        width: 100%;
        margin-top: 24px;
        text-align: center;
    }
}
.trust-section{
    position: relative;
    padding: 140px 20px 100px;
    background: radial-gradient(circle at top, #2b5cff, #1e2a78);
    color: #fff;
    text-align: center;
}

/* FLOATING BOX */
.secure-floating{
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
   background: linear-gradient(135deg, #6d4fc2, #f67134);
    border-radius: 22px;
    padding: 26px 36px;
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 860px;
     
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.secure-icon{
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-text h4{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.secure-text p{
    margin: 6px 0 10px;
    font-size: 14px;
    opacity: .9;
}

.secure-badges span{
    font-size: 12px;
    margin-right: 14px;
    opacity: .85;
}

/* MAIN CONTENT */
.trust-content h2{
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
}

.trust-content h2 span{
    color: #f67134;
}

.trust-desc{
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    opacity: .95;
}

/* STATS */
.trust-stats{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.trust-card{
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 26px;
}

.trust-card h4{
    margin: 12px 0 6px;
}

.trust-card p{
    font-size: 14px;
    opacity: .9;
}

/* BUTTON */
.trust-btn{
    display: inline-block;
    background: #f67134;
    color: #fff;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
    .trust-section{
        padding: 160px 16px 80px;
    }

    .secure-floating{
        flex-direction: column;
        text-align: center;
    }

    .trust-stats{
        grid-template-columns: 1fr;
    }

    .trust-content h2{
        font-size: 32px;
    }
}
/* =========================================
   MOBILE – SECURE PAYMENT FLOATING TOP FIX
   ========================================= */
@media (max-width: 768px) {

    /* Parent section ko reference banao */
    .trust-section {
        position: relative;
        padding-top: 260px;   /* 👈 box ke niche content start hoga */
        padding-bottom: 80px;
    }

    /* Secure payment box – floating on TOP */
    .secure-floating {
        position: absolute;
        top: -90px;           /* 👈 desktop jaisa overlap */
        left: 50%;
        transform: translateX(-50%);

        width: calc(100% - 32px);
        max-width: 420px;

        padding: 26px 20px;
        border-radius: 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        z-index: 10;
    }

    /* Icon size */
    .secure-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
    }

    /* Heading */
    .secure-text h4 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    /* Description */
    .secure-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* PCI / ISO badges */
    .secure-badges {
        display: flex;
        justify-content: center;
        gap: 14px;
        font-size: 12px;
        opacity: 0.9;
    }

    /* Main text spacing */
    .trust-content {
        margin-top: 0;  /* padding-top handle kar raha hai */
    }

    .trust-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .trust-desc {
        font-size: 15px;
        padding: 0 6px;
    }
}
/* =========================
   FOOTER WRAPPER
========================= */
.site-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 90px 0 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* subtle top divider glow */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

/* =========================
   GRID
========================= */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* =========================
   LOGO + ABOUT
========================= */
.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    max-width: 420px;
}

/* =========================
   TITLES
========================= */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 18px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #fd612c);
    border-radius: 2px;
    margin-top: 6px;
}

/* =========================
   LINKS
========================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: all .25s ease;
}

.footer-links a::before {
    content: "›";
    position: absolute;
    left: -14px;
    color: #2563eb;
    opacity: 0;
    transition: .25s;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* =========================
   CONTACT
========================= */
.footer-contact {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact i {
    font-size: 16px;
    color: #2563eb;
}

/* =========================
   SOCIAL ICONS (PREMIUM)
========================= */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1f2937;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #fd612c);
    opacity: 0;
    transition: .3s;
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 35px rgba(37,99,235,.35);
    color: #fff;
}

.social-icon:hover::after {
    opacity: 1;
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

.recharge-info-box {
    margin-top: 24px;
    padding: 20px 24px;
    background: #f8fbff;
    border-radius: 14px;
    border: 1px dashed #dbeafe;
}

.recharge-info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.recharge-info-box p {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
}

.recharge-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recharge-points li {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .recharge-info-box {
        padding: 16px;
        margin-top: 16px;
    }

    .recharge-info-box h4 {
        font-size: 16px;
    }
}
/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
    position: fixed;
    right: 22px;
    bottom: 90px; /* footer se thoda upar */

    width: 46px;
    height: 46px;

    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #ffffff;

    font-size: 20px;
    font-weight: bold;

    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.35s ease;
    z-index: 9999;
}

/* Show state */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

/* Mobile tweak */
@media (max-width: 768px) {
    #backToTop {
        right: 16px;
        bottom: 80px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}
.navbar .btn-primary {
    position: relative;
    overflow: hidden;
}

.navbar .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: translateX(-100%);
}

.navbar .btn-primary:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}
/* ===== BASE ===== */
.login-wrap {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.login-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, #2563eb, transparent 40%),
        radial-gradient(circle at 80% 80%, #fd612c, transparent 45%),
        linear-gradient(135deg, #0f172a, #020617);
    z-index: 1;
}

/* ===== CONTAINER ===== */
.login-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    padding: 60px;
}

/* ===== LEFT BRAND ===== */
.login-brand {
    color: #fff;
    max-width: 520px;
}

.login-logo {
    height: 60px;
    margin-bottom: 40px;
}

.login-brand h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}

.login-brand h1 span {
    color: #fd612c;
}

.login-brand p {
    margin-top: 18px;
    font-size: 16px;
    opacity: 0.9;
}

.brand-badges {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.brand-badges span {
    padding: 8px 14px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    font-size: 13px;
}

/* ===== LOGIN CARD ===== */
.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 45px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
    animation: slideUp .6s ease;
}
.slogin-card{
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 45px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
    animation: slideUp .6s ease; 
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-card h2 {
    font-size: 28px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

/* ===== FLOATING INPUT ===== */
.field {
    position: relative;
    margin-bottom: 22px;
}

.field input {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    padding: 0 16px;
    font-size: 15px;
    background: #fff;
}

.field label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #64748b;
    pointer-events: none;
    transition: .25s;
    background: #fff;
    padding: 0 6px;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 15px;
    color: #2563eb;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    height: 52px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(37,99,235,.4);
}

.btn-outline {
    border: 2px solid #2563eb;
    height: 52px;
    border-radius: 14px;
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 13px;
    color: #94a3b8;
}

.login-error {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 10px;
}

/* ===== MOBILE ===== */
@media(max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .login-brand {
        display: none;
    }

    .login-card {
        margin: auto;
    }
}
/* ===== LEGAL / POLICY PAGES (COMMON) ===== */
.legal-page {
    background: #f8fafc;
    padding-bottom: 60px;
}

/* Breadcrumb */
.legal-breadcrumb {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    padding: 18px 0;
    margin-bottom: 40px;
}

.legal-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
}

.legal-breadcrumb .breadcrumb-item,
.legal-breadcrumb .breadcrumb-item a {
    color: #e0e7ff;
    font-size: 14px;
    text-decoration: none;
}

.legal-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.legal-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #c7d2fe;
}

/* Card */
.legal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Title */
.legal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
}

/* Text */
.legal-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 14px;
}

.legal-card h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e40af;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-card ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .legal-card {
        padding: 24px;
    }

    .legal-title {
        font-size: 26px;
    }
}

/* ===== AUTH BUTTONS (LOGIN / SIGNUP) ===== */
.btn-auth {
    display: inline-flex;
    align-items: center;          /* 👈 text vertical center */
    justify-content: center;
    gap: 8px;

    font-weight: 600;             /* 👈 thoda bold */
    font-size: 15px;              /* 👈 readable & clean */
    line-height: 1;               /* 👈 text upar bhaagne ka fix */

    padding: 10px 18px;           /* 👈 balanced height */
    border-radius: 10px;

    transition: all .25s ease;
}

/* Outline Login */
.btn-auth.btn-outline-primary {
    color: #2563eb;
    border: 1.5px solid #2563eb;
    background: #fff;
}

.btn-auth.btn-outline-primary:hover {
    background: #2563eb;
    color: #fff;
}

/* Filled Signup */
.btn-auth.btn-primary {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border: none;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.btn-auth.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.45);
}

/* Icons fix */
.btn-auth i {
    font-size: 16px;
    line-height: 1;
}

/* ===== SIGNUP EXTENSION ===== */
.signup-wrap .signup-card {
    max-height: 92vh;
    overflow-y: auto;
}

.signup-wrap .signup-card::-webkit-scrollbar {
    width: 6px;
}
.signup-wrap .signup-card::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}

/* Select & textarea fix */
.field select,
.field textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 12px;
    font-size: 15px;
    background: #fff;
    outline: none;
}

.field select:focus,
.field textarea:focus {
    border-color: #2563eb;
}

/* File input */
.file-field input[type="file"] {
    padding: 10px;
}

/* Error text */
 

/* Mobile */
@media (max-width: 992px) {
    .signup-wrap .login-brand {
        display: none;
    }
}
 /* Select2 Container */
.select2-container {
    width: 100% !important;
}

/* Selected box */
.select2-container--default .select2-selection--single {
    height: 54px;
    border-radius: 12px;
    border: 1.5px solid #dbe3ff;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #fff;
}

/* Selected text */
.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 30px);
    line-height: normal;
}

/* Arrow */
.select2-selection__arrow {
    height: 54px !important;
}

/* Dropdown list */
.select2-results__option {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
}

/* Hover option */
.select2-results__option--highlighted {
    background: #2563eb !important;
    color: #fff;
}
/* MOBILE AUTH CENTER */
.mobile-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Prevent header horizontal shake */
.navbar .container {
    flex-wrap: nowrap;
}
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 12px 16px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
}
.operator-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 18px;
}

.operator-card{
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: .25s;
}

.operator-logo{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.operator-logo img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.operator-name{
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.operator-card:hover{
    border-color: #2563eb;
}

.operator-card.active{
    border: 2px solid #2563eb;
    background: #f3f6ff;
}
/* =====================================
   OPERATOR UI – MOBILE FINAL POLISH
===================================== */
@media (max-width: 768px) {

    /* Grid layout */
    .operator-grid {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    /* Square cards */
    .operator-card {
        flex: 1;
        min-width: 0;

        padding: 12px 6px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e5e7eb;

        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;              /* 👈 square feel */

        transition: all 0.2s ease;
    }

    /* Logo size */
    .operator-logo img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

    /* ❌ Hide company name on mobile */
    .operator-name {
        display: none;
    }

    /* Active state */
    .operator-card.active {
        border: 2px solid #2563eb;
        background: #f0f6ff;
        box-shadow: 0 6px 14px rgba(37,99,235,0.15);
    }
}

/* ==============================
   BRAND INPUT / SELECT STYLE
============================== */
.recharge-card .form-control,
.recharge-card select.form-control {
    height: 54px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;

    transition: all 0.25s ease;
}

/* Placeholder style */
.recharge-card .form-control::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

/* Focus state (brand feel) */
.recharge-card .form-control:focus,
.recharge-card select.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Hover polish */
.recharge-card .form-control:hover,
.recharge-card select.form-control:hover {
    border-color: #c7d2fe;
}

/* Select arrow fix (clean look) */
.recharge-card select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #2563eb 50%),
        linear-gradient(135deg, #2563eb 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}
