/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
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; /* इमेज पर क्लिक भी नहीं होगा */
}

/* =========================================
   AEPS.CSS - V87: FINAL STABLE MASTERPIECE (All Fixes Integrated Safely)
   ========================================= */

/* 1. GLOBAL VARIABLES & BASE SETUP */
:root {
    /* V69: Unified Theme Variables (Used by Hero and Accents) */
    --primary-teal: #009688;       
    --primary-deep: #004d40;       
    --primary-light-teal: #00796b; 
    --accent-green: #67C949;      
    --accent-dark-green: #57b443; 
    --text-body: #4a4a4a;
    --text-heading: #00796b;
    --light-bg: #f7fafb;           
    --light-gray: #f9fbfa;
    --accent-yellow: #ffc107; /* नया Yellow Color Variable */
    --yellow-glow: rgba(255, 193, 7, 0.4); /* Yellow Glow */

    /* V37/V18 Variable Mapping (Ensures older sections work) */
    --v18-teal: var(--primary-main);
    --v18-text-h: var(--text-heading);
    --primary-main: var(--primary-teal); /* Ensure primary-main is defined */
}

.aeps-ultimate-container {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    /* Removed overflow-x: hidden; to prevent clipping issues */
}


/* 2. GLOBAL TYPOGRAPHY (V37 Base) */
.hero-h1 { font-size: 2.2rem; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 20px; }
.hero-p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.7; font-weight: 400; }
.section-h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-heading); margin-bottom: 15px; }
.section-p { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 15px; text-align: justify; }
.section-p-sub { font-size: 0.9rem; color: #666; max-width: 700px; margin: 0 auto; }


/* =========================================
   3. HERO SECTION (DMT V48 Style & FIXES)
   ========================================= */

/* Hero CSS Blocks में जोड़ें */
.text-yellow-highlight {
    color: white /*Color Apply करें */
    
}

.dmt-hero-v48 {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 100%);
    padding: 5px 0 !important; /* V74 Fix: Reduced Height */
    position: relative;
}

.hero-h1-dmt { font-size: 2.5rem; font-weight: 700; color: white; line-height: 1.2; }
.hero-p-dmt { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 400; }

/* Badge (Instant Settlement) - V75, V78 Fixes */
.badge-v48 {
    background: var(--accent-green);
    color: white;
    padding: 8px 18px; 
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Left align & Gap Fix */
    display: block;
    width: fit-content;
    margin: 0 0 20px 0 !important; 
}

/* Icons & Buttons (DMT Style) */
.hero-icons-v48 { display: flex; flex-wrap: wrap; gap: 20px; }
.icon-item-v48 { color: white; font-weight: 500; font-size: 1rem; }
.icon-item-v48 i { color: var(--accent-green); margin-right: 8px; font-size: 1.1rem; }
.btn-main-dmt { background: var(--accent-green); color: white; padding: 12px 35px; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-block; font-size: 15px; transition: 0.3s; box-shadow: 0 5px 15px rgba(103, 201, 73, 0.4); }
.btn-main-dmt:hover { background: var(--accent-dark-green); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(103, 201, 73, 0.6); }
.btn-sub-dmt { color: white; text-decoration: none; font-weight: 600; font-size: 15px; margin-left: 10px; transition: 0.3s; }
.btn-sub-dmt:hover { color: var(--accent-green); }


/* =========================================
   4. IMAGE SIZE FIXES (Hero & Section Images)
   ========================================= */

/* A. HERO IMAGE FIX (V80) - Desktop Only */
@media (min-width: 992px) {
    .floating-img {
        width: 200px !important; 
        max-width: 200px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        background: none !important; 
        box-shadow: none !important;    
        border: none !important;         
        padding: 0 !important;              
        
    }
}

/* B. MOBILE HERO IMAGE FIX */
@media (max-width: 992px) {
    .dmt-hero-v48 { padding: 20px 0 !important; }
    .hero-h1-dmt { font-size: 1.6rem; margin-top: 5px !important; }
    
    .floating-img {
        max-width: 160px !important; 
        width: 160px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        background: none !important; 
        box-shadow: none !important;    
        border: none !important;         
        padding: 0 !important;  
    }
}

