/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
body {
    inline-size: 100%;
    overflow-x: clip; /* hidden की जगह clip इस्तेमाल करें, इससे sticky menu नहीं बिगड़ता */
    margin: 0;
}

/* अगर कोई चीज़ जबरदस्ती बाहर भाग रही है तो उसे रोकने के लिए */
.main-container, main, section { 
    max-width: 100vw;
    overflow-x: hidden;
}



/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
}

/* इमेज को ड्रैग या सेव करने से रोकना */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* इमेज पर क्लिक भी नहीं होगा */
}

/* =========================================
   RECHARGE.CSS - V335: FINAL CLEANUP
   ========================================= */

/* 1. Global Variables (FINAL COLOR MIX) */
:root {
    --primary-action: #009688;         /* Medium Cyan Teal (Main Action Color) */
    --secondary-base: #004d40;         /* Deep Teal (Darker Base Color) */
    --tertiary-accent: #67C949;        /* LIME GREEN (Tertiary Pop Color - for Rates/Stats) */
    --dark-bg-gradient: linear-gradient(135deg, #004d40 0%, #009688 100%); 
    --accent-dark: #00796b;             
    --highlight-yellow: #ffeb3b;       
    
    --text-body: #4a4a4a;
    --text-heading: #1a1a1a;
    --light-bg-v142: #f8fcfc; /* Very subtle light teal background */
}

/* Base and Typography */
.section-h2-recharge-v142 { font-size: 2.2rem; font-weight: 800; color: var(--primary-action); margin-bottom: 15px; }
.section-p-sub-recharge-v142 { font-size: 1rem; color: #666; max-width: 900px; margin: 0 auto; }
.bg-light-recharge-v142 { background-color: var(--light-bg-v142) !important; }

/* 2. HERO SECTION */
.recharge-hero-v142 {
    background: var(--dark-bg-gradient); 
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}
.recharge-badge-v142 { 
    background: var(--primary-action); color: white;
    padding: 0px 20px; border-radius: 50px; font-weight: 700; 
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.4); display: inline-block; 
}
.recharge-badge-v142 i { color: var(--highlight-yellow); } /* YELLOW Icon */

.hero-h1-recharge-v142 { font-size: 2.4rem; font-weight: 800; color: white; }
.hero-p-recharge-v142 { font-size: 1rem; color: rgba(255,255,255,0.9); }

.hero-image-v142 {
    /* Controls maximum width on desktop */
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; 
    animation: float 4s ease-in-out infinite;
}

/* Mobile and Tablet Media Query */
@media (max-width: 992px) {
    .hero-image-v142 {
        max-width: 200px; 
        margin-top: 30px; 
    }
}

/* =========================================
   1. ANIMATION KEYFRAMES (Adding Floating Effect)
   ========================================= */

/* Defining the animation path: moving the image up and down by 8 pixels */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px); /* Moves up 8 pixels */
    }
    100% {
        transform: translateY(0);
    }
}

/* Commission Highlight Block */
.commission-highlight-v142 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.highlight-title-v142 { font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 5px; }
.highlight-sub-v142 { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 0; }
.highlight-rate-v142 { font-size: 3rem; font-weight: 900; color: var(--highlight-yellow); margin-bottom: 0; } 

/* Buttons */
.btn-main-recharge-v142 { 
    background: var(--tertiary-accent); 
    color: white; padding: 14px 40px; border-radius: 8px; font-weight: 700; 
    box-shadow: 0 8px 20px rgba(103, 201, 73, 0.4); display: inline-block; text-decoration: none;
    transition: 0.3s;
}
.btn-main-recharge-v142:hover { 
    background: #57b443; 
    transform: translateY(-3px); 
}

/* =========================================
   3. MARKET LEADERSHIP (STAT CIRCLES) - V145 ENHANCEMENT
   ========================================= */

.recharge-market-v142 { padding: 80px 0; background-color: white; }

