
/* --- ATTRACTIVE GLOWING HR --- */
        .kvv-attractive-hr {
            border: 0;
            height: 1px;
            /* लाइन का कलर (हल्का ग्रेडिएंट) */
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 107, 0, 0.75), rgba(0, 0, 0, 0));
            width: 80%;
            margin: 4rem auto;
            position: relative;
            overflow: visible; /* डॉट को दिखने देने के लिए */
        }

        /* बीच में छोटा सा Glowing Dot */
        .kvv-attractive-hr::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;  /* डॉट की चौड़ाई */
            height: 8px; /* डॉट की ऊंचाई */
            background: #FF6B00;
            border-radius: 50%; /* गोल बनाने के लिए */
            box-shadow: 0 0 10px #FF6B00, 0 0 20px rgba(255, 107, 0, 0.4); /* चमक (Glow) */
        }

.hide-scrollbar {
  /* For Internet Explorer and Edge */
  -ms-overflow-style: none;
  /* For Firefox */
  scrollbar-width: none;
  /* Ensure content can still scroll if it overflows */
  overflow-y: scroll; 
}

/* For Chrome, Safari, Opera, and other WebKit-based browsers */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}


/* Hero section ko relative rakho taaki particles background ban sake */
.hero {
    position: relative;
    z-index: 1;
}

/* Particles layer mouse ko block na kare */
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1; /* Sabse niche */
    pointer-events: all !important; /* Mouse signals yahan capture honge */
}

/* Ye sabse important part hai */
.kavavi-container {
    position: relative;
    z-index: 10; 
    /* Mouse signals ko niche particles tak pass hone do */
    pointer-events: none; 
}

/* Wrapper setting */
.animation-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Dono sections ko transparent karo */
.hero, .showcase-section {
    background-color: transparent !important;
    position: relative;
    z-index: 2; /* Content upar rahe */
}

/* Content interaction fix */
.kavavi-container, .showcase-container {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.kavavi-container *, .showcase-container *, .float-card {
    pointer-events: auto;
}

/* Divider lines ko thoda clear rakho */
.showcase-divider {
    z-index: 5;
}

/* Lekin buttons aur links clickable hone chahiye */
.kavavi-container a, 
.kavavi-container span, 
.button-container,
.floating-elements .float-card {
    pointer-events: auto; 
}

/* Floating cards bhi mouse interaction block na karein */
.floating-elements {
    z-index: 5;
    pointer-events: none;
}
/* ========================================= */
/* 1. GLOBAL SETTINGS                        */
/* ========================================= */
.section {
    padding: 80px 5%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* Ya jo bhi aap use kar rahe ho */
}

/* ========================================= */
/* 2. ABOUT SECTION                          */
/* ========================================= */
#about {
    background: linear-gradient(135deg, #fffbf7 0%, #fff5eb 100%);
    position: relative;
}

.about-container, .why-choose-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-text, .why-choose-us-text {
    flex: 1;
}

/* Desktop Styles */
.about-text h4, .why-choose-us-text h4 {
    background-color: rgba(255, 191, 120, 0.25);
    color: #FF7D29;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text h2, .why-choose-us-text h3 {
    color: #FF7D29;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-text h2 span { color: #334155; }

.about-text p, .why-choose-us-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify; /* Desktop Justify */
    text-justify: inter-word;
}

/* Button Styling */
.about-text button {
    background: linear-gradient(135deg, #FF7D29 0%, #ff9d5c 100%);
    border: none;
    border-radius: 50px;
    transition: 0.3s ease;
    cursor: pointer;
}

.about-text button a {
    display: block;
    padding: 14px 35px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.about-text button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 125, 41, 0.3);
}

/* Images */
.about-image, .why-choose-us-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-us-image1, .why-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
/* ========================================= */
/* 3. STATS WRAPPER (Desktop & Mobile)      */
/* ========================================= */
.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto 40px auto; /* Stats ko niche shift kiya */
    gap: 20px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 125, 41, 0.1);
}

.stat-card .number { 
    font-size: 2.2rem; 
    font-weight: 800; 
    color: #FF7D29; 
    margin-bottom: 5px;
}

.stat-card .description {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 125, 41, 0.2);
}