/* C. SECTION IMAGE FIX (V84) - Targets the new aeps.png image */
img.section-img-control {
    /* Ensures the image doesn't get too big */
    max-width: 500px !important;
    width: 90% !important;
    height: auto !important;
    display: block !important;
    margin: 30px auto !important;
}

@media (max-width: 768px) {
    img.section-img-control {
        width: 95% !important;
        max-width: 95% !important;
    }
}


/* =========================================
   5. BOTTOM SECTION STYLING (V37 & V50)
   ========================================= */

/* Metrics Bar */
.trust-metrics { padding-top: 50px; padding-bottom: 50px; background-color: #f0fff0; border-bottom: none; }
.metric-card-v32 { background: var(--accent-green); padding: 25px 15px; border-radius: 15px; height: 100%; transition: all 0.3s ease; border: 1px solid #57b443; color: white; }
.metric-card-v32 h5 { font-size: 1.6rem; font-weight: 900; color: white; margin-bottom: 5px; }
.metric-card-v32 p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.metric-card-v32:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 30px rgba(103, 201, 73, 0.4); border-color: white; background: #57b443; }


/* Step Workflow */
.steps-flow-box { background: white; padding: 30px; border-radius: 15px; border: 1px solid #f0f0f0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.step-v18 { display: flex; align-items: flex-start; margin-bottom: 25px; position: relative; padding-bottom: 15px; border-left: 2px solid #e0e0e0; }
.step-v18 .s-num { background: var(--primary-main); color: white; width: 30px; height: 30px; border-radius: 50%; text-align: center; line-height: 30px; font-weight: 700; font-size: 14px; margin-left: -16px; flex-shrink: 0; position: relative; z-index: 2; box-shadow: 0 0 0 5px white; }
.step-v18 .s-text { margin-left: 15px; padding-top: 2px; }
.step-v18 .s-text h6 { font-weight: 700; font-size: 1rem; color: var(--text-heading); margin-bottom: 2px; }
.step-v18.border-0 { border-left: none !important; padding-bottom: 0; margin-bottom: 0; }

/* Security Section & Technical Details */
.bg-dark-v18 { background: #001a17; }
.sec-card { background: rgba(255,255,255,0.03); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.sec-card i { font-size: 30px; color: var(--accent-teal); }
.sec-card h6 { font-size: 1rem; margin-bottom: 10px; }
.sec-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-5px); }
.tech-list-v18 { list-style: none; padding: 0; margin-top: 20px; }
.tech-list-v18 li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 0.95rem; line-height: 1.6; color: var(--text-body); }
.tech-list-v18 li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent-teal); font-size: 18px; }

