* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* --- MAIN SLIDER SECTION CONTAINER --- */
.new-up-m1-slider-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 20px 0px 20px;
  padding-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
  font-family: 'Playfair Display', Georgia, serif;
}

.new-up-m1-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* --- TRACK & FADE SLIDES --- */
.new-up-m1-slider-track {
  position: relative;
  width: 100%;
  min-height: 880px; /* स्लाइड सामग्री की ऊँचाई के अनुसार फ़िक्स किया गया */
}

.new-up-m1-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  
  /* Smoky Fade & Scale Animation */
  transform: scale(0.97);
  transition: opacity 1.2s ease-in-out, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  pointer-events: none;
}

/* Active Slide - Smooth Fade In */
.new-up-m1-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* --- IMAGE WRAPPER & SOFT RADIAL VIGNETTE OVERLAY --- */
.new-up-m1-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 520px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-up-m1-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.5s ease-in-out;
}

.new-up-m1-hero-img.new-up-m1-loaded {
  opacity: 0.88;
}

/* Radial Vignette Effect */
.new-up-m1-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.6) 65%,
    rgba(255, 255, 255, 1) 95%
  );
}

/* --- CONTENT TEXT & TYPOGRAPHY --- */
.new-up-m1-content-box {
  width: 100%;
  max-width: 950px;
  padding: 0 15px;
  box-sizing: border-box;
}

.new-up-m1-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: #063430;
  line-height: 1.35;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 35px 0;
}

.new-up-m1-gold-text {
  color: #e5b038;
}

/* --- DOUBLE-BORDERED GOLD BUTTON --- */
.new-up-m1-btn-wrapper {
  display: flex;
  justify-content: center;
}

.new-up-m1-cta-btn {
  display: inline-block;
  background-color: #e5b038;
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 9px 24px;
  border: 1px solid #e5b038;
  outline: 2px solid #e5b038;
  outline-offset: 4px;
  transition: all 0.25s ease;
}

.new-up-m1-cta-btn:hover {
  background-color: #d29d28;
  border-color: #d29d28;
  outline-color: #d29d28;
  transform: translateY(-2px);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 900px) {
  .new-up-m1-slider-track {
    min-height: 480px;
  }
  .new-up-m1-image-wrapper {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .new-up-m1-slider-section {
    padding: 25px 15px 40px 15px;
  }

  .new-up-m1-slider-track {
    min-height: 420px;
  }

  .new-up-m1-image-wrapper {
    height: 240px;
    margin-bottom: 20px;
  }

  .new-up-m1-heading {
    letter-spacing: 0.4px;
    margin-bottom: 25px;
  }

  .new-up-m1-cta-btn {
    padding: 7px 18px;
    outline-offset: 3px;
  }
}

.new-up-m1-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.new-up-m1-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}


/* Slider ko chhipane aur track ko position dene ke liye badlav */
.page-01-slogan-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin-bottom: 16px;
    aspect-ratio: 16 / 9;
    overflow: hidden; /* Yeh zaroori hai taaki baki images chhip sakein */
}

/* Naya track jo images ko ek line me rakhega aur smooth chalega */
.page-01-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Ultra smooth slide effect */
}

/* Images slider track ke mutabik set ho jayengi */
.page-01-slogan-img {
    flex: 0 0 100%; /* Har image 100% width legi */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    opacity: 0.9;
    display: block;
}
/* Section Container Wrapper Context */
.page-01-rec-section {
    position: relative;
    width: 100%;
    padding: 60px 0 80px 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background Dual Horizon Split System */
.page-01-split-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
    pointer-events: none;
}

.page-01-bg-white-half {
    background-color: #ffffff;
    height: 48%; /* Cuts the carousel precisely in half vertically */
}

.page-01-bg-black-half {
    background-color: #063430;
    height: 52%;
}

/* Inside Layout Boundary Center Content */
.page-01-rec-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

/* Elegant Premium Brand Title */
.page-01-rec-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F7A707; /* Exact Premium Gold Shade Tone */
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 400;
    text-align: center;
    background-color: #ffffff;
    margin: 0;
    padding-bottom: 40px;
}

/* Carousel Structural Mask */
.page-01-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Smooth Horizontal Tracking System Line */
.page-01-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-left: 40px;
    transition: transform 0.1s linear;
}

/* Individual Property Presentation Card Elements */
.page-01-property-card {
    background-color: #ffffff;
    border: none;
    padding: 16px;
    width: 320px; /* Fixed sizing to prevent layout crushing during transformations */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.page-01-card-frame {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    background-color: #fcfcfc;
}

.page-01-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Description Typography Layout Context */
.page-01-card-info {
    font-family: 'Poppins', sans-serif;
    color: #063430;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-01-property-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-01-property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.page-01-price {
    font-weight: 600;
    opacity: 0.9;
}

/* Premium Capsule Button (View All Listings) */
.page-01-action-block {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 70px;
}

.page-01-view-all-btn {
    font-family: 'Playfair Display', serif;
    color: #F7A707;
    border: 1px solid #F7A707;
    background-color: transparent;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.page-01-view-all-btn:hover {
    background-color: #F7A707;
    color: #063430;
}

/* Bottom Brand Partner Matrix Layout Grid */
.page-01-brands-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 30px;
}

@media (min-width: 640px) {
    .page-01-brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
}
@media (max-width: 725px) {
   .page-01-action-block {
   
    margin-top: 100px;
}
}
@media (min-width: 992px) {
    .page-01-brands-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)); /* Clean 5 Column Row Row Layout */
    }
}

.page-01-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.page-01-brand-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Forces raw graphics/icons to render clean pure white color overlays */
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.page-01-brand-logo:hover {
    opacity: 1;
}

.page-01-brand-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


