
:root {
            --brand-red: #b91c1c;
            --brand-blue: #8b0000; 
            --text-black: black;
            --light-white: #f5f5f5;
            --text-main: #333;
           --deep-red: #b91c1c;
            --yellow: #facc15;
            --black: #0f172a;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-black);
            background-color: #fff;
            line-height: 1.6;
        }
        /* Shifting process */
        .bg-brand { background-color: var(--brand-red) !important; }
        .text-brand { color: var(--brand-red) !important; }
        .border-brand { border-color: var(--brand-red) !important; }
        .bg-deep-red { background-color: var(--deep-red) !important; }
        .bg-yellow { background-color: var(--yellow) !important; }
        .text-deep-red { color: var(--deep-red) !important; }
        
        /* Timeline line only for desktop */
        @media (min-width: 768px) {
            .timeline-container::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 0;
                bottom: 0;
                width: 2px;
                border-left: 2px dashed var(--yellow);
                transform: translateX(-50%);
            }
        }
        .step-number {
            width: 50px;
            height: 50px;
            z-index: 2;
        }
        .img-hover:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
        }
        /* Service Pages - Enhanced Styles */
        .text-brand { color: var(--deep-red) !important; }
        .bg-brand { background-color: var(--deep-red) !important; }
        .bg-accent { background-color: var(--yellow) !important; }
        
        .side-nav-card { border-left: 6px solid var(--yellow); }
        .nav-link-item { transition: all 0.3s ease; background: rgba(255,255,255,0.05); }
        .nav-link-item:hover { background: var(--deep-red); transform: translateX(8px); color: white !important; }
        .category-card { transition: all 0.4s ease; border: 1px solid #edf2f7; cursor: default; }
        .category-card:hover { transform: translateY(-12px); background: var(--deep-red) !important; color: white !important; border-color: transparent !important; }
        .category-card:hover p, .category-card:hover h5, .category-card:hover .text-muted { color: white !important; }
        
        .icon-circle { 
            width: 120px; height: 120px; font-size: 4rem; 
            transition: 0.3s; box-shadow: 0 10px 15px rgba(0,0,0,0.05); 
        }
        .category-card:hover .icon-circle { background: rgba(255, 255, 255, 0.2) !important; transform: scale(1.1); }

        .cta-section { 
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?auto=format&fit=crop&w=1200&q=80');
            background-size: cover; border-bottom: 8px solid var(--yellow);
        }
        .h-500 { height: 500px !important; }
        .circle-12 { width: 12px !important; height: 10px !important; }
        .sticky-custom { top: 2rem !important; z-index: 100 !important; }

        /* ===== Testimonial Quote Card (About/Testimonials) ===== */
        .testimonial-quote-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border: none;
            padding: 1.7rem 1.3rem 1.2rem 1.3rem;
            margin-bottom: 0;
            position: relative;
            transition: box-shadow 0.25s, transform 0.25s;
            border-top: 4px solid #b91c1c;
        }
        .testimonial-quote-card:hover {
            box-shadow: 0 16px 36px rgba(185,28,28,0.13);
            transform: translateY(-4px);
        }
        .testimonial-quote-top {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
        }
        .testimonial-quote-icon {
            color: #b91c1c;
            font-size: 1.5rem;
            font-family: serif;
            font-weight: bold;
            margin-right: 0.3rem;
        }
        .testimonial-quote-text {
            font-size: 1.08rem;
            color: #444;
            font-style: italic;
            min-height: 70px;
        }
        .testimonial-quote-name {
            font-weight: 700;
            color: #b91c1c;
            font-size: 1.08rem;
        }
        .testimonial-quote-service {
            color: #888;
            font-size: 0.98rem;
        }
        .testimonial-quote-stars {
            color: #ffc107;
            font-size: 1.1rem;
            white-space: nowrap;
        }
        @media (max-width: 767.98px) {
            .testimonial-quote-card {
                padding: 1.1rem 0.7rem 1rem 0.7rem;
            }
            .testimonial-quote-text {
                font-size: 0.98rem;
                min-height: 40px;
            }
            .testimonial-quote-name {
                font-size: 1rem;
            }
        }