/* Accordion FAQ */
.accordion-button { font-size: 0.95rem; font-weight: 600; color: var(--text-heading); padding: 20px; }
.accordion-button:not(.collapsed) { background-color: #f0f7f6; color: var(--primary-main); }

/* =========================================
   V286: WHY CHOOSE US SECTION - FINAL & CLEAN CODE
   ========================================= */

/* 1. Base Section Styles */
.aeps-why-us-v268 {
    padding: 60px 0;
    background: var(--light-bg); /* Light background for contrast */
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900; /* Extra Bold Font Weight (V284 Fix) */
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* 2. HEADING BOX (Gradient & Text Fix) */
.heading-box-v276 {
    /* Deep Teal Gradient Background */
    background: linear-gradient(135deg, var(--primary-deep, #004d40) 0%, var(--primary-teal, #009688) 100%);
    
    padding: 30px 20px;
    border-radius: 12px;
    margin: 0 auto 30px auto; 
    max-width: 650px; 
    
    /* Strong Accent Border & Shadow */
    border: 2px solid var(--accent-green, #67C949); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); 
    position: relative;
    z-index: 10;
}

/* Title Text Animation (Shimmering effect) */
.text-shine-v275 {
    /* White/Green Gradient over Dark Box for visibility */
    background: linear-gradient(90deg, #ffffff 0%, var(--accent-green) 50%, #ffffff 100%); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
    background-size: 200% auto;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: -200% center; }
}

/* Badge and Subtitle adjustments for Dark Background */
.heading-box-v276 .section-badge {
    color: white; 
    background: var(--accent-green, #67C949); 
    animation: none; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.heading-box-v276 .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important; 
    margin-bottom: 0; 
}


/* 3. ICON GRID CARDS (Base Styles) */
.choice-card-v268 {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center; 
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0; 
}

.choice-icon-v268 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; 
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out; /* Added transition */
}

.choice-icon-v268 i {
    font-size: 26px;
    color: white;
    transition: all 0.4s ease-in-out; /* Added transition */
}

.choice-card-v268 h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.choice-card-v268 p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}


/* 4. HOVER EFFECTS (V285) */

/* Main card lift/shadow (part of original V268) */
.choice-card-v268:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Gradient Border Effect on Hover */
.choice-card-v268::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    background: linear-gradient(135deg,  var(--accent-green), var(--primary-teal));
    background-size: 400% 400%;
    border-radius: 15px;
    opacity: 0; 
    z-index: 0;
    transition: opacity 0.5s ease;
}

.choice-card-v268:hover::before {
    opacity: 1;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ICON COLOR SWAP ON HOVER (V285 Fix) */
.choice-card-v268:hover .choice-icon-v268 {
    /* Background: Gradient to White */
    background: var(--white) !important; 
    box-shadow: 0 4px 15px #004d40;
}

.choice-card-v268:hover .choice-icon-v268 i {
    /* Icon Color: White to Primary Teal */
    color: #ffffff;
}






/* 13. CTA */
.aeps-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-teal) 100%);
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.cta-features li {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-features i {
    color: var(--accent-green);
    font-size: 18px;
}

.btn-cta-custom {
    background: var(--accent-green);
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
    transition: 0.3s;
}

.btn-cta-custom:hover {
    background: var(--accent-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 45px rgba(74, 158, 47, 0.7);
    color: white;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-note strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* 14. FAQ */
.aeps-faq {
    padding: 60px 0;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 16px 20px;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    color: white;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-body {
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    background: #f8fafb;
}

/* 15. RESPONSIVE */
@media (max-width: 1200px) {
    .testimonial-carousel-3d-full { max-width: 900px; }
    .testimonial-card-3d-full { max-width: 850px; }
    .card-inner-full { padding: 30px 40px; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    .timeline-item { flex-direction: column; }
    .timeline-item::before, .timeline-item::after { display: none; }
    .cta-features { grid-template-columns: 1fr; }
    .testimonial-carousel-3d-full { max-width: 700px; height: 400px; }
    .testimonial-header-full { flex-direction: column; align-items: flex-start; }
    .rating-full { margin-left: 0; margin-top: 10px; }
}

@media (max-width: 768px) {
    .aeps-pro-hero { padding: 40px 0 30px 0; }
    .hero-title { font-size: 1.4rem; }
    .btn-primary-custom { padding: 10px 25px; font-size: 14px; }
    .cta-box { padding: 30px 20px; }
    .btn-cta-custom { padding: 14px 30px; font-size: 1rem; }
    .testimonial-carousel-3d-full { height: 480px; }
    .card-inner-full { padding: 20px 25px; }
    .testimonial-avatar-full { width: 60px; height: 60px; }
    .carousel-nav-full { width: 45px; height: 45px; }
    .testimonial-card-3d-full.prev, .testimonial-card-3d-full.next { display: none; }
}

@media (max-width: 576px) {
    .testimonial-carousel-3d-full { height: 520px; }
    .earnings-badge-full { padding: 10px 20px; font-size: 0.85rem; }
    .carousel-dots-full { bottom: -50px; gap: 8px; }
    .carousel-dot-full { width: 10px; height: 10px; }
}




/* =========================================
   V306: HOW AEPS WORKS - FINAL CONSOLIDATED TIMELINE
   ========================================= */

/* 1. Base Section & Background Decorations */
.aeps-how-works {
    background: var(--light-bg, #f7fafb); 
    padding: 80px 0;
    position: relative;
    overflow: hidden; 
    z-index: 1; 
}

/* Background Decoration (V302 - Ensures no empty space on the right) */
.aeps-how-works .decoration-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 150, 136, 0.05); /* Soft Teal/Green Tint */
    opacity: 0.5;
    pointer-events: none;
    z-index: 0; 
    animation: floatBackground 20s ease-in-out infinite;
}

.bubble-large-1 { width: 250px; height: 250px; top: 5%; left: -80px; background: rgba(103, 201, 73, 0.08); animation-delay: 0s; }
.bubble-medium-2 { width: 150px; height: 150px; bottom: 10%; right: -50px; animation-delay: 5s; }
.bubble-small-3 { width: 100px; height: 100px; top: 60%; left: 10%; animation-delay: 10s; }
.bubble-extra-small-4 { width: 80px; height: 80px; top: 25%; right: 15%; animation-delay: 15s; }

@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(15px) translateX(-10px) scale(1.02); }
    66% { transform: translateY(-10px) translateX(10px) scale(0.98); }
}


/* 2. TIMELINE STRUCTURE (Single Side Left Alignment Fix) */
.process-modern-timeline {
    position: relative;
    max-width: 950px; /* Use more horizontal space */
    margin: 50px auto 0 auto;
}

/* Vertical Line (Fixed to the Left) */
.process-modern-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-teal), var(--accent-green));
    top: 0;
    bottom: 0;
    left: 20px; /* Line Positioned to the Left */
    margin-left: -1.5px;
    z-index: 1;
    border-radius: 5px;
}

/* Individual Item Container (All Aligned Left) */
.timeline-item,
.timeline-item.left-aligned { 
    position: relative;
    margin-bottom: 50px;
    width: 100%; /* Content takes full width for max utilization */
    padding-left: 80px; /* Space for the icon on the left line */
    padding-right: 10px;
    left: 0 !important; /* Force all items to start at the left */
    text-align: left !important;
    z-index: 2;
}

/* 3. ICON CIRCLE */
.timeline-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    border: 5px solid white; 
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.2);
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    
    position: absolute;
    top: 50%;
    transition: all 0.4s ease;
    z-index: 3;

    /* Icon Positioning Fix (Aligned to the 20px line) */
    left: 20px !important; 
    right: auto !important;
    transform: translate(-50%, -50%); 
}