/* Section Container Wrapper */
.page-01-property-grid-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    padding-top: 150px;
    box-sizing: border-box;
}

.page-01-grid-main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Responsive 3 Column Matrix Grid Layout */
.page-01-sliders-layout-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 40px;
    width: 100%;
}

@media (min-width: 640px) {
    .page-01-sliders-layout-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .page-01-sliders-layout-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* Exact match to the image design */
    }
}

/* Individual Content Blocks Configs */
.page-01-grid-slider-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Categories & Arrow Nav Controls Alignment */
.page-01-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4px;
}

.page-01-category-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

.page-01-nav-arrows {
    display: flex;
    gap: 16px;
}

.page-01-arrow-btn {
    background: none;
    border: none;
    width: 18px;
    height: 18px;
    color: #F7A707; /* Signature Gold Accent Arrows */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 0;
}

.page-01-arrow-btn:hover {
    color: #F7A707;
    transform: scale(1.2);
}

/* White Framed Card Component with Specific Border Theme Rules */
.page-01-inner-card {
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    transition: 3ms;
}
.page-01-inner-card:hover {
    border: 1.5px solid #F7A707;
}


/* Image Display Viewport Frame */
.page-01-image-viewport {
    width: 100%;
    aspect-ratio: 1.1 / 1; /* Perfectly squares up the view layout proportion */
    overflow: hidden;
    position: relative;
    background-color: #f7f7f7;
}

.page-01-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}
.logo-item {
  text-decoration: none;
  color: inherit;
  display: flex; /* ya jo flex/inline-block style pehle tha */
}
/* Meta Data Information Styles */
.page-01-meta-content {
    font-family: 'Poppins', sans-serif;
    color: #063430;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-01-property-title {
    font-size: 13.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.page-01-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

.page-01-price {
    font-weight: 600;
    opacity: 0.95;
}

/* Discover Call-To-Action Box Frame Rules */
.page-01-discover-block {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-01-discover-frame {
    border: 1px solid #000000;
    padding: 6px;
    display: inline-block;
}

.page-01-discover-btn {
    background-color: #063430;
    color: #ffffff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 26px 50px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-01-discover-btn:hover {
    background-color: #063430;
}

/* Master Structural Block Grid Wrapper Context */
.page-01-about-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Background Asset Control Layers */
.page-01-about-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-01-about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
        position: relative;
    left: 250px;
}

/* Content Container Alignments */
.page-01-about-main-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 10;
    box-sizing: border-box;
}

/* Split Column Framework logic layout */
.page-01-about-layout-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .page-01-about-layout-split {
        flex-direction: row; /* लैपटॉप/डेस्कटॉप पर आमने सामने रखेगा */
        justify-content: space-between;
        gap: 50px;
    }
}

/* Bahar ka container jo extra logos ko chhupayega */
.page-01-brands-grid-container {
    width: 100%;
    overflow: hidden; /* Baki logos ko chhipane ke liye */
    position: relative;
    padding: 20px 0;
}

/* Slider Track jo ek line me sabhi items ko rakhega */
.page-01-brands-slider-track {
    display: flex !important; /* Grid ko Flex me badla taaki line me aayein */
    width: max-content; /* Jitne logo honge width apne aap badhegi */
    gap: 40px; /* Logos ke beech ka gap (apne hisab se change kar sakte hain) */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Premium smooth slide */
}

/* Har item ki fixed width taaki calculation sahi rahe */
.page-01-brand-item {
    flex: 0 0 200px; /* Har logo ki width 200px (adjust kar sakte hain) */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}



/* Slider Main Container */
.logo-slider-section {
    background-color: #063430; /* Screenshot base dark theme */
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.logo-slider-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Linear Infinite Motion Track */
.logo-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: infiniteScroll 25s linear infinite;
}

/* Hover par pause karne ke liye */
.logo-slider-track-container:hover .logo-slider-track {
    animation-play-state: paused;
}

/* Individual Logo Card */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px; /* Logos ke beech ka gap */
    text-align: center;
    flex-shrink: 0;
}

/* Black SVG Image Ko Pure White Bnanane Ke Liye Filter */
.logo-svg-img {
    height: 70px; /* SVG ki height adjustment */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Magic filter: Turn Black to White */
    transition: transform 0.3s ease;
}

.logo-item:hover .logo-svg-img {
    transform: scale(1.08); /* Subtle hover effect */
}

/* Text Below Logos */
.logo-text {
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif; /* Match screenshot font style */
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Keyframe for Smooth Seamless Infinite Loop */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Half track complete hone par jump back bina flicker ke */
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .logo-slider-section {
        padding: 40px 0;
    }
    .logo-item {
        padding: 0 30px;
    }
    .logo-svg-img {
        height: 50px;
        margin-bottom: 12px;
    }
    .logo-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        padding: 0 20px;
    }
    .logo-svg-img {
        height: 42px;
    }
    .logo-text {
        font-size: 0.68rem;
    }
}

/* Hover karne par slider ruk jayega (Optional - agar nahi chahiye toh delete kar dein) */
.page-01-brands-ticker-container:hover .page-01-brands-ticker-track {
    animation-play-state: paused;
}

/* CSS Animation: Jo bina jhatke ke perfect 50% shift karega */
@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Kyuki doosra set bilkul pehle jaisa hai, 50% par loop seamlessly repeat hoga */
    }
}



