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



/* ============================================================
   PS-SLIDER-V514: PREMIUM FULL-WIDTH DETAILED CSS
   ============================================================ */

/* 1. मुख्य स्लाइडर कंटेनर */
.ps-slider-v511 {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000; /* बैकग्राउंड काला ताकि इमेज लोड होते समय बुरा न लगे */
}

/* 2. स्लाइडर की ऊंचाई (Desktop) */
.heroSwiper {
    width: 100%;
    height: 520px; /* यहाँ से आप हाइट कम या ज्यादा कर सकते हैं */
    display: block;
}

/* 3. इंडिविजुअल स्लाइड सेटिंग */
.swiper-slide {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;      /* फ्लेक्स बॉक्स चालू करें */
    flex-direction: column !important; 
    justify-content: center !important; /* कंटेंट को ऊपर-नीचे से बीच में (Center) लाने के लिए */
    align-items: flex-start !important; /* कंटेंट को बाएँ (Left) तरफ रखने के लिए */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* 4. बाएँ हाथ वाला काला साया (Left Side Gradient Overlay) */
/* इसे Z-index: 1 दिया गया है ताकि ये कंटेंट के पीछे रहे */
.ps-overlay-v511 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* बाएँ से काला साया शुरू होगा और बीच तक जाते-जाते पारदर्शी हो जाएगा */
    background: linear-gradient(to right, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.4) 45%, 
                transparent 75%);
    z-index: 1 !important; 
    pointer-events: none; /* ताकि साया बटन्स को क्लिक करने में बाधा न बने */
}

/* 5. मुख्य कंटेंट (Text, Buttons etc.) */
/* Z-index: 10 दिया गया है ताकि ये साये के ऊपर साफ़ दिखे */
.banner-content-v511 {
    position: relative;
    z-index: 10 !important; 
    color: #ffffff !important; /* सारा टेक्स्ट सफ़ेद रहेगा */
    padding-left: 20px;
    /* टेक्स्ट को और साफ़ दिखाने के लिए हल्का सा Shadow */
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5); 
}

/* 6. मुख्य हेडिंग (Heading 1) */
.banner-h1 {
    font-size: 54px;         /* हेडिंग का साइज़ */
    font-weight: 800;        /* सबसे मोटा फोंट */
    line-height: 1.1;        /* लाइनों के बीच की दूरी */
    margin-bottom: 25px;     /* नीचे से खाली जगह */
    color: #ffffff !important;
}

/* 7. टाइपिंग टेक्स्ट (Typing Animation Style) */
.typing-text {
    color: #67C949 !important; /* Paysaral Green */
    font-weight: 800;
    border-right: 3px solid #67C949; /* टाइपिंग कर्सर */
    padding-right: 5px;
    text-shadow: none;       /* टाइपिंग पर साया नहीं ताकि रंग ओरिजिनल दिखे */
}

/* 8. फ़ीचर लिस्ट (Bullet Points) */
.feature-list-v511 {
    list-style: none;        /* डिफ़ॉल्ट डॉट्स हटाए */
    padding: 0;
    margin-bottom: 35px;
}

.feature-list-v511 li {
    font-size: 14px;         /* पॉइंट्स का साइज़ */
    font-weight: 500;
    color: #f1f1f1 !important; /* हल्का सफ़ेद रंग */
    margin-bottom: 12px;     /* हर लाइन के बीच गैप */
    display: flex;
    align-items: center;
    gap: 13px;               /* आइकॉन और टेक्स्ट के बीच गैप */
}

.feature-list-v511 li i {
    color: #67C949;          /* टिक मार्क का हरा रंग */
    font-size: 22px;
}

/* 9. बटन स्टाइल (Action Button) */
.btn-main-v511 {
    display: inline-block;
    background-color: #67C949;
    color: #ffffff !important;
    padding: 16px 45px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(103, 201, 73, 0.4);
    position: relative;
    z-index: 11 !important; /* बटन को सबसे ऊपर रखने के लिए */
}

.btn-main-v511:hover {
    background-color: #ffffff;
    color: #004d40 !important; /* होवर पर गहरा हरा टेक्स्ट */
    transform: translateY(-4px); /* बटन हल्का ऊपर उठेगा */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 10. स्लाइडर डॉट्स (Pagination) */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 9px !important;
    background: #ffffff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #67C949 !important; /* एक्टिव डॉट का रंग */
    width: 30px !important; /* एक्टिव डॉट को थोड़ा लम्बा (Capsule) लुक देने के लिए */
    border-radius: 10px !important;
}

/* PS-SLIDER-V514: MOBILE RESPONSIVE */