.timeline-icon-circle i {
    font-size: 20px;
}

/* 4. CONTENT BOX */
.timeline-content-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Force Left Accent Border for all items */
    border-left: 4px solid var(--accent-green) !important; 
    border-right: none !important;
}

.timeline-content-box .step-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.timeline-content-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.timeline-content-box p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hover effect */
.timeline-item:hover .timeline-icon-circle {
    background: var(--accent-green);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 6px rgba(103, 201, 73, 0.3);
}

/* 5. MOBILE RESPONSIVE FIX (Clean Stacking) */
@media (max-width: 768px) {
    .process-modern-timeline::after { left: 25px; } 

    .timeline-item, .timeline-item.left-aligned {
        padding-left: 70px; 
        padding-right: 10px;
        width: 100%;
    }

    .timeline-icon-circle {
        left: 25px !important; 
    }
}

/* V308: CONTENT BOX HOVER EFFECT (LIFT AND SHADOW) */
.timeline-content-box:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    border-left: 4px solid var(--primary-light-teal, #00796b) !important;
}




/* =========================================
   V353: AEPS WORKING MECHANISM (FLIP CARDS) - CLEAN COPY
   ========================================= */

.aeps-tech-mech {
    padding: 80px 0;
    /* Use a complementary background color */
    background: linear-gradient(135deg, var(--primary-deep, #004d40) 0%, var(--primary-teal, #009688) 100%);
}

.aeps-tech-mech .section-title,
.aeps-tech-mech .section-subtitle {
    color: white !important;
}

.aeps-tech-mech .section-subtitle {
    font-size: 1rem;
    color: var(--text-body, #4a4a4a);
}


/* --- 3D FLIP CARD STRUCTURE --- */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    perspective: 1000px; /* Required for 3D flip effect */
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s; /* Flip Speed */
    transform-style: preserve-3d; /* Key to 3D effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

/* The magic flip on hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Base side styling */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Hide the back side during flip */
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 3. FRONT SIDE (Default View) */
.flip-card-front {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.front-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(103, 201, 73, 0.4);
}

.front-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-teal);
}

.front-subtitle {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

/* 4. BACK SIDE (Flipped View) */
.flip-card-back {
    /* Teal Gradient Background */
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light-teal));
    color: white;
    transform: rotateY(180deg); /* Initial position is rotated */
    text-align: left;
    padding: 20px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-green);
    text-align: center;
    width: 100%;
}