/* --- Glassmorphism Shared Core Property Effect (फ़्रोस्टेड ग्लास इफ़ेक्ट) --- */
.page-01-about-text-pane,
.page-01-feature-card {
    background: rgba(255, 255, 255, 0.649); /* सेमी-ट्रांसपेरेंट व्हाइट लेयर */
    backdrop-filter: blur(5px);           /* बैकग्राउंड ब्लर करने की प्रॉपर्टी */
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Left Content Area Description Details */
.page-01-about-text-pane {
    width: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .page-01-about-text-pane {
        width: 50%;
        padding: 55px 45px;
        /* इमेज की तरह लेफ्ट से बाहर की तरफ ब्लीड करने के लिए एब्सोल्यूट मार्जिन स्पेसिंग */
        margin-left: -24px; 
    }
}

.page-01-about-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.page-01-about-paragraph {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: 18px;
    line-height: 1.65;
    text-align: justify; /* इमेज की तरह दोनों तरफ से बराबर अलाइनमेंट */
    margin: 0;
}

/* Right Side 2x2 Feature Square Cards Grid System */
.page-01-about-features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* परफेक्ट २ कॉलम रो */
    gap: 24px;
}

@media (min-width: 1024px) {
    .page-01-about-features-grid {
        width: 45%;
        gap: 30px;
    }
}

/* Individual Feature Block Boxes Configs */
.page-01-feature-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* परफेक्ट स्क्वायर डिज़ाइन को लॉक रखेगा */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-01-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
}

.page-01-feature-text {
    font-family: "Playfair Display", Georgia, serif;
    color: #063430;
    font-size: clamp(12px, 1.5vw, 22px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Master Section Structural Layout Context */
.page-01-loan-auth-section {
    width: 100%;
    background-color: #ffffff;
    padding: 200px 20px 80px 20px;
    box-sizing: border-box;
}

.page-01-loan-auth-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* प्रीमियम कॉम्पैक्ट ग्रिड लुक बनाए रखने के लिए */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Outer Thin Gold Frame Construction Layer */
.page-01-auth-media-wrapper {
    position: relative;
    border: 1px solid #F7A707; /* आपका स्पेसिफिक ब्रांड गोल्ड कलर */
    padding: 25px;
    width: 100%;
    max-width: 520px; /* इमेज ब्लॉक का सटीक प्रपोर्शन लॉक करने के लिए */
    box-sizing: border-box;
    background-color: #ffffff;
}

/* Inner Layout Frame around the Image Graphics */
.page-01-auth-inner-frame {
    width: 100%;
    aspect-ratio: 1 / 1; /* परफेक्ट स्क्वायर इमेज कंटेनर */
    overflow: hidden;
    background-color: #EBEBEB; /* इमेज के पीछे का लाइट ग्रे शेड */
}

.page-01-auth-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Absolute Floating Solid Black Call-To-Action Box Block */
.page-01-auth-action-box {
    background-color: #063430;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    width: 220px;
    height: 220px; /* परफेक्ट स्क्वायर बैज */
    
    /* डिफ़ॉल्ट एब्सोल्यूट प्लेसमेंट जो इमेज फ़्रेम को ओवरलैप करता है */
    position: absolute;
    right: -140px;
    bottom: -140px;
    z-index: 15;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Typography elements for the inner layout cards */
.page-01-action-text {
    font-family: "Playfair Display", Georgia, serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}

.page-01-action-link {
    font-family: "Playfair Display", Georgia, serif;
    color: #F7A707; /* सिग्नेचर गोल्ड एक्शन ट्रिगर लिंक टेक्स्ट */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.page-01-action-link:hover {
    color: #ffffff;
}

/* Bottom Left Statement Info Wrapper Container */
.page-01-auth-statement-wrap {
    width: 100%;
    max-width: 520px;
    margin-top: 30px;
    padding-left: 4px;
    box-sizing: border-box;
}

.page-01-auth-statement {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0;
    font-size: clamp(1.2rem, 3.5vw, 1.65rem); /* रिस्पॉन्सिव फॉन्ट साइज */
}

/* --- Media Queries Handle Compact Smartphone Views Safely --- */
@media (max-width: 640px) {
    .page-01-auth-media-wrapper {
        max-width: 100%;
    }
    
    /* मोबाइल स्क्रीन्स पर ओवरलैप को कम करके अलाइनमेंट फिक्स करने के लिए */
    .page-01-auth-action-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin: 24px auto 0 auto;
        width: 100%;
        height: auto;
        padding: 24px;
        text-align: center;
        align-items: center;
    }
    
    .page-01-auth-statement-wrap {
        max-width: 100%;
        text-align: center;
        margin-top: 24px;
    }
}


/* Section Base Structural Grid Context */
.page-01-agents-section {
    width: 100%;
    background-color: #ffffff;
    padding: 130px 24px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-01-agents-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .page-01-agents-container {
        flex-direction: row; /* लैपटॉप/डेस्कटॉप पर आमने-सामने रहेगा */
        align-items: flex-start;
        gap: 50px;
    }
}

/* --- Left Sidebar Column Styling --- */
.page-01-agents-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

@media (min-width: 1024px) {
    .page-01-agents-sidebar {
        width: 22%;
        align-items: flex-start;
        text-align: left;
        padding-top: 20px;
    }
}

.page-01-agents-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
}

.page-01-meet-all-btn {
    background-color: #063430;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 20px; /* ओवल कैप्सूल शेड */
    display: inline-block;
    transition: background-color 0.3s ease;
}

.page-01-meet-all-btn:hover {
    background-color: #222222;
}

/* --- Right Side Carousel Windows Configuration --- */
.page-01-slider-showcase-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 1024px) {
    .page-01-slider-showcase-wrapper {
        width: 78%;
    }
}

.page-01-carousel-viewport {
    width: 100%;
    overflow: hidden; /* छुपाता है बाकी स्लाइड्स को */
    padding: 10px 0;
}

.page-01-agents-track {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* स्मूथ क्लिक एनीमेशन */
}

