
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Poppins', sans-serif;
        }
        /* Custom Colors based on your screenshots */
        .brand-orange { background-color: #E65124; }
        .brand-orange-text { color: #E65124; }
        .brand-dark { background-color: #1A1A1A; }
        .form-bg { background-color: rgba(230, 81, 36, 0.9); }
        
        /* Slider Transitions */
        .slider-image {
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        /* Dropdown Visibility */
        .dropdown:hover .dropdown-menu {
            display: block;
        }

   /* Header-CSS */

   /* style for header contact btn */

   .contact-btn{
    width: 250px;
    height: auto;
   }

   .brand-orange {
            background: linear-gradient(135deg, #ff7b00, #ff5100);
        }

        .brand-orange-text {
            color: #ff6b00;
        }

        .brand-dark {
            background: #094765;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
            animation: fadeDown .3s ease;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0px);
            }
        }

        .mobileMenu {
            transition: .4s ease;
        }

        .menuShow {
            right: 0 !important;
        }

        .overlayShow {
            opacity: 1 !important;
            visibility: visible !important;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header Css End */


    /* Active menu style injection template mapping */
    .active-tab {
        background-color: #E65124 !important;
        color: #ffffff !important;
    }
    .active-tab span {
        color: #ffffff !important;
    }
    /* Simple dynamic fade handler classes */
    .fade-out-effect {
        opacity: 0;
        transform: scale(0.98);
    }

    /* Active slide becomes fully opaque, others stay slightly translucent */
    .swiper-slide-active, .swiper-slide-next {
        opacity: 1 !important;
    }
    
    .testimonial-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #9CA3AF;
        opacity: 0.6;
        transition: all 0.3s ease;
    }
    .testimonial-swiper .swiper-pagination-bullet-active {
        background: #E65124 !important;
        opacity: 1;
        width: 10px;
        height: 10px;
        outline: 2px solid #E65124;
        outline-offset: 3px;
    }

    /* Pagination Bullet Theme matching brand orange */
    .gallery-slider .swiper-pagination-bullet-active {
        background: #E65124 !important;
        width: 12px;
        border-radius: 4px;
    }
    
    /* Disables default Swiper button shadows for clean vector look */
    .gallery-slider .swiper-button-disabled {
        opacity: 0.35 !important;
        pointer-events: none;
    }

 
    /* CSS Infinite Marquee Keyframe */
    @keyframes marqueeRun {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .marquee-track {
        animation: marqueeRun 25s linear infinite;
        width: max-content;
    }
    
    /* Text Stroke effect styling definition */
    .stroke-text {
        color: transparent;
        -webkit-text-stroke: 2px #1A1A1A;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    /* Hover state: fill color effect transformation */
    .marquee-track:hover .stroke-text {
        color: #E65124;
        -webkit-text-stroke: 2px #E65124;
        text-shadow: 0 10px 30px rgba(230, 81, 36, 0.15);
    }

    /* JavaScript Initial Entry Animations States mapping pointers */
    .slide-left-active {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    .slide-right-active {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    .slide-center-active {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    /* Screen layout break optimization checks to completely prevent pixel breakage */
    @media (min-width: 768px) {
        .process-card-left {
            transform: translateX(80px); /* Starts closer to center */
        }
        .process-card-right {
            transform: translateX(-80px); /* Starts closer to center */
        }
        .process-card-center {
            transform: scale(0.9);
        }
    }

    /* Styling each individual logo cell container */
    .client-logo-box {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        background-color: #ffffff;
        min-h: 110px;
        /* Creating clean borders that sync perfectly across any column breakout */
        border-right: 1px solid #E5E7EB;
        border-bottom: 1px solid #E5E7EB;
        overflow: hidden;
    }
    
    /* Global image styling inside cells */
    .client-logo-img {
        max-width: 85%;
        height: auto;
        max-height: 55px;
        object-contain: contain;
        /* Subtle grayscale and scale filters to allow premium transition pop */
        filter: grayscale(20%) opacity(0.85);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    /* Hover Interaction State Engine */
    .client-logo-box:hover .client-logo-img {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.08);
    }

    /* Bounces the map pin upwards slightly when user hovers card anchor element */
    .location-card:hover .location-pin i {
        animation: pinBounce 0.4s ease infinite alternate;
    }

    @keyframes pinBounce {
        0% { transform: translateY(0); }
        100% { transform: translateY(-3px); }
    }

    @keyframes marqueeRun {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .marquee-track {
        animation: marqueeRun 22s linear infinite;
        width: max-content;
    }
    .stroke-text {
        color: transparent;
        -webkit-text-stroke: 1.5px #1A1A1A;
    }
    .swiper-slide-active, .swiper-slide-next {
        opacity: 1 !important;
    }
    .animate-in {
        opacity: 1 !important;
        transform: translate(0) !important;
    }
    @media (min-width: 768px) {
        .process-card-left { transform: translateX(40px); }
        .process-card-right { transform: translateX(-40px); }
    }


    /* About Us Page css */

    /* Trigger states controlled via Scroll-Observer Engine */
    .animate-visible {
        opacity: 1 !important;
        transform: translate(0) !important;
    }

    /* Icon micro-vibrations when triggering card mouse hovers */
    .group:hover .plan-icon {
        animation: planeFly 0.6s ease-in-out infinite alternate;
    }
    .group:hover .box-icon {
        animation: boxWobble 0.6s ease-in-out infinite alternate;
    }

    @keyframes planeFly {
        0% { transform: translateY(0) translateX(0); }
        100% { transform: translateY(-4px) translateX(3px); }
    }
    @keyframes boxWobble {
        0% { transform: rotate(0deg) scale(1); }
        100% { transform: rotate(5deg) scale(1.05); }
    }

    ------------
    /* CSS Marquee Endless Loop Configuration */
    @keyframes marqueeRun {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .marquee-track {
        animation: marqueeRun 28s linear infinite;
        width: max-content;
    }
    .stroke-text {
        color: transparent;
        -webkit-text-stroke: 2px #000000;
    }
    
    /* Scroll Trigger Entry State */
    .process-card-visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }


    ------------

     /* Continuous Infinite Marquee Performance Config */
    @keyframes marqueeRun {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .marquee-track {
        animation: marqueeRun 24s linear infinite;
        width: max-content;
    }
    .stroke-text {
        color: transparent;
        -webkit-text-stroke: 1.5px #1A1A1A;
    }

    .client-review-swiper .swiper-slide-active,
    .client-review-swiper .swiper-slide-next,
    .client-review-swiper .swiper-slide-next + .swiper-slide {
        opacity: 1 !important;
        scale: 1 !important;
    }
    .client-review-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #9CA3AF;
        opacity: 0.4;
        transition: all 0.3s ease;
    }
    .client-review-swiper .swiper-pagination-bullet-active {
        background: #E65124 !important;
        opacity: 1;
        width: 10px;
        height: 10px;
        outline: 2px solid #E65124;
        outline-offset: 3px;
    }

    /* ==========================================================================
   Residential Moving Section Styles
   ========================================================================== */

.residential-moving-section {
    background-color: #e5f4fc; /* Light blue background as per design */
    padding: 80px 20px;
    font-family: 'Arial', sans-serif; /* Update font family as per your theme */
}

.rm-container {
    max-width: 1140px; /* Standard desktop container width */
    margin: 0 auto;
    width: 100%;
}

.rm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.align-items-center {
    align-items: center;
}

/* --- Image Column --- */
.rm-col-image {
    flex: 1 1 45%; /* Takes 45% width on desktop */
}

.rm-col-image img.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Matches the rounded corners in the image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
    object-fit: cover;
}

/* --- Content Column --- */
.rm-col-content {
    flex: 1 1 45%; /* Takes the remaining space */
}

.rm-col-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 900;
}

.rm-col-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 35px;
    text-align: justify;
}

/* --- Button Styles --- */
.btn-quote {
    display: inline-flex;
    align-items: center;
    background-color: #f05a28; /* Exact orange shade */
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #d94b1f; /* Darker orange on hover */
    color: #ffffff;
}

.btn-quote .icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #f05a28;
    margin-left: 12px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   Responsive (Tab & Mobile)
   ========================================================================== */

/* Tablet (Screens under 991px) */
@media (max-width: 991px) {
    .rm-row {
        flex-direction: column; /* Stacks image top, content bottom */
        gap: 40px;
    }
    
    .rm-col-image, 
    .rm-col-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .rm-col-content h2 {
        font-size: 32px;
    }
}

/* Mobile (Screens under 576px) */
@media (max-width: 576px) {
    .residential-moving-section {
        padding: 50px 15px;
    }

    .rm-col-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .rm-col-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: left; /* Better readability on small screens */
    }

    .btn-quote {
        width: 100%; /* Full width button on mobile */
        justify-content: center;
    }
}

/* ==========================================================================
   Benefits Section Styles
   ========================================================================== */

.benefits-section {
    /* Subtle Glowing Gradient Background */
    background: linear-gradient(135deg, #1d222b 0%, #2b323f 50%, #1a1e26 100%);
    background-size: 200% 200%;
    animation: glowGradient 10s ease infinite;
    padding: 100px 20px;
    color: #ffffff;
    font-family: 'Georgia', serif; /* Or use your specific heading font */
    overflow: hidden;
}

/* Keyframes for the background glow */
@keyframes glowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; /* Ye line left content ko vertically center karegi */
    gap: 60px;
}

/* --- Left Column: Content --- */
.benefits-content {
    flex: 1 1 40%;
    max-width: 500px;
}

.benefits-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-family: 'Times New Roman', Times, serif; /* Match screenshot style */
}

.benefits-content p {
    font-family: 'Arial', sans-serif; /* Paragraph font */
    font-size: 15px;
    line-height: 1.8;
    color: #b0b5be; /* Light grey text */
    text-align: justify;
}

/* --- Right Column: List --- */
.benefits-list-wrapper {
    flex: 1 1 50%;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.benefit-item:last-child {
    border-bottom: none;
}

/* Hover Animation Effect */
.benefit-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.1);
    stroke: #ff4747; /* Icon color changes slightly on hover */
}

/* Active Item Style (First Item) */
.benefit-item.active {
    background-color: #5c626b; /* Lighter grey block */
    border-left: 4px solid #f93822; /* Red accent border */
    border-bottom: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- Icons --- */
.benefit-icon {
    flex-shrink: 0;
    margin-right: 25px;
    margin-top: 5px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Text inside List --- */
.benefit-text h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

/* ==========================================================================
   Responsive (Tab & Mobile)
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .benefits-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .benefits-content, 
    .benefits-list-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .benefits-content h2 {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .benefits-section {
        padding: 60px 15px;
    }

    .benefits-content h2 {
        font-size: 32px;
        br { display: none; } /* Prevents awkward breaks on mobile */
    }

    .benefit-item {
        padding: 20px 15px;
    }

    .benefit-icon {
        margin-right: 15px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-text h3 {
        font-size: 15px;
    }
}

/* ==========================================================================
   Process Section Styles
   ========================================================================== */
.process-section {
    background-color: #e5f4fc;
    padding: 100px 20px;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden; /* Prevents scrollbar during animation */
}

.process-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-wrapper {
    position: relative;
    padding-bottom: 50px;
}

/* --- Boxes Layout --- */
.process-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.p-step {
    flex: 1;
    max-width: 320px;
    cursor: pointer;
}

.p-box {
    display: flex;
    align-items: center;
    padding: 30px 25px;
    border-radius: 12px;
    color: #fff;
    min-height: 120px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Initial state for Center-out Animation */
    opacity: 0;
}

.p-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.p-orange {
    background-color: #f05a28;
}

.p-dark {
    background-color: #2b303a;
}

/* Initial positions for animation */
.box-left { transform: translateX(100px); }
.box-right { transform: translateX(-100px); }
.box-center { transform: scale(0.9); }

/* Animation Classes triggered by JS */
.box-left.animate-in, 
.box-right.animate-in {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
}

.box-center.animate-in {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
    transition-delay: 0.1s; /* Center pops slightly after */
}

/* Box Content */
.p-num {
    font-size: 28px;
    font-weight: bold;
    margin-right: 20px;
}

.p-text-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
    margin-right: 20px;
}

.p-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

/* Arrows */
.p-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d8edf8;
    border-radius: 50%;
    color: #666;
    flex-shrink: 0;
}

/* --- Timeline Layout --- */
.process-timeline {
    position: relative;
    margin-top: 40px;
    width: 100%;
}

/* Dashed Background Line */
.timeline-bg-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #99a3ad;
    z-index: 1;
}

/* Solid Fill Line for Hover Animation */
.timeline-fill-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 0%; /* Animates via JS */
    height: 2px;
    background-color: #f05a28;
    z-index: 2;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dots-container {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 3;
}

.t-dot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

/* Vertical dashed line connecting box to dot */
.t-vertical-line {
    height: 40px;
    width: 1px;
    border-left: 1px dashed #99a3ad;
    margin-bottom: 10px;
    transition: border-color 0.4s ease;
}

.t-dot {
    width: 16px;
    height: 16px;
    background-color: #f05a28;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.t-dot-num {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
}

/* Active states applied by JS */
.t-dot-wrapper.active .t-vertical-line {
    border-left: 1px solid #f05a28;
}

.t-dot-wrapper.active .t-dot {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(240, 90, 40, 0.5);
}

/* ==========================================================================
   Responsive (Tab & Mobile)
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .process-boxes {
        flex-direction: column;
        gap: 20px;
    }

    .p-step {
        width: 100%;
        max-width: 100%;
    }

    .p-arrow {
        transform: rotate(90deg); /* Points down on mobile/tab */
        margin: 10px 0;
    }

    /* Hide horizontal timeline on small screens to prevent overlap and maintain pixel perfect design */
    .process-timeline {
        display: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .process-header h2 {
        font-size: 32px;
    }
    
    .p-box {
        padding: 20px 15px;
    }
    
    .p-num {
        font-size: 24px;
        margin-right: 15px;
    }
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-section {
    background-color: #2b303a; /* Dark background as per screenshot */
    padding: 100px 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow: hidden; /* Bahar se aane wale animation ke liye important */
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.faq-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

/* --- Image Column & Scroll Animation --- */
.faq-image-col {
    flex: 1 1 45%;
}

.faq-image-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Ye class image ko initial state me right side shift rakhti hai */
.scroll-slide-in {
    opacity: 0;
    transform: translateX(150px); /* Right se aane ke liye */
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Jab JS isme 'visible' class add karega, toh image center me aa jayegi */
.scroll-slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Content Column --- */
.faq-content-col {
    flex: 1 1 50%;
}

.faq-title {
    font-size: 48px;
    color: #f05a28; /* Orange color */
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.faq-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- Accordion Styles --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bottom Border Animated Fill */
.faq-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #f05a28;
    transition: width 0.4s ease;
}

.faq-item:hover::after,
.faq-item.active::after {
    width: 100%; /* Hover ya click karne par border orange color se fill hoga */
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-text,
.faq-item.active .faq-text {
    color: #f05a28; /* Hover karne par text orange ho jayega */
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-num {
    color: #f05a28;
    font-size: 16px;
    font-weight: bold;
}

.faq-text {
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
}

/* --- Answer Content (Hidden initially) --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; /* Smooth open/close */
}

.answer-content {
    padding-bottom: 25px;
    padding-left: 45px; /* Alignment point ko question ke barabar rakha hai */
}

.answer-content p {
    font-size: 15px;
    color: #b3b8c2;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   Responsive (Tab & Mobile)
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .faq-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-image-col, 
    .faq-content-col {
        flex: 1 1 100%;
        width: 100%;
    }

    /* Tab/Mobile par image niche se upar slide karegi instead of right se (looks better) */
    .scroll-slide-in {
        transform: translateY(50px);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-text {
        font-size: 16px;
    }

    .faq-q-left {
        gap: 15px;
    }

    .answer-content {
        padding-left: 0; /* Mobile me full width content taaki easily read ho */
    }
}

/* ==========================================================================
   Contact CTA Section Styles
   ========================================================================== */
.cta-contact-section {
    background-color: #e5f4fc; /* Light blue background */
    padding: 80px 20px 100px 20px;
    font-family: 'Arial', sans-serif;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* --- Left Column --- */
.cta-left-col {
    flex: 1 1 55%;
}

.cta-heading {
    font-size: 46px;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden; /* Important for clean animation */
}

/* Scroll Animation Initial State */
.animate-scroll-up {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(80px); /* Niche start hoga */
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease-out;
}

/* Scroll Animation Active State (JS injects this class) */
.animate-scroll-up.slide-in-active {
    transform: translateY(0);
    opacity: 1;
}

/* --- Right Column (Contact Card) --- */
.cta-right-col {
    flex: 1 1 35%;
    max-width: 400px;
    /* Optional: Agar right box ko thoda upar uthana hai h2 ke level tak */
    margin-top: -20px; 
}

.contact-card {
    background-color: #2b303a;
    border-radius: 0 0 8px 8px; /* Map side rounded */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

/* Orange Header with Triangle */
.card-header {
    background-color: #f05a28;
    padding: 20px;
    text-align: center;
    position: relative; /* Triangle position karne ke liye */
}

.card-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* CSS Triangle pointing down */
.card-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #f05a28 transparent transparent transparent;
    z-index: 10;
}

/* Dark Body */
.card-body {
    padding: 40px 30px 20px 30px; /* Top padding extra to clear triangle */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.c-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.c-info {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 13px;
    color: #a0a6b1;
    margin-bottom: 5px;
}

.c-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.c-value:hover {
    color: #f05a28;
}

/* Map Area Setup */
.card-map-area {
    width: 90%;
    margin: 0 auto;
    transform: translateY(20px); /* Map ko bahar overlap karne ke liye */
    position: relative;
    z-index: 5;
}

.card-map-area img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: block;
}

/* ==========================================================================
   Responsive (Tab & Mobile)
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-left-col {
        width: 100%;
        text-align: center;
    }

    .cta-heading {
        font-size: 38px;
        br { display: none; } /* br hata diya mobile view clear karne ke liye */
    }

    .cta-right-col {
        width: 100%;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cta-contact-section {
        padding: 50px 15px 80px 15px; /* Bottom padding extra kyunki map overflow kar raha hai */
    }

    .cta-heading {
        font-size: 32px;
        text-align: left;
    }

    .card-body {
        padding: 40px 20px 20px 20px;
    }

    .c-value {
        font-size: 16px;
    }
}


    


 