@media (max-width: 768px) {
    .heroSwiper {
        height: auto !important; 
        aspect-ratio: 16 / 9; /* इमेज सिकुड़ेगी नहीं */
        min-height: 280px; /* कम से कम इतनी हाइट ताकि कंटेंट समा सके */
    }

    .swiper-slide {
        background-size: cover !important; 
        background-position: center center !important;
        /* कंटेंट को थोड़ा ऊपर की तरफ शिफ्ट करें ताकि नीचे जगह बचे */
        justify-content: center !important; 
        align-items: center !important;
        padding: 10px !important;
    }

    .banner-content-v511 {
        padding: 0 !important;
        text-align: center !important;
        width: 100%;
        /* कंटेंट को थोड़ा ऊपर उठाने के लिए */
        margin-top: -10px; 
    }

    .banner-h1 {
        font-size: 34px !important; /* हेडिंग का साइज छोटा किया */
        line-height: 1.2 !important;
		font-weight: 900 !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

/* टाइपिंग वाले पूरे टेक्स्ट को बोल्ड करने के लिए */
    .typing-text {
        font-weight: 900 !important; /* ज्यादा बोल्ड (मोटा) करने के लिए */
        letter-spacing: 0.5px;      /* टेक्स्ट को और साफ़ दिखाने के लिए */
    }

    /* टाइपिंग टेक्स्ट के नीचे वाले पॉइंट्स (दिखाना चाहते हैं तो इसे इस्तेमाल करें) */
    .feature-list-v511 {
        display: block !important; /* अब यह दिखेगा */
        margin-bottom: 15px !important;
    }

    .feature-list-v511 li {
        font-size: 16px !important; /* टेक्स्ट बहुत छोटा ताकि फिट आए */
        margin-bottom: 10px !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .feature-list-v511 li i {
        font-size: 22px !important; /* टिक आइकॉन छोटा */
    }

    /* बटन को मोबाइल पर छोटा और साफ़ दिखाएँ */
    .btn-main-v511 {
        display: inline-block !important; /* अब बटन दिखेगा */
        padding: 9px 22px !important;
        font-size: 16px !important;
        border-radius: 6px !important;
		margin-top: 10px !important;
		
    }
}


/* =========================================
   PREMIUM EARNINGS BANNER (FULL WIDTH)
========================================= */

/* 1. डेस्कटॉप सेटिंग्स (Desktop View) */
.premium-banner-section {
    position: relative;
    background: linear-gradient(135deg, #004d40 0%, #009688 100%) !important;
    
    /* 👇 [IMP] ऊँचाई कम/ज्यादा करने के लिए इस '50px' को बदलें */
    /* अगर ऊँचाई बढ़ानी है तो 80px करें, कम करनी है तो 30px करें */
    padding: 20px 10px !important; 
    
    color: white;
    
    /* 👇 इसे फुल स्क्रीन (Full Width) करने का कोड */
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important; /* ऊपर-नीचे थोड़ा गैप, साइड में 0 */
    
    border-radius: 0 !important; /* कोने सीधे रहेंगे (फुल पट्टी) */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.2);
}

/* हेडिंग और बटन के बीच का गैप */
.banner-content h2 {
    font-size: 32px; /* फोंट थोड़ा बड़ा (फुल स्क्रीन पर अच्छा दिखेगा) */
    font-weight: 700;
    margin-bottom: 25px !important; /* टेक्स्ट और बटन के बीच की दूरी */
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-content h2 span {
    font-size: 36px;
    color: #ffeb3b;
    font-weight: 700;
}

/* बटन कंटेनर */
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* बटन स्टाइल */
.btn-premium-fill,
.btn-premium-outline {
    padding: 10px 30px; /* बटन का साइज */
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* बटन कलर्स */
.btn-premium-fill { background-color: white; color: #009688; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-premium-fill:hover { background-color: #009688; color: white !important; transform: translateY(-2px); }

.btn-premium-outline { background-color: transparent; border: 2px solid rgba(255,255,255,0.7); color: white; }
.btn-premium-outline:hover { background-color: #009688; border-color: #009688; transform: translateY(-2px); }


/* 2. मोबाइल सेटिंग्स (Mobile View) */
@media (max-width: 768px) {
    
    /* बैनर की ऊँचाई और मार्जिन सेटिंग */
    .premium-banner-section {
        width: 100% !important;
        margin: 10px 0 !important;
        padding: 16px 10px !important; 
    }

    .banner-content h2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .banner-content h2 span {
        font-size: 22px !important;
    }

    /* बटन कंटेनर */
    .banner-buttons {
        flex-direction: row !important;
        gap: 8px !important; /* बटनों के बीच का गैप */
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }

    /* 👇 यहाँ से बटन की चौड़ाई कम होगी */
    .btn-premium-fill,
    .btn-premium-outline {
        /* 1. खींचना बंद करें (Stop Stretching) */
        flex: initial !important; 
        width: auto !important;
        
        /* 2. बटन के अंदर की जगह कम करें (8px 10px = कम चौड़ाई) */
        padding: 10px 30px !important; 
        
        /* 3. टेक्स्ट साइज */
        font-size: 13px !important;
        
        text-align: center;
        white-space: nowrap;
    }
    
    .btn-premium-fill i, 
    .btn-premium-outline i {
        font-size: 10px !important;
    }
}




/* ========== SERVICE SECTION (COMMON) ========== */
.ps-service-section {
  padding: 40px 0;
  background: #f7fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ps-service-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Heading */
.ps-service-header {
  text-align: center;
  margin-bottom: 35px;
}

.ps-service-header .ps-badge {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  background: #67C949;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ps-service-header h2 {
  margin-top: 16px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
}

.ps-service-header h2 span {
  color: #67C949;
}

/* MAIN CARD (DESKTOP) */
.ps-service-wrapper {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  padding: 32px;
  display: flex;
  gap: 24px;
}

/* LEFT VERTICAL TABS – DESKTOP */
.ps-service-tabs {
  width: 260px;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.ps-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border: none;
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.95rem;
  color: #374151;
  cursor: pointer;
  transition: 0.25s ease;
  border-radius: 10px;                /* square with slight round */
  font-weight: 600;   /* yahan update karo */
}

.ps-tab-btn + .ps-tab-btn {
  margin-top: 10px;
}

.ps-tab-btn i:first-child {
  color: #67C949;
  font-size: 1.1rem;
}

.ps-tab-btn span {
  flex: 1;
  text-align: left;
}

.ps-tab-arrow {
  color: #9ca3af;
  font-size: 0.8rem;
}

.ps-tab-btn:hover {
  background: #f9fafb;
}

/* DESKTOP ACTIVE – white + thin teal bottom fill */
.ps-tab-btn.active {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 90%,
    #14b8a6 90%,
    #14b8a6 100%
  );
  color: #06733a;
  box-shadow: 0 6px 15px rgba(103,201,73,0.35);
}

.ps-tab-btn.active i,
.ps-tab-btn.active .ps-tab-arrow {
  color: #14b8a6;
}

/* RIGHT CONTENT – DESKTOP */
.ps-service-content {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.ps-service-pane {
  display: none;
  width: 100%;
  align-items: center;
  gap: 30px;
}

.ps-service-pane.active {
  display: flex;
}

.ps-service-image img {
  max-width: 390px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 14px 40px rgba(15,23,42,0.18);
}

.ps-service-text h3 {
  font-size: 1.47rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 10px;
}

.ps-service-text p {
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;   /* yahan se text justify ho jayega */
}

.ps-service-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.ps-service-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: #111827;
  font-weight: 600;      /* yahi add karo – sab tick points bold */
}

.ps-service-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #67C949;
  font-weight: 700;
}

.ps-service-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #67C949;
  color: #67C949;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.ps-service-btn:hover {
  background: #67C949;
  color: #ffffff;
}

/* ====MOBILE TABS ==== */
.ps-service-tabs-mobile {
  display: none;
}

@media (max-width: 991px) {

  .ps-service-wrapper {
    flex-direction: column;
    padding: 20px 14px 22px;
  }

  .ps-service-tabs {
    display: none;
  }

  /* TOP GREEN STRIP */
  .ps-service-tabs-mobile {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 20px;
    background: #67C949;
    border-radius: 10px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* SCROLLBAR – teal line + big arrows */
  .ps-service-tabs-mobile::-webkit-scrollbar {
    height: 8px;
  }
  .ps-service-tabs-mobile::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 999px;
  }
  .ps-service-tabs-mobile::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 999px;
  }
  .ps-service-tabs-mobile::-webkit-scrollbar-button:single-button:horizontal:decrement {
    width: 22px;
    background: transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #6b7280 transparent transparent;
  }
  .ps-service-tabs-mobile::-webkit-scrollbar-button:single-button:horizontal:increment {
    width: 22px;
    background: transparent;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #6b7280;
  }

  /* MOBILE TAB – square + slight round, height thodi badhi */
  .ps-tab-chip {
    flex: 0 0 auto;
    height: 42px;             /* jo height sahi lage le lo */
    padding: 0 0;             /* vertical padding 0 */
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.2s ease;
  }

  .ps-tab-chip i {
    font-size: 0.95rem;
    color: #ffffff;
  }

  .ps-tab-chip-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;             /* inner bhi same height */
  }

  /* ACTIVE – white square pill with thin teal bottom fill */
  .ps-tab-chip.active {
    padding: 0;
    border-radius: 10px;
    background: transparent;
  }

 .ps-tab-chip.active .ps-tab-chip-inner {
    padding: 0 20px;          /* side padding only */
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 90%,
      #14b8a6 90%,
      #14b8a6 100%
    );
    color: #06733a;
  }

  .ps-tab-chip.active i {
    color: #14b8a6;
  }

  .ps-tab-chip::after,
  .ps-tab-chip-inner::after {
    content: none;
  }

  /* CONTENT – mobile column */
  .ps-service-content {
    margin-top: 16px;
  }
  .ps-service-pane,
  .ps-service-pane.active {
    flex-direction: column;
    text-align: left;
    align-items: center;
  }
  .ps-service-image img {
    max-width: 420px;
    margin: 0 0 15px 0;
    border-radius: 16px;
  }
  .ps-service-text {
    width: 100%;
  }
}

/*  EXTRA SMALL */
@media (max-width: 575px) {
  .ps-service-section { padding: 50px 0; }
  .ps-service-header h2 { font-size: 1.8rem; }
  .ps-service-wrapper { border-radius: 18px; }
}




/* ==============================
     V610:PARTNERSHIP SECTION 
   ==============================*/
.ps-partnership-full {
    padding: 10px 0;
    background: radial-gradient(circle at top, #f0fbff 0, #ffffff 55%);
}

/* --- Main Heading Styling --- */
.ps-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.ps-section-header .ps-sub-title {
    color: #67C949;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2.5px;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(103,201,73,0.08);
    margin-bottom: 14px;
}

.ps-section-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #002b26;
    line-height: 1.25;
    margin-bottom: 12px;
}

.ps-section-header h2 span {
    color: #00a3a3; /* teal highlight */
}

.ps-section-header p {
    font-size: 15.5px;
    color: #4a5568;
    line-height: 1.8;
}

/* --- Flat row layout (NO cards) --- */
.ps-partner-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 0;                    /* sirf vertical padding */
    border-bottom: 1px solid #e5edf9;   /* halki divider line */
}