/* Individual Profile Cards Construction Layout */
.page-01-agent-profile-card {
    width: 275px; /* मोबाइल से लेकर डेस्कटॉप तक फिक्स विड्थ */
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.page-01-agent-avatar-frame {
    width: 100%;
    aspect-ratio: 1 / 1; /* इमेज स्क्वायर बॉक्स रहेगी */
    overflow: hidden;
    background-color: #f5f5f5;
}

.page-01-agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom Text and Action Links Layout Alignment Row */
.page-01-agent-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 2px;
}

.page-01-agent-details {
    font-family: 'Poppins', sans-serif;
    color: #063430;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-01-agent-name {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.page-01-agent-location {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    margin: 0;
}

/* Social Action Icons alignment grid context */
.page-01-agent-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 2px;
}

.page-01-icon-link {
    width: 18px;
    height: 18px;
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Distinct Reference Colors matching icons code definitions */
.page-01-whatsapp { color: #25D366; } /* WhatsApp Green */
.page-01-email { color: #063430; }    /* Envelope Muted Black */

.page-01-icon-link svg {
    width: 100%;
    height: 100%;
    display: block;
}

.page-01-icon-link:hover {
    transform: scale(1.15);
}

/* Slider Bottom Control Area Layout (Right aligned arrows) */
.page-01-agents-controls {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 20px;
    width: 100%;
    padding-right: 10px;
}

.page-01-agent-arrow-btn {
    background: none;
    border: none;
    width: 20px;
    height: 20px;
    color: #F7A707; /* आपका स्पेसिफिक ब्रांड गोल्ड कलर */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.page-01-agent-arrow-btn svg {
    width: 100%;
    height: 100%;
}

.page-01-agent-arrow-btn:hover {
    color: #F7A707;
    transform: scale(1.2);
}

/* Master Structural Layout */
.page-01-testimonials-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 50px 0px;
}

/* Header Text Area Sitting outside Black Content Body block to create native overlay */
.page-01-testimonials-header {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 0 24px;
    box-sizing: border-box;
    /* निगेटिव मार्जिन से टेक्स्ट ब्लैक बॉक्स के ऊपर ब्लीड करेगा */
    margin-bottom: -15px;
    position: relative;
    z-index: 15;
    left: -150px;

}

.page-01-testimonials-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-size: clamp(3.5rem, 10vw, 8.5rem); /* विशाल एडिटोरियल फॉन्ट साइज */
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Solid Black Section Container */
.page-01-testimonials-body {
    width: 80%;
    background-color: #063430;
    padding: 100px 24px 100px 24px;
    box-sizing: border-box;
}

.page-01-testimonials-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

@media (min-width: 1024px) {
    .page-01-testimonials-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

/* --- Left Side Slider Mask Wrapper Window --- */
.page-01-reviews-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

@media (min-width: 1024px) {
    .page-01-reviews-slider-wrapper {
        width: 70%;
    }
}

.page-01-reviews-track {
    display: flex;
    gap: 40px;
    width: max-content;
    transition: transform 0.1s linear; /* स्मूथ लूप कंटीन्यूअस मोशन के लिए */
}

/* Individual Testimonial Review Box Card Layout */
.page-01-review-card {
    width: 380px; /* फिक्स हॉरिजॉन्टल स्पेसिंग */
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .page-01-review-card {
        width: 290px;
    }
}

@media (max-width: 725px) {
    .page-01-agents-track {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* स्मूथ क्लिक एनीमेशन */
}
}

/* Carousel Viewport */
.page-01-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Infinity Moving Track */
.page-01-agents-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* 25s speed ko aap fast/slow karne ke liye change kar sakte hain */
    animation: infiniteAgentScroll 25s linear infinite;
}

/* Mouse hover karne par slider ruk jayega */
.page-01-carousel-viewport:hover .page-01-agents-track {
    animation-play-state: paused;
}

/* Keyframe for Continuous Loop */
@keyframes infiniteAgentScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Half track complete hote hi bina kisi jump/break ke repeat hoga */
        transform: translateX(-50%); 
    }
}

/* Mobile Screens Support */
@media (max-width: 768px) {
    .page-01-agents-track {
        gap: 15px;
        animation-duration: 18s; /* Mobile par speed adjust */
    }
    .page-01-agent-profile-card {
        width: 260px;
        flex-shrink: 0;
    }
}

/* CSS me bas itna hi rakhein */
.page-01-agents-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}
/* Reviewer Profile Grid Layout Area */
.page-01-reviewer-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-01-avatar-box {
    position: relative;
    width: 52px;
    height: 52px;
}