.stat-circle-v142 {
    /* Base style for the box */
    background: var(--light-bg-v142);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out; 
}

/* NEW HOVER EFFECT */
.stat-circle-v142:hover {
    transform: translateY(-8px); 
    border-color: var(--primary-action); 
    box-shadow: 0 15px 30px rgba(0, 150, 136, 0.2); 
}

/* Icon Styling (Making the icon itself a circle) */
.stat-circle-v142 i { 
    font-size: 2.5rem; 
    color: var(--tertiary-accent); 
    margin-bottom: 10px; 
    background: #f0fff0; 
    padding: 15px;
    border-radius: 50%;
    border: 2px solid var(--tertiary-accent); 
    display: inline-block;
}

/* Value and Label Styling */
.circle-value { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--primary-action); 
    margin-top: 10px; 
    margin-bottom: 5px; 
}
.circle-label { 
    font-size: 0.9rem; 
    color: #4a4a4a; 
    font-weight: 500;
    margin-bottom: 0; 
}

/* =========================================
   4. CORE TECHNOLOGY (API Focus) - V147 LIME GREEN THEME
   ========================================= */

/* Heading and Icon Theme Swap */
.tech-h3-v142 { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--secondary-base); 
    margin-bottom: 15px; 
}
.tech-h3-v142 i { 
    color: var(--tertiary-accent); 
} 
.tech-p-v142 { font-size: 1rem; color: var(--text-body); }
.tech-list-v142 { list-style: none; padding-left: 0; margin-top: 20px; }
.tech-list-v142 li { font-size: 0.95rem; margin-bottom: 10px; color: var(--text-body); }
.tech-list-v142 i { 
    color: var(--primary-action); 
    margin-right: 10px; 
}

/* Secondary Button Theme Swap */
.btn-secondary-recharge-v142 {
    background: var(--tertiary-accent); 
    color: white; 
    border: 2px solid var(--tertiary-accent); 
    padding: 12px 30px; border-radius: 8px; font-weight: 600; 
    text-decoration: none; display: inline-block; transition: 0.3s;
}
.btn-secondary-recharge-v142:hover { 
    background: #57b443; 
    border-color: #57b443; 
}

/* Image styles remain the same from V146 */
.tech-image-v142 { 
    max-width: 80%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    border-radius: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tech-image-v142 {
        max-width: 90%;
        margin-top: 25px; 
    }
}

/* =========================================
   5. OPERATOR MATRIX (Detailed Coverage Gallery) - V148 ENHANCEMENT
   ========================================= */

.recharge-coverage-v142 { padding: 80px 0; background-color: white; }

/* Coverage Group Card Base Style */
.coverage-group-card-v142 {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease-in-out;
}

/* NEW HOVER EFFECT */
.coverage-group-card-v142:hover {
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); 
}

/* Mobile Group Card - Cyan Teal Accent */
.mobile-group-v142 { 
    border-left: 5px solid var(--primary-action); 
}
.mobile-group-v142:hover {
    border-color: var(--primary-action); 
}

/* DTH Group Card - Lime Green Accent */
.dth-group-v142 { 
    border-left: 5px solid var(--tertiary-accent); 
}
.dth-group-v142:hover {
    border-color: var(--tertiary-accent); 
}

/* Group Title Styling */
.group-title-v142 { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--secondary-base); 
    margin-bottom: 20px; 
}
.group-title-v142 i { 
    color: inherit; 
}
.mobile-group-v142 .group-title-v142 i { color: var(--primary-action); } 
.dth-group-v142 .group-title-v142 i { color: var(--tertiary-accent); } 

/* =========================================
   OPERATOR MATRIX (Logo Grid) - LOGO SIZE REDUCTION
   ========================================= */
   
.logo-grid-v142 { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: space-around; 
    min-height: 50px; 
    align-items: center;
    gap: 10px; 
}

