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



/* ============================================================
   PAY SARAL - CREDIT CARD BILL PAYMENT PAGE (FULL CSS)
   ============================================================ */

/* --- 1. Hero Section Styling --- */
.ps-cc-hero-final {
    background: #002d26 !important;
    background-image: radial-gradient(circle at top left, #004d40, #002d26) !important;
    padding: 70px 0 !important; /* Proper Height - Not too small, not too large */
    color: white !important;
    position: relative;
    display: block !important;
}

/* Badge Fix */
.ps-cc-top-badge {
    background: rgba(103, 201, 73, 0.15) !important;
    color: #67C949 !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border: 1px solid rgba(103, 201, 73, 0.4) !important;
    text-transform: uppercase;
    display: inline-block;
}

.ps-cc-title {
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    margin: 20px 0 !important;
	color: #ffffff !important;
}

.text-green { 
    color: #67C949 !important; 
}

.ps-cc-desc {
    font-size: 18px !important;
    opacity: 0.8 !important;
    max-width: 580px;
    line-height: 1.6;
}

/* --- 2. 3D Card Animation --- */
.ps-cc-card-3d { 
    width: 380px; 
    height: 240px; 
    perspective: 1000px; 
}

.ps-cc-card-inner {
    position: relative; 
    width: 100%; 
    height: 100%;
    transition: transform 1s; 
    transform-style: preserve-3d;
    animation: flipAuto 6s infinite ease-in-out;
}

@keyframes flipAuto {
    0%, 100% { transform: rotateY(0deg); }
    45%, 55% { transform: rotateY(180deg); }
}

.ps-cc-card-front, .ps-cc-card-back {
    position: absolute; 
    width: 100%; 
    height: 100%;
    backface-visibility: hidden; 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.ps-cc-card-back { 
    transform: rotateY(180deg); 
}

.ps-cc-card-3d img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* --- 3. Feature Grid & Glow Hover Effect --- */
.ps-cc-features-grid { 
    padding: 80px 0 !important; 
    background: #ffffff !important; 
    display: block !important;
}

.ps-glow-card {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    padding: 40px 30px !important;
    border-radius: 25px !important;
    text-align: center !important;
    transition: all 0.3s ease-in-out !important;
    height: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    cursor: pointer !important;
}

/* Hover Action - Strong & Visible */
.ps-glow-card:hover {
    transform: translateY(-15px) !important;
    border-color: #67C949 !important;
    box-shadow: 0 20px 40px rgba(103, 201, 73, 0.2) !important;
    background: #fff !important;
}

.ps-icon-box {
    width: 70px; 
    height: 70px;
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: 0.3s;
}

.ps-glow-card:hover .ps-icon-box {
    background: #67C949 !important;
    color: white !important;
    transform: scale(1.1) rotate(10deg);
}

.ps-glow-card h3 { 
    font-weight: 800; 
    color: #002d26; 
    font-size: 22px; 
    margin-bottom: 15px; 
}

.ps-glow-card p { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.6; 
}

/* --- 4. Hero Buttons & Hover Force Fix --- */

/* Base Styles for Buttons */
.btn-ps-green, .btn-ps-outline {
    padding: 12px 30px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Pay Bill Now - Initial */
.btn-ps-green {
    background-color: #67C949 !important;
    color: #ffffff !important;
    border: none !important;
}

/* Pay Bill Now - Hover */
.btn-ps-green:hover {
    background-color: #56a83d !important; 
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 20px rgba(103, 201, 73, 0.4) !important;
    color: #ffffff !important;
}

/* Learn More - Initial */
.btn-ps-outline {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* Learn More - Hover */
.btn-ps-outline:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-4px) !important;
    color: #ffffff !important;
}

/* Active State (On Click) */
.btn-ps-green:active, .btn-ps-outline:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
}

/* --- 5. Responsive Fixes --- */
@media (max-width: 991px) {
    .ps-cc-hero-final { padding: 60px 0 !important; text-align: center; }
    .ps-cc-title { font-size: 34px !important; }
    .ps-cc-card-3d { width: 300px; height: 180px; margin: 0 auto; }
    .ps-cc-desc { margin: 0 auto 30px auto; }
}




/*============================= 
       Modern Features V3
=============================== */
.ps-modern-features {
    padding: 50px 0;
    background: #fbfcfc;
}

.ps-feature-card-v3 {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 10px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

/* Icon Glows */
.v3-icon-glow {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 26px;
    transition: 0.3s;
}

.green { background: #e8f5e9; color: #67C949; box-shadow: 0 10px 20px rgba(103, 201, 73, 0.1); }
.blue { background: #e3f2fd; color: #2196f3; box-shadow: 0 10px 20px rgba(33, 150, 243, 0.1); }
.gold { background: #fff8e1; color: #ffc107; box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1); }

/* Card Content */
.ps-feature-card-v3 h3 {
    font-size: 22px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 15px;
}

.ps-feature-card-v3 p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.ps-feature-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: #eee;
}

.v3-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #67C949;
    transition: 0.4s;
}

.ps-feature-card-v3:hover .v3-hover-line {
    width: 100%;
}

.line-blue { background: #2196f3; }
.line-gold { background: #ffc107; }






/* ============================================================
   FIXED: DETAILED INFORMATION SECTION
   ============================================================ */

.ps-cc-info-section {
    padding: 10px 0 !important;
    background-color: #ffffff !important;
    display: block !important;
    overflow: hidden;
}

/* Typography Fix */
.ps-info-heading {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #002d26 !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
}

.ps-mini-label {
    color: #67C949 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    display: block !important;
    margin-bottom: 12px !important;
}

/* --- Info Lines Styling --- */
.ps-info-text-lines {
    margin-top: 25px !important;
}

.single-info-line {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    padding: 10px !important;
    border-radius: 12px;
}

/* Line Hover Effect */
.single-info-line:hover {
    transform: translateX(10px) !important;
    background: rgba(103, 201, 73, 0.05) !important;
}

.single-info-line i {
    color: #67C949 !important;
    font-size: 20px !important;
    margin-top: 4px !important;
}

.single-info-line p {
    font-size: 16px !important;
    color: #444 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.single-info-line p strong {
    color: #002d26 !important;
    font-weight: 700 !important;
}

/* --- Image & Floating Badge --- */
.ps-info-img-wrapper {
    position: relative !important;
    padding: 10px !important;
    z-index: 1;
}

.ps-info-img-wrapper img {
    border-radius: 25px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    width: 100% !important;
    height: auto !important;
}

/* Floating Badge Fix */
.ps-floating-offer {
    position: absolute !important;
    top: 30px !important;
    right: -5px !important;
    background: #67C949 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(103, 201, 73, 0.4) !important;
    z-index: 2 !important;
    animation: floatVerticalFix 3s infinite ease-in-out !important;
}

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

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .ps-info-heading { 
        font-size: 28px !important; 
        text-align: center !important;
    }
    .ps-cc-info-section { 
        padding: 50px 15px !important; 
    }
    .ps-floating-offer { 
        display: none !important; /* मोबाइल पर इसे छुपाना बेहतर है */
    }
    .single-info-line:hover {
        transform: none !important;
    }
}


/* --- CTA Box Wrapper --- */
.ps-cta-box-wrapper {
    background: #f8fafc;
    border-radius: 20px;
    padding: 5px; /* बॉर्डर जैसा गैप देने के लिए */
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.ps-cta-inner-box {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.4s ease;
}

/* --- THE HOVER EFFECT --- */
.ps-cta-box-wrapper:hover {
    transform: translateY(-8px);
    border-color: #67C949;
    box-shadow: 0 20px 40px rgba(103, 201, 73, 0.15);
}

.ps-cta-box-wrapper:hover .ps-cta-inner-box {
    background: #f0f9ed; /* होवर पर हल्का हरा बैकग्राउंड */
}

/* Text inside box */
.ps-cta-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 5px;
}

.ps-cta-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* --- Simple Button Styling --- */
.ps-cta-button-area {
    margin-top: 30px;
    display: block;
}

.btn-cc-primary-v2 {
    background-color: #67C949 !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease-in-out !important;
    border: none !important;
}

/* --- Hover Effect --- */
.btn-cc-primary-v2:hover {
    background-color: #002d26 !important; /* होवर पर डार्क ग्रीन */
    transform: translateY(-3px) !important; /* थोड़ा ऊपर उठेगा */
    box-shadow: 0 10px 20px rgba(103, 201, 73, 0.3) !important;
    color: #ffffff !important;
}

/* Icon Animation on Hover */
.btn-cc-primary-v2:hover i {
    transform: translateX(5px);
    transition: 0.3s;
}



/* =============================
      How It Works Styling
 ==============================*/
.ps-how-it-works {
    padding: 60px 0;
    background: #f8fafc;
}

.ps-badge-outline {
    color: #67C949;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border: 1px solid #67C949;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.ps-section-title {
    font-size: 34px;
    font-weight: 900;
    color: #002d26;
    margin-top: 10px;
}

.ps-section-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Step Card Style */
.ps-step-card {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #edf2f7;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Step Number Badge */
.ps-step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(103, 201, 73, 0.1);
    line-height: 1;
    transition: 0.3s;
}

.ps-step-icon-main {
    width: 70px;
    height: 70px;
    background: #f0fdf4;
    color: #67C949;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.ps-step-card h4 {
	font-size: 24px;
    font-weight: 800;
    color: #009B8A;
    margin-bottom: 15px;
}

.ps-step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- HOVER EFFECT --- */
.ps-step-card:hover {
    transform: translateY(-12px);
    border-color: #67C949;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.ps-step-card:hover .ps-step-icon-main {
    background: #67C949;
    color: #fff;
    transform: rotateY(360deg);
}

.ps-step-card:hover .ps-step-number {
    color: rgba(103, 201, 73, 0.2);
    transform: scale(1.2);
}





/* --- Supported Banks V3 Styling --- */
.ps-banks-v3 {
    padding: 20px 0;
    background: #fcfdfe;
}

.ps-v3-badge {
    color: #67C949;
    background: rgba(103, 201, 73, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ps-v3-title {
    font-size: 34px;
    font-weight: 900;
    color: #002d26;
    margin-top: 15px;
}

.ps-v3-subtitle {
    color: #666;
    font-size: 16px;
}

/* Flex Grid */
.ps-banks-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Bank Card */
.ps-bank-card-v3 {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    width: 180px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}

.ps-bank-logo-wrap {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.ps-bank-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Online Status Dot */
.ps-bank-status {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.status-dot {
    height: 7px;
    width: 7px;
    background-color: #67C949;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

/* --- THE HOVER EFFECT --- */
.ps-bank-card-v3:hover {
    transform: translateY(-10px);
    border-color: #002d26; /* Your Teal Color */
    box-shadow: 0 15px 35px rgba(0, 45, 38, 0.1);
}

/* More Banks Styling */
.more-banks {
    background: #002d26; /* Teal Background */
    border-color: #002d26;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-content h5 { color: #67C949; margin: 0; font-weight: 800; }
.more-content p { color: #ffffff; margin: 0; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .ps-bank-card-v3 { width: 140px; padding: 20px 10px; }
}







/* --- Stats Counter Section with Custom Teal Palette --- */

.ps-stats-teal-section {
    padding: 60px 0;
    background-color: #ffffff !important; /* Page background white for contrast */
}

.ps-stats-teal-card {
    /* Using your brand colors */
    background: #00897B !important; /* --primary-teal */
    background-image: linear-gradient(135deg, #00897B 0%, #00695C 100%) !important; /* --primary-teal to --dark-teal */
    
    padding: 60px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    
    /* Strong shadow using your dark teal */
    box-shadow: 0 25px 50px rgba(0, 105, 92, 0.25) !important;
    
    /* Border using your light green */
    border: 1px solid rgba(185, 246, 202, 0.3) !important;
}

/* Subtle background glow effect */
.ps-stats-teal-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 200, 83, 0.1); /* --primary-green glow */
    filter: blur(80px);
    border-radius: 50%;
}

.ps-stat-box {
    position: relative;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ps-stat-icon-teal {
    font-size: 34px;
    color: #00C853 !important; /* --primary-green */
    margin-bottom: 15px;
    display: block;
    transition: 0.3s;
}

.ps-stat-val {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff !important; /* --white */
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.ps-stat-txt {
    /* Using your light teal for a softer look on dark background */
    color: #E0F2F1 !important; /* --light-teal */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* --- Interactive Hover Effects --- */

.ps-stat-box:hover {
    transform: translateY(-12px);
}

.ps-stat-box:hover .ps-stat-val {
    color: #00C853 !important; /* Turns --primary-green on hover */
    text-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.ps-stat-box:hover .ps-stat-icon-teal {
    color: #ffffff !important;
    transform: scale(1.2) rotate(5deg);
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
    .ps-stats-teal-card { padding: 40px 30px; }
    .ps-stat-val { font-size: 32px; }
}

@media (max-width: 767px) {
    .ps-stats-teal-card { 
        padding: 40px 15px; 
        border-radius: 25px;
    }
    .ps-stat-val { font-size: 28px; }
    .ps-stat-txt { font-size: 11px; }
    .ps-stat-box:hover { transform: none; } /* Disable hover on mobile for better UX */
}





/* --- FAQ Section Styling --- */
.ps-faq-section {
    padding: 10px 0;
    background: #ffffff;
}

.ps-faq-badge {
    color: #67C949;
    background: rgba(103, 201, 73, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ps-faq-title {
    font-size: 36px;
    font-weight: 900;
    color: #002d26;
    margin-top: 15px;
}

/* --- Accordion Custom Design --- */
.ps-custom-accordion .accordion-item {
    border: 1px solid #f0f0f0 !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.ps-custom-accordion .accordion-button {
    background: #ffffff !important;
    color: #002d26 !important;
    font-weight: 700 !important;
    font-size: 17px;
    padding: 20px 25px;
    border: none !important;
    box-shadow: none !important;
}

/* जब सवाल खुला हो (Active State) */
.ps-custom-accordion .accordion-button:not(.collapsed) {
    color: #67C949 !important;
    background: rgba(103, 201, 73, 0.02) !important;
}

/* Accordion Icon (Arrow) */
.ps-custom-accordion .accordion-button::after {
    filter: sepia(100%) hue-rotate(50deg) saturate(500%); /* Green arrow */
}

.ps-custom-accordion .accordion-body {
    padding: 0 25px 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    background: rgba(103, 201, 73, 0.02);
}









/* --- Final CTA Styling --- */
.ps-final-cta {
    padding: 60px 0;
    background: #ffffff; /* Page background white rahega */
}

.ps-cta-glass-card {
    background: #002d26 !important; /* Your Teal Color */
    padding: 60px 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 45, 38, 0.2);
}

.cta-heading {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* --- The Action Button --- */
.ps-cta-main-btn {
    background: #67C949 !important;
    color: #ffffff !important;
    padding: 16px 40px !important;
    border-radius: 15px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.4s ease !important;
    position: relative;
    z-index: 2;
    border: none !important;
}

.ps-cta-main-btn:hover {
    background: #ffffff !important;
    color: #002d26 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(103, 201, 73, 0.3);
}

/* Background Shapes for Style */
.cta-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(103, 201, 73, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-2 {
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .ps-cta-glass-card { padding: 40px 30px; text-align: center; }
    .cta-heading { font-size: 28px; }
    .ps-cta-main-btn { width: 100%; }
}