.ps-partner-row:last-child {
    border-bottom: none;                /* last ke niche line nahin */
    padding-bottom: 0;
}

.ps-img-col { flex: 0 0 40%; max-width: 40%; text-align: center; }
.ps-text-col { flex: 0 0 60%; max-width: 60%; padding: 0 40px; }

.ps-img-box img {
    width: 90%;
    border-radius: 35px;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,0.14));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ps-partner-row:hover .ps-img-box img {
    transform: translateY(-4px);
    filter: drop-shadow(0 24px 55px rgba(0,0,0,0.18));
}

/* --- Text Block --- */
.ps-partner-content h2 {
    font-size: 32px;
    font-weight: 850;
    color: #002b26;
    margin-bottom: 8px;
}

.ps-partner-content h2 span {
    color: #67C949;
}

.ps-teal-tagline {
    font-size: 17px;
    font-weight: 700;
    color: #008080;
    display: block;
    margin-bottom: 18px;
}

.ps-para-group p {
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 12px;
}

/* --- 9-Point Pills (same, thoda subtle) --- */
.ps-pill-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 22px;
}

.ps-pill-point {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 9px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: 0.25s ease;
    cursor: default;
}

.ps-pill-point i {
    background: #67C949;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.ps-pill-point span {
    font-size: 12.5px;
    font-weight: 700;
    color: #0b4b46;
}