.page-01-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Tiny Google Badge G Icon on bottom-right of avatar */
.page-01-google-badge-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #063430;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-01-reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-01-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-01-reviewer-name {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Blue Checkmark Badge */
.page-01-verified-blue-check {
    width: 15px;
    height: 15px;
    background-color: #063430;
    color: #ffffff;
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.page-01-review-time {
    font-family: 'Poppins', sans-serif;
    color: #888888;
    font-size: 12px;
}

/* Stars Rows Rules */
.page-01-stars-row {
    color: #FF9900; /* Google Brand Gold Yellow */
    font-size: 18px;
    letter-spacing: 2px;
}

.page-01-star-empty {
    color: #444444; /* अनफिल्ड स्टार्स का कलर */
}

/* Description Reviews Paragraphs Copy Text */
.page-01-review-text {
    font-family: 'Poppins', sans-serif;
    color: #F7A707; /* प्रीमियम डल गोल्ड टेक्स्ट कलर */
    font-size: 14.5px;
    line-height: 1.65;
    text-align: justify;
    margin: 0;
    opacity: 0.95;
}

.page-01-read-more {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.2s ease;
}

.page-01-read-more:hover {
    opacity: 0.7;
}

/* --- Right Side: Solid Gold Floating Aggregate Badge --- */
.page-01-google-aggregate-badge {
    background-color: #F7A707; 
    width: 360px;
    aspect-ratio: 1 / 1;
    padding: 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin: 20px auto 0 auto;
}

@media (min-width: 1024px) {
    .page-01-google-aggregate-badge {
        width: 30%;
        margin: 0;
        /* डेस्कटॉप पर ब्लैक बॉक्स के बाहर ओवरलैप ब्लीड कराने के लिए एब्सोल्यूट पोजिशनिंग */
        position: absolute;
        right: -210px;
        top: -35px;
        z-index: 20;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
}

/* Google Colored Branding Styles */
.page-01-badge-logo-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.page-01-g-colored { font-weight: 700; letter-spacing: -0.5px; }
.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }
.page-01-review-label { color: #ffffff; font-weight: 400; }

.page-01-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-01-rating-score {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.page-01-badge-stars {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
}

.page-01-total-count {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 20px;
    opacity: 0.95;
}

/* Oval Write Review White Button Shape */
.page-01-write-review-btn {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.page-01-write-review-btn:hover {
    background-color: #ffffff;
    color: #063430;
    border-color: #ffffff;
}

/* Master Section Structural Layout Context */
.page-01-video-activation-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px 100px 20px;
    padding-top: 150px;
    box-sizing: border-box;
}

.page-01-activation-container {
    position: relative;
    width: 100%;
    max-width:1100px; /* प्रीमियम कॉम्पैक्ट और बैलेंस्ड ग्रिड लुक बनाए रखने के लिए */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Outer Thin Gold Frame Construction Layer */
.page-01-activation-media-wrapper {
    position: relative;
    border: 1px solid #F7A707; /* आपका स्पेसिफिक ब्रांड गोल्ड कलर */
    padding: 16px;
    width: 100%;
    max-width: 1000px; /* स्क्रीनशॉट के अनुसार इमेज का सटीक प्रपोर्शन लॉक करने के लिए */
    box-sizing: border-box;
    background-color: #ffffff;
}

/* Inner Layout Frame around the Image Graphics */
.page-01-activation-inner-frame {
    width: 100%;
    aspect-ratio: 16 / 10; /* इमेज का वाइडस्क्रीन आस्पेक्ट रेशियो */
    overflow: hidden;
    position: relative;
    background-color: #f2f2f2;
}

.page-01-activation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85; /* इमेज के थोड़े फेडेड लुक को मैच करने के लिए */
}

/* --- YouTube Style Red Play Button Overlay --- */
.page-01-video-play-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-decoration: none;
}

.page-01-youtube-play-icon {
    width: 68px;
    height: 48px;
    color: #FF0000; /* यूट्यूब रेड कलर */
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-01-video-play-trigger:hover .page-01-youtube-play-icon {
    transform: scale(1.1);
    color: #cc0000;
}

/* Absolute Floating Solid Black Badge Card (Bottom-Left Corner Override) */
.page-01-activation-action-box {
    background-color: #063430;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    width: 200px;
    height: 200px; /* परफेक्ट स्क्वायर बैज */
    
    /* एब्सोल्यूट प्लेसमेंट जो इमेज फ़्रेम के नीचे बाईं तरफ ओवरलैप करता है */
    position: absolute;
    left: -140px;
    bottom: -140px;
    z-index: 15;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Typography elements for the inner layout cards */
.page-01-activation-box-text {
    font-family: 'Playfair Display', Georgia, serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}

.page-01-activation-box-link {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F7A707; /* सिग्नेचर गोल्ड एक्शन ट्रिगर लिंक टेक्स्ट */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.2s ease;
}

.page-01-activation-box-link:hover {
    color: #ffffff;
}

/* Bottom Statement Title Wrapper Container */
.page-01-activation-title-wrap {
    width: 100%;
    max-width: 1000px;
    margin-top: 35px;
    padding-left: 110px; /* एब्सोल्यूट ब्लैक बॉक्स के लिए स्पेस छोड़ता है */
    box-sizing: border-box;
}

.page-01-activation-heading {
    font-family: 'Playfair Display', Georgia, serif;
    color: #063430;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin: 0;
    font-size: clamp(1.3rem, 3.2vw, 2.4rem); /* रिस्पॉन्सिव फॉन्ट साइज */
}

/* --- Media Queries Handle Compact Smartphone Views Safely --- */
@media (max-width: 768px) {
    .page-01-activation-media-wrapper {
        max-width: 100%;
    }
    
    /* मोबाइल स्क्रीन्स पर ओवरलैप को हटाकर स्टैक्ड लेआउट अलाइनमेंट फिक्स करने के लिए */
    .page-01-activation-action-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 24px auto 0 auto;
        width: 100%;
        height: auto;
        padding: 24px;
        text-align: center;
        align-items: center;
    }
    
    .page-01-activation-title-wrap {
        max-width: 100%;
        text-align: center;
        margin-top: 24px;
        padding-left: 0; /* मोबाइल पर पैडिंग की आवश्यकता नहीं */
    }
}


/* Media Inner Frame */
.page-01-activation-inner-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #063430;
}

/* Image & Iframe Fitting */
.page-01-activation-img,
.page-01-activation-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Iframe Initially Hidden */
.page-01-activation-iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    z-index: 5;
}

/* Play Button Styling */
.page-01-video-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease;
}

.page-01-video-play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Jab Class Active hogi tab Poster & Play Btn Chup jayenge aur Video Dikhegi */
.page-01-activation-inner-frame.is-playing .page-01-activation-img,
.page-01-activation-inner-frame.is-playing .page-01-video-play-trigger {
    display: none;
}

.page-01-activation-inner-frame.is-playing .page-01-activation-iframe {
    display: block;
}

.page-01-activation-action-link-wrapper {
    text-decoration: none !important;
    color: inherit;
}
/* Master Grid Layout Context */
.page-01-enquiry-grid-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 24px;
    box-sizing: border-box;
}