/* ========================================= */
/* 4. MOBILE VIEW (2x2 GRID FIX)             */
/* ========================================= */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Paragraph ko center kiya mobile par */
    .about-text p {
        text-align: center !important;
        font-size: 1rem;
    }

    /* STATS KO 2x2 GRID MEIN KIYA */
    .stats-wrapper {
        display: flex;
        flex-wrap: wrap; /* Isse cards niche shift honge */
        justify-content: center;
        margin-top: 60px;
        gap: 15px; /* Cards ke beech ka gap */
        padding: 0 10px;
    }

    .stat-card {
        /* 2 cards ek line mein (50% minus gap) */
        flex: 0 0 calc(50% - 15px); 
        min-width: 140px; 
        padding: 20px 10px;
    }

    .stat-card .number {
        font-size: 1.8rem; /* Mobile par thoda chota */
    }

    .stat-card .description {
        font-size: 0.75rem;
    }

    .stat-divider {
        display: none; /* Mobile grid mein divider ki zarurat nahi */
    }

    .about-us-image1 {
        max-width: 280px;
    }
}

/* Very Small Screens (Phones like iPhone SE) */
@media screen and (max-width: 380px) {
    .stat-card {
        flex: 0 0 100%; /* Bahut choti screen par 1x1 hi best hai */
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.serial-number {
    background: #FF7D29;
    color: white;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ========================================= */
/* 4. MOBILE VIEW (THE ULTIMATE FIX)         */
/* ========================================= */
@media screen and (max-width: 992px) {
    .about-container, .why-choose-us-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* Paragraph CENTER in mobile */
    .about-text p, .why-choose-us-text p {
        text-align: center !important; 
        font-size: 1rem;
        padding: 0 5px;
    }

    /* Heading size reduced for mobile */
    .about-text h2, .why-choose-us-text h3 {
        font-size: 1.8rem !important; 
        line-height: 1.3;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stat-card { width: 100%; max-width: 350px; }
    
    .about-us-image1, .why-image {
        max-width: 300px;
    }
}

/* ========================================= */
/* 2. WHY CHOOSE US SECTION                  */
/* ========================================= */
#why-choose-us {
    background: linear-gradient(135deg, #fffbf7 0%, #fff0e3 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Blobs for Why Choose Us */
.blob-w {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-w-1 { top: 10%; right: -10%; width: 400px; height: 400px; background: #ffdec0; }
.blob-w-2 { bottom: 5%; left: -10%; width: 350px; height: 350px; background: #ffeacc; }

.why-choose-us-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-us-text { flex: 1.2; }

.why-choose-us-text h4 {
    background-color: rgba(255, 191, 120, 0.2);
    color: #FF7D29;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* --- heading style match karne ke liye --- */
.why-choose-us-text h3 {
    color: #FF7D29;
    /* Font size aur spacing wahi rakhi hai jo About section mein thi */
    font-size: clamp(2rem, 5vw, 2.8rem); 
    font-weight: 800; 
    letter-spacing: -1.5px; 
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 125, 41, 0.1);
}

/* Highlighted Part (Span) ke liye color contrast */
.why-choose-us-text h3 span {
    color: #334155; /* Blue-Grey tone jo About section mein use kiya tha */
}

/* --- Mobile View Compatibility --- */
@media screen and (max-width: 768px) {
    .why-choose-us-text h3 {
        /* Mobile par height thodi choti aur text center */
        font-size: 1.8rem !important;
        text-align: center !important;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
    }
    
    .why-description {
        text-align: center !important;
        padding: 0 10px;
    }
}

/* Glossy Cards Features */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(255, 125, 41, 0.15);
    border-color: rgba(255, 125, 41, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #FF7D29, #FFBF78);
    transition: width 0.4s ease;
}

.feature-card:hover::after { width: 100%; }

.serial-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 125, 41, 0.1), rgba(255, 191, 120, 0.2));
    color: #FF7D29;
    border: 1px solid rgba(255, 125, 41, 0.3);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .serial-number {
    background: #FF7D29;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 125, 41, 0.4);
}

.content h5 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #222;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.why-choose-us-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 100px;
}

.why-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 5s ease-in-out infinite;
}

/* Why Choose Us Responsiveness */
@media screen and (max-width: 1024px) {
    .why-choose-us-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center; /* Main Container center */
    }
    .why-choose-us-text, .why-choose-us-image { width: 100%; }
}

@media screen and (max-width: 768px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Tablet pe 2 columns */
        gap: 15px;
    }

    .feature-card {
        flex-direction: column; /* Number upar, text niche */
        align-items: center;    /* Horizontal Center */
        text-align: center;      /* Text alignment center */
        padding: 25px 15px;
    }

    .serial-number {
        margin-right: 0;        /* Side margin hata di */
        margin-bottom: 12px;    /* Gap niche shift kiya */
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    /* Paragraph specifically center karne ke liye */
    .content p {
        text-align: center !important; 
        font-size: 0.9rem;
    }

    .why-choose-us-text h3 { 
        font-size: 1.8rem !important; /* Title chota kiya */
    }
}

@media screen and (max-width: 480px) {
    .features-grid { 
        grid-template-columns: 1fr; /* Mobile pe single column grid */
    }
    
    .feature-card {
        margin: 0 auto;
        width: 100%;
    }
}

/* ========================================= */
    /* 3. SERVICES SECTION - FIXED               */
    /* ========================================= */
    #services {
        background: linear-gradient(135deg, #fffbf7 0%, #fff5eb 100%);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .container {
        width: 100%;
        max-width: 1200px; /* Thoda wide kiya taaki desktop pe clean dikhe */
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
        box-sizing: border-box;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .blob-s {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
        opacity: 0.5;
    }

    .blob-s-1 { top: -10%; left: -5%; width: 300px; height: 300px; background: #FFBF78; }
    .blob-s-2 { bottom: -10%; right: -5%; width: 400px; height: 400px; background: #ffdec0; }

    .badge {
        background-color: rgba(255, 125, 41, 0.1);
        color: #FF7D29;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 30px;
        display: inline-block;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.6rem;
        font-weight: 700;
        color: #222;
        line-height: 1.3;
    }

    /* --- GRID SETUP --- */
    .services {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        align-items: stretch; /* Cards barabar height ke rahenge */
    }

    /* --- CARD STYLING FIX --- */
    .service-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 25px 20px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        
        /* Layout Fixes */
        height: 100%;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between hataya taaki stretch na ho */
        
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(255, 125, 41, 0.12);
        border-bottom: 3px solid #FF7D29;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
        background-color: rgba(255, 125, 41, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .icon-box svg {
        width: 28px;
        height: 28px;
        stroke: #FF7D29;
        stroke-width: 2;
        transition: all 0.3s ease;
    }

    .service-card:hover .icon-box {
        background-color: #FF7D29;
        transform: rotateY(180deg);
    }

    .service-card:hover .icon-box svg {
        stroke: #ffffff;
    }

    .service-card h3 {
        font-size: 1.25rem;
        color: #222;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* --- Button Position Fix --- */
    .read-more {
        color: #FF7D29;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: gap 0.3s ease;
        
        /* Ye line button ko hamesha bottom pe rakhegi bina stretch kiye */
        margin-top: auto; 
    }

    .read-more:hover {
        gap: 8px;
    }

    /* --- RESPONSIVENESS (MOBILE FIX) --- */
    
    /* Laptop/Tablet (2 Columns) */
    @media screen and (max-width: 992px) {
        .services {
            grid-template-columns: repeat(2, 1fr);
        }
        .subtitle {
            font-size: 1.4rem;
        }
    }

    /* Mobile Phones (1 Column Fix) */
    @media screen and (max-width: 768px) {
        .services {
            grid-template-columns: 1fr !important; /* Force 1 column */
            gap: 20px;
        }
        
        .container {
            padding: 0 20px !important;
        }
    }

/* ========================================= */
/* 4. TESTIMONIALS SECTION                   */
/* ========================================= */
/* FONT SETUP */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&display=swap');

/* --- PILL BADGE STYLE --- */
.custom-badge {
    /* Background: Light Peach (Orange ka bohot light version) */
    background-color: #FFF0E5; 
    
    /* Text Color: KaVaaVi Orange */
    color: #FF7D29; 
    
    /* Shape & Spacing */
    padding: 10px 24px;       /* Top-Bottom 10px, Left-Right 24px */
    border-radius: 50px;      /* Full rounded corners */
    display: inline-block;    /* Box jitna content hai utna hi bada hoga */
    
    /* Font Styling */
    font-size: 0.9rem;        /* Text size */
    font-weight: 800;         /* Extra Bold */
    text-transform: uppercase;/* Saare letters Capital */
    letter-spacing: 1.5px;    /* Letters ke beech thodi jagah */
    border: none;             /* Border hata diya */
}
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

/* --- VARIABLES (ISSE CHEDNA MAT) --- */
:root {
    --card-width-laptop: 350px;
    --card-width-mobile: 280px;
    --gap: 30px;
    --total-unique-cards: 5; /* Humare 5 unique cards hain */
    
    /* Laptop Loop Logic: (Card + Gap) * 5 */
    --scroll-width-laptop: calc((var(--card-width-laptop) + var(--gap)) * var(--total-unique-cards));
    
    /* Mobile Loop Logic */
    --scroll-width-mobile: calc((var(--card-width-mobile) + var(--gap)) * var(--total-unique-cards));
    
    --orange-primary: #FF7D29;
}

.testimonial-section {
    /* Purana linear-gradient hata diya */
    
    /* Naya Background (FAQ Section wala same to same) */
    background: radial-gradient(circle at top left, #fff5f0 0%, #ffffff 50%, #fffaf8 100%);
    
    padding: 60px 0;
    overflow: hidden;
}

.section-header { text-align: center; margin-bottom: 40px; padding: 0 15px; }

.badge {
    background: rgba(255, 125, 41, 0.1); color: var(--orange-primary);
    padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; display: inline-block; margin-bottom: 10px; letter-spacing: 1px;
}

.section-header h2 { font-size: 2.2rem; font-weight: 800; color: #222; margin: 5px 0; }
.section-header p { color: #666; font-size: 1rem; margin: 0; }

/* --- SLIDER CONTAINER --- */
.slider {
    margin: auto; position: relative; width: 100%; overflow: hidden; padding: 20px 0;
}

/* Side Fade Effect (Left & Right Blur) */
.slider::before, .slider::after {
    /* Yahan color change kiya hai #fffbf7 se #fff5f0 taaki background se match kare */
    background: linear-gradient(to right, #fff5f0 0%, rgba(255, 255, 255, 0) 100%);
    
    content: ""; height: 100%; position: absolute; width: 100px; z-index: 2; pointer-events: none;
}
.slider::before { left: 0; top: 0; }

/* Right side positioning same */
.slider::after { right: 0; top: 0; transform: rotateZ(180deg); }
/* --- THE TRACK (Jahan magic hota hai) --- */
.slide-track {
    display: flex;
    /* Track ki width content ke hisab se automatic set hogi */
    width: max-content; 
    gap: var(--gap);
    /* Important: Smoothness ke liye will-change use karein */
    will-change: transform;
    animation: scroll 40s linear infinite;
}

.slider:hover .slide-track { animation-play-state: paused; }

/* --- CARD DESIGN --- */
.testimonial-card {
    width: var(--card-width-laptop);
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 30px rgba(255, 125, 41, 0.15);
}

/* Quote Icon */
.testimonial-card::before {
    content: '“'; position: absolute; top: 0px; left: 20px;
    font-size: 5rem; color: rgba(255, 125, 41, 0.1); font-family: 'Mulish', sans-serif; font-weight: 800; line-height: 1;
}

.testimonial-card p {
    font-size: 1rem; line-height: 1.6; color: #444; font-weight: 600;
    margin-bottom: 20px; position: relative; z-index: 1;
}

.client-info {
    display: flex; align-items: center; border-top: 1px solid #f5f5f5; padding-top: 15px;
}

.client-info img {
    width: 45px; height: 45px; border-radius: 50%; object-fit: cover;
    margin-right: 12px; border: 2px solid #FFF0E5;
}

.client-info h3 { font-size: 0.95rem; font-weight: 800; color: #222; margin: 0; }
.client-info small { font-size: 0.8rem; color: var(--orange-primary); font-weight: 700; display: block; }

/* --- ANIMATION KEYFRAMES (THE FIX) --- */
@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        /* Move Left exactly by the width of 5 cards + 5 gaps */
        transform: translateX(calc(-1 * var(--scroll-width-laptop))); 
    }
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .testimonial-section { padding: 40px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .slider::before, .slider::after { width: 50px; }

    /* Change animation to use Mobile Width Variable */
    .slide-track {
        animation-name: scrollMobile; /* Alag animation name use karein safe side ke liye */
        animation-duration: 25s;
    }

    .testimonial-card {
        width: var(--card-width-mobile);
        padding: 25px 20px;
    }

    @keyframes scrollMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-1 * var(--scroll-width-mobile))); }
    }
}

/* ========================================= */
/* 5. FAQ & CTA SECTION                      */
/* ========================================= */
.faq-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px; 
    border-radius: 40px; 
    background: #fff1e6;
    position: relative;
    overflow: hidden;
}
.badge {
    display: inline-block; 
}
.faq-section { flex: 1.2; max-width: 600px; }
.faq-header {
    text-align: center;
    margin-bottom: 30px; 
}
.faq-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: capitalize;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 15px;
    background: linear-gradient(90deg, #1a1a1a 0%, #444 50%, #FF7D29 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 125, 41, 0.05); 
}

.faq-card:hover {
    background: #ffffff;
    border-color: #db8e5b;
    box-shadow: 0 15px 35px rgba(255, 125, 41, 0.1);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
}

.plus-icon {
    width: 28px;
    height: 28px;
    background: #fff5ef;
    color: #f79655;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.faq-card.active {
    background: #fff;
    border-left: 4px solid #FF7D29;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-card.active .plus-icon {
    background: #FF7D29;
    color: white;
    transform: rotate(45deg);
}

.faq-card.active .faq-body {
    max-height: 200px;
    padding-bottom: 25px;
}

/* --- THE CENTER LINE --- */
.center-line {
    width: 2px;
    margin: 0 50px;
    background: linear-gradient(to bottom, 
        rgba(255, 125, 41, 0) 0%,    
        rgba(174, 142, 122, 0.8) 50%,   
        rgba(255, 125, 41, 0) 100%   
    );
    box-shadow: 0 0 15px rgba(255, 112, 20, 0.2);
    flex-shrink: 0;
}

/* --- CTA SECTION --- */
.cta-btn {
    background: #ffffff;
    color: #ff6200;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cta-section {
    flex: 0.8;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.cta-card {
    background: #ef821d;
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    color: #fff5ef;
    box-shadow: 0 20px 40px rgba(255, 112, 20, 0.25);
    width: 100%;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fbf0f0;
}

.cta-card p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #fbf0f0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 992px) {
    .faq-cta-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px; /* Thoda gap diya andar se */
        margin-top: 60px;   /* Upar wale section se door */
        margin-bottom: 60px; /* Neeche wale section se door */
        gap: 50px; /* FAQ aur Orange Box ke beech gap */
    }
    
    .center-line { display: none; }
    
    .faq-section, .cta-section { 
        width: 100%; 
        max-width: 100%; 
    }
    
    .cta-section { 
        margin-top: 0; /* Gap upar wrapper me de diya hai */
    }

    .faq-header h2 {
        font-size: 1.8rem; /* Mobile font size */
    }
}


/* ========================================= */
/* 6. FOOTER SECTION                         */
/* ========================================= */
.footer-kavaavi {
    /* Background hata diya taaki piche ka gradient dikhe */
    background: transparent !important; 
    
    /* Upar ki white line (border) bhi hata di */
    border-top: none !important; 
    
    position: relative;
    overflow: hidden;
}

/* Baaki ka code same rahega */
.footer-kavaavi h3 {
    margin-top: 0 !important;
    margin-bottom: 1rem;
}


.contact-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #f97316;
    flex-shrink: 0;
}

.service-link {
    transition: all 0.2s ease;
    color: #4b5563;
}

.service-link:hover {
    color: #f97316;
    padding-left: 5px;
}

/* ========================================= */
/* SEAMLESS GLOSSY BACKGROUND LOGIC         */
/* ========================================= */

/* 1. Master Background Wrapper */
/* Ye 'Welcome to KaVaaVi' se lekar Footer tak ek hi background dega */
.seamless-orange-flow {
    width: 100%;
    position: relative;
    
    /* Glossy Orange Gradient Flow */
    background: linear-gradient(180deg, 
        #fffbf7 0%,    /* About Us (Lightest) */
        #fff5eb 25%,   
        #fff0e3 50%,   /* Services area */
        #ffeacc 75%,   /* FAQ area (Thoda Orange) */
        #ffe4d6 100%   /* Footer (Deepest Glossy tint) */
    );
}

/* 2. Inner Sections ko Transparent Banana */
/* Taki peeche ka gradient dikhai de */
.seamless-orange-flow #about,
.seamless-orange-flow #why-choose-us,
.seamless-orange-flow #services,
.seamless-orange-flow .testimonial-section,
.seamless-orange-flow .footer-kavaavi {
    background: transparent !important;
    margin-top: 0 !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* 3. FAQ & CTA Section - Fix for Spacing */
.seamless-orange-flow .faq-cta-wrapper {
    background: transparent !important; /* Box hataya */
    box-shadow: none !important;        /* Shadow hatayi */
    border: none !important;            /* Border hataya */
    
    /* --- Fix Yahan Hai (Gap Added) --- */
    margin: 80px auto 0 auto !important; /* Upar 80px ka gap diya */
    
    border-radius: 0 !important;
    max-width: 1200px;
    padding-top: 0 !important;
}
/* 4. Footer Tweaks for Seamless flow */
.seamless-orange-flow .footer-kavaavi {
    border-top: none !important; /* Footer ki alag line hatayi */
    background: transparent !important;
}

/* 5. Blobs fix (Optional) */
/* Agar blobs chahiye to unhe wrapper ke relative set karein */
.seamless-orange-flow .blob, 
.seamless-orange-flow .blob-w, 
.seamless-orange-flow .blob-s {
    z-index: 0; 
}

/* --- SCROLLBAR HIDING TRICK --- */
        ::-webkit-scrollbar {
            width: 0px;
            background: transparent;
        }

        html {
            scrollbar-width: none;
        }