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

/* ==========================================================
   MICRO ATM - CLEAN & OPTIMIZED CSS (NO DUPLICATES)
   ========================================== */

/* --- BRAND VARIABLES --- */
:root {
    --p-teal: #009688;
    --p-deep: #004d40;
    --accent-green: #67C949;
    --accent-yellow: #ffc107;
    --text-body: #4a4a4a;
    --bg-light: #f8fbfa;
}

/* --- WRAPPER SCOPE --- */
.matm-v398 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- GLOBAL SECTION SPACING FIX --- */
section {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* --- 1. HERO SECTION --- */
.hero-v398 {
    background: linear-gradient(135deg, var(--p-deep) 0%, var(--p-teal) 100%);
    padding: 60px 0 40px !important;
    position: relative;
    color: #ffffff;
}

.hero-text-v398 {
    padding-right: 15px;
}

.badge-v398 {
    background: var(--accent-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.h1-v398 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-v398 h1, 
.hero-v398 h2 {
    color: #ffffff !important;
}

.hero-v398 h1 span {
    color: var(--accent-yellow) !important;
}

.p-v398 {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns-v398 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main-v398 {
    background: var(--accent-green);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(103, 201, 73, 0.3);
}

.btn-main-v398:hover {
    transform: translateY(-3px);
    background: #fff;
    color: var(--p-deep);
}

.btn-sub-v398 {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.atm-img-v398 {
    max-width: 200px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: floatMachine 4s ease-in-out infinite;
}

@keyframes floatMachine {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- 2. FEATURES SECTION --- */

/* --- Premium Heading Styling --- */
.h2-v398-premium {
    font-size: 2.5rem;
    font-weight: 900 !important; /* Extra Bold */
    color: #004d40 !important;   /* Deep Jungle Green */
    line-height: 1.2;
    margin-bottom: 10px;
}

/* नीचे वाली लाइन का अलग कलर */
.sub-text-v398 {
    color: #009688 !important;   /* Paysaral Teal Green */
    font-weight: 800 !important; 
    font-size: 1.8rem;
    display: block;              /* इसे नई लाइन पर पक्का करने के लिए */
    margin-top: 5px;
}

/* मोबाइल के लिए साइज एडजस्टमेंट */
@media (max-width: 768px) {
    .h2-v398-premium { font-size: 1.8rem; }
    .sub-text-v398 { font-size: 1.3rem; }
}

.premium-features-v406 {
    padding: 40px 0 !important;
    background-color: #f8fbfa;
}

.color-card-v406 {
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.color-card-v406:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.card-teal { background: linear-gradient(135deg, #009688 0%, #00796b 100%); }
.card-green { background: linear-gradient(135deg, #67C949 0%, #57b443 100%); }
.card-deep { background: linear-gradient(135deg, #004d40 0%, #00332c 100%); }
.card-dark { background: linear-gradient(135deg, #00796b 0%, #004d40 100%); }

.icon-wrapper-v406 {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.color-card-v406:hover .icon-wrapper-v406 {
    background: #ffffff;
    color: #004d40;
    transform: rotateY(360deg);
}

.color-card-v406 h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.color-card-v406 p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@keyframes popInV406 {
    0% { opacity: 0; transform: scale(0.8) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-pop-in { animation: popInV406 0.6s forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }



/* --- 3. MASTER SECTION (IMAGE + BOXES) --- */
.ps-master-final-v421 {
    padding: 40px 0 !important;
    background: #ffffff !important;
}

.ps-box-v421 {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
    height: auto !important;
    min-height: 140px !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.ps-box-v421:hover { transform: translateY(-10px) !important; }

.ps-b-teal { background: linear-gradient(135deg, #009688, #00796b) !important; }
.ps-b-green { background: linear-gradient(135deg, #67C949, #4caf50) !important; }
.ps-b-deep { background: linear-gradient(135deg, #004d40, #002b26) !important; }

.ps-icon-v421 {
    min-width: 50px !important; 
    height: 50px !important;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    font-size: 22px !important; 
    color: #fff !important;
}

.ps-h4-v421 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    margin: 0 0 8px 0 !important;
    display: block !important;
}

.ps-p-v421 {
    color: rgba(255,255,255,0.95) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.ps-img-area-v421 { position: relative !important; }

.ps-main-img-v421 { 
    width: 90% !important; 
    border-radius: 25px !important; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; 
}

.ps-label-v421 {
    position: absolute !important;
    bottom: 20px !important;
    right: 15px !important;
    background: #ffc107 !important;
    color: #000 !important;
    padding: 10px 25px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.ps-main-title-v421 { 
    font-size: 2.5rem !important; 
    font-weight: 800 !important; 
    color: #004d40 !important; 
    margin-bottom: 30px !important; 
}

.ps-main-title-v421 span { color: #009688 !important; }

.ps-list-card-v421 {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    background: #fdfdfd !important;
    padding: 22px !important;
    border-radius: 15px !important;
    margin-bottom: 15px !important;
    border: 1px solid #eee !important;
}

.ps-circle-v421 {
    min-width: 55px !important; 
    height: 55px !important;
    background: #e0f2f1 !important; 
    color: #009688 !important;
    border-radius: 50% !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    font-size: 20px !important;
}

.ps-text-v421 b { 
    display: block !important; 
    color: #004d40 !important; 
    font-size: 1.15rem !important; 
    margin-bottom: 3px !important; 
    font-weight: 800 !important; 
}

.ps-text-v421 p { 
    color: #666 !important; 
    font-size: 0.95rem !important; 
    margin: 0 !important; 
}

/* --- 4. SECURITY SECTION --- */
.ps-security-v424 {
    padding: 40px 0 !important;
    background: #fdfdfd;
}

.ps-h2-v424 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 20px;
}

.ps-h2-v424 span {
    color: #009688;
}

.ps-p-v424 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ps-sec-list-v424 {
    list-style: none;
    padding: 0;
}

.ps-sec-list-v424 li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ps-sec-list-v424 li i {
    color: #67C949;
    font-size: 1.3rem;
}

.ps-sec-img-v424 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- 5. TOP FEATURES SECTION --- */
.ps-features-v425 {
    padding: 40px 0 !important;
    background: #ffffff;
}

.ps-title-v425 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #004d40;
}

.ps-title-v425 span { color: #009688; }

.ps-line-v425 {
    width: 60px;
    height: 4px;
    background: #67C949;
    margin: 15px auto;
    border-radius: 10px;
}

.ps-feat-card-v425 {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.ps-feat-card-v425:hover {
    transform: translateY(-10px);
    border-color: #009688;
    box-shadow: 0 15px 35px rgba(0, 150, 136, 0.1);
}

.ps-feat-icon-v425 {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    transition: 0.3s;
}

.icon-1 { background: #e0f2f1; color: #009688; }
.icon-2 { background: #e8f5e9; color: #4caf50; }
.icon-3 { background: #fff8e1; color: #ffc107; }
.icon-4 { background: #e3f2fd; color: #2196f3; }

.ps-feat-card-v425 h4 {
    font-weight: 800;
    font-size: 1.15rem;
    color: #004d40;
    margin-bottom: 12px;
}

.ps-feat-card-v425 p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- 6. CALCULATOR SECTION --- */
.ps-calc-v431 { 
    padding: 30px 0 !important; 
    background: #fff; 
}

.calc-card-v431 {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    max-width: 1000px;
    margin: 0 auto;
}

.calc-head-v431 { 
    font-weight: 800; 
    color: #004d40; 
    font-size: 1.4rem; 
    margin: 0; 
}

.calc-head-v431 span { color: #009688; }

.calc-p-v431 { 
    font-size: 0.8rem; 
    color: #777; 
    margin-bottom: 15px; 
}

.ps-badge-v431 { 
    background: #e0f2f1; 
    color: #009688; 
    padding: 2px 10px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 0.8rem; 
}

.ps-range-v431 {
    width: 100%; 
    height: 5px; 
    background: #eee; 
    border-radius: 10px;
    accent-color: #009688; 
    cursor: pointer;
}

.mini-stat-v431 {
    background: #f8fbfa; 
    padding: 8px; 
    border-radius: 8px;
    border: 1px solid #f0f0f0; 
    text-align: center;
}

.mini-stat-v431 small { 
    display: block; 
    font-size: 0.65rem; 
    color: #888; 
    text-transform: uppercase; 
}

.mini-stat-v431 b { 
    font-size: 0.85rem; 
    color: #333; 
}

.ps-res-side-v431 {
    background: linear-gradient(135deg, #004d40, #002b26);
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 20px !important; 
    color: #fff;
}

.res-content-v431 { 
    width: 100%; 
    text-align: center; 
}

.res-item-v431 span { 
    font-size: 0.75rem; 
    opacity: 0.8; 
    display: block; 
    margin-bottom: 2px; 
}

.res-item-v431 h2 { 
    font-size: 2.4rem; 
    font-weight: 800; 
    color: #67C949; 
    margin: 0; 
    line-height: 1; 
}

.res-item-v431 h4 { 
    font-size: 1.1rem; 
    color: #ffc107; 
    margin: 0; 
}

.ps-sep-v431 { 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
    margin: 12px auto; 
    width: 50%; 
}

.ps-calc-btn-v431 {
    display: inline-block; 
    margin-top: 12px; 
    padding: 8px 20px;
    background: #67C949; 
    color: #fff; 
    text-decoration: none !important;
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 0.85rem; 
    transition: 0.3s;
}

/* --- 7. FAQ SECTION --- */
.ps-faq-v433 {
    padding: 40px 0 !important;
    background: #ffffff;
}

.ps-faq-title-v433 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #004d40;
}

.ps-faq-title-v433 span { color: #009688; }

.ps-faq-wrapper-v433 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ps-faq-item-v433 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.ps-faq-item-v433 summary {
    padding: 18px 25px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #004d40;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: 0.3s;
}

.ps-faq-item-v433 summary::after {
    content: '\2b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    transition: 0.3s;
    color: #009688;
}

.ps-faq-item-v433[open] {
    border-color: #009688;
    box-shadow: 0 10px 20px rgba(0, 150, 136, 0.08);
}

.ps-faq-item-v433[open] summary {
    background: #e0f2f1;
    color: #00796b;
}

.ps-faq-item-v433[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}

.ps-faq-body-v433 {
    padding: 0 25px 20px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    background: #e0f2f1;
}

/* --- 8. CTA SECTION --- */
.ps-cta-only-v438 {
    padding: 50px 0 !important;
    background-color: #ffffff !important;
}

.ps-cta-green-card {
    background: linear-gradient(135deg, #009688 0%, #004d40 100%) !important;
    padding: 60px 30px !important;
    border-radius: 30px !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0, 77, 64, 0.25) !important;
}

.cta-heading-v438 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 2.3rem !important;
    margin-bottom: 15px !important;
}

.cta-text-v438 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    margin-bottom: 35px !important;
}

.ps-cta-buttons {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.ps-cta-btn-wa {
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: 0.3s !important;
}

.ps-cta-btn-call {
    background: #ffffff !important;
    color: #004d40 !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: 0.3s !important;
}

.ps-cta-btn-wa:hover, .ps-cta-btn-call:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
    color: inherit !important;
}



    
    /* Calculator Mobile Fix */
    .ps-res-side-v431 {
        padding: 20px 10px !important;
    }
    .res-item-v431 h2 { font-size: 2rem; }
    .res-item-v431 h4 { font-size: 1rem; }
    .ps-sep-v431 { margin: 10px auto; }
    .mobile-flex-v431 {
        display: flex !important;
        flex-direction: row !important;
    }
    .ps-calc-v431 { padding: 15px 0 !important; }
}


		/* =========================================
   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.8rem;
    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 */
}



/* MAZEDAR TESTIMONIAL - COMPACT HEIGHT */
.ps-testimonial-new {
    padding: 50px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #f1f8e9 50%, #fff8e1 100%);
    position: relative;
    overflow: hidden;
}

.ps-testimonial-new::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(103,201,73,0.08));
    border-radius: 50%;
    top: -80px;
    right: -80px;
    animation: floatCircle 15s infinite ease-in-out;
}

.ps-testimonial-new::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,193,7,0.08), rgba(255,152,0,0.08));
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    animation: floatCircle 12s infinite ease-in-out reverse;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.ps-test-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.ps-test-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #004d40;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.ps-test-header h2::after {
    content: '⭐';
    position: absolute;
    right: -30px;
    top: -8px;
    font-size: 1.3rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.ps-test-header h2 span {
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ps-test-header p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.psTestimonialSwiper {
    padding: 15px 60px 50px;
    position: relative;
    z-index: 2;
}

/* Card - Compact Height */
.ps-test-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.swiper-slide:nth-child(1) .ps-test-card { border-color: rgba(0,150,136,0.3); }
.swiper-slide:nth-child(2) .ps-test-card { border-color: rgba(103,201,73,0.3); }
.swiper-slide:nth-child(3) .ps-test-card { border-color: rgba(255,193,7,0.3); }
.swiper-slide:nth-child(4) .ps-test-card { border-color: rgba(33,150,243,0.3); }
.swiper-slide:nth-child(5) .ps-test-card { border-color: rgba(156,39,176,0.3); }
.swiper-slide:nth-child(6) .ps-test-card { border-color: rgba(255,87,34,0.3); }

.ps-test-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,150,136,0.2);
    border-color: #009688;
}

.ps-test-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0,150,136,0.05), rgba(103,201,73,0.05));
    border-radius: 50%;
    top: -40px;
    right: -40px;
    transition: 0.5s;
}

.ps-test-card:hover::before {
    transform: scale(1.4);
    opacity: 0.8;
}

.ps-test-quote {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.ps-test-msg {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.ps-test-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.ps-test-avatar {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ps-test-footer h6 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 3px 0;
}

.ps-test-footer p {
    font-size: 0.78rem;
    color: #888;
    margin: 0 0 5px 0;
}

.ps-test-stars {
    display: flex;
    gap: 2px;
}

.ps-test-stars i {
    font-size: 0.75rem;
    color: #ffc107;
}

.ps-test-next,
.ps-test-prev {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #009688, #67C949);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,150,136,0.3);
    color: #fff !important;
    transition: 0.3s;
}

.ps-test-next:after,
.ps-test-prev:after {
    font-size: 16px !important;
    font-weight: 900;
}

.ps-test-next:hover,
.ps-test-prev:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(0,150,136,0.4);
}

/* PAGINATION - BOX KE NEECHE */
.ps-test-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 25px !important;
}

.ps-test-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.ps-test-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #009688, #67C949);
    width: 24px;
    border-radius: 5px;
}

/* Swiper padding adjust - dots ke liye space */
.psTestimonialSwiper {
    padding: 15px 60px 10px !important;
    position: relative;
    z-index: 2;
}



@media (max-width: 768px) {
    .ps-testimonial-new {
        padding: 40px 0;
    }
    
    .ps-test-header {
        margin-bottom: 30px;
    }
    
    .ps-test-header h2 {
        font-size: 1.7rem;
    }
    
    .ps-test-header h2::after {
        right: -25px;
        font-size: 1.1rem;
    }
    
  
    .psTestimonialSwiper {
        padding: 15px 15px 10px !important;
    }
    
    .ps-test-pagination {
        margin-top: 20px !important;
    }
}
    
    .ps-test-card {
        padding: 18px 20px;
        min-height: 190px;
    }
    
    .ps-test-msg {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .ps-test-avatar {
        font-size: 2.2rem;
    }
    
    .ps-test-footer h6 {
        font-size: 0.9rem;
    }
    
    .ps-test-footer p {
        font-size: 0.75rem;
    }
    
    .ps-test-next,
    .ps-test-prev {
        display: none;
    }
}




/* V448: ULTIMATE COMPARISON TABLE FIX */
.ps-compare-final-v448 {
    padding: 60px 0 !important;
    background: #ffffff;
}

.ps-table-container-v448 {
    width: 100%;
    overflow-x: auto; /* मोबाइल पर स्क्रॉल के लिए */
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ps-custom-table-v448 {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px; /* मोबाइल पर लेआउट न बिगड़े */
}

/* --- FORCE DARK GREEN HEADER --- */
.ps-custom-table-v448 thead tr {
    background-color: #004d40 !important; /* Deep Jungle Green */
}

.ps-custom-table-v448 thead th {
    color: #ffffff !important;
    padding: 25px 20px !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-align: center;
    border: none !important;
}

/* First Heading Left Align */
.ps-custom-table-v448 thead th.ps-first-th {
    text-align: left;
    border-top-left-radius: 15px;
}

.ps-custom-table-v448 thead th.ps-last-th {
    border-top-right-radius: 15px;
    background-color: #002b26 !important; /* Slightly darker to highlight Paysaral */
}

/* --- BODY STYLING --- */
.ps-custom-table-v448 tbody td {
    padding: 20px !important;
    border-bottom: 1px solid #eeeeee !important;
    text-align: center;
    font-size: 1rem;
    color: #444;
}

/* Features Name Styling */
.ps-feat-name {
    text-align: left !important;
    font-weight: 700 !important;
    color: #004d40 !important;
    background: #fcfdfd;
}

/* Paysaral Column Highlight */
.ps-best-value {
    background-color: #e0f2f1 !important; /* Light Teal background */
    color: #00796b !important;
    font-weight: 800 !important;
}

/* Row Hover */
.ps-custom-table-v448 tbody tr:hover {
    background-color: #f8fbfa;
}

/* मोबाइल के लिए */
@media (max-width: 768px) {
    .ps-custom-table-v448 thead th {
        padding: 15px 10px !important;
        font-size: 0.95rem !important;
    }
    .ps-custom-table-v448 tbody td {
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
    }
}







/* ==========================================================
   V453: CLEAN CONTACT & LEAD FORM CSS (FINAL VERSION)
   ========================================================== */

/* 1. Section Container */
.ps-contact-v452 {
    padding: 50px 0 !important;
    background: #f8fbfa;
}

/* 2. Left Side: Info Items */
.info-item-v452 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.info-item-v452 h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #004d40;
    margin-bottom: 2px;
}

.info-item-v452 p {
    color: #666;
    margin: 0;
}

/* 3. Green Icons Styling */
.icon-box-v452 {
    width: 50px;
    height: 50px;
    background: transparent !important;
    color: #67C949 !important; /* Bright Green */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px !important;
    transition: 0.3s;
    border: 2px solid #e0f2f1;
}

/* Icon Hover Effect */
.info-item-v452:hover .icon-box-v452 {
    background: #009688 !important;
    color: #ffffff !important;
    border-color: #009688 !important;
    transform: scale(1.1);
}

/* 4. Right Side: Form Card */
.ps-form-card-v452 {
    background: #ffffff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 77, 64, 0.08);
    border: 1px solid #eee;
}

/* 5. Input Fields Styling */
.ps-input-v452 {
    padding: 12px 18px !important;
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    background: #fdfdfd !important;
    font-size: 0.95rem !important;
    transition: 0.3s;
}

/* Focus & Hover on Inputs */
.ps-input-v452:focus {
    border-color: #67C949 !important; /* Focus on Green */
    box-shadow: 0 0 10px rgba(103, 201, 73, 0.1) !important;
    outline: none !important;
}

/* 6. Ultimate Green Submit Button */
/* Updated Button Style - Capitalized Text */
.ps-form-btn-v452 {
    width: 100%;
    background: #67C949 !important;
    background: linear-gradient(135deg, #67C949 0%, #009688 100%) !important;
    color: #fff !important;
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: 700; /* थोड़ा सा वजन कम किया ताकि दिखने में सुंदर लगे */
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(103, 201, 73, 0.2) !important;
    
    /* यहाँ बदलाव किया गया है */
    text-transform: none !important; /* Force no uppercase */
    letter-spacing: 0.5px;
}

.ps-form-btn-v452:hover {
    transform: translateY(-3px);
    background: #004d40 !important;
    box-shadow: 0 15px 30px rgba(0, 77, 64, 0.3) !important;
}

/* 7. Mobile Responsive Fixes */
@media (max-width: 991px) {
    .ps-contact-v452 { 
        padding: 50px 0 !important; 
    }
    .ps-form-card-v452 { 
        padding: 30px 20px; 
        margin-top: 30px;
    }
    .info-item-v452 {
        justify-content: flex-start;
    }
}