.ps-pill-point:hover {
    background: #008080;
    border-color: #008080;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,128,128,0.25);
}
.ps-pill-point:hover span { color: #ffffff; }

/* --- Buttons (teal main, solid green) --- */
.ps-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.btn-ps-main,
.btn-ps-outline {
    padding: 13px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.25s ease;
    border: none;
}

/* PRIMARY – TEAL GRADIENT */
.btn-ps-main {
    background: linear-gradient(135deg, #00a3a3, #008080);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(0,128,128,0.45);
}
.btn-ps-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,128,128,0.60);
}

/* SECONDARY – SOLID GREEN BOX */
.btn-ps-outline {
    background: #67C949;
    color: #ffffff !important;
    border: 2px solid #67C949;
}
.btn-ps-outline:hover {
    background: #51b536;
    border-color: #51b536;
    box-shadow: 0 10px 24px rgba(103,201,73,0.55);
    transform: translateY(-2px);
}

/* --- Responsive View --- */
@media (max-width: 991px) {
    .ps-partnership-full {
        padding: 70px 0;
    }

    .ps-partner-row {
        flex-direction: column !important;
        text-align: center;
        padding: 24px 0;
        margin-bottom: 10px;
    }

    .ps-img-col,
    .ps-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .ps-text-col {
        margin-top: 28px;
    }

    .ps-pill-grid-9 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ps-btn-group {
        justify-content: center;
    }

    .btn-ps-main,
    .btn-ps-outline {
        width: 100%;
    }

    .ps-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .ps-section-header h2 {
        font-size: 26px;
    }

    .ps-partner-content h2 {
        font-size: 24px;
    }
}



/* V559: WHY TRUST SECTION CSS – ALT TEAL / GREEN FILLED BOXES */

/* 1. Section Container */
.ps-why-trust-v558 {
    padding: 60px 0; /* Compact Height */
    background: #ffffff;
    overflow: hidden;
}

/* 2. Main Heading */
.ps-trust-header-v558 {
    text-align: center;
    margin-bottom: 45px;
}

.ps-trust-header-v558 h2 {
    font-size: 34px;
    font-weight: 900;
    color: #002b26;
    letter-spacing: -1px;
}

/* 3. Trust Cards – FILLED + ALTERNATE COLORS */
.ps-trust-card-v558 {
    border: 1px solid #e2e8f0;
    padding: 15px 20px;          /* Reduced internal space */
    border-radius: 15px;
    margin-bottom: 15px;         /* Compact gap between boxes */
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    color: #ffffff;              /* Text white on colored background */
}

/* ODD cards – TEAL fill */
.ps-trust-card-v558:nth-child(odd) {
    background: linear-gradient(135deg, #009688, #00796b);
    border-color: #00796b;
}

/* EVEN cards – GREEN fill */
.ps-trust-card-v558:nth-child(even) {
    background: linear-gradient(135deg, #67C949, #51b536);
    border-color: #51b536;
}

/* Green/teal Glow & Slide Effect on Hover */
.ps-trust-card-v558:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

/* ODD hover – brighter teal */
.ps-trust-card-v558:nth-child(odd):hover {
    background: linear-gradient(135deg, #00b3a3, #009688);
}

/* EVEN hover – brighter green */
.ps-trust-card-v558:nth-child(even):hover {
    background: linear-gradient(135deg, #7be157, #67C949);
}

/* 4. Icon Styling */
.ps-icon-v558 {
    font-size: 20px;
    color: #ffffff;              /* White icon on fills */
    margin-bottom: 8px;
    display: inline-block;
    transition: 0.3s;
}

.ps-trust-card-v558:hover .ps-icon-v558 {
    transform: scale(1.2) rotate(5deg);
}

/* 5. Typography inside Cards */
.ps-trust-card-v558 h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;              /* White heading */
    margin-bottom: 6px;
    transition: 0.3s;
}

.ps-trust-card-v558 p {
    font-size: 13.5px;
    color: #f9fafb;              /* Light text on darkish bg */
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 0;
}

/* 6. Center Image Floating Animation */
.ps-trust-img-anim {
    text-align: center;
    padding: 20px 0;
}

.ps-trust-img-anim img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: psFloatingEffect 4s ease-in-out infinite;
}

@keyframes psFloatingEffect {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px); /* Moves up by 20px */
    }
    100% {
        transform: translateY(0px);
    }
}

/* 7. Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .ps-why-trust-v558 {
        padding: 40px 0;
    }
    .ps-trust-card-v558 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
    .ps-trust-card-v558:hover {
        transform: translateY(-5px); /* Vertical lift for mobile */
    }
    .ps-trust-img-anim {
        margin: 30px 0;
    }
    .ps-trust-img-anim img {
        max-width: 60%;
    }
}







/* ===== LOVE PAYSARAL SECTION ===== */

.ps-love {
  padding: 10px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,163,163,0.06) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(103,201,73,0.06) 0, transparent 55%),
    #ffffff;
}

.ps-love-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.ps-love-head h2 {
  font-size: 34px;
  font-weight: 900;
  color: #012b23;
  margin-bottom: 12px;
}

.ps-love-head h2 span {
  color: #00a3a3;
}

.ps-love-head p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
}

/* Cards */

.ps-love-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ps-love-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ps-love-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,163,163,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.ps-love-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15,23,42,0.12);
}

.ps-love-card:hover::before {
  opacity: 1;
}

/* Middle card highlight */