.flip-card-back p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Fix: Ensure height adapts on mobile */
@media (max-width: 768px) {
   .flip-card {
        height: 220px;
        margin-bottom: 20px;
    }
	
	 .flip-card-front, .flip-card-back {
        padding: 20px;
    }
}
/* V310: FIXING THE TECHNICAL INSIGHT BADGE WIDTH */

.aeps-tech-mech .section-badge {
    
    color: white;
    background: var(--accent-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex; /* Make it wrap content tightly */
    padding: 10px 20px; /* Adjust padding for a fuller look */
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   V311: WIN-WIN SOLUTION (SIDE-BY-SIDE ACCORDION)
   ========================================= */

.aeps-winwin {
    padding: 80px 0;
    /* Clean background or a very light gradient */
    background: white; 
}

.winwin-card {
    background: var(--light-bg, #f7fafb);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Accordion Customization */
.winwin-accordion .accordion-item {
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.winwin-accordion .accordion-header .accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 15px 20px;
    background: white;
    transition: all 0.3s;
}

/* Retailer Card Specific Styles */
.retailer-card .card-heading {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}
.retailer-card .accordion-button:not(.collapsed) {
    color: white;
    background: var(--primary-teal); /* Teal for active retailer benefit */
    box-shadow: none;
}
.retailer-card .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.3);
}

/* Customer Card Specific Styles */
.customer-card .card-heading {
    color: var(--accent-green);
    border-color: var(--accent-green);
}
.customer-card .accordion-button:not(.collapsed) {
    color: white;
    background: var(--accent-green); /* Green for active customer benefit */
    box-shadow: none;
}
.customer-card .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(103, 201, 73, 0.3);
}

/* Accordion Body */
.winwin-accordion .accordion-body {
    background: white;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .winwin-card {
        margin-bottom: 30px;
    }
}

.aeps-winwin .section-badge {
    display: inline-flex; 
    align-items: center;
    border-radius: 50px; 
    padding: 8px 20px; 

    /* Colors and Typography */
    background: var(--accent-green, #67C949);
    color: white; /* White Text */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(103, 201, 73, 0.5);
    margin-left: auto;
    margin-right: auto;
}

.aeps-winwin .section-badge i {
    color: white; /* Icon color */
    margin-right: 8px;
    font-size: 1rem;
}

/* Ensure the main section title remains centered */
.aeps-winwin .text-center .section-title,
.aeps-winwin .text-center .section-subtitle {
    text-align: center;
}

/* =========================================
   V313: WHAT IS AEPS? (IMAGE AND HIGHLIGHT CARDS)
   ========================================= */

.aeps-whatis-v2 {
    padding: 80px 0;
    background: white; /* Clean background for better contrast */
}



.aeps-def-img {
    max-width: 100%; 
    height: auto; 
    display: block;
    margin: 0 auto;
    
    
    border-radius: 12px !important; 
    border: 3px solid var(--primary-teal);
    transition: transform 0.3s ease;
}

.aeps-def-img:hover {
    /* Kept the hover effect minimal for stability */
    transform: scale(1.01);
}

/* Responsive Fix for small screens (Optional but good practice) */
@media (max-width: 991px) {
    .aeps-def-img {
        margin-bottom: 30px;
        /* Ensure that on smaller screens, it centers and doesn't push */
        width: 90%; 
    }
}

.definition-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}
.definition-intro strong {
    color: var(--primary-teal);
    font-weight: 700;
}


/* Highlight Cards Styling */
.highlight-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-green); /* Green accent bar */
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 77, 64, 0.1);
    background: #f0fff0; /* Very slight hover color change */
}