.page-01-enquiry-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    /* डिफ़ॉल्ट रूप से मोबाइल पर १ कॉलम लेआउट रहेगा */
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

/* Screen Size Adaptations (Responsive Grid Columns split) */
@media (min-width: 640px) {
    .page-01-enquiry-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* टैबलेट पर २x२ का ग्रिड */
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .page-01-enquiry-container {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* डेस्कटॉप/लैपटॉप पर परफेक्ट ४ कॉलम रो */
        gap: 20px;
    }
}

/* Individual Grid Card Structure */
.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1.15 / 1; /* स्क्रीनशॉट के रेक्टेंगल आस्पेक्ट रेशियो को मेंटेन करता है */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-01-enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.page-01-enquiry-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px; /* टेक्स्ट और लिंक बटन के बीच का स्पेस */
}

/* Typography Editorial Elements */
.page-01-enquiry-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.55;
    margin: 0;
}

.page-01-enquiry-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    display: inline-block;
    position: relative;
}


/* Individual Grid Card Structure */
.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* Pure Square Aspect Ratio (Width and Height Same) */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 24px; /* Padding thoda adjust kiya taaki content fit rahe */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-01-enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.page-01-enquiry-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px; /* Square shape ke mutabiq spacing adjust ki hai */
}

/* Typography Editorial Elements */
.page-01-enquiry-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    margin: 0;
}

.page-01-enquiry-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    display: inline-block;
    position: relative;
}

/* --- Color Assignments Matching Reference Screenshot --- */

/* Off-White / Soft Gray Variant style definitions */
.page-01-bg-soft-gray {
    background-color: #F4F4F4; /* सॉफ़्ट न्यूट्रल ग्रे */
}

.text-dark {
    color: #063430;
}

/* Highlighted Signature Gold Variant style definitions */
.page-01-bg-brand-gold {
    background-color: #F7A707; /* आपका स्पेसिफिक प्रीमियम गोल्ड शेड */
}

.text-light {
    color: #ffffff;
}

.font-medium {
    font-weight: 500;
}

/* --- Dynamic Hover State Rules --- */

/* 1. जब ग्रे कार्ड पर होवर हो, तो उसका बैकग्राउंड गोल्ड करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover {
    background-color: #F7A707; /* आपका ब्रांड गोल्ड कलर */
}

/* 2. होवर होने पर ग्रे कार्ड के अंदर के टेक्स्ट को व्हाइट करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover .page-01-enquiry-text.text-dark {
    color: #ffffff !important;
}

/* 3. होवर होने पर ग्रे कार्ड के अंदर के 'Click Here' लिंक को व्हाइट करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover .page-01-enquiry-link.text-dark {
    color: #ffffff !important;
}


/* --- Smooth Transitions Setup (यदि पहले से नहीं जोड़ा है) --- */
.page-01-enquiry-card {
    /* बैकग्राउंड चेंज को स्मूथ बनाने के लिए */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.35s ease;
}

.page-01-enquiry-text, 
.page-01-enquiry-link {
    /* टेक्स्ट का कलर बदलने वाले इफ़ेक्ट को स्मूथ बनाने के लिए */
    transition: color 0.3s ease;
}


.page-01-auth-action-link-wrapper {
    text-decoration: none !important; /* Underline hatane ke liye */
    color: inherit;                    /* Default text color maintain rakhne ke liye */
    display: block;                    /* Full box area clickable rakhne ke liye */
}

.page-01-auth-action-link-wrapper:hover,
.page-01-auth-action-link-wrapper:focus,
.page-01-auth-action-link-wrapper:visited {
    text-decoration: none !important;
    color: inherit;
}



@media (min-width: 425px) {
  .page-01-testimonials-body {
     width: 80%;
  }
  .page-01-testimonials-header {

    margin-bottom: -6px;
    left: 0px;

}

.page-01-agents-container {
    gap: 100px;
}
 
}

/* --- ECOSYSTEM SECTION BASE --- */
.ecosystem-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.ecosystem-container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* Background Image Frame (Exact Screenshot Placement) */
.ecosystem-bg-wrapper {
    width: 82%;
    margin-left: auto; /* Push image box to the right */
    height: 780px;     /* Compact height fitting 1 screen */
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ecosystem-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- OVERLAY CONTENT WRAPPER --- */
.ecosystem-content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
    align-items: center;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

/* --- LEFT GLASS INFO CARD --- */
.ecosystem-info-card {
    background: rgba(255, 255, 255, 0.72); /* Glass Effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #e2b755; /* Gold Line Border */
    box-sizing: border-box;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-left: 100px;
}

.ecosystem-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ecosystem-main-title {
     font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.95rem);
    font-weight: 300;
    color: #063430;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

.ecosystem-logo-box {
    width: 100px;
    flex-shrink: 0;
}

.ecosystem-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}




/* --- RIGHT 4 SQUARE CARDS GRID --- */
.ecosystem-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-right: 80px;
}



.ecosystem-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(0.85rem, 1.4vw, 2.05rem);
    font-weight: 700;
    color: #063430;
    line-height: 1.25;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
/* Individual Feature Card (Strict 1:1 Square) */
.ecosystem-feature-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #e2b755;
    width: 100%;
    aspect-ratio: 1 / 1; /* Height = Width Exact Square */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
/* --- HOVER STATE --- */
.ecosystem-feature-card:hover {
    background: #ffbf00 !important; /* Yellow/Gold BG */
    border-color: #ffbf00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 183, 85, 0.3);
}

.ecosystem-feature-card:hover .ecosystem-card-title {
    color: #063430 !important; /* Dark Green Text */
}

/* --- OVERLAY CONTENT WRAPPER --- */
.ecosystem-content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 25px;

    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