.ps-love-card--highlight {
  background: linear-gradient(135deg, #ecfdf3 0, #e0f7f7 40%, #ffffff 100%);
  border-color: rgba(0,163,163,0.25);
}

.ps-love-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00a3a3, #67C949);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 12px 26px rgba(0,163,163,0.45);
}

.ps-love-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  color: #022c22;
  margin-bottom: 8px;
}

.ps-love-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

/* Bottom band */

.ps-love-footer {
  padding: 18px 22px;
  border-radius: 20px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #e5e7eb;
}

.ps-love-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.ps-love-num-block {
  min-width: 120px;
}

.ps-love-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #67C949, #bbf7d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-love-label {
  display: block;
  font-size: 13px;
  color: #cbd5f5;
}

.ps-love-btn {
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a3a3, #008080);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,128,128,0.55);
  transition: 0.25s ease;
}

.ps-love-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,128,128,0.7);
}

/* Responsive */

@media (max-width: 991px) {
  .ps-love {
    padding: 70px 0;
  }

  .ps-love-grid {
    grid-template-columns: 1fr;
  }

  .ps-love-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ps-love-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .ps-love-head h2 {
    font-size: 26px;
  }

  .ps-love-num {
    font-size: 20px;
  }
}





/* =======================================================
   V566: PROFESSIONAL LIVE COUNTER SECTION (DETAILED)
   ======================================================= */

/* 1. Main Section Container */
.ps-stats-v561 {
    padding: 40px 0;           /* ऊपर और नीचे से पर्याप्त जगह */
    background-color: #ffffff; /* बैकग्राउंड को साफ़ सफेद रखा है */
    position: relative;
    overflow: hidden;
}

/* 2. Section Heading Styling */
.ps-stats-header {
    text-align: center;
    margin-bottom: 50px;       /* हेडिंग और बॉक्स के बीच का गैप */
}

.ps-stats-header p {
    color: #67C949;            /* PaySaral Green */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;     /* अक्षरों के बीच की दूरी */
    margin-bottom: 8px;
}

.ps-stats-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #002b26;            /* गहरा नीला/काला रंग */
    margin: 0;
}

/* 3. Individual Stat Card Styling */
.ps-stat-card {
    text-align: center;
    padding: 16px 10px;        /* बॉक्स के अंदर की जगह */
    background-color: #f8fafc; /* हल्का ग्रे/नीला बैकग्राउंड */
    border-radius: 16px;       /* कोनों की गोलाई */
    border: 1px solid #e2e8f0; /* हल्की बॉर्डर */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* स्मूथ एनीमेशन */
    height: 100%;              /* सभी बॉक्स एक बराबर दिखेंगे */
    min-height: 100px;         /* कम और फिक्स हाइट */
    display: flex;
    flex-direction: column;    /* कंटेंट को ऊपर-नीचे अलाइन करने के लिए */
    justify-content: center;
    align-items: center;
    cursor: default;
}

/* 4. Card Hover Effects */
.ps-stat-card:hover {
    background-color: #008080 !important; /* होवर पर Teal बैकग्राउंड */
    border-color: #008080 !important;     /* बॉर्डर भी Teal हो जाएगी */
    transform: translateY(-5px);          /* हल्का सा ऊपर उठने वाला इफेक्ट */
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.15); /* नीचे हल्की परछाई */
}

/* 5. Icon Inside Card */
.ps-stat-card i {
    font-size: 30px;           /* आइकॉन का साइज */
    color: #67C949;            /* डिफ़ॉल्ट ग्रीन रंग */
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

/* 6. Counter Number Wrapper */
.ps-stat-card .counter-wrapper {
    font-size: 30px;
    font-weight: 900;
    color: #002b26;            /* नंबर्स का गहरा रंग */
    margin-bottom: 4px;
    line-height: 1;
    transition: color 0.3s ease;
}

/* 7. Bottom Label Text */
.ps-stat-card p.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;            /* हल्का ग्रे रंग */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* 8. THE WHITE FIX: Forced White Text on Hover */
/* यह सुनिश्चित करता है कि होवर पर सब कुछ साफ़ सफेद दिखे */
.ps-stat-card:hover i, 
.ps-stat-card:hover .counter-wrapper,
.ps-stat-card:hover .counter-wrapper span,
.ps-stat-card:hover p.stat-label {
    color: #ffffff !important; /* !important ताकि कोई और CSS इसे न बदल सके */
}

/* 9. Mobile Responsive Detail */
@media (max-width: 991px) {
    .ps-stats-v561 { padding: 50px 0; }
    .ps-stats-header h2 { font-size: 28px; }
    .ps-stat-card { min-height: 130px; padding: 20px 10px; }
}






/* V449: PREMIUM APP DOWNLOAD SECTION – FULL WIDTH */

/* Section ko full width background */
.ps-app-v449 {
    padding: 10px 0 !important;
    background: #ffffff;
    width: 100%;
}

/* Card ko bhi full width (container ke andar) */
.ps-app-card-v449 {
    background: linear-gradient(135deg, #004d40 0%, #009688 100%);
    border-radius: 0;          /* agar bilkul edge to edge chahiye */
    padding: 30px 50px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 77, 64, 0.25);
    width: 100%;
}

/* Agar container class use kar rahe ho (Bootstrap etc.) to usko bhi full width karo: */
.ps-app-v449 .container,
.ps-app-v449 .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}


.ps-app-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ps-app-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.ps-app-title span { color: #ffc107; }

.ps-app-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 550px;
}

/* पहली लाइन सफ़ेद */
.ps-line-white {
    color: #ffffff !important;
}


/* दूसरी लाइन हरा (Paysaral Green) */
.ps-line-green {
    color: #67C949 !important; /* Bright Green / You can use #009688 too */
}

