/* --- GLOBAL STYLES & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* --- REUSABLE COMPONENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #3b3ae6;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #2a29c5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 58, 230, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #3b3ae6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    color: #3b3ae6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* --- HERO SECTION & NAVBAR --- */
.hero-section {
    background: radial-gradient(circle at 80% 20%, #0c1033 0%, #050716 100%);
    color: #ffffff;
    padding: 0 8% 80px 8%;
    position: relative;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.logo-icon {
    background: #3b3ae6;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #b3b8d4;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    border-bottom: 2px solid #3b3ae6;
    padding-bottom: 4px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 60px;
    gap: 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #b3b8d4;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Right Side - Animated Laptop & Icons */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    animation: floatLaptop 6s ease-in-out infinite;
}

.laptop-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Tech Badges around Laptop */
.floating-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.icon-code { background: #3b3ae6; top: 10%; left: -5%; animation: floatBadge 4s ease-in-out infinite; }
.icon-paint { background: #00bfa5; bottom: 20%; left: -2%; animation: floatBadge 4.5s ease-in-out infinite 0.5s; }
.icon-screen { background: #8a2be2; top: 12%; right: -2%; animation: floatBadge 5s ease-in-out infinite 1s; }
.icon-mobile { background: #ff9100; bottom: 22%; right: -5%; animation: floatBadge 4.2s ease-in-out infinite 0.3s; }

/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.section-header p {
    color: #666666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f5;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #e2e2ec;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 25px;
}

/* Dynamic Color Palettes for Service Icons */
.icon-blue { background: #eef2ff; color: #3b3ae6; }
.icon-purple { background: #fae8ff; color: #d946ef; }
.icon-lightblue { background: #e0f2fe; color: #0284c7; }
.icon-green { background: #f0fdf4; color: #22c55e; }
.icon-orange { background: #fff7ed; color: #f97316; }
.icon-violet { background: #f5f3ff; color: #8b5cf6; }

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
}

.service-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* --- ABOUT & STATS SECTION --- */
.about-section {
    padding: 60px 8% 80px 8%;
    background-color: #f8fafc;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(12, 16, 51, 0.85);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.about-content p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Stats Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.icon-blue-light { background: #eff6ff; color: #1d4ed8; }
.icon-purple-light { background: #faf5ff; color: #7e22ce; }
.icon-orange-light { background: #fff7ed; color: #c2410c; }
.icon-green-light { background: #f0fdf4; color: #15803d; }

.stat-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
}

.stat-item p {
    color: #666666;
    font-size: 14px;
}

/* --- FOOTER CTA BAR --- */
.cta-bar {
    background: #050716;
    margin: 40px 8%;
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    background: #3b3ae6;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.cta-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-left p {
    color: #b3b8d4;
    font-size: 14px;
}

.cta-btn {
    background: #3b3ae6;
}

/* --- ANIMATIONS (MOVEMENTS) --- */
@keyframes floatLaptop {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes floatBadge {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
    100% { transform: translateY(0px) scale(1); }
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p, .section-header p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .nav-links {
        display: none; /* Simplification for small screens */
    }
    .cta-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .services-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .about-content h2, .section-header h2 {
        font-size: 28px;
    }
}
/* --- PROCESS SECTION --- */
.process-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: #f8fafc;
    padding: 40px 25px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #f0f0f5;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(59, 58, 230, 0.05);
    border-color: #3b3ae6;
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(59, 58, 230, 0.15);
    position: absolute;
    top: 20px;
    right: 25px;
    line-height: 1;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
    margin-top: 10px;
}

.process-step p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 80px 8%;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transform: translateY(-3px);
}

.quote-icon {
    font-size: 24px;
    color: #3b3ae6;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: #eef2ff;
    color: #3b3ae6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.client-info p {
    font-size: 13px;
    color: #64748b;
}

/* --- INTERACTIVE FAQ SECTION --- */
.faq-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #3b3ae6;
    box-shadow: 0 5px 15px rgba(59, 58, 230, 0.05);
}

summary.faq-question {
    padding: 20px 25px;
    font-weight: 500;
    font-size: 16px;
    color: #1e293b;
    cursor: pointer;
    list-style: none; /* Default arrow hide */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

summary.faq-question::-webkit-details-marker {
    display: none; /* Safari arrow hide */
}

summary.faq-question i {
    font-size: 14px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item[open] summary.faq-question i {
    transform: rotate(180deg);
    color: #3b3ae6;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    animation: slideDown 0.3s ease;
}

/* Smooth collapse animation toggle */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE UPDATES FOR NEW SECTIONS --- */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* --- FIXED TESTIMONIAL STYLES --- */

.testimonials-section {
    padding: 80px 8%;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; /* दोनों कार्ड्स के बीच बेहतर स्पेस */
    max-width: 1100px;
    margin: 0 auto;
}

/* मुख्य कार्ड डिज़ाइन */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-6px);
}

/* ऊपर की वेबसाइट/प्रोजेक्ट इमेज */
.testimonial-preview-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.testimonial-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.testimonial-card:hover .testimonial-preview-img img {
    transform: scale(1.06);
}

/* बीच का टेक्स्ट एरिया */
.testimonial-body {
    padding: 30px;
    flex-grow: 1; /* यह टेक्स्ट को बराबर स्पेस देगा */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-icon {
    font-size: 28px;
    color: #3b3ae6;
    opacity: 0.6;
    line-height: 1;
}

.testimonial-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* नीचे का क्लाइंट प्रोफाइल एरिया - अब यह कभी नहीं टूटेगा */
.client-info-footer {
    padding: 20px 30px;
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* गोल चेहरा (Avatar) */
.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3b3ae6;
    flex-shrink: 0; /* फोटो को दबने से रोकेगा */
    position: relative;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* नाम और लिंक्स का टेक्स्ट */
.client-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.client-details p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.client-link {
    color: #3b3ae6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.client-link:hover {
    color: #2a29c5;
    text-decoration: underline;
}

.client-link i {
    font-size: 11px;
}

/* मोबाइल और टैबलेट के लिए रिस्पॉन्सिव */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/*Service Page CSS*/

/* --- SERVICES PAGE EXTRA STYLES --- */

/* Services Top Header Banner */
.services-hero {
    background: radial-gradient(circle at 50% 50%, #0c1033 0%, #050716 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 8% 80px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-hero-content max-width: 700px; {
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.services-hero p {
    color: #b3b8d4;
    font-size: 16px;
    line-height: 1.7;
}

/* Detailed Layout Blocks (Alternating Row Layout) */
.detailed-services {
    padding: 80px 8%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 100px; /* हर एक सर्विस ब्लॉक के बीच स्पेस */
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Row उलट करने के लिए जब अल्टरनेट हो */
.service-detail-row.reverse {
    direction: rtl;
}
.service-detail-row.reverse .service-detail-text {
    direction: ltr; /* टेक्स्ट वापस लेफ्ट-टू-राइट करने के लिए */
}

.service-detail-img {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-row:hover .service-detail-img img {
    transform: scale(1.04);
}

.service-detail-text h2 {
    font-size: 32px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail-text p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* फीचर्स बुलेट लिस्ट */
.service-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.service-feature-list li i {
    color: #22c55e; /* ग्रीन टिक मार्क */
    font-size: 16px;
}

/* Why Choose Us Section (Dark Theme Accent) */
.why-choose-us {
    background: #050716;
    padding: 80px 8%;
    text-align: center;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.edge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.edge-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: #3b3ae6;
}

.icon-gradient {
    font-size: 32px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.edge-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 12px;
}

.edge-card p {
    color: #b3b8d4;
    font-size: 14px;
    line-height: 1.6;
}

/* --- RESPONSIVE FOR SERVICES --- */
@media (max-width: 900px) {
    .service-detail-row, .service-detail-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    .edge-grid {
        grid-template-columns: 1fr;
    }
    .services-hero h1 {
        font-size: 32px;
    }
}

/* ===================================================
   SERVICES HTML TARGETED CUSTOM STYLING
   =================================================== */

.services-hero {
    background: radial-gradient(circle at 50% 50%, #0c1033 0%, #050716 100%);
    color: #ffffff;
    text-align: center;
    padding: 120px 8% 80px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-hero p {
    color: #b3b8d4;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 7 Core Grid Section Setup */
.services-grid-section {
    padding: 80px 8%;
    background: #ffffff;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box:hover {
    background: #ffffff;
    border-color: #3b3ae6;
    box-shadow: 0 15px 30px rgba(59, 58, 230, 0.06);
    transform: translateY(-4px);
}

.s-icon {
    font-size: 26px;
    color: #3b3ae6;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 19px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Digital Architects Block (Premium Dark Theme Accent) */
.digital-architects-section {
    background: #050716;
    padding: 90px 8%;
}

.architects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.arch-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.arch-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #6366f1;
    transform: translateY(-3px);
}

.arch-num {
    font-size: 13px;
    font-weight: 700;
    color: #6366f1;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.arch-card h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.arch-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Technology Spectrum Elements */
.tech-stack-section {
    padding: 80px 8%;
    background: #f8fafc;
}

.tech-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
}

.tech-box h3 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Service FAQ Integration Layout */
.service-faq-section {
    padding: 80px 8%;
    background: #ffffff;
}

.s-faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.s-faq-item[open] {
    border-color: #3b3ae6;
    background: #ffffff;
}

summary.s-faq-question {
    padding: 20px;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary.s-faq-question::-webkit-details-marker { display: none; }

.s-faq-item[open] summary.s-faq-question i {
    transform: rotate(180deg);
    color: #3b3ae6;
}

.s-faq-answer {
    padding: 0 20px 20px 20px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 960px) {
    .main-services-grid, .architects-grid, .tech-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .main-services-grid, .architects-grid, .tech-categories-grid {
        grid-template-columns: 1fr;
    }
    .services-hero h1 {
        font-size: 32px;
    }
}
/* --- EXTRA PREMIUM SPLIT LAYOUT (AS PER IMAGE_FB0343) --- */

.architects-split-section {
    padding: 100px 8%;
    background-color: #ffffff; /* क्लीन व्हाइट बैकग्राउंड जैसा स्क्रीनशॉट में है */
}

.architects-split-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* लेफ्ट साइड को थोड़ा ज़्यादा स्पेस */
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* लेफ्ट साइड कंटेंट */
.architects-content-left {
    display: flex;
    flex-direction: column;
}

.arch-tag {
    color: #3b3ae6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.architects-content-left h2 {
    font-size: 36px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.arch-subtitle {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

/* लिस्ट और आइटम्स की स्टाइलिंग */
.arch-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px; /* हर पॉइंट के बीच का वर्टिकल गैप */
}

.arch-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* गोल और हल्का आइकॉन बॉक्स (जैसा स्क्रीनशॉट में है) */
.arch-icon {
    width: 46px;
    height: 46px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #475569;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.arch-feature-item:hover .arch-icon {
    background-color: #3b3ae6;
    color: #ffffff;
    transform: scale(1.05);
}

/* टेक्स्ट एलिमेंट्स */
.arch-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arch-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.arch-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* राइट साइड इमेज रैपर */
.architects-image-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.arch-img-wrapper {
    width: 100%;
    height: 600px; /* एक लंबी और प्रोफेशनल इमेज के लिए परफेक्ट हाइट */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.arch-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* टैबलेट और मोबाइल रिस्पॉन्सिव (ताकि छोटे स्क्रीन पर इमेज नीचे आ जाए) */
@media (max-width: 1024px) {
    .architects-split-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .arch-img-wrapper {
        height: 450px;
    }
}

@media (max-width: 640px) {
    .architects-content-left h2 {
        font-size: 28px;
    }
    .arch-img-wrapper {
        height: 350px;
    }
}/* --- NON-CARD INTERACTIVE SPOTLIGHT LAYOUT --- */

.domain-spotlight-section {
    padding: 110px 8%;
    background-color: #ffffff;
    clear: both;
}

.spotlight-header {
    text-align: left;
    margin-bottom: 60px;
}

.spotlight-tag {
    color: #3b3ae6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.spotlight-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 15px 0;
}

.spotlight-header p {
    color: #475569;
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
}

/* मुख्य ग्रिड कंटेनर */
.spotlight-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* लेफ्ट साइड थोड़ा कॉम्पैक्ट, राइट साइड बड़ा शोकेस */
    gap: 50px;
    align-items: flex-start;
}

/* लेफ्ट साइड नेविगेशन लिस्ट (ट्रेडीशनल कार्ड्स को हटाकर) */
.spotlight-nav {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #e2e8f0; /* बाईं तरफ एक पतली लाइन */
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid #f1f5f9;
}

/* नंबरिंग स्टाइल */
.nav-num {
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.3s;
}

.nav-title-group h3 {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 4px 0;
    transition: color 0.3s;
}

.nav-title-group p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.nav-arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

/* होवर और एक्टिव स्टेट (कार्ड्स जैसा डिब्बा नहीं, सिर्फ एक बॉर्डर-इंडिकेटर और टेक्स्ट कलर चेंज) */
.nav-item:hover, .nav-item.active {
    background-color: #f8fafc;
}

.nav-item.active {
    border-left: 3px solid #3b3ae6;
    margin-left: -2px; /* एक्टिव होने पर लाइन को ओवरलैप करने के लिए */
}

.nav-item.active .nav-num, .nav-item.active .nav-title-group h3 {
    color: #3b3ae6;
}

.nav-item.active .nav-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #3b3ae6;
}

/* राइट साइड शोकेस विंडो */
.spotlight-window {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    min-height: 480px;
    position: relative;
    border: 1px solid #e2e8f0;
}

/* पैनल्स को छुपाना और दिखाना */
.display-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 30px;
    animation: fadeInPanel 0.5s ease forwards;
}

.display-panel.active {
    display: grid;
}

.panel-image {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-details h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 12px 0;
}

.panel-details p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* कस्टमाइज्ड बुलेट पॉइंट्स */
.panel-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.panel-bullets li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-bullets li i {
    color: #10b981; /* ग्रीन टिक मार्क */
    font-size: 14px;
}

/* एनीमेशन इफ़ेक्ट */
@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* रिस्पॉन्सिव लेआउट */
@media (max-width: 992px) {
    .spotlight-container {
        grid-template-columns: 1fr;
    }
    .spotlight-window {
        padding: 25px;
    }
}

/* --- PREMIUM GET A QUOTE SECTION STYLING --- */

.get-quote-section {
    padding: 100px 8%;
    background-color: #f8fafc; /* लाइट ऑफ-व्हाइट बैकग्राउंड */
    clear: both;
}

.quote-split-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* लेफ्ट को टेक्स्ट के लिए, राइट को फॉर्म के लिए स्पेस */
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* लेफ्ट साइड अलाइनमेंट */
.quote-info-left {
    display: flex;
    flex-direction: column;
}

.quote-tag {
    color: #3b3ae6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.quote-info-left h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.quote-desc {
    color: #475569;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* ट्रस्ट यूनीक पॉइंट्स लिस्ट */
.quote-trust-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.t-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-point i {
    color: #3b3ae6;
    font-size: 16px;
    width: 32px;
    height: 32px;
    background: rgba(59, 58, 230, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t-point span {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

/* राइट साइड फॉर्म कंटेनर (कोई भारी शैडो नहीं, एकदम क्लीन डिज़ाइन) */
.quote-form-right {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.custom-quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-block-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

/* कस्टमाइज्ड सर्विस सिलेक्शन चिप्स (No default browser checkboxes) */
.services-selector-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-item input[type="checkbox"] {
    display: none; /* डिफ़ॉल्ट गंदे बॉक्स को छुपाएं */
}

.chip-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chip-box i {
    font-size: 13px;
    color: #64748b;
}

/* जब यूजर चिप को सेलेक्ट करेगा (Active Logic) */
.chip-item input[type="checkbox"]:checked + .chip-box {
    background: #3b3ae6;
    color: #ffffff;
    border-color: #3b3ae6;
}

.chip-item input[type="checkbox"]:checked + .chip-box i {
    color: #ffffff;
}

/* इनपुट फ़ील्ड्स ग्रिड */
.form-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field-wrapper label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.input-field-wrapper input, .input-field-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-field-wrapper input:focus, .input-field-wrapper textarea:focus {
    outline: none;
    border-color: #3b3ae6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 58, 230, 0.08);
}

.input-field-wrapper textarea {
    resize: vertical;
}

/* सबमिट बटन स्टाइल */
.quote-submit-btn {
    width: 100%;
    background: #050716; /* डार्क प्रीमियम बटन */
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quote-submit-btn:hover {
    background: #3b3ae6; /* होवर करने पर आपकी ब्रांड थीम ब्लू होगी */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 58, 230, 0.2);
}

/* रिस्पॉन्सिव आर्किटेक्चर ब्रेकपॉइंट्स */
@media (max-width: 992px) {
    .quote-split-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .quote-form-right {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .form-input-grid {
        grid-template-columns: 1fr;
    }
    .quote-info-left h2 {
        font-size: 30px;
    }
}
/* --- NEW CONTACT DETAILS SPECIFIC STYLING --- */

.direct-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* बारीक और क्लासी सर्कल आइकॉन */
.channel-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3b3ae6; /* आपकी ब्रांड थीम ब्लू */
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact-channel-item:hover .channel-icon {
    background: #3b3ae6;
    color: #ffffff;
    border-color: #3b3ae6;
}

/* कॉन्टैक्ट टेक्स्ट और लिंक्स */
.channel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-text span {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-text a, .channel-text p {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}

.channel-text a:hover {
    color: #3b3ae6;
}

/* सेपरेटर लाइन */
.quote-separator {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 10px 0 25px 0;
}

/* मोबाइल और रिस्पॉन्सिव एडजस्टमेंट */
@media (max-width: 600px) {
    .channel-text a, .channel-text p {
        font-size: 14px;
    }
}

/* --- SOLO ABOUT PAGE SPECIFIC STYLING --- */

.about-hero-section {
    padding: 120px 8% 80px 8%;
    background-color: #ffffff;
    clear: both;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
}

.about-tag {
    color: #3b3ae6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-hero-left h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.about-lead {
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.about-subtext {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* मुख्य कॉल-टू-एक्शन बटन स्टाइल (आपकी थीम ब्लू) */
.about-btn-primary {
    display: inline-block;
    background: #3b3ae6;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(59, 58, 230, 0.15);
}

.about-btn-primary:hover {
    background: #050716;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 7, 22, 0.2);
}

/* राइट साइड: इमेज एंड ओवरले */
.about-hero-right {
    position: relative;
    width: 100%;
}

.about-img-frame {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* डार्क फ्लोटिंग स्टेट्स ओवरले */
.about-stats-overlay {
    position: absolute;
    bottom: -40px;
    left: 5%;
    right: 5%;
    background: #050716;
    border-radius: 16px;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    box-shadow: 0 20px 40px rgba(5, 7, 22, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-counter-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.stat-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- MISSION & VISION --- */
.mission-vision-section {
    padding: 80px 8%;
    background-color: #f8fafc;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-block {
    display: flex;
    flex-direction: column;
}

.mv-number {
    font-size: 14px;
    font-weight: 700;
    color: #3b3ae6;
}

.mv-block h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 8px 0 15px 0;
}

.mv-block p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.6;
}

/* --- CORE VALUES --- */
.values-section {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.value-item {
    text-align: left;
    padding: 20px 10px;
}

.value-icon {
    font-size: 24px;
    color: #3b3ae6;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.value-item p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .about-hero-container, .mv-container, .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-hero-left, .value-item {
        text-align: center;
    }
    .about-img-frame {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .about-hero-left h1 { font-size: 28px; }
    .values-header h2 { font-size: 28px; }
    .about-stats-overlay {
        grid-template-columns: 1fr;
        gap: 25px;
        bottom: -60px;
    }
    .stat-counter-item:not(:last-child)::after { display: none; }
    .about-hero-section { padding-bottom: 100px; }
}
/* --- COMPREHENSIVE CONTACT & QUOTE CSS --- */

.get-quote-section {
    padding: 120px 8% 100px 8%;
    background-color: #f8fafc; /* क्लीन ऑफ-व्हाइट बैकग्राउंड */
    clear: both;
}

.quote-split-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* लेफ्ट साइड डिज़ाइन */
.quote-info-left {
    display: flex;
    flex-direction: column;
}

.quote-tag {
    color: #3b3ae6; /* आपकी थीम ब्लू */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.quote-info-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.quote-desc {
    color: #475569;
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

/* कॉन्टैक्ट चैनल्स */
.direct-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}

.contact-channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3b3ae6;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact-channel-item:hover .channel-icon {
    background: #3b3ae6;
    color: #ffffff;
    border-color: #3b3ae6;
}

.channel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-text span {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-text a, .channel-text p {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}

.channel-text a:hover {
    color: #3b3ae6;
}

.quote-separator {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

/* ट्रस्ट पॉइंट्स */
.quote-trust-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.t-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-point i {
    color: #3b3ae6;
    font-size: 14px;
    width: 28px;
    height: 28px;
    background: rgba(59, 58, 230, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t-point span {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

/* राइट साइड फॉर्म */
.quote-form-right {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.custom-quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-block-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

/* चिप्स (Checkbox Styling) */
.services-selector-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-item input[type="checkbox"] {
    display: none;
}

.chip-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chip-item input[type="checkbox"]:checked + .chip-box {
    background: #3b3ae6;
    color: #ffffff;
    border-color: #3b3ae6;
}

/* इनपुट ग्रिड */
.form-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field-wrapper label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.input-field-wrapper input, .input-field-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-field-wrapper input:focus, .input-field-wrapper textarea:focus {
    outline: none;
    border-color: #3b3ae6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 58, 230, 0.08);
}

/* सबमिट बटन */
.quote-submit-btn {
    width: 100%;
    background: #050716; /* थीम डार्क टोन */
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quote-submit-btn:hover {
    background: #3b3ae6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 58, 230, 0.2);
}

/* रिस्पॉन्सिव लेआउट ब्रेकपॉइंट्स */
@media (max-width: 992px) {
    .quote-split-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .quote-form-right {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .form-input-grid {
        grid-template-columns: 1fr;
    }
    .quote-info-left h2 {
        font-size: 32px;
    }
}