/* --- LEFT GLASS INFO CARD (Equal Height Balance) --- */
.ecosystem-info-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #e2b755;
    padding: 45px 30px;
    box-sizing: border-box;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Top & Bottom stretch equalization */
    height: 100%;                  /* Forces height to equal the right grid */
}

/* Description Text Adjustments to fit cleanly within equal height */
.ecosystem-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.45;
    color: #063430;
    margin: 0 0 6px 0;
    font-weight: 400;
}

.ecosystem-description p:last-child {
    margin-bottom: 0;
}

/* --- RIGHT 4 SQUARE CARDS GRID --- */
.ecosystem-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


/* ==========================================
   COMPLETE RESPONSIVE MEDIA QUERIES
   ========================================== */

/* --- 1. LARGE DESKTOPS & 4K MONITORS (Min 1600px) --- */
@media screen and (min-width: 1600px) {
    .ecosystem-container {
        max-width: 1500px;
        margin: 0 auto;
    }
    .ecosystem-bg-wrapper {
        height: 750px;
    }
    .ecosystem-info-card {
        margin-left: 140px;
        padding: 55px 40px;
    }
    .ecosystem-cards-grid {
        margin-right: 120px;
        gap: 20px;
    }
    .ecosystem-description p {
        font-size: 1.1rem;
        line-height: 1.55;
    }
}

/* --- 2. STANDARD LAPTOPS & DESKTOPS (1280px to 1440px) --- */
@media screen and (max-width: 1440px) {
    .ecosystem-bg-wrapper {
        height: 720px;
    }
    .ecosystem-info-card {
        margin-left: 60px;
        padding: 55px 35px;
    }
    .ecosystem-cards-grid {
        margin-right: 50px;
        gap: 15px;
    }
    .ecosystem-description p {
        font-size: 1.35rem;
        line-height: 1.4;
    }
}

/* --- 3. SMALL LAPTOPS & COMPACT DESKTOPS (1025px to 1279px) --- */
@media screen and (max-width: 1279px) {
    .ecosystem-bg-wrapper {
        width: 88%;
        height: 540px;
    }
    .ecosystem-content-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 20px;
    }
    .ecosystem-info-card {
        margin-left: 30px;
        padding: 25px 20px;
    }
    .ecosystem-cards-grid {
        margin-right: 30px;
        gap: 12px;
    }
    .ecosystem-description p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    .ecosystem-logo-box {
        width: 65px;
    }
}

/* --- 4. TABLETS & IPADS - LANDSCAPE & PORTRAIT (768px to 1024px) --- */
@media screen and (max-width: 1024px) {
    .ecosystem-section {
        padding: 30px 15px;
    }
    .ecosystem-bg-wrapper {
        width: 100%;
        height: 420px;
        margin-left: 0;
    }
    .ecosystem-content-wrapper {
        position: relative;
        top: 0;
        transform: none;
        grid-template-columns: 1fr; /* Stack vertically for natural tablet view */
        gap: 25px;
        margin-top: -120px; /* Partial overlap over image */
    }
    .ecosystem-info-card {
        margin-left: 0;
        height: auto;
        padding: 30px 25px;
    }
    .ecosystem-cards-grid {
        margin-right: 0;
        gap: 15px;
    }
    .ecosystem-description p {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    .ecosystem-feature-card {
        aspect-ratio: 16 / 9; /* Comfortable wide touch ratio on tablets */
    }
}

/* --- 5. LARGE PHONES & PHABLETS (481px to 767px) --- */
@media screen and (max-width: 767px) {
    .ecosystem-section {
        padding: 20px 10px;
    }
    .ecosystem-bg-wrapper {
        height: 300px;
    }
    .ecosystem-content-wrapper {
        margin-top: -80px;
        gap: 20px;
    }
    .ecosystem-info-card {
        padding: 20px 16px;
    }
    .ecosystem-info-header {
        align-items: center;
        margin-bottom: 12px;
    }
    .ecosystem-logo-box {
        width: 60px;
    }
    .ecosystem-description p {
        font-size: 0.88rem;
        line-height: 1.45;
    }
    .ecosystem-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* Maintains 2x2 grid */
        gap: 10px;
    }
    .ecosystem-feature-card {
        aspect-ratio: 1 / 1;
        padding: 8px;
    }
}

/* --- 6. SMALL MOBILE PHONES (320px to 480px) --- */
@media screen and (max-width: 480px) {
    .ecosystem-bg-wrapper {
        height: 220px;
    }
    .ecosystem-content-wrapper {
        margin-top: -60px;
    }
    .ecosystem-info-card {
        padding: 16px 14px;
    }
    .ecosystem-main-title {
        font-size: 1.15rem;
    }
    .ecosystem-logo-box {
        width: 50px;
    }
    .ecosystem-description p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .ecosystem-cards-grid {
        gap: 8px;
    }
    .ecosystem-card-title {
        font-size: 0.78rem;
    }
}


/* --- BASE SECTION LAYOUT --- */
.bank-auth-section {
    width: 100%;
    background-color: #ffffff;
    padding: 200px 20px 100px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
}

.bank-auth-container {
    width: 100%;
    max-width: 580px; /* Perfect compact width for center alignment */
    position: relative;
    box-sizing: border-box;
}