/* App Buttons & QR */
.ps-app-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.ps-play-store-btn img {
    height: 60px;
    transition: 0.3s;
}
.ps-play-store-btn:hover img { transform: scale(1.05); }

.ps-qr-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.4);
}
.ps-qr-wrap i { font-size: 30px; }
.ps-qr-wrap span { font-size: 0.75rem; font-weight: 700; text-align: left; }

/* Stats Row */
.ps-app-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.stat-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }
.stat-item { font-size: 0.9rem; opacity: 0.95; }

/* Image Animation */
.ps-mobile-mockup {
    max-width: 40%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Responsive */
@media (max-width: 991px) {
    .ps-app-card-v449 { padding: 40px 30px; border-radius: 30px; }
    .ps-app-title { font-size: 2rem; }
    .ps-app-btns, .ps-app-stats { justify-content: center; flex-direction: column; }
    .stat-sep { display: none; }
}


/* ===== LOVE PAYSARAL SECTION ===== */

.ps-love {
  padding: 90px 0;
  background: #ffffff;
}

.ps-love-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.ps-love-head h2 {
  font-size: 34px;
  font-weight: 900;
  color: #012b23;
  margin-bottom: 12px;
}

.ps-love-head h2 span {
  color: #67C949;
}

.ps-love-head p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
}

/* Cards */

.ps-love-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ps-love-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ps-love-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.ps-love-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15,23,42,0.12);
}

.ps-love-card:hover::before {
  opacity: 0;
}

/* Middle card highlight */

.ps-love-card--highlight {
  background: #ffffff;
  border-color: #e5e7eb;
}

.ps-love-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00a3a3, #67C949);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 12px 26px rgba(0,163,163,0.45);
}

.ps-love-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  color: #022c22;
  margin-bottom: 8px;
}

.ps-love-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

/* Bottom band */

.ps-love-footer {
  padding: 18px 22px;
  border-radius: 20px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #e5e7eb;
}

.ps-love-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.ps-love-num-block {
  min-width: 120px;
}

.ps-love-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #67C949, #bbf7d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-love-label {
  display: block;
  font-size: 13px;
  color: #cbd5f5;
}

.ps-love-btn {
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a3a3, #008080);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,128,128,0.55);
  transition: 0.25s ease;
}

.ps-love-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,128,128,0.7);
}

/* Responsive */

@media (max-width: 991px) {
  .ps-love {
    padding: 70px 0;
  }

  .ps-love-grid {
    grid-template-columns: 1fr;
  }

  .ps-love-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ps-love-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .ps-love-head h2 {
    font-size: 26px;
  }

  .ps-love-num {
    font-size: 20px;
  }
}




/* =======================================================
   V570: LOGO SLIDER WITH GUARANTEED CENTER HEADING
   ======================================================= */

.ps-partners-slider {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* --- Heading Ko Center Me Rakhne Ki Force Settings --- */
.ps-slider-header {
    width: 100%;
    text-align: center !important; /* Force Center */
    margin-bottom: 40px;
}

.ps-slider-header h2 {
    font-size: 28px;
    font-weight: 850;
    color: #002b26;
    display: inline-block; /* Center hone me madad karega */
}

.ps-slider-header h2 span {
    color: #67C949; /* PaySaral Green */
}

/* Slider Track Logic */
.ps-logos-wrapper {
    width: 100%;
    display: flex;
}

.ps-logos-track {
    display: flex;
    /* (Width of box 220px) * (Total Logos 14) */
    width: calc(220px * 14); 
    animation: psScrollLoop 35s linear infinite;
    align-items: center;
}

/* Logo Container - Sabka Size Ek Jaisa */
.ps-single-logo {
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    flex-shrink: 0;
}

/* Logo Image Fix - Gol aur Lambe sab barabar dikhenge */
.ps-single-logo img {
    width: auto;
    max-width: 160px;  /* Width control */
    max-height: 60px;  /* Height control for circular logos */
    object-fit: contain; 
    /*  filter: grayscale(100%);
    opacity: 0.5;*/ 
    transition: all 0.4s ease;
}

/* Hover Effect */
.ps-single-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Smooth Infinite Loop Animation */
@keyframes psScrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 7)); } 
}

/* Side Blur/Fade Effects */
.ps-partners-slider::before,
.ps-partners-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.ps-partners-slider::before {
    left: 0; top: 0;
    background: linear-gradient(to right, white 10%, rgba(255,255,255,0) 100%);
}
.ps-partners-slider::after {
    right: 0; top: 0;
    background: linear-gradient(to left, white 10%, rgba(255,255,255,0) 100%);
}



/* ==========================================================================
   V588: PREMIUM ENQUIRY SECTION (FULL ARCHITECTURE & DETAILED)
   ========================================================================== */

/* 1. SECTION WRAPPER
   पूरे सेक्शन का मुख्य कंटेनर जो ऊपर और नीचे से सांस लेने की जगह (Padding) देता है। */
.ps-enquiry-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff; /* साफ़ सफेद बैकग्राउंड */
    font-family: 'Inter', sans-serif;
}

/* 2. TOP MAIN HEADLINE
   सेक्शन के शीर्ष पर स्थित मुख्य हेडिंग। */
.ps-enquiry-main-header {
    text-align: center;
    margin-bottom: 60px;
}