.highlight-icon {
    font-size: 24px;
    color: var(--primary-teal);
    margin-bottom: 10px;
    display: block;
}

.card-head {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .aeps-def-img {
        margin-bottom: 30px;
    }
}




/* =========================================
   V322: FAQ SECTION BADGE STYLING (Green Pill - Final Match)
   ========================================= */

.aeps-faq .section-badge {
    /* Ensures Badge wraps tightly around text and centers it */
    display: inline-flex; 
    align-items: center;
    justify-content: center; /* Ensures content inside is centered */

    /* Pill/Rounded Shape */
    border-radius: 50px; 
    padding: 10px 25px; /* Increased padding for a fuller look like the screenshot */

    /* Colors and Typography */
    background: var(--accent-green, #67C949); /* Green Background */
    color: white; /* White Text */
    font-size: 1rem; /* Slightly larger font for visibility */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Subtle spacing */
    
    /* Strong Shadow to lift it off the page */
    box-shadow: 0 5px 20px rgba(103, 201, 73, 0.4);
    
    /* Ensures it centers correctly */
    margin-left: auto;
    margin-right: auto;
}

.aeps-faq .section-badge i {
    color: white; /* Icon color */
    margin-right: 10px; /* Increased spacing between icon and text */
    font-size: 1.1rem;
}



/* =========================================
   V331: TRANSACTION FLOW ANIMATION
   ========================================= */

/* Main Flow Container Styling */
.steps-flow {
    position: relative;
    /* Ensuring steps-flow box has enough internal margin */
    padding: 30px 0; 
}

/* 1. Base Step Box Styling */
.steps-flow-box {
    background: #f7fafb; /* Light background for the overall flow box */
    padding: 20px 30px;
    border-radius: 12px;
}

/* 2. Individual Step Styling (to align number and text) */
.step-v18 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd; /* Dashed line separator */
    position: relative;
    z-index: 2; /* Ensures step content is above connector */
}
.step-v18:hover {
    background: #e0f2f1; /* Subtle hover effect */
    border-radius: 5px;
}

/* Number Circle Styling */
.s-num {
    width: 40px;
    height: 40px;
    background: var(--primary-teal, #009688);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--light-bg, #f7fafb); /* Ring effect */
}

/* Text Content Styling */
.s-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.s-text p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

/* 3. Flow Connector (The Line between Steps) */
.flow-connector {
    position: relative;
    height: 30px; /* Space between steps */
    width: 2px;
    background: #ccc; /* Subtle base color for the line */
    margin-left: 19px; /* Align with the center of the s-num circle */
    z-index: 1;
}

/* 4. Animated Dot (The flowing data) */
@keyframes flowDot {
    0% { transform: translateY(0); opacity: 0.5; }
    100% { transform: translateY(30px); opacity: 1; } /* Moves down the height of the connector */
}

.animated-dot {
    position: absolute;
    top: -15px; /* Start position slightly above the line */
    left: -9px;
    width: 20px;
    height: 20px;
    background: var(--accent-green, #67C949);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-green);
    
    /* Animation definition */
    animation: flowDot 1.5s linear infinite; /* Adjust time for speed */
}

/* Delay for subsequent dots to create a continuous stream illusion */
.steps-flow .flow-connector:nth-child(2) .animated-dot {
    animation-delay: -0.5s; 
}
.steps-flow .flow-connector:nth-child(3) .animated-dot {
    animation-delay: -1.0s;
}
.steps-flow .flow-connector:nth-child(4) .animated-dot {
    animation-delay: -1.5s;
}






/* =========================================
   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);
}