/* Logo Styling remains the same */
.operator-logo-v149 {
    max-height: 50px; 
    max-width: 90px; 
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.operator-logo-v149:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); 
}

/* Mobile Fix: Ensuring logos are responsive and well-spaced */
@media (max-width: 768px) {
    .logo-grid-v142 {
        justify-content: center; 
        gap: 15px 40px; 
        min-height: 50px; 
        flex-wrap: wrap; 
    }
    .operator-logo-v149 {
        max-height: 50px; 
        max-width: 70px;
    }
    .coverage-group-card-v142 {
        padding: 20px 15px;
    }
}
   
/* Hover Effect for Logos remains the same */
.operator-logo-v149:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); 
}

/* =========================================
   6. STEP-BY-STEP FLOW (Vertical Flow) - V153 DYNAMIC TIMELINE
   ========================================= */

.recharge-flow-v142 { padding: 80px 0; }

.vertical-flow-v142 {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

/* 1. Vertical Line (The Timeline) */
.vertical-flow-v142::before {
    content: '';
    position: absolute;
    width: 4px; 
    background-color: var(--primary-action); 
    top: 0;
    bottom: 0;
    left: 20px; 
}

/* 2. Step Container Styling (The Card) */
.flow-step-v142 {
    position: relative;
    margin-bottom: 35px; 
    padding-left: 80px; 
    transition: all 0.3s;
}

/* NEW: Step Hover Effect */
.flow-step-v142:hover {
    background-color: rgba(0, 150, 136, 0.05); 
    border-radius: 8px;
    padding: 15px 80px 15px 65px; 
    margin-left: -15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 3. Flow Icon/Number Circle */
.flow-icon-v142 {
    width: 40px;
    height: 40px;
    background: var(--tertiary-accent); 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 15px; 
    
    /* Premium Ring Effect */
    box-shadow: 0 0 0 5px var(--light-bg-v142); 
    border: 3px solid var(--secondary-base); 
}
/* Icon Hover Glow */
.flow-step-v142:hover .flow-icon-v142 {
    box-shadow: 0 0 0 5px var(--tertiary-accent); 
}

/* 4. Content Styling */
.flow-content-v142 {
    padding-top: 10px; 
}
.flow-content-v142 h5 { 
    color: var(--secondary-base); 
    font-weight: 700; 
    font-size: 1.2rem;
    margin-bottom: 5px; 
}
.flow-content-v142 p { 
    font-size: 0.95rem; 
    color: #4a4a4a; 
}

/* Responsive Fix */
@media (max-width: 992px) {
    .vertical-flow-v142::before { left: 15px; }
    .flow-step-v142 { padding-left: 50px; }
    .flow-icon-v142 { left: 0; }
    .flow-step-v142:hover {
        padding: 15px 15px 15px 50px; 
        margin-left: 0;
    }
}

/* =========================================
   GLOBAL/SECTION HEADINGS (V162 - Main Color)
   ========================================= */

/* Heading: "Max Commission Rates: Grow Your Daily Income" */
.recharge-h2-v142 {
    /* Main Color (CYAN TEAL) */
    color: var(--primary-action);
    font-size: 2.2rem; 
    font-weight: 900; 
    margin-bottom: 30px; 
}

/* =========================================
   7. EARNINGS POTENTIAL (Commission Table) - V162 PREMIUM LOOK
   ========================================= */

.recharge-earnings-v142 { 
    padding: 80px 0; 
    background-color: white; 
}

/* Table Container Styling */
.commission-table-container-v142 { 
    max-width: 900px; 
    margin: 30px auto 0;
}

.commission-table-v142 {
    /* Premium Box Styling */
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border: 1px solid #ddd;
    width: 100%; 
    border-collapse: separate; 
}

.commission-table-v142 thead th {
    background-color: var(--tertiary-accent);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 20px; 
    text-align: left;
}

.rate-highlight-v142 { 
    color: var(--tertiary-accent); 
    font-weight: 600; 
    font-size: 1.1rem; 
    text-shadow: 0 1px 2px rgba(103, 201, 73, 0.1);
}

/* Table Body & Hover */
.commission-table-v142 tbody td { 
    color: var(--text-body); 
    font-size: 1rem; 
    padding: 12px 20px; 
    border-top: 1px solid #f0f0f0; 
    transition: background-color 0.3s; 
}
.commission-table-v142 tbody tr { 
    transition: background-color 0.3s, transform 0.3s; 
}

.commission-table-v142 tbody tr:hover {
    background-color: #e0f2f1 !important; 
    transform: scale(1.005); 
}

.commission-table-v142 tbody tr:hover td {
    background-color: #e0f2f1 !important; 
}

/* Responsive Fix */
@media (max-width: 768px) {
    .commission-table-container-v142 {
        padding: 0 10px;
    }
    .commission-table-v142 {
        font-size: 0.85rem; 
    }
    .commission-table-v142 thead th {
        padding: 10px 15px;
    }
    .commission-table-v142 tbody td {
        padding: 10px 15px;
    }
}

/* =========================================
   7.5. HORIZONTAL SCROLLING LOGO STRIP - V187 ROBUST FIX
   ========================================= */

/* Keyframes for Continuous Scroll */
@keyframes scroll-left-v187 {
    to { transform: translateX(-100%); } 
}

.recharge-scrolling-logos-v187 {
    padding: 30px 0;
    background-color: var(--light-bg-v142); 
    overflow: hidden; 
    white-space: nowrap; 
}

.logo-marquee-wrapper-v187 {
    display: flex; 
    width: 200%; 
    animation: scroll-left-v187 39s linear infinite; 
    animation-play-state: running; 
    flex-shrink: 0; 
}

.logo-strip-a-v187,
.logo-strip-b-v187 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    flex-shrink: 0;
    flex-grow: 0;
}

/* Logo Styles */
.recharge-scrolling-logos-v187 .operator-logo-v187 { 
    height: 60px; 
    max-width: 80px;
    margin: 0 70px; 
    object-fit: contain;
    transition: filter 0.3s;
}

.recharge-scrolling-logos-v187 .operator-logo-v187:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile adjustments (to ensure logos aren't too large) */
@media (max-width: 768px) {
    .recharge-scrolling-logos-v187 {
        padding: 20px 0;
    }
    .recharge-scrolling-logos-v187 .operator-logo-v187 {
        height: 40px; 
        max-width: 60px;
        margin: 0 40px;
    }
}

/* =========================================
   8. FINAL CTA & FAQ (Combined Section) - V175 FINAL POLISH
   ========================================= */

.recharge-cta-faq-v142 {
    background: var(--secondary-base); 
    padding: 80px 0; 
}

/* CTA Heading and Text */
.cta-h2-v142 { 
    color: white; 
    font-weight: 900; 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}
.cta-p-v142 { 
    color: rgba(255, 255, 255, 0.9); 
    font-size: 1.15rem; 
    max-width: 700px;
    margin: 0 auto 40px auto; 
}

/* FAQ Main Heading */
.faq-main-heading-v142 {
    color: var(--tertiary-accent); 
    font-weight: 800; 
    font-size: 1.8rem; 
    margin-bottom: 30px;
    text-align: center;
    padding-top: 40px; 
}

/* FAQ Item Card */
.faq-item-v142 {
    background: rgba(255, 255, 255, 0.1); 
    padding: 20px 25px; 
    border-radius: 10px;
    margin-bottom: 15px; 
    transition: background-color 0.3s;
}

/* NEW: FAQ Hover Effect (Subtle Glow) */
.faq-item-v142:hover {
    background: rgba(255, 255, 255, 0.15); 
    box-shadow: 0 0 10px rgba(103, 201, 73, 0.5); 
}

/* FAQ Question */
.faq-item-v142 h5 { 
    color: var(--tertiary-accent); 
    font-weight: 700; 
    font-size: 1.1rem; 
    margin-bottom: 8px; 
} 
/* FAQ Answer */
.faq-item-v142 p { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.95rem; 
    margin-bottom: 0; 
}

/* Final CTA Button (Using Main Lime Green Button) */
.cta-button-container-v142 {
    margin-top: 40px;
    text-align: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .cta-h2-v142 { 
        font-size: 2rem; 
    }
    .faq-main-heading-v142 {
        font-size: 1.5rem;
    }
}






/* =========================================
   V343: VALUE ADDED SERVICES MARQUEE STYLING
   ========================================= */

.recharge-value-added-v343 {
    padding: 60px 0;
    /* Use contrasting background for separation */
    border-bottom: 2px solid #eee;
}

.value-title-v343 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-base, #004d40);
    margin-bottom: 5px;
}
.value-subtitle-v343 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Marquee Container Setup */
.value-marquee-container-v343 {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin: 30px 0;
    padding: 10px 0;
}

.value-services-wrapper-v343 {
    display: inline-flex; /* Key to horizontal flow */
    animation: marquee-scroll-v343 35s linear infinite; /* Animation defined below */
    animation-play-state: running;
    padding: 10px 0;
}

/* Service Item Styling (The Pill Shape) */
.service-item-v343 {
    /* Visual pill style */
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--primary-action, #009688);
    color: var(--primary-action, #009688);
    padding: 10px 30px;
    border-radius: 50px;
    margin: 0 15px; /* Spacing between items */
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.1);
    
    transition: all 0.3s;
    cursor: default;
    
    /* Ensure no wrapping */
    flex-shrink: 0;
}

.service-item-v343 i {
    color: var(--tertiary-accent, #67C949); /* Green Icon for pop */
    font-size: 1.2em;
}

.service-item-v343:hover {
    background: var(--primary-action, #009688);
    color: white;
    transform: translateY(-5px) scale(1.05);
}
.service-item-v343:hover i {
    color: var(--highlight-yellow, #ffeb3b); /* Icon pops yellow on hover */
}

/* Animation Keyframes */
@keyframes marquee-scroll-v343 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half the wrapper width */
}


/* =========================================
   V343: HEADING HIGHLIGHT BOX - PRIMARY COLOR FILL
   ========================================= */

.heading-highlight-box-v355 {
    max-width: 500px;
    padding: 10px 10px; 
    
    /* === PRIMARY COLOR FILL === */
    background: var(--primary-action, #009688); /* Full Teal Background */
    border: 1px solid var(--accent-dark, #00796b); 
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Darker shadow */
}

/* Text Color Must Be White/Light for Visibility */
.heading-highlight-box-v355 .value-title-v343 {
    /* Title color changed to White */
    color: white; 
    margin-bottom: 5px;
}

.heading-highlight-box-v355 .value-subtitle-v343 {
    /* Subtitle color changed to White/Light Accent */
    color: var(--highlight-yellow, #ffeb3b);
}

/* =========================================
   V357: TESTIMONIAL BADGE (GREEN HIGHLIGHT)
   ========================================= */

.aeps-testimonials .section-badge {
    /* Make it a green pill */
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    border-radius: 50px; 
    padding: 10px 25px; 
    
    /* Colors: Bright Green Pill */
    background: var(--tertiary-accent, #67C949); /* Bright Green */
    color: white; 
    font-size: 1rem; 
    font-weight: 700;
    text-transform: uppercase;
    
    /* Shadow */
    box-shadow: 0 5px 20px rgba(103, 201, 73, 0.4);
    margin-left: auto;
    margin-right: auto;
}

.aeps-testimonials .section-badge i {
    color: white; /* Icon color is white */
    margin-right: 10px; 
    font-size: 1.1rem;
}