/* --- MAIN SQUARE IMAGE FRAME (1:1 Aspect Ratio) --- */
.bank-auth-square-frame {
    width: 100%;
    aspect-ratio: 1 / 1; /* Strict Square (Width = Height) */
    position: relative;
    border: 2px solid #d4af37; /* Gold Line Outer Border */
    padding: 20px; /* White Space Between Border and Image */
    background-color: #ffffff;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.bank-auth-img-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bank-auth-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- FLOATING DARK GREEN BADGE (Bottom-Right Overlay) --- */
.bank-auth-floating-badge {
    position: absolute;
    bottom: -110px;
    right: -110px;
    width: 200px;
    height: 200px;
    background-color: #05261e; /* Dark Green Tone */
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.bank-auth-floating-badge:hover {
    transform: translateY(-4px);
    background-color: #031a14;
}

.bank-auth-badge-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.bank-auth-badge-cta {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c8a355; /* Gold Action Text */
    letter-spacing: 0.8px;
    display: block;
}

/* --- BOTTOM LEFT TEXT --- */
.bank-auth-text-wrapper {
    width: 70%; /* Keeps text constrained under the left portion */
}

.bank-auth-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 500;
    color: #111111;
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* ==========================================
   COMPLETE RESPONSIVE MEDIA QUERIES
   ========================================== */

/* 1. LARGE DESKTOPS & 4K MONITORS (1600px+) */
@media screen and (min-width: 1600px) {
    .bank-auth-container {
        max-width: 680px;
    }
    .bank-auth-floating-badge {
        width: 230px;
        height: 230px;
        bottom: -55px;
        right: -55px;
        padding: 30px 25px;
    }
    .bank-auth-badge-title {
        font-size: 1rem;
    }
    .bank-auth-badge-cta {
        font-size: 0.95rem;
    }
}

/* 2. STANDARD LAPTOPS (1280px to 1440px) */
@media screen and (max-width: 1440px) {
    .bank-auth-container {
        max-width: 520px;
    }
    .bank-auth-floating-badge {
        width: 180px;
        height: 180px;
        bottom: -110px;
        right: -110px;
        padding: 20px 16px;
    }
    .bank-auth-badge-title {
        font-size: 0.82rem;
    }
}

/* 3. SMALL LAPTOPS & COMPACT SCREENS (1025px to 1279px) */
@media screen and (max-width: 1279px) {
    .bank-auth-container {
        max-width: 460px;
    }
    .bank-auth-floating-badge {
        width: 165px;
        height: 165px;
        bottom: -110px;
        right: -110px;
        padding: 16px 14px;
    }
    .bank-auth-badge-title {
        font-size: 0.78rem;
    }
    .bank-auth-badge-cta {
        font-size: 0.78rem;
    }
}

/* 4. TABLETS & IPADS (768px to 1024px) */
@media screen and (max-width: 1024px) {
    .bank-auth-section {
        padding: 50px 20px 80px 20px;
    }
    .bank-auth-container {
        max-width: 420px;
    }
    .bank-auth-floating-badge {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -25px;
        padding: 15px 12px;
    }
    .bank-auth-badge-title {
        font-size: 0.72rem;
        margin-bottom: 8px;
    }
    .bank-auth-badge-cta {
        font-size: 0.72rem;
    }
}

/* 5. LARGE PHONES & PHABLETS (481px to 767px) */
@media screen and (max-width: 767px) {
    .bank-auth-section {
        padding: 40px 15px 60px 15px;
    }
    .bank-auth-container {
        max-width: 360px;
    }
    .bank-auth-square-frame {
        padding: 8px;
    }
    .bank-auth-floating-badge {
        width: 135px;
        height: 135px;
        bottom: -25px;
        right: -15px;
        padding: 12px 10px;
    }
    .bank-auth-badge-title {
        font-size: 0.68rem;
        margin-bottom: 6px;
    }
    .bank-auth-badge-cta {
        font-size: 0.68rem;
    }
    .bank-auth-text-wrapper {
        width: 65%;
    }
}

/* 6. SMALL MOBILE PHONES (320px to 480px) */
@media screen and (max-width: 480px) {
    .bank-auth-container {
        max-width: 100%;
        padding: 0 10px;
    }
    .bank-auth-floating-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -5px;
        padding: 10px;
    }
    .bank-auth-badge-title {
        font-size: 0.62rem;
        line-height: 1.25;
        margin-bottom: 4px;
    }
    .bank-auth-badge-cta {
        font-size: 0.65rem;
    }
    .bank-auth-text-wrapper {
        width: 60%;
    }
    .bank-auth-heading {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Pure card link formatting */
    text-decoration: none; /* Underline remove karne ke liye */
    color: inherit;        /* Text color parent ka retain karne ke liye */
    cursor: pointer;
}

/* Hover Effect for Link text inside */
.page-01-enquiry-card:hover .page-01-enquiry-link {
    text-decoration: underline; /* Mouse hoover par subtle feedback */
}

.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 24px;
    text-decoration: none;
    color: #111111; /* Default Text Color */
    background-color: #f4f4f4; /* Default Background Color */
    cursor: pointer;
    
    /* LAZY & SMOOTH TRANSITION */
    /* All properties change over 0.4s with smooth cubic-bezier timing */
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Inside elements transitions */
.page-01-enquiry-text,
.page-01-enquiry-link {
    transition: color 0.4s ease;
}

/* HOVER STATE (Lazy Color Change) */
.page-01-enquiry-card:hover {
    background-color: #111111; /* Background Dark ho jayega */
    color: #ffffff;            /* Text White ho jayega */
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Link underline animation on hover */
.page-01-enquiry-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    position: relative;
    text-decoration: none;
}

.page-01-enquiry-card:hover .page-01-enquiry-link {
    color: #f7a707; /* Highlight link with Gold color on hover */
    text-decoration: none;
}

.page-01-discover-link-wrapper:hover .page-01-discover-btn {
    background-color: #FFC107; /* होवर पर बैकग्राउंड पीला */
    color: #063430; /* होवर पर टेक्स्ट डार्क */
    border-color: #FFC107;
}

a.page-01-agent-profile-card {
    display: block;
    text-decoration: none; /* टेक्स्ट की अंडरलाइन हटाने के लिए */
    color: inherit;         /* फॉन्ट कलर सही रखने के लिए */
}