.ps-enquiry-main-header h2 {
    font-size: 40px;
    font-weight: 900;
    color: #002b26; /* डार्क ब्रांड कलर */
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.ps-enquiry-main-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3. LEFT TRUST PANEL
   बाईं ओर का हिस्सा जहाँ हम अपनी खूबियाँ (Features) दिखा रहे हैं। */
.ps-trust-panel {
    padding-right: 50px; /* फॉर्म से थोड़ी दूरी */
}

.ps-trust-badge {
    background-color: #e6fffa;
    color: #008080;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.ps-trust-panel h2 {
    font-size: 44px;
    font-weight: 900;
    color: #002b26;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* 4. FEATURE ITEMS (LEFT SIDE HOVER EFFECTS)
   यहाँ हमने ब्लैक/व्हाइट हटाकर "Vibrant Green & Teal" इफ़ेक्ट दिया है। */
.ps-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f8fafc;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    border-left: 6px solid #67C949; /* डिफ़ॉल्ट टील बॉर्डर */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* बाउंस एनीमेशन */
    cursor: default;
}

/* Feature Item Hover State */
.ps-feature-item:hover {
    background-color: #f0fdf4; /* हल्का हरा बैकग्राउंड */
    border-left: 6px solid #008080; /* होवर पर ब्राइट ग्रीन */
    transform: translateX(2px); /* दाईं ओर खिसकना */
    box-shadow: 0 15px 30px rgba(103, 201, 73, 0.15); /* ग्रीन ग्लो परछाई */
}

/* Feature Icon */
.ps-feature-item i {
    font-size: 26px;
    color: #008080; /* टील आइकॉन */
    margin-right: 20px;
    transition: all 0.3s ease;
}

.ps-feature-item:hover i {
    color: #67C949; /* होवर पर ग्रीन आइकॉन */
    transform: rotate(-10deg) scale(1.15);
}

/* Feature Text */
.ps-feature-item span {
    font-weight: 700;
    font-size: 17px;
    color: #002b26;
}

/* 5. RIGHT FORM CARD
   दाहिनी ओर का व्हाइट कार्ड जिसमें एन्क्वायरी फॉर्म है। */
.ps-enquiry-card {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 30px 60px rgba(0, 43, 38, 0.08); /* प्रीमियम भारी परछाई */
}

.ps-form-group {
    margin-bottom: 22px;
    position: relative;
}

/* Input Icons */
.ps-form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #67C949; /* आइकॉन हमेशा ग्रीन रहेंगे */
    font-size: 17px;
    z-index: 2;
    pointer-events: none;
}

/* Textarea Icon Adjust */
.ps-form-group .fa-comment-dots {
    top: 25px;
    transform: none;
}

/* Inputs & Select Fields */
.ps-input {
    width: 100%;
    padding: 15px 20px 15px 55px; /* आइकॉन के लिए लेफ्ट पैडिंग */
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #002b26;
    background-color: #f8fafc;
    transition: all 0.3s ease-in-out;
    outline: none;
}

/* Dropdown Arrow Styling */
select.ps-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2367C949' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* Input Focus Effect */
.ps-input:focus {
    border-color: #67C949;
    background-color: #ffffff;
    box-shadow: 0 0 0 5px rgba(103, 201, 73, 0.12);
}

/* Submit Button */
.ps-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #008080;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.ps-submit-btn:hover {
    background-color: #67C949;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.25);
}

/* 6. RESPONSIVE MEDIA QUERIES
   मोबाइल और टैबलेट के लिए एडजस्टमेंट। */
@media (max-width: 991px) {
    .ps-enquiry-section { padding: 60px 0; }
    .ps-trust-panel { padding-right: 0; text-align: center; margin-bottom: 50px; }
    .ps-trust-panel h2 { font-size: 34px; }
    .ps-enquiry-card { padding: 30px; }
    .ps-feature-item:hover { transform: translateX(8px); }
}







/* =======================================================
   V607: MASTER TESTIMONIAL SLIDER - DETAILED & CLEAN
   ======================================================= */

.ps-testimonial-ultra {
    padding: 30px 0;
    background-color: #f8fbfa;
    overflow: hidden;
    width: 100%;
}

/* Section Header */
.ps-testi-main-header {
    text-align: center;
    margin-bottom: 50px;
}

.ps-testi-main-header h2 {
    font-size: 36px;
    font-weight: 950;
    color: #002b26;
}

/* Slider Track Logic */
.ps-testi-track {
    display: flex;
    width: max-content;
    gap: 25px;
    padding: 20px 0;
    /* Speed set to 50s for 20+20 cards to be smooth */
    animation: psSeamlessLoop 90s linear infinite;
}

/* Pause on hover */
.ps-testi-track:hover {
    animation-play-state: paused;
}

/* Seamless Loop Animation */
@keyframes psSeamlessLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Card Design */
.ps-ultra-card {
    flex: 0 0 350px;
    height: 200px;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.ps-ultra-card:hover {
    transform: translateY(-8px);
    border-color: #27ae60;
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.12);
}

.ps-ultra-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

/* Profile Section */
.ps-ultra-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}

.ps-avatar-green {
    width: 50px;
    height: 50px;
    background: #27ae60;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ps-user-info h5 {
    font-size: 17px;
    font-weight: 800;
    color: #004d40;
    margin: 0;
}

.ps-user-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Ratings */
.ps-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.ps-num-badge {
    background: #ff9800;
    color: white;
    padding: 1px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.ps-orange-stars {
    color: #ff9800;
    font-size: 11px;
}

/* Footer (Tag & Verified) */
.ps-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.ps-service-tag {
    background: #e0f2f1;
    color: #00796b;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.ps-verified-tick {
    color: #27ae60;
    font-weight: 800;
    font-size: 13px;
}

/* HOW IT WORKS - NEW GRID DESIGN */
.ps-how-works-new {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

/* Section Header */
.ps-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.ps-badge {
    display: inline-block;
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.ps-section-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ps-section-head h2 .ps-highlight {
    color: #67C949;
}

.ps-section-head p {
    font-size: 16px;
    color: #546e7a;
}

/* Steps Grid - 4 COLUMNS (Desktop) */
.ps-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

/* Individual Step Card */
.ps-work-step {
    background: white;
    padding: 25px 20px 80px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
    min-height: 380px;
}

.ps-work-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 150, 136, 0.15);
    border-color: #009688;
}

/* Number Badge - GREEN */
.ps-work-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #67C949, #51b536);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(103, 201, 73, 0.4);
    transition: all 0.3s ease;
}