/* ===== START: Home About Section CSS ===== */
        .btn-success:hover,
        .btn-success:focus {
            background-color: #E40303;
            border-color: #E40303;
        }
        .btn-quote {
            background-color: var(--brand-red);
            color: white;
            font-weight: 600;
            border-radius: 12px;
            padding: 1px 24px;
            border: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        } 
        .btn-quote:hover {
            background-color: #E40303;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(7, 7, 7, 0.3);
        }
        .btn-quote a {
            color: var(--brand-gray) !important;
            text-decoration: none;
        }
        .btn-quotes {
            background-color: var(--brand-red);
            border: 2px solid var(--brand-red);
            color:var(--light-grey) !important;
            font-weight: 700;
            border-radius: 12px;
            padding: 10px 20px;
            gap: 10px;
        }
        .btn-quotes:hover {
            background-color: #E40303;           
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(6, 7, 7, 0.3);
        }
        .btn-quotes a {
            color: var(--brand-gray) !important;
            text-decoration: none;
        }
        .btn-outline{
            border: 2px solid var(--brand-red);
            color:var(--light-grey) !important;
            font-weight: 700;
            border-radius: 12px;
            padding: 10px 20px;
        }
        .btn-outline:hover {
            background: var(--brand-red);
            color: white !important;
        }
        .btn-outline a {
            color: var(--brand-gray) !important;
            text-decoration: none;
        }
        @media (min-width: 768px) and (max-width: 991px) {
            .btn-quote {
                padding: 1px 12px;
            }
            .btn-quote i {
                font-size: 1.1rem !important;
                padding-right: 4px !important;
            }
        }
        /* slider css */
        .hero-slider .hero-static-bg {
            height: 700px;
            min-height: 550px;
            background-color: var(--brand-blue);
            background-image: url('../images/slider/slider 1.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            border-bottom-right-radius: 0;
                border-bottom-left-radius: 0;
                overflow: hidden;
                position: relative;
        }
        @media (max-width: 325px) {
            .hero-slider .hero-static-bg {
            height: 650px;
            min-height: 550px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }
    }
        .hero-static-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(98deg, rgba(131, 69, 69, 0.88) 0%, rgba(124, 64, 64, 0.72) 44%, rgba(160, 15, 15, 0.38) 100%);
        }
        /* Form Overlay Styling */
        .slider-content-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            z-index: 5;
        }
        .quote-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .quote-card .input-group-text {
            background: #fff1f1;
            color: #b91c1c;
            border: 1px solid #e9d2d2;
        }
        .quote-card .input-group-text i {
            color: #b91c1c;
        }
        .hero-eyebrow {
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #fff;
            padding: 7px 14px;
            border-radius: 999px;
            font-size: 0.84rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
            backdrop-filter: blur(4px);
        }
        .hero-cta-row {
            margin-top: 0.8rem;
        }
        .hero-mini-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            padding: 0.35rem 0.8rem;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        .hero-mini-cta:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.4);
        }
        .hero-mini-cta-muted {
            cursor: default;
            pointer-events: none;
        }
        .submitquote {
            background-color: var(--brand-red);
            color: white;
            border: none;
            transition: 0.3s;
        }
        .submitquote:hover {
            background-color: #E40303;
            color: white;
        }
        .carousel-caption-custom {
            color: white;
            text-align: left;
        }
        .carousel-caption-custom h1 {
            font-weight: 800;
            font-size: 3.5rem;
            letter-spacing: -1px;
            margin-bottom: 20px;
            line-height: 1.15;
        }
        /* Slider Responsive Adjustments */
        @media (min-width: 768px) and (max-width: 991px) {
            .hero-slider .hero-static-bg {
                height: auto;
                min-height: 760px;
            }
            .carousel-caption-custom {
                text-align: left;
                margin-bottom: 0;
            }
            .carousel-caption-custom h1 {
                font-size: 2.1rem;
            }
            .slider-content-wrapper {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding-top: 0;
                padding-bottom: 0;
            }
            .quote-card {
                margin-top: 0;
            }
            .hero-eyebrow,
            .hero-cta-row {
                justify-content: flex-start;
            }
            .carousel-caption-custom .btn {
                width: auto;
            }
        }
        @media (max-width: 767px) {
            .hero-slider .hero-static-bg {
                min-height: 960px;
                background-attachment: scroll;
            }
            .carousel-caption-custom {
                text-align: center;
                margin-bottom: 30px;
            }
            .carousel-caption-custom h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            .slider-content-wrapper {
                top: 0;
                left: 0;
                transform: none;
                padding-top: 1.4rem;
                padding-bottom: 0.6rem;
            }
            .quote-card {
                margin-top: 0.25rem;
                padding: 1rem !important;
            }
            .quote-card .col-6 {
                width: 100%;
            }
            .hero-eyebrow,
            .hero-cta-row {
                justify-content: center;
            }
            .hero-cta-row {
                margin-bottom: 0.8rem;
            }
            .carousel-caption-custom .btn {
                width: 100%;
            }
            .slider-content-wrapper .container {
                padding-left: 12px;
                padding-right: 12px;
            }
        }
        @media (max-width: 575px) {
            .hero-slider .hero-static-bg {
                min-height: 1020px;
            }
        }
        .about-wrapper {
            position: relative;
            overflow: hidden;
        }

        /* Unique Background Element */
        .about-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40%;
            height: 100%;
            background: var(--light-white);
            z-index: -1;
            border-radius: 0 100px 100px 0;
        }

        .section-tag {
            color: var(--brand-red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            display: block;
            margin-bottom: 15px;
        }

        .display-heading {
            font-weight: 800;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            line-height: 1.1;
            margin-bottom: 30px;
            color: var(--text-black);
        }

        .display-heading span {
            color: var(--brand-red);
            position: relative;
        }

        /* Image Composite */
        .img-composite {
            position: relative;
            padding-left: 40px;
        }

        .main-img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 40px 200px 40px 40px; 
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        .experience-card {
            position: absolute;
            top: 40px;
            left: 0; 
            background: var(--brand-red);
            padding: 30px;
            border-radius: 24px;
            text-align: center;
            color: white;
            box-shadow: 10px 10px 30px rgba(228, 3, 3, 0.3);
            transform: rotate(-5deg); 
            z-index: 5;
        }

        /* Feature Cards Grid */
        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 24px;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            height: 100%;
        }

        .feature-card:hover {
            border-color: var(--brand-red);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: #fff1f1;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-red);
            margin-bottom: 20px;
        }

        /* Call to Action Bar */
        .contact-pill {
            display: inline-flex;
            align-items: center;
            background: var(--brand-red);
            color: white;
            padding: 8px 24px 8px 8px;
            border-radius: 50px;
            text-decoration: none;
            transition: 0.3s;
            font-weight: 600;
        }

        .contact-pill:hover {
            background: var(--brand-blue);
            color: white;
            transform: scale(1.05);
        }

        .pill-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        @media (max-width: 991px) {
            .about-wrapper::before { display: none; }
            .img-composite { margin-bottom: 60px; }
            .main-img { height: 400px; }
        }
        /* home services css */
        .feature-box {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(18, 59, 93, 0.15);
            border-color: rgba(15, 157, 143, 0.2);
        }
        .feature-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--brand-red);
            transition: height 0.3s ease;
            z-index: 2;
        }
        .feature-box:hover::before {
            height: 100%;
        }
        .icon-circle {
            width: 65px;
            height: 65px;
            background: rgba(15, 157, 143, 0.1);
            color: var(--brand-red);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }
        /* footer*/
        .border-success {
            border-color: var(--brand-red) !important;
        }
        .services-unique-grid .col {
            transition: transform 0.25s ease;
        }
        .service-unique-card {
            background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
            border: 1px solid rgba(18, 59, 93, 0.08);
            box-shadow: 0 12px 28px rgba(18, 59, 93, 0.08);
            isolation: isolate;
        }
        .service-unique-card:hover {
            transform: translateY(-8px);
            border-color: rgba(228, 3, 3, 0.2);
            box-shadow: 0 20px 42px rgba(18, 59, 93, 0.16);
        }
        .service-unique-glow {
            position: absolute;
            width: 180px;
            height: 180px;
            right: -80px;
            top: -90px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(228, 3, 3, 0.22) 0%, rgba(228, 3, 3, 0) 72%);
            z-index: -1;
        }
        .service-unique-icon {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: #fff;
            background: linear-gradient(135deg, #e40303 0%, #123b5d 100%);
            box-shadow: 0 10px 22px rgba(18, 59, 93, 0.2);
        }
        
        .service-unique-count {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #6b7280;
            background: #f3f4f6;
            border-radius: 999px;
            padding: 0.25rem 0.62rem;
        }
        .service-unique-card h3 {
            color: #13283d;
            letter-spacing: -0.2px;
        }
        .service-unique-link {
            color: #e40303;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
        }
        .service-unique-link i {
            font-size: 1.35rem;
            line-height: 1;
            transition: transform 0.2s ease;
        }
        .service-unique-link:hover {
            color: #c10202;
        }
        .service-unique-link:hover i {
            transform: translateX(3px);
        }
        .section-heading {
            font-size: 2.8rem;
            color: var(--brand-blue);
            letter-spacing: -1px;
        }
        .sub-heading {
            color: var(--brand-red);
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        .rounded-circle{
           width:38px;
           height:38px;
        }

    /* Breadcrumb CSS */
            .breadcrumb-hero {
            min-height: 250px;
            background: linear-gradient(120deg, rgba(228, 3, 3, 0.88), rgba(42, 8, 8, 0.86)), url('../images/breadcrumb/breadcrumbimg.jpeg') center center / cover no-repeat;
            }
            .breadcrumb-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 44%);
            animation: breadcrumbGlow 6s ease-in-out infinite;
            }
            .breadcrumb-hero::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            right: -90px;
            top: -120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            animation: breadcrumbOrb 8s linear infinite;
            }
            .breadcrumb-hero > .container {
            position: relative;
            z-index: 2;
            }
            .breadcrumb-hero .page-title {
            font-size: clamp(2rem, 4vw, 3rem);
            text-shadow: 0 10px 24px rgba(64, 0, 0, 0.35);
            animation: breadcrumbText 0.85s ease both;
            }
            .breadcrumb-hero .page-description {
            max-width: 720px;
            margin-bottom: 0;
            animation: breadcrumbText 0.85s ease 0.12s both;
            }
            .breadcrumb-hero .breadcrumb {
            animation: breadcrumbText 0.85s ease 0.2s both;
            }
            .breadcrumb-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.75);
            }
            .breadcrumb-hero .breadcrumb a {
            color: #ffffff;
            transition: color 0.25s ease;
            }
            .breadcrumb-hero .breadcrumb a:hover {
            color: #ffe5e5;
            }
            @keyframes breadcrumbText {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
            }
            @keyframes breadcrumbGlow {
            0%, 100% { transform: translateX(0); opacity: 0.75; }
            50% { transform: translateX(10px); opacity: 1; }
            }
            @keyframes breadcrumbOrb {
            0% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(-18px, 14px, 0) scale(1.05); }
            100% { transform: translate3d(0, 0, 0) scale(1); }
            }
            @media (max-width: 767px) {
            .breadcrumb-hero { min-height: 220px; }
            .breadcrumb-hero::after { width: 210px; height: 210px; right: -70px; top: -75px; }
            }

            /* Achievements / Counter Section */
        .achievements-section {
            background: linear-gradient(135deg, #8b0000 0%, #E40303 100%);
        }
        .achievements-section::before {
            content: '';
            position: absolute;
            top: -60px; left: -60px;
            width: 300px; height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            animation: achievementFloat 10s ease-in-out infinite;
        }
        .achievements-section::after {
            content: '';
            position: absolute;
            bottom: -80px; right: -80px;
            width: 400px; height: 400px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
            animation: achievementFloat 13s ease-in-out infinite reverse;
        }
        @keyframes achievementFloat {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(14px, -12px, 0) scale(1.06); }
        }
        .achievement-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .achievement-card:hover {
            transform: translateY(-6px);
            background: rgba(255,255,255,0.15);
        }
        .achievement-icon {
            font-size: 2rem;
            color: rgba(255,255,255,0.85);
        }
        .achievement-number {
            letter-spacing: -1px;
        }
        .achievement-label {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
        }
        /* iba approved css */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Smooth Floating Animation for the Image */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(1deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        /* Soft Glow Pulse */
        @keyframes pulseGlow {
            0% { filter: drop-shadow(0 0 5px rgba(18, 59, 93, 0.1)); }
            50% { filter: drop-shadow(0 0 20px rgba(15, 157, 143, 0.2)); }
            100% { filter: drop-shadow(0 0 5px rgba(18, 59, 93, 0.1)); }
        }
        .iba-section {
            background-color: var(--brand-red);
            border-radius: 1.5rem;
            padding: 3.5rem 2rem;
            margin: 2rem auto;
            max-width: 950px;
            border: 1px solid rgba(18, 59, 93, 0.08);
            animation: fadeInUp 0.8s ease-out forwards;
        }
        .iba-image-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }
        .iba-main-img {
            max-width: 100%;
            height: auto;
            width: 240px;
            animation: float 4s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .iba-image-wrapper:hover .iba-main-img {
            transform: scale(1.05) rotate(-2deg);
        }
        .iba-content {
            color: var(--brand-blue);
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }
        .brand-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--brand-blue), var(--brand-red));
            border-radius: 2px;
            margin-bottom: 1.5rem;
            transition: width 0.4s ease;
        }
        .iba-section:hover .brand-divider {
            width: 120px;
        }
        .iba-content p {
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 1.8rem;
            opacity: 0.9;
        }
        .list-item {
            padding: 8px 0;
            transition: all 0.3s ease;
            cursor: default;
        }
        .list-item:hover {
            transform: translateX(8px);
            color: var(--brand-blue);
        }
        .check-circle {
            width: 24px;
            height: 24px;
            background-color: var(--brand-blue);
            border-radius: 50%;
            font-size: 12px;
            margin-right: 12px;
            transition: transform 0.3s ease;
        }
        .list-item:hover .check-circle {
            transform: rotate(360deg) scale(1.1);
        }
        @media (max-width: 768px) {
            .iba-section {
                text-align: center;
                padding: 2.5rem 1.5rem;
            }
            .iba-image-wrapper {
                margin-bottom: 2.5rem;
            }
            .brand-divider {
                margin: 0 auto 1.5rem;
            }
        }
        /* flipcoins */
        .cert-item {
            padding: 0;
            background: none;
            border: none;
            transition: transform 0.3s ease;
            margin-bottom: 1.25rem;
        }
        .badge-holder {
            position: relative;
            width: 220px;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        .badge-holder::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: var(--brand-red);
            border-radius: 50%;
            opacity: 0;
            z-index: 0;
            transition: all 0.5s ease;
        }
        .cert-item:hover .badge-holder::before {
            animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }
        .cert-item:hover {
            transform: translateY(-4px);
        }
        @keyframes pulse-ring {
            0% { transform: scale(.8); opacity: 0.4; }
            100% { transform: scale(1.4); opacity: 0; }
        }
        .img-mask {
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            z-index: 1;
            width: 205px;
            height: 205px;
            background: transparent; 
        }
        .img-mask::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
            transform: rotate(30deg);
            z-index: 2;
        }
        .cert-item:hover .img-mask::after {
            left: 150%;
            transition: all 0.8s ease-in-out;
        }
        .cert-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            position: relative;
            z-index: 1;
        }
        .cert-title {
            color: var(--brand-blue);
            font-weight: 800;
            margin-top: 15px;
            font-size: 1.15rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 767.98px) {
            .badge-holder {
                width: 185px;
                height: 185px;
            }
            .img-mask {
                width: 170px;
                height: 170px;
            }
            .cert-title {
                font-size: 1rem;
                letter-spacing: 0.5px;
                margin-top: 10px;
            }
            .cert-img-satisfaction {
                transform: translateX(-6px);
            }
        }
        @media (min-width: 768px) and (max-width: 991px) {
            .badge-holder {
                width: 200px;
                height: 200px;
            }
            .img-mask {
                width: 185px;
                height: 185px;
            }
        }
        /* moving charging */
        .moving-charges-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
        }
        .moving-charges-section .sub-heading {
            color: var(--brand-red);
            letter-spacing: 0.08em;
            font-size: 0.82rem;
        }
        .moving-charges-section .moving-charges-title {
            font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.35rem);
            font-weight: 800;
            color: #0f172a;
        }
        .moving-charges-section .moving-charges-subtitle {
            color: #475569;
            max-width: 720px;
            margin-inline: auto;
        }
        .moving-charges-section .charge-block {
            background: #ffffff;
            border-radius: 0.8rem;
            padding: 2.2rem;
            border-left: 4px solid var(--brand-red);
            transition: all 0.3s ease;
        }
        .moving-charges-section .charge-block:hover {
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
        }
        .moving-charges-section .charge-block-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1.2rem;
            border-bottom: 2px solid #f0f2f7;
        }
        .moving-charges-section .charge-block-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .moving-charges-section .charge-block-title i {
            font-size: 1.4rem;
            color: var(--brand-red);
        }
        .moving-charges-section .badge-local {
            background: linear-gradient(135deg, #fff1f0, #ffe8e5);
            color: var(--brand-red);
            border: 1px solid rgba(228, 3, 3, 0.2);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
        }
        .moving-charges-section .badge-national {
            background: linear-gradient(135deg, #fff1f0, #ffe8e5);
            color: var(--brand-red);
            border: 1px solid rgba(228, 3, 3, 0.2);
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
        }
        .moving-charges-section .charge-table-wrap {
            border-radius: 0.6rem;
            overflow-x: auto;
            overflow-y: hidden;
            background-color: #ffffff;
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
            -webkit-overflow-scrolling: touch;
        }
        .moving-charges-section .charge-table {
            margin-bottom: 0;
            min-width: 100%;
            width: 100%;
        }
        .moving-charges-section .charge-table thead th {
            background-color: var(--brand-red);
            color: #ffffff;
            border-bottom: 0;
            font-weight: 700;
            white-space: nowrap;
            padding: 0.92rem 0.88rem;
        }
        .moving-charges-section .charge-table tbody td {
            border-color: #b3bfcc;
            color: #334155;
            font-weight: 600;
            padding: 0.84rem 0.88rem;
            background: #eef2f6;
            white-space: nowrap;
        }
        .moving-charges-section .charge-table tbody tr td:first-child {
            color: #1e293b;
            font-weight: 700;
        }
        .moving-charges-section .charge-table tbody tr:last-child td {
            font-weight: 800;
            color: #0f172a;
        }
        @media (max-width: 991px) {
    .moving-charges-section .charge-block {
        padding: 1.5rem;
    }
    .moving-charges-section .charge-block-title {
        font-size: 1.25rem;
    }
    .moving-charges-section .charge-block-title i {
        font-size: 1.2rem;
    }
    .moving-charges-section .charge-table {
        font-size: 0.85rem;
    }
    .moving-charges-section .charge-table thead th {
        padding: 0.6rem 0.5rem;
    }
    .moving-charges-section .charge-table tbody td {
        padding: 0.6rem 0.5rem;
    }
        }
        @media (max-width: 767px) {
    .moving-charges-section .moving-charges-head {
        text-align: left;
    }
    .moving-charges-section .moving-charges-subtitle {
        margin-inline: 0;
    }
    .moving-charges-section .charge-block {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .moving-charges-section .charge-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .moving-charges-section .badge-local {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .moving-charges-section .badge-national {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .moving-charges-section .charge-table {
        font-size: 0.75rem;
    }
    .moving-charges-section .charge-table thead th {
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
    }
    .moving-charges-section .charge-table tbody td {
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
    }
    .moving-charges-section .charge-table-wrap {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
        }
        /* ===== START: Home Page Redesign (Global) ===== */
        .home-redesign {
            --sw-primary: #cc1f1a;
            --sw-ink: #16212f;
            --sw-soft: #f4f7fb;
            --sw-border: #e6ebf2;
            --sw-glow: rgba(204, 31, 26, 0.15);
        }

        .home-redesign section {
            position: relative;
        }

        .home-redesign .sub-heading {
            font-size: 0.8rem;
            letter-spacing: 0.14rem;
            color: var(--sw-primary);
        }
        /* ===== START: About Section CSS ===== */

        /* ===== START: Services Section CSS ===== */
        .home-redesign .home-services-section {
            background: linear-gradient(180deg, #fff 0%, var(--sw-soft) 100%);
        }
        .home-redesign .service-unique-card {
            border: 1px solid var(--sw-border);
            background: #ffffff;
            box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .service-unique-media {
            width: 100%;
            height: 140px;
            border-radius: 0.8rem;
            overflow: hidden;
            border: 1px solid #e8edf4;
        }

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

        .home-redesign .service-unique-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
            border-color: #ffd2d0;
        }

        .home-redesign .service-unique-icon {
            width: 2.9rem;
            height: 2.9rem;
            border-radius: 0.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--sw-primary);
            background: #fff3f2;
        }

        .home-redesign .service-unique-count {
            font-weight: 800;
            color: #d7dfea;
            font-size: 1.3rem;
        }

        .home-redesign .service-unique-link {
            color: var(--sw-primary);
            text-decoration: none;
            font-weight: 700;
        }
        /* ===== END: Services Section CSS ===== */

        /* ===== START: Why Choose Section CSS ===== */
        .home-redesign .home-why-section .container {
            background: linear-gradient(145deg, #ffffff 0%, #f6f9ff 100%);
            border-radius: 1.6rem;
            padding-top: 2rem;
            padding-bottom: 2rem;
            border: 1px solid var(--sw-border);
        }

        .home-redesign .feature-box {
            background: #ffffff;
            border: 1px solid var(--sw-border);
            border-radius: 1rem;
            padding: 1.2rem;
            height: 100%;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
        }

        .home-redesign .icon-circle {
            width: 2.6rem;
            height: 2.6rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff1f0;
            color: var(--sw-primary);
            margin-bottom: 0.7rem;
        }

        /* ===== END: Why Choose Section CSS ===== */
        .swastik-info-card { background: linear-gradient(135deg, var(--brand-red) 0%, #c10202 100%); box-shadow: 0 15px 40px rgba(228, 3, 3, 0.3); border: 2px solid rgba(255, 255, 255, 0.2); transition: all 0.4s ease; }
        .swastik-info-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(228, 3, 3, 0.4); border-color: rgba(255, 255, 255, 0.4); }
        /* ===== START: Achievements Section CSS ===== */

        .home-redesign .home-achievements-section {
            background-image: linear-gradient(125deg, rgba(22, 33, 47, 0.9), rgba(41, 13, 12, 0.92));
            background-size: cover;
            background-position: center;
        }

        .home-redesign .home-achievements-section.pre-reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .home-redesign .home-achievements-section.pre-reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .home-redesign .home-achievements-section.pre-reveal .achievement-card {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .home-redesign .home-achievements-section.pre-reveal.in-view .achievement-card {
            opacity: 1;
            transform: translateY(0);
        }

        .home-redesign .home-achievements-section.pre-reveal.in-view .col-md-3:nth-child(2) .achievement-card { transition-delay: 0.08s; }
        .home-redesign .home-achievements-section.pre-reveal.in-view .col-md-3:nth-child(3) .achievement-card { transition-delay: 0.16s; }
        .home-redesign .home-achievements-section.pre-reveal.in-view .col-md-3:nth-child(4) .achievement-card { transition-delay: 0.24s; }

        .home-redesign .achievement-card {
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.09);
            backdrop-filter: blur(3px);
        }

        .home-redesign .achievement-icon {
            color: #ffd38b;
            font-size: 1.5rem;
            margin-bottom: 0.45rem;
        }

        .home-redesign .achievement-label {
            color: rgba(255, 255, 255, 0.88);
        }

        .home-redesign .achievement-subtext {
            color: rgba(255, 255, 255, 0.75);
        }
        /* ===== END: Achievements Section CSS ===== */

        /* ===== START: Testimonials Section CSS ===== */
        .home-redesign .testimonials-section {
            background:
                radial-gradient(circle at 12% 14%, rgba(204, 31, 26, 0.09) 0%, rgba(204, 31, 26, 0) 38%),
                radial-gradient(circle at 90% 84%, rgba(38, 84, 152, 0.09) 0%, rgba(38, 84, 152, 0) 35%),
                linear-gradient(180deg, #fff 0%, #f6faff 100%);
        }

        .home-redesign .testimonial-modern-card {
            max-width: 940px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid #e6ecf5;
            border-radius: 1.2rem;
            box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
            padding: 1.5rem;
            position: relative;
        }

        .home-redesign .testimonial-modern-card::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 1.2rem;
            padding: 1px;
            background: linear-gradient(135deg, rgba(204, 31, 26, 0.35), rgba(45, 93, 167, 0.18));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .home-redesign .testimonial-user-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .home-redesign .testimonial-avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
            object-fit: cover;
            flex: 0 0 auto;
        }

        .home-redesign .testimonial-stars {
            color: #f7b731;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .home-redesign .testimonial-modern-title {
            color: #1b2a3e;
            font-weight: 800;
            margin-bottom: 0.45rem;
        }

        .home-redesign .testimonial-modern-text {
            color: #4f5f73;
            font-size: 1.03rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .home-redesign .testimonial-quote-mark {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2.2rem;
            color: rgba(204, 31, 26, 0.18);
            line-height: 1;
        }

        .home-redesign .carousel-indicators .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            margin: 0 5px;
            opacity: 0.4;
            background: #8094b3 !important;
        }

        .home-redesign .carousel-indicators .dot.active {
            opacity: 1;
            transform: scale(1.4);
            background: var(--sw-primary) !important;
        }

        .home-redesign .testimonial-nav {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #d9e2ef;
            background: #fff;
            color: #30465f;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .home-redesign .testimonial-nav:hover {
            color: #fff;
            background: var(--sw-primary);
            border-color: var(--sw-primary);
        }
        
        /* Gallery Section */
        .img-box {
            aspect-ratio: 1/1;
            width: 100%;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.08);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 12px;
            box-shadow: none;
        }

        .img-box:hover .gallery-img {
            transform: scale(1.06);
            box-shadow: 0 8px 24px rgba(185,28,28,0.10);
        }
        /* ===== END: Testimonials Section CSS ===== */
        /* city list*/
        .city-icon-lg{
            width: 38px;
            height: 20px;
            object-fit: contain;
        }
        /* ===== START: FAQ Section CSS ===== */
        .home-redesign .faq-modern-section {
            background: radial-gradient(circle at 84% 18%, #fff6f5 0%, #ffffff 48%, #f6f9ff 100%);
        }

        .home-redesign .faq-modern-section .accordion-item {
            border: 1px solid #d6e4f2 !important;
            border-radius: 0.95rem !important;
            overflow: hidden;
        }

        .home-redesign .faq-modern-section .accordion-button {
            color: #10253d;
            background: #ffffff;
        }

        .home-redesign .faq-modern-section .accordion-button:not(.collapsed) {
            color: var(--v2-secondary);
            background: #eef6ff;
        }

        .home-redesign .faq-modern-section .accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(11, 77, 120, 0.18);
        }

        .home-redesign .service-unique-card {
            animation: homeV2Rise 0.6s ease both;
        }

        .home-redesign .feature-box {
            animation: homeV2Rise 0.6s ease both;
        }

        .home-redesign .process-card {
            animation: homeV2Rise 0.6s ease both;
        }

        .home-redesign .charge-block {
            animation: homeV2Rise 0.6s ease both;
        }

        .home-redesign .testimonial-modern-card {
            animation: homeV2Rise 0.6s ease both;
        }

        .home-redesign .services-unique-grid .col:nth-child(2) .service-unique-card { animation-delay: 0.06s; }
        .home-redesign .services-unique-grid .col:nth-child(3) .service-unique-card { animation-delay: 0.12s; }
        .home-redesign .services-unique-grid .col:nth-child(4) .service-unique-card { animation-delay: 0.18s; }
        .home-redesign .services-unique-grid .col:nth-child(5) .service-unique-card { animation-delay: 0.24s; }
        .home-redesign .services-unique-grid .col:nth-child(6) .service-unique-card { animation-delay: 0.3s; }

        @keyframes homeV2Rise {
            from {
                opacity: 0;
                transform: translateY(14px);
            }

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

        @media (max-width: 991px) {
            .home-redesign .swastik-card-title {
                font-size: 1.55rem;
            }

            .home-redesign .home-why-section .container {
                border-radius: 1rem;
            }

            .home-redesign .charge-block {
                border-radius: 1rem;
            }
        }

        @media (max-width: 767px) {
            .home-redesign-v2 {
                background-size: auto;
            }

            .home-redesign-v2 .swastik-logo-icon {
                font-size: 2.5rem;
            }

            .home-redesign-v2 .swastik-card-subtitle {
                font-size: 0.95rem;
            }

            .home-redesign-v2 .testimonial-user-row {
                align-items: flex-start;
            }
        }
        /* ===== END: Home Page Redesign V2 ===== */

        /* ===== START: Home Red Theme Override ===== */
        .home-redesign-v2 {
            --v2-primary: #e40303;
            --v2-primary-deep: #a80303;
            --v2-secondary: #b50b0b;
            --v2-ink: #2f1616;
            background: radial-gradient(circle at 8% 0%, #fff4f4 0%, #ffffff 44%);
        }

        .home-redesign-v2 .home-services-section,
        .home-redesign-v2 .process-section,
        .home-redesign-v2 .moving-charges-section,
        .home-redesign-v2 .testimonials-section,
        .home-redesign-v2 .faq-modern-section {
            background: linear-gradient(180deg, #fffefe 0%, #fff1f1 100%);
        }

        .home-redesign-v2 .service-unique-icon {
            color: #b50b0b;
            background: transparent;
            box-shadow: none;
        }
        .home-redesign-v2 .swastik-info-card {
            background: linear-gradient(140deg, #8e0303 0%, #c90f0f 52%, #650202 100%);
            box-shadow: 0 18px 44px rgba(140, 0, 0, 0.34);
        }
        .home-redesign-v2 .home-achievements-section {
            background-image: linear-gradient(125deg, rgba(122, 0, 0, 0.9), rgba(228, 3, 3, 0.88));
        }
        .home-redesign-v2 .charge-table thead th {
            background: linear-gradient(120deg, #e40303 0%, #af0606 100%);
        }
        .home-redesign-v2 .badge-local {
            background: linear-gradient(130deg, #ffe3e3 0%, #ffd1d1 100%);
            border: 1px solid #f6b0b0;
            color: #9d0404;
        }
        .home-redesign-v2 .badge-national {
            background: linear-gradient(130deg, #ffe3e3 0%, #ffd1d1 100%);
            border: 1px solid #f6b0b0;
            color: #9d0404;
        }
        .home-redesign-v2 .testimonials-section {
            background: radial-gradient(circle at 10% 15%, rgba(228, 3, 3, 0.12) 0%, rgba(228, 3, 3, 0) 35%), radial-gradient(circle at 88% 82%, rgba(130, 0, 0, 0.12) 0%, rgba(130, 0, 0, 0) 35%), linear-gradient(180deg, #ffffff 0%, #fff2f2 100%);
        }
        .home-redesign-v2 .testimonial-modern-card::after {
            background: linear-gradient(130deg, rgba(228, 3, 3, 0.35), rgba(130, 0, 0, 0.3));
        }
        .home-redesign-v2 .testimonial-quote-mark {
            color: rgba(165, 0, 0, 0.2);
        }
        .home-redesign-v2 .carousel-indicators .dot.active {
            background: #b50b0b !important;
        }

        .home-redesign-v2 .testimonial-nav:hover {
            background: #b50b0b;
            border-color: #b50b0b;
            color: #fff;
        }

        .home-redesign-v2 .faq-modern-section .accordion-button:not(.collapsed) {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .home-process-unique .process-icon {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .home-testimonial-unique {
            background: radial-gradient(circle at 10% 15%, rgba(228, 3, 3, 0.12) 0%, rgba(228, 3, 3, 0) 35%), radial-gradient(circle at 88% 82%, rgba(130, 0, 0, 0.12) 0%, rgba(130, 0, 0, 0) 35%), linear-gradient(180deg, #ffffff 0%, #fff2f2 100%);
        }

        .home-redesign-v2 .process-highlight {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .service-unique-link {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .charge-block-title i {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .testimonial-nav:hover {
            background: #b50b0b;
            border-color: #b50b0b;
        }

        .home-redesign-v2 .faq-modern-section .accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(228, 3, 3, 0.2);
        }

        @media (min-width: 992px) {
            .home-redesign-v2 .process-section::before {
                border-top-color: rgba(181, 11, 11, 0.35);
            }

            .home-redesign-v2 .process-section .moving-truck-icon {
                color: #b50b0b;
            }

            .home-redesign-v2 .process-section .rope-node {
                background-color: #b50b0b;
                border-color: rgba(181, 11, 11, 0.45);
            }

            .home-redesign-v2 .process-section .process-card::after {
                border-color: rgba(181, 11, 11, 0.45);
            }
        }
        /* ===== END: Home Red Theme Override ===== */
        /* ===== START: Home Unique Scopes (Process + Testimonial) ===== */
        .home-redesign .home-testimonial-unique .testimonial-modern-card {
            max-width: 940px;
            margin: 0 auto;
        }

        .home-redesign .home-testimonial-unique .carousel-indicators .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            margin: 0 5px;
            opacity: 0.4;
            background: #8094b3 !important;
        }

        .home-redesign .home-testimonial-unique .carousel-indicators .dot.active {
            opacity: 1;
            transform: scale(1.4);
            background: #b50b0b !important;
        }

        .home-redesign-v2 .home-testimonial-unique .testimonial-nav:hover {
            background: #b50b0b;
            border-color: #b50b0b;
            color: #fff;
        }

        .home-redesign .home-process-unique {
            padding: 100px 0;
            position: relative;
        }

        .home-redesign .home-process-unique .process-card {
            border: 2px dashed var(--brand-red);
            padding: 35px 30px;
            position: relative;
            background: #fff;
            min-height: 220px;
            z-index: 2;
        }

        .home-redesign .home-process-unique .step-diamond {
            width: 48px;
            height: 48px;
            transform: rotate(45deg);
            position: absolute;
            left: -24px;
            top: 50%;
            margin-top: -24px;
        }

        .home-redesign .home-process-unique .step-number {
            transform: rotate(-45deg);
            color: #fff;
            font-weight: 800;
        }

        .home-redesign .home-process-unique .moving-truck-icon {
            position: absolute;
            top: 160px;
            left: 5%;
            width: 44px;
            height: 44px;
            z-index: 4;
            line-height: 1;
            pointer-events: none;
            animation: home-truck-drive 15s linear infinite;
        }

        .home-redesign .home-process-unique .moving-truck-icon svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .home-redesign-v2 .home-process-unique .process-icon {
            color: #b50b0b !important;
        }

        .home-redesign-v2 .home-process-unique .step-title {
            color: #10253d;
        }

        .home-redesign-v2 .home-process-unique .step-desc {
            color: #4b5f74;
        }

        @media (min-width: 992px) {
    .home-redesign .home-process-unique::before {
        content: "";
        position: absolute;
        top: 200px;
        left: 5%;
        right: 5%;
        height: 4px;
        border-top: 4px dashed var(--brand-red);
        z-index: 1;
        opacity: 0.4;
    }

    .home-redesign .home-process-unique .moving-truck-icon {
        position: absolute;
        top: 160px;
        left: 5%;
        width: 50px;
        height: 50px;
        z-index: 4;
    }

    .home-redesign-v2 .home-process-unique .moving-truck-icon {
        color: #b50b0b;
    }

    .home-redesign .home-process-unique .rope-node {
        position: absolute;
        top: 232px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-redesign-v2 .home-process-unique .rope-node {
        background-color: #b50b0b;
        border-color: rgba(181, 11, 11, 0.45);
    }
}

            @media (max-width: 991px) {
                .home-redesign .home-process-unique .moving-truck-icon,
                .home-redesign .home-process-unique .rope-node {
                    display: none !important;
                }
            }
            /* ===== END: Home Unique Scopes (Process + Testimonial) ===== */
            .portfolio-card {
                border-radius: 16px;
                overflow: hidden;
                position: relative;
            }

            .portfolio-img {
                height: 200px;
                object-fit: cover;
                transition: 0.4s;
            }

            /* Overlay */
            .portfolio-overlay {
                position: absolute;
                inset: 0;
                background: rgba(0,0,0,0.55);
                opacity: 0;
                transition: 0.3s;
            }

            /* Content (FIXED) */
            .portfolio-overlay-content {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 15px;
                color: #fff;

                transform: translateY(100%);
                transition: 0.3s;
            }

            /* Hover Effects */
            .portfolio-card:hover .portfolio-overlay {
                opacity: 1;
            }

            .portfolio-card:hover .portfolio-overlay-content {
                transform: translateY(0);
            }

            .portfolio-card:hover .portfolio-img {
                transform: scale(1.05);
            }

            /* Button */
            .portfolio-btn {
                background: #E40303;
                color: #fff;
                padding: 5px 12px;
                border-radius: 20px;
                font-size: 13px;
            }

            /* ===== Floating Contact Icons ===== */
            .floating-contact-stack {
                position: fixed;
                right: 14px;
                bottom: 88px;
                z-index: 1090;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .floating-contact-btn {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                font-size: 26px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
                animation: floating-icon-bob 1.85s ease-in-out infinite;
            }

            .floating-contact-btn:hover {
                transform: translateY(-4px) scale(1.08);
                box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
            }

            .floating-contact-whatsapp {
                background: #25d366;
                color: #ffffff;
                animation: floating-icon-bob 1.75s ease-in-out infinite, floating-icon-pulse 1.35s ease-in-out infinite;
            }

            .floating-contact-call {
                background: #d6e6f0;
                color: #0f4d73;
                animation-delay: 0.35s;
            }

            .floating-contact-location {
                background: #ffe2e2;
                color: #c40202;
                animation-delay: 0.7s;
            }

            .floating-scroll-top {
                position: fixed;
                left: 14px;
                bottom: 88px;
                z-index: 1090;
                width: 52px;
                height: 52px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                font-size: 24px;
                background: #b91c1c;
                color: #ffffff;
                box-shadow: 0 10px 22px rgba(15, 23, 42, 0.24);
                opacity: 0;
                visibility: hidden;
                transform: translateY(18px);
                transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
            }

            .floating-scroll-top.is-visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .floating-scroll-top:hover {
                background: #8f0000;
                color: #ffffff;
                transform: translateY(-3px);
            }
            
            @keyframes floating-icon-bob {
                0%,
                100% {
                    transform: translateY(0) scale(1);
                }

                35% {
                    transform: translateY(-8px) scale(1.04);
                }

                50% {
                    transform: translateY(-6px) scale(1.02);
                }

                70% {
                    transform: translateY(-2px) scale(0.99);
                }
            }

            @keyframes floating-icon-pulse {
                0%,
                100% {
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
                }

                50% {
                    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.58);
                }
            }

            @media (prefers-reduced-motion: reduce) {
                .floating-contact-btn,
                .floating-contact-whatsapp {
                    animation: none;
                }
            }

            @media (max-width: 767px) {
                .floating-contact-stack {
                    right: 12px;
                    bottom: 78px;
                    gap: 8px;
                }

                .floating-scroll-top {
                    left: 12px;
                    bottom: 78px;
                    width: 46px;
                    height: 46px;
                    font-size: 21px;
                }

                .floating-contact-btn {
                    width: 50px;
                    height: 50px;
                    font-size: 22px;
                }
            }

            /* Client marquee section */
            .clients-marquee-section {
                background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
                border-top: 1px solid #ebf0f7;
                border-bottom: 1px solid #ebf0f7;
            }

            .clients-kicker {
                color: #cc1f1a;
                font-size: 0.8rem;
                letter-spacing: 0.12rem;
            }

            .clients-marquee {
                position: relative;
                overflow: hidden;
                mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
                -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            }

            .clients-track {
                display: flex;
                width: max-content;
                gap: 1rem;
                animation: clients-scroll 26s linear infinite;
            }

            .clients-marquee:hover .clients-track {
                animation-play-state: paused;
            }

            .client-logo-card {
                width: 220px;
                min-height: 120px;
                border-radius: 0.9rem;
                border: 1px solid #e4eaf3;
                background: #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 1rem;
                box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
            }

            .client-logo-card img {
                width: 100%;
                max-width: 205px;
                max-height: 92px;
                object-fit: contain;
                filter: saturate(0.95);
            }

            @keyframes clients-scroll {
                from {
                    transform: translateX(0);
                }

                to {
                    transform: translateX(-50%);
                }
            }

            @media (max-width: 767.98px) {
                .clients-track {
                    animation-duration: 20s;
                }

                .client-logo-card {
                    width: 170px;
                    min-height: 96px;
                }

                .client-logo-card img {
                    max-width: 156px;
                    max-height: 68px;
                }
            }

            @media (prefers-reduced-motion: reduce) {
                .clients-track {
                    animation: none;
                }
            }

            /* Navigation styles moved from template view for centralized CSS management */
            :root {
                --sw-red: #e40303;
            }

            .sw-main-nav {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                padding-top: 0.65rem;
                padding-bottom: 0.65rem;
            }

            .top-no {
                color: #fff;
                text-decoration: none;
            }

            .sw-top-bar {
                padding-top: 0.45rem;
                padding-bottom: 0.45rem;
            }

            .sw-top-item {
                color: rgba(255, 255, 255, 0.92);
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 0.35rem;
            }

            .sw-top-item:hover {
                color: #fff;
            }

            .sw-stars {
                color: #ffc107;
                line-height: 1;
                letter-spacing: 1px;
            }

            .sw-brand-logo {
                display: block;
                width: auto;
                height: 60px;
                max-width: 190px;
                object-fit: contain;
            }

            .sw-brand {
                margin-right: 0.5rem;
            }

            .sw-text-red {
                color: var(--sw-red) !important;
            }

            .sw-nav-link {
                color: #1f1f1f !important;
                font-weight: 600;
                font-size: 1.03rem;
                padding: 0.55rem 0.8rem !important;
                transition: all 0.2s ease;
            }

            .sw-nav-link:hover,
            .sw-nav-link.active,
            .sw-hover-dropdown .dropdown-item:hover {
                color: var(--sw-red) !important;
            }

            .sw-hover-dropdown .dropdown-menu {
                min-width: 18.2rem;
                padding: 0.5rem;
                border: 1px solid #f3d4d4;
                border-radius: 0.9rem;
                background: #fff;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            }

            .sw-hover-dropdown .dropdown-item {
                display: flex;
                align-items: center;
                gap: 0.6rem;
                font-weight: 600;
                padding: 0.62rem 0.74rem;
                border-radius: 8px;
            }

            .sw-dropdown-item-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 1.55rem;
                height: 1.55rem;
                margin-right: 0.1rem;
                border-radius: 999px;
                background: #fff2f2;
                color: #b80b0b;
                transition: all 0.2s ease;
            }

            .sw-hover-dropdown .dropdown-item:hover .sw-dropdown-item-icon,
            .sw-hover-dropdown .dropdown-item:focus .sw-dropdown-item-icon,
            .sw-hover-dropdown .dropdown-item.active .sw-dropdown-item-icon {
                color: var(--sw-red);
            }

            .sw-hover-dropdown .dropdown-item:active,
            .sw-hover-dropdown .dropdown-item.active,
            .sw-hover-dropdown .dropdown-item:focus {
                background-color: var(--sw-red);
                color: #fff !important;
            }

            .sw-hover-dropdown .dropdown-item:active .sw-dropdown-item-icon,
            .sw-hover-dropdown .dropdown-item.active .sw-dropdown-item-icon,
            .sw-hover-dropdown .dropdown-item:focus .sw-dropdown-item-icon {
                background: rgba(255, 255, 255, 0.22);
                color: #fff;
            }

            .sw-quote-btn:hover {
                background-color: #c60303 !important;
                border-color: #c60303 !important;
            }

            .sw-offcanvas-logo {
                height: 32px;
                width: auto;
                object-fit: contain;
            }

            .sw-mobile-nav-icon {
                width: 1.1rem;
                margin-right: 0.5rem;
                color: var(--sw-red);
            }

            @media (min-width: 992px) {
                .sw-hover-dropdown:hover > .dropdown-menu {
                    display: block;
                    margin-top: 0;
                }
            }
            @media (min-width: 1024px) {
                .sw-hover-dropdown:hover > .dropdown-menu {
                    display: block;
                    margin-top: 0;
                }
            }

            @media (max-width: 991.98px) {
                #swMainNav {
                    border-top: 1px solid #eaeaea;
                    margin-top: 0.65rem;
                    padding-top: 0.65rem;
                }

                .sw-mobile-offcanvas {
                    width: min(78vw, 340px) !important;
                    border-left: 1px solid #f0d9d9;
                }

                .sw-mobile-offcanvas .offcanvas-body {
                    padding: 0.75rem 1.1rem 1rem;
                }

                .sw-nav-link {
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                }

                .sw-mobile-offcanvas .navbar-nav .sw-nav-link {
                    display: flex;
                    align-items: center;
                    padding-left: 1.25rem !important;
                    padding-right: 1rem !important;
                }

                .sw-mobile-offcanvas .dropdown-item {
                    padding-left: 1.25rem;
                    padding-right: 1rem;
                }

                .sw-mobile-offcanvas .offcanvas-header {
                    padding-left: 1.25rem;
                    padding-right: 1rem;
                }
            }

            @media (max-width: 767.98px) {
                .sw-brand-logo {
                    height: 48px;
                    max-width: 160px;
                }

                .sw-brand {
                    margin-right: 0;
                }

                .sw-top-item {
                    font-size: 0.82rem;
                }
            }

            @media (min-width: 768px) and (max-width: 991px) {
                .sw-brand-logo {
                    height: 54px;
                    max-width: 180px;
                }

                .sw-nav-link {
                    padding: 0.4rem 0.45rem !important;
                    font-size: 0.94rem;
                }
            }

            /* Home Relocation Premium Redesign */
            .home-relocation-pro {
                --hrp-red: #b30000;
                --hrp-red-dark: #7d0000;
                --hrp-soft: #fff3f3;
                --hrp-border: #f2dede;
            }

            .home-relocation-pro .hrp-intro-card,
            .home-relocation-pro .hrp-contact-card,
            .home-relocation-pro .hrp-value-card,
            .home-relocation-pro .hrp-timeline-card {
                border: 1px solid var(--hrp-border);
                border-radius: 1rem;
                background: #fff;
                box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
            }

            .home-relocation-pro .hrp-intro-card,
            .home-relocation-pro .hrp-contact-card,
            .home-relocation-pro .hrp-timeline-card {
                padding: 1.35rem;
            }

            .home-relocation-pro .hrp-kicker {
                display: inline-block;
                font-size: 0.76rem;
                font-weight: 700;
                letter-spacing: 0.12rem;
                color: var(--hrp-red);
                margin-bottom: 0.6rem;
                text-transform: uppercase;
            }

            .home-relocation-pro .hrp-mini-point {
                display: flex;
                gap: 0.7rem;
                border: 1px solid #f2e3e3;
                border-radius: 0.8rem;
                padding: 0.75rem;
                background: linear-gradient(155deg, #ffffff 0%, #fff8f8 100%);
            }

            .home-relocation-pro .hrp-mini-point i {
                color: var(--hrp-red);
                font-size: 1.2rem;
                margin-top: 0.08rem;
            }

            .home-relocation-pro .hrp-contact-card {
                background: linear-gradient(165deg, #ffffff 0%, #fff5f5 100%);
            }

            .home-relocation-pro .hrp-cta-box {
                border: 1px solid #efdbdb;
                border-radius: 0.85rem;
                padding: 1rem;
                background: #fff;
            }

            .home-relocation-pro .hrp-image-large,
            .home-relocation-pro .hrp-image-small {
                border-radius: 1rem;
                overflow: hidden;
                position: relative;
                box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
                border: 1px solid var(--hrp-border);
            }

            .home-relocation-pro .hrp-image-large {
                min-height: 350px;
            }

            .home-relocation-pro .hrp-image-small {
                min-height: 350px;
            }

            .home-relocation-pro .hrp-image-large img,
            .home-relocation-pro .hrp-image-small img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.5s ease;
            }

            .home-relocation-pro .hrp-image-large:hover img,
            .home-relocation-pro .hrp-image-small:hover img {
                transform: scale(1.07);
            }

            .home-relocation-pro .hrp-image-label {
                position: absolute;
                left: 1rem;
                bottom: 1rem;
                background: rgba(0, 0, 0, 0.58);
                color: #fff;
                padding: 0.45rem 0.75rem;
                border-radius: 0.5rem;
                font-size: 0.82rem;
                font-weight: 600;
            }

            .home-relocation-pro .hrp-value-section {
                background: radial-gradient(circle at 8% 10%, #fff1f1 0%, #ffffff 50%, #f8fbff 100%);
            }

            .home-relocation-pro .hrp-value-card {
                padding: 1.15rem;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .home-relocation-pro .hrp-value-card i {
                width: 2.6rem;
                height: 2.6rem;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 0.65rem;
                color: #fff;
                background: linear-gradient(135deg, #d60606 0%, var(--hrp-red-dark) 100%);
            }

            .home-relocation-pro .hrp-value-card:hover {
                transform: translateY(-7px);
                box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
            }

            .home-relocation-pro .hrp-timeline-step {
                display: flex;
                gap: 0.8rem;
                margin-bottom: 1rem;
                align-items: flex-start;
            }

            .home-relocation-pro .hrp-timeline-step span {
                min-width: 42px;
                height: 42px;
                border-radius: 50%;
                background: linear-gradient(140deg, #d30303 0%, #7c0000 100%);
                color: #fff;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                box-shadow: 0 10px 18px rgba(179, 0, 0, 0.26);
            }

            .home-relocation-pro .hrp-pricing-card {
                background: linear-gradient(165deg, #ffffff 0%, #fff9f9 100%);
            }

            .home-relocation-pro .hrp-bottom-strip {
                background: linear-gradient(135deg, #900000 0%, #d00202 100%);
                border-radius: 1rem;
                padding: 1.25rem 1.4rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
                box-shadow: 0 20px 35px rgba(137, 0, 0, 0.32);
            }

            .home-relocation-pro .hrp-intro-card,
            .home-relocation-pro .hrp-contact-card,
            .home-relocation-pro .hrp-image-large,
            .home-relocation-pro .hrp-image-small,
            .home-relocation-pro .hrp-value-card,
            .home-relocation-pro .hrp-timeline-card,
            .home-relocation-pro .hrp-bottom-strip {
                animation: hrpRise 0.7s ease both;
            }

            @keyframes hrpRise {
                from {
                    opacity: 0;
                    transform: translateY(18px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @media (max-width: 991.98px) {
                .home-relocation-pro .hrp-image-large,
                .home-relocation-pro .hrp-image-small {
                    min-height: 250px;
                }

                .home-relocation-pro .hrp-bottom-strip {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }

            /* Contact Page Refresh */
            .contact-refresh {
                background:
                    radial-gradient(circle at 10% 12%, #fff2f2 0%, rgba(255, 242, 242, 0) 32%),
                    radial-gradient(circle at 88% 84%, #f4f8ff 0%, rgba(244, 248, 255, 0) 34%),
                    #ffffff;
            }

            .contact-refresh-panel,
            .contact-form-refresh-card {
                border: 1px solid #efd9d9;
                border-radius: 1rem;
                background: #fff;
                box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
                animation: contactRise 0.7s ease both;
            }

            .contact-refresh-panel {
                padding: 1.25rem;
                background: linear-gradient(165deg, #ffffff 0%, #fff6f6 100%);
            }
            
            .contact-refresh-kicker {
                display: inline-block;
                font-size: 0.78rem;
                text-transform: uppercase;
                letter-spacing: 0.1rem;
                color: #b80000;
                font-weight: 700;
                margin-bottom: 0.55rem;
            }

            .contact-refresh-title {
                font-size: clamp(1.4rem, 2.5vw, 2rem);
                margin-bottom: 0.7rem;
            }

            .contact-refresh-subtitle {
                color: #5a6472;
                margin-bottom: 1.15rem;
            }

            .contact-refresh-list {
                display: grid;
                gap: 0.85rem;
            }

            .contact-refresh-item {
                display: flex;
                gap: 0.7rem;
                border: 1px solid #f1e2e2;
                border-radius: 0.85rem;
                padding: 0.8rem;
                background: #fff;
                transition: transform 0.28s ease, box-shadow 0.28s ease;
            }

            .contact-refresh-item:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
            }

            .contact-refresh-icon {
                width: 2.3rem;
                height: 2.3rem;
                border-radius: 0.65rem;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                background: linear-gradient(135deg, #e40303 0%, #8f0000 100%);
                flex: 0 0 auto;
            }

            .contact-refresh-item p,
            .contact-refresh-item a {
                color: #495464;
                text-decoration: none;
                word-break: break-word;
            }

            .contact-refresh-item a:hover {
                color: #b80000;
            }

            .contact-refresh-cta {
                margin-top: 1rem;
            }

            .contact-form-refresh-card {
                padding: 1.35rem;
                animation-delay: 0.1s;
            }

            .contact-form-header p {
                color: #5a6472;
                
            }

            .contact-form-refresh .custom-input-group {
                margin-bottom: 0.95rem;
            }

            .contact-form-refresh .custom-input-group label {
                display: inline-block;
                font-weight: 600;
                margin-bottom: 0.35rem;
                color: #2e3642;
            }

            .contact-form-refresh .custom-input-group .label-icon,
            .qte-label i {
                color: #b50b0b;
            }

            /* Quote modal - simple refreshed design */
            #qteModal .modal-dialog {
                max-width: 640px;
            }

            #qteModal .qte-content {
                border-radius: 1rem;
                overflow: hidden;
                background: #ffffff;
                box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
            }

            #qteModal .qte-header {
                background: linear-gradient(135deg, #b91c1c 0%, #8f0000 100%);
                color: #ffffff;
            }

            #qteModal .qte-subtitle {
                color: rgba(255, 255, 255, 0.82);
            }

            #qteModal .qte-icon-box {
                width: 38px;
                height: 38px;
                border-radius: 0.7rem;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.2);
                color: #ffd76a;
                font-size: 1rem;
            }

            #qteModal .qte-label {
                font-weight: 600;
                color: #283241;
                margin-bottom: 0.35rem;
            }

            #qteModal .qte-input {
                border: 1px solid #e6d6d6;
                border-radius: 0.65rem;
                min-height: 40px;
                padding: 0.55rem 0.75rem;
                transition: border-color 0.2s ease, box-shadow 0.2s ease;
            }

            #qteModal textarea.qte-input {
                min-height: 90px;
                resize: vertical;
            }

            #qteModal .qte-input:focus {
                border-color: #b91c1c;
                box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.14);
            }

            #qteModal .qte-footer {
                background: #fff8f8;
            }

            #qteModal .qte-btn-clear {
                border: 1px solid #d8b8b8;
                color: #7f1d1d;
                background: #ffffff;
                border-radius: 0.6rem;
                padding: 0.45rem 0.9rem;
            }

            #qteModal .qte-btn-clear:hover {
                background: #fff0f0;
            }

            #qteModal .qte-btn-submit {
                border: 0;
                color: #ffffff;
                border-radius: 0.6rem;
                padding: 0.45rem 1rem;
                font-weight: 600;
                background: linear-gradient(135deg, #b91c1c 0%, #8f0000 100%);
            }

            #qteModal .qte-btn-submit:hover {
                box-shadow: 0 10px 20px rgba(143, 0, 0, 0.28);
                transform: translateY(-1px);
            }

            /* Apply Modal Styling */
            #applyModal .qte-content {
                border-radius: 1rem;
                overflow: hidden;
                background: #ffffff;
                box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
            }

            #applyModal .qte-header {
                background: linear-gradient(135deg, #b91c1c 0%, #8f0000 100%);
                color: #ffffff;
            }

            #applyModal .qte-label {
                font-weight: 600;
                color: #283241;
                margin-bottom: 0.35rem;
            }

            #applyModal .qte-input {
                border: 1px solid #e6d6d6;
                border-radius: 0.65rem;
                min-height: 40px;
                padding: 0.55rem 0.75rem;
                transition: border-color 0.2s ease, box-shadow 0.2s ease;
            }

            #applyModal .qte-input:focus {
                border-color: #b91c1c;
                box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.14);
                outline: none;
            }

            #applyModal .qte-footer {
                background: #fff8f8;
            }

            #applyModal .qte-btn-clear {
                border: 1px solid #d8b8b8;
                color: #7f1d1d;
                background: #ffffff;
                border-radius: 0.6rem;
                padding: 0.45rem 0.9rem;
            }

            #applyModal .qte-btn-clear:hover {
                background: #fff0f0;
            }

            #applyModal .qte-btn-submit {
                border: 0;
                color: #ffffff;
                border-radius: 0.6rem;
                padding: 0.45rem 1rem;
                font-weight: 600;
                background: linear-gradient(135deg, #b91c1c 0%, #8f0000 100%);
            }

            #applyModal .qte-btn-submit:hover {
                box-shadow: 0 10px 20px rgba(143, 0, 0, 0.28);
                transform: translateY(-1px);
            }

            .service-quote-panel .input-group-text {
                background: #fff1f1;
                color: #b50b0b;
                border: 1px solid #e4d4d4;
            }

            .service-quote-panel .input-group-text i,
            .service-quote-panel .service-label-icon {
                color: #b50b0b;
            }

            .custom-modal .form-icon i {
                color: #ffd36b;
            }

            .contact-form-refresh .modern-input {
                width: 100%;
                border: 1px solid #e6d3d3;
                border-radius: 0.7rem;
                padding: 0.7rem 0.85rem;
                background: #fff;
                transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            }

            .contact-form-refresh textarea.modern-input {
                min-height: 130px;
                resize: vertical;
            }

            .contact-form-refresh .modern-input:focus {
                border-color: #d70303;
                box-shadow: 0 0 0 0.2rem rgba(215, 3, 3, 0.12);
                outline: none;
                transform: translateY(-1px);
            }

            .contact-form-refresh .btn-submit {
                border: 0;
                border-radius: 0.75rem;
                padding: 0.72rem 1.15rem;
                color: #fff;
                font-weight: 700;
                background: linear-gradient(135deg, #e40303 0%, #8f0000 100%);
                transition: transform 0.25s ease, box-shadow 0.25s ease;
            }

            .contact-form-refresh .btn-submit:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 22px rgba(184, 0, 0, 0.26);
            }

            .contact-map-refresh {
                border-radius: 1rem;
                overflow: hidden;
                border: 1px solid #ecd4d4;
                min-height: 340px;
                box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
                animation: contactRise 0.8s ease both;
                animation-delay: 0.16s;
            }

            .contact-map-refresh iframe {
                min-height: 340px;
            }

            @keyframes contactRise {
                from {
                    opacity: 0;
                    transform: translateY(18px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @media (max-width: 991.98px) {
                .contact-refresh-panel,
                .contact-form-refresh-card {
                    padding: 1rem;
                }

                .contact-map-refresh,
                .contact-map-refresh iframe {
                    min-height: 260px;
                }
            }
            /* city page */
            .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            font-weight: bold;
            color: var(--text-black);
        }

        .carousel-item img {
            height: 500px;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .about-section {
            padding: 80px 0;
            background-color: var(--light-white);
        }

        .text-brand-red {
            color: var(--brand-red) !important;
        }

        .btn-brand {
            background-color: var(--brand-red);
            border-color: var(--brand-red);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-brand:hover {
            background-color: var(--brand-blue);
            border-color: var(--brand-blue);
            color: white;
            transform: translateY(-2px);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--brand-blue);
            color: white;
            padding: 25px;
            border-radius: 12px;
            z-index: 10;
            text-align: center;
            box-shadow: 0 15px 35px rgba(139, 0, 0, 0.3);
            border: 2px solid rgba(255,255,255,0.1);
        }

        .feature-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid var(--brand-red);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .section-title {
            color: var(--text-black);
            font-weight: 800;
            line-height: 1.2;
        }

        /* View City */
        .view-service-redesign .city-quote-wrap {
            background: transparent;
        }

        .view-service-redesign .city-quote-left {
            background: transparent;
            border-radius: 0;
            color: #333;
            padding: 0;
            min-height: auto;
            box-shadow: none;
        }

        .view-service-redesign .city-quote-left .city-quote-kicker {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 0.1rem;
            text-transform: uppercase;
            font-weight: 700;
            color: #cb0303;
            margin-bottom: 0.8rem;
        }

        .view-service-redesign .city-quote-left .city-quote-heading {
            font-size: 2rem;
            line-height: 1.2;
            color: #1a1a1a;
        }

        .view-service-redesign .city-quote-left .city-quote-text {
            color: black;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .view-service-redesign .city-quote-left .city-quote-services-heading {
            color: #cb0303;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .view-service-redesign .city-quote-left .city-quote-services-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.6rem;
        }

        .view-service-redesign .city-quote-left .city-quote-service-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: black;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .view-service-redesign .city-quote-left .city-quote-service-item i {
            color: #cb0303;
            font-size: 1.1rem;
        }

        .about-cities-text {
            letter-spacing: 0.04em;
        }

        .about-divider {
            width: 50px !important;
            border-color: var(--brand-red) !important;
        }

        .about-company-label {
            letter-spacing: 0.08em;
        }

        .home-redesign .about-section {
            background: #fff;
            padding-bottom: 3.75rem !important;
        }

        .home-redesign .about-section-refresh {
            overflow: visible;
        }

        .home-redesign .about-image-wrap {
            padding: 0.75rem 0 2rem 0.9rem;
            z-index: 2;
        }

        .home-redesign .about-image-container {
            position: relative;
            z-index: 1;
        }

        .home-redesign .about-image-container::before,
        .home-redesign .about-image-container::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: -1;
        }

        .home-redesign .about-image-container::before {
            top: -15px;
            left: -15px;
            border-top: 5px solid #facc15;
            border-left: 5px solid #facc15;
        }

        .home-redesign .about-image-container::after {
            bottom: -15px;
            right: -15px;
            border-bottom: 5px solid var(--brand-red);
            border-right: 5px solid var(--brand-red);
        }

        .home-redesign .about-main-image {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 0.75rem;
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
            transition: transform 0.45s ease;
        }

        .home-redesign .about-image-wrap:hover .about-main-image {
            transform: scale(1.02);
        }

        .home-redesign .about-experience-badge {
            position: absolute;
            left: -8px;
            bottom: -14px;
            z-index: 6;
            background: var(--brand-red);
            color: #fff;
            padding: 1rem 1.25rem;
            border-radius: 0.75rem;
            box-shadow: 0 14px 30px rgba(185, 28, 28, 0.28);
        }

        .home-redesign .about-experience-year {
            font-size: 2rem;
            line-height: 1;
            font-weight: 800;
        }

        .home-redesign .about-experience-text {
            margin-top: 0.35rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .home-redesign .about-kicker-wrap {
            gap: 0.6rem;
        }

        .home-redesign .about-kicker-line {
            width: 2rem;
            height: 2px;
            background: #facc15;
        }

        .home-redesign .about-kicker-text {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--brand-red);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .home-redesign .about-title {
            color: #0f172a;
            font-size: clamp(2rem, 3.8vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
        }

        .home-redesign .about-title span {
            color: var(--brand-red);
        }

        .home-redesign .about-description {
            color: black;
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .home-redesign .about-point-card {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .home-redesign .about-point-icon {
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 999px;
            background: #facc15;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        .home-redesign .about-point-title {
            margin-bottom: 0.2rem;
            font-size: 1rem;
            color: #0f172a;
            font-weight: 700;
        }

        .home-redesign .about-point-text {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .home-redesign .btn-brand-pill {
            background: #0f172a;
            border: 0;
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.8rem 1.9rem;
            transition: all 0.28s ease;
        }

        .home-redesign .btn-brand-pill:hover,
        .home-redesign .btn-brand-pill:focus {
            background: var(--brand-red);
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 767.98px) {
            .home-redesign .about-main-image {
                height: 300px;
            }

            .home-redesign .about-image-wrap {
                padding-left: 0.25rem;
                padding-bottom: 1rem;
            }
        }

        @media (max-width: 1199.98px) {
            .home-redesign .about-points-grid .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .home-redesign .about-description {
                font-size: 1rem;
                line-height: 1.7;
            }
        }

        .view-service-redesign .city-quote-form {
            border-radius: 1rem;
            border: 1px solid #ecd9d9;
            background: #fff;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
            padding: 0.55rem;
            max-width: 560px;
            margin-left: auto;
        }

        .view-service-redesign .service-quote-panel {
            border-radius: 0.85rem;
            overflow: hidden;
            border: 1px solid #efd9d9;
            background: #fff;
        }

        .view-service-redesign .service-quote-header {
            background: linear-gradient(130deg, #9e0000 0%, #de0505 100%);
            color: #fff;
            padding: 0.7rem 0.85rem;
        }

        .view-service-redesign .service-quote-kicker {
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.68rem;
            letter-spacing: 0.09rem;
            opacity: 0.9;
            margin-bottom: 0.15rem;
        }

        .view-service-redesign .service-quote-header h3 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem !important;
        }

        .view-service-redesign .service-quote-header p {
            font-size: 0.82rem;
        }

        .view-service-redesign .service-quote-body {
            padding: 0.75rem;
        }

        .view-service-redesign .service-quote-body .form-label {
            margin-bottom: 0.2rem;
            font-size: 0.82rem;
        }

        .view-service-redesign .service-quote-input {
            border: 1px solid #e4d4d4;
            border-radius: 0.55rem;
            padding: 0.48rem 0.65rem;
            font-size: 0.9rem;
            background: #fff;
        }

        .view-service-redesign .service-quote-input:focus {
            border-color: #cb0303;
            box-shadow: 0 0 0 0.15rem rgba(203, 3, 3, 0.12);
        }

        .view-service-redesign .service-quote-btn {
            border: 0;
            border-radius: 0.6rem;
            font-weight: 700;
            color: #fff;
            padding: 0.52rem 0.8rem !important;
            font-size: 0.92rem;
            background: linear-gradient(130deg, #a30000 0%, #d60303 100%);
        }

        .view-service-redesign .service-quote-btn:hover {
            color: #fff;
        }

        .view-service-redesign .service-quote-clear {
            border-radius: 0.6rem;
            padding: 0.52rem 0.8rem !important;
            font-size: 0.92rem;
        }

        @media (max-width: 991.98px) {
            .view-service-redesign .city-quote-form {
                max-width: 100%;
                margin-left: 0;
            }
        }

        @media (max-width: 767.98px) {
            .view-service-redesign .city-quote-left {
                padding: 0;
            }

            .view-service-redesign .city-quote-left .city-quote-heading {
                font-size: 1.3rem;
            }
        }

        .service-section {
            padding: 50px 0;
            position: relative;
        }

        .bg-accent {
            background-color: var(--soft-gray);
        }

        .text-brand-red {
            color: var(--brand-red) !important;
        }

        .section-tag {
            display: inline-block;
            background: rgba(228, 3, 3, 0.1);
            color: var(--brand-red);
            padding: 4px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-heading {
            font-family:  sans-serif;
            color: var(--deep-red);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .content-para {
            line-height: 1.8;
            color: var(--text-main);
            text-align: justify;
            font-size: 1rem;
            position: relative;
            padding-left: 15px;
            border-left: 3px solid var(--brand-red);
            margin-bottom: 0;
        }

        /* Home relocation scoped fixes */
        .home-relocation-page .bg-brand {
            background-color: var(--deep-red) !important;
        }

        .home-relocation-page .bg-accent {
            background-color: var(--yellow) !important;
        }

        .home-relocation-page .category-card {
            position: relative;
            overflow: hidden;
            border: 1px solid #edf2f7;
            background: #fff;
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .home-relocation-page .category-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: var(--deep-red);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.45s ease;
            z-index: 0;
        }

        .home-relocation-page .category-card > * {
            position: relative;
            z-index: 1;
        }

        .home-relocation-page .category-card:hover {
            transform: translateY(-12px);
            border-color: transparent;
        }

        .home-relocation-page .category-card:hover::before {
            transform: scaleY(1);
        }

        .home-relocation-page .category-card:hover p,
        .home-relocation-page .category-card:hover h5 {
            color: #fff !important;
        }

        .home-relocation-page .icon-circle {
            width: 120px;
            height: 120px;
            font-size: 4rem;
            transition: 0.3s;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        }

        .home-relocation-page .category-card:hover .icon-circle {
            background: rgba(255, 255, 255, 0.2) !important;
            transform: scale(1.1);
        }

        .home-relocation-page .cta-section {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            border-bottom: 8px solid var(--yellow);
        }

        .img-wrapper {
            position: relative;
            z-index: 1;
        }

        .img-wrapper::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--brand-red);
            top: 15px;
            left: 15px;
            border-radius: 25px;
            z-index: -1;
        }

        .img-wrapper-alt::before {
            left: -15px;
            right: auto;
        }

        .premium-img-box {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            aspect-ratio: 1 / 1;
            background: #fff;
            max-width: 400px;
            margin: 0 auto;
        }

        .premium-img-box img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .premium-img-box:hover img {
            transform: scale(1.1);
        }

        .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 15px 15px;
            background: linear-gradient(transparent, rgba(139, 0, 0, 0.9));
            color: white;
        }

        @media (max-width: 991px) {
            .section-heading { font-size: 1.8rem; }
            .service-section { padding: 40px 0; }
            .img-wrapper { margin-bottom: 30px; }
            .img-wrapper::before { display: none; }
            .premium-img-box { max-width: 320px; }
        }

        /* main keyword */
        .keyword-section {
            padding: 30px 0;
            background-color: #fff;
        }

        .section-heading {
            color: var(--deep-red);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .keyword-pill {
            display: inline-block;
            background-color: var(--deep-red);
            color: #ffffff;
            padding: 6px 14px;
            margin: 4px 2px;
            border-radius: 6px; 
            font-size: 13.5px;
            font-weight: 500;
            text-decoration: none;
            border: none;
        }

        @media (max-width: 768px) {
            .keyword-pill {
                font-size: 12px;
                padding: 5px 10px;
            }
        }
        .maxh-56 { max-height: 56px !important; }
        .wh-38 { width: 38px !important; height: 38px !important; }

        /* Office Ahmedabad Section Styles */
        .office-ahmedabad-section {
            margin-top: 3rem;
            margin-bottom: 3rem;
        }
        .office-ahmedabad-map {
            width: 100%;
            height: 350px;
            border: 0;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.08);
        }
        .office-ahmedabad-title {
            color: var(--deep-red);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .office-ahmedabad-address {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .office-ahmedabad-contact,
        .office-ahmedabad-mail {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .office-ahmedabad-mail a {
            color: var(--deep-red);
            text-decoration: underline;
        }
        .office-ahmedabad-desc {
            font-size: 15px;
            color: #555;
        }

        /* Why Choose Us - Externalized Styles */
        .choose-icon-circle {
            width: 36px;
            height: 36px;
            background: #fdecec;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .choose-icon {
            color: #E40303;
        }
        .choose-feature-icon {
            width: 56px;
            height: 56px;
            background: #fdecec;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
        }