.ps-work-step:hover .ps-work-number {
    background: linear-gradient(135deg, #51b536, #3d9e2a);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(103, 201, 73, 0.5);
}

/* Icon - TEAL BACKGROUND */
.ps-work-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009688, #00796b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.ps-work-icon i {
    font-size: 32px;
    color: white;
}

.ps-work-step:hover .ps-work-icon {
    background: linear-gradient(135deg, #00796b, #00695c);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.5);
}

/* Content */
.ps-work-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #004d40;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.ps-work-step p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}

/* Features - DESKTOP: fixed at bottom, vertical */
.ps-work-features {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
}

.ps-work-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: white;
    font-weight: 600;
    min-width: 160px;
}

/* TOP BOX - GREEN */
.ps-work-features span:nth-child(1) {
    background: linear-gradient(135deg, #67C949, #51b536);
    box-shadow: 0 2px 8px rgba(103, 201, 73, 0.3);
}

/* BOTTOM BOX - TEAL */
.ps-work-features span:nth-child(2) {
    background: linear-gradient(135deg, #009688, #00796b);
    box-shadow: 0 2px 8px rgba(0, 150, 136, 0.3);
}

.ps-work-features i {
    color: white;
    font-size: 12px;
}

/* CTA Section */
.ps-work-cta {
    background: linear-gradient(135deg, #004d40 0%, #00695c 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 77, 64, 0.3);
}

.ps-work-cta h3 {
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.ps-work-cta p {
    font-size: 16px;
    color: #b2dfdb;
    margin-bottom: 25px;
}

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

.ps-btn-primary,
.ps-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ps-btn-primary {
    background: linear-gradient(135deg, #67C949, #51b536);
    color: white;
    box-shadow: 0 6px 20px rgba(103, 201, 73, 0.4);
}

.ps-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(103, 201, 73, 0.6);
    color: white;
}

.ps-btn-secondary {
    background: white;
    color: #004d40;
}

.ps-btn-secondary:hover {
    background: #f1f8f6;
    transform: translateY(-3px);
    color: #004d40;
}

/* =================== RESPONSIVE =================== */

/* Tablet: 2 columns */
@media (max-width: 1199px) {
    .ps-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 column + features in one line center */
@media (max-width: 767px) {
    .ps-how-works-new {
        padding: 40px 0;
    }

    .ps-section-head h2 {
        font-size: 26px;
    }

    .ps-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ps-work-step {
        padding: 24px 18px 24px 18px;
        min-height: auto;
    }

    .ps-work-step h3 {
        font-size: 19px;
    }

    .ps-work-step p {
        font-size: 14px;
    }

    /* Mobile-specific layout for tick options */
    .ps-work-features {
        position: static;
        transform: none;
        margin-top: 12px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .ps-work-features span {
        min-width: auto;
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .ps-work-cta {
        padding: 28px 20px;
    }

    .ps-work-cta h3 {
        font-size: 22px;
    }

    .ps-work-buttons {
        flex-direction: column;
    }

    .ps-btn-primary,
    .ps-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small */
@media (max-width: 575px) {
    .ps-section-head h2 {
        font-size: 24px;
    }

    .ps-work-icon {
        width: 60px;
        height: 60px;
    }

    .ps-work-icon i {
        font-size: 28px;
    }

    .ps-work-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ps-work-features span {
        font-size: 11px;
        padding: 5px 8px;
    }
}



/* =======================================================
   V615: YOUTUBE SECTION - BOLD HEADING & BLACK-GREEN THEME
   ======================================================= */

.ps-video-section {
    padding: 40px 0;
    background-color: #fcfdfe;
    overflow: hidden; /* For smooth entrance without scrollbars */
}

/* Updated Bold Headline */
.ps-video-header {
    text-align: center;
    margin-bottom: 60px;
}

.ps-video-header h2 {
    font-size: 39px; /* Large professional size */
    font-weight: 900; /* Extra Bold */
    color: #000000; /* Primary Black */
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.ps-video-header h2 span {
    color: #67C949; /* PaySaral Green */
}

.ps-video-header p {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
}

/* Card Improvements */
.ps-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    height: 100%;
    transition: all 0.4s ease;
}

.ps-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(103, 201, 73, 0.15);
    border-color: #67C949;
}

/* 16:9 Aspect Ratio */
.ps-video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    background: #000;
}

.ps-video-thumb iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.ps-video-body { padding: 10px; }
.ps-video-body h4 { font-size: 20px; font-weight: 700; color: #002b26; margin-bottom: 10px; }
.ps-video-body p { font-size: 14.5px; color: #64748b; line-height: 1.6; }

.ps-video-tag {
    display: inline-block;
    background: #e0f2f1;
    color: #008080;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}






/* =======================================================
   V620: BACK TO TOP BUTTON - MODERN STYLE
   ======================================================= */

.ps-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* आपने चैट राइट में रखा है, इसलिए इसे लेफ्ट में सेट किया है */
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #008080, #67C949);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(103, 201, 73, 0.3);
    border: none;
    z-index: 1000;
    transition: all 0.4s ease;
    opacity: 0; /* शुरू में छुपा रहेगा */
    visibility: hidden;
    transform: translateY(20px);
}

.ps-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ps-back-to-top:hover {
    background: #67C949;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Chhota sa up-down ishara */
@keyframes psBounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ps-back-to-top i {
    animation: psBounceArrow 2s infinite;
}