
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #fff;
            color: #000;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        :root {
            --red: #D00D0D;
            --black: #000000;
            --white: #ffffff;
        }

        /* top header */
        .top-header {
            background: #111;
            color: #ddd;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 2px solid var(--red);
        }

        .top-header a {
            color: #eee;
            text-decoration: none;
            margin-right: 18px;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: var(--red);
        }

        .social-icons a {
            display: inline-block;
            margin-left: 12px;
            font-size: 1.1rem;
            color: #ccc;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--red);
            transform: scale(1.15);
        }

        /* navbar */
        .navbar {
            background: #f7f7f7 !important;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
            padding: 1px 0;
        }

        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
        }

        .navbar-brand span {
            color: var(--red);
        }

        .navbar .nav-link {
            color: #000000 !important;
            font-weight: 500;
            margin: 0 8px;
            transition: 0.3s;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--red) !important;
        }

        .btn-call-nav {
            background: var(--red);
            color: #fff !important;
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }

        .btn-call-nav:hover {
            background: #b00b0b;
            transform: scale(1.03);
        }

        /* hero carousel */
        .hero-slide {
            height: 85vh;
            min-height: 420px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 650px;
            opacity: 0.9;
        }

        .hero-btn {
            background: var(--red);
            border: none;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            transition: 0.3s;
        }

        .hero-btn:hover {
            background: #b00b0b;
            transform: scale(1.04);
        }

        .hero-btn-outline {
            background: transparent;
            border: 2px solid #fff;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            transition: 0.3s;
        }

        .hero-btn-outline:hover {
            background: var(--red);
            border-color: var(--red);
        }
        /* hero banner */
        .about-hero {
            background: url('assets/images/hero-breadcrum.png') center/cover no-repeat;
            min-height: 380px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .about-hero .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .about-hero .container {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .about-hero h1 {
    font-size: 2.2rem;
    font-weight: 600;
}

        .about-hero .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }

        .about-hero .breadcrumb a:hover {
            color: var(--red);
        }

        .about-hero .breadcrumb .active {
            color: var(--red);
        }


        /* hero */
        .services-hero {
            background: url('https://placehold.co/1600x600/2c3e50/ffffff?text=Construction+%26+Interior') center/cover no-repeat;
            min-height: 380px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .services-hero .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .services-hero .container {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .services-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
        }

        .services-hero .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }

        .services-hero .breadcrumb a:hover {
            color: var(--red);
        }

        .services-hero .breadcrumb .active {
            color: var(--red);
        }

        section{
            overflow: hidden;
        }

        /* sections */
        .section-title {
            font-weight: 800;
            color: var(--black);
            position: relative;
            margin-bottom: 2.5rem;
        }

        .section-title::after {
            content: '';
            display: block;
            /* width: 70px; */
            height: 4px;
            background: var(--red);
            margin-top: 10px;
        }

        .bg-dark-red {
            background: var(--black);
            color: var(--white);
        }

        .bg-dark-red .section-title {
            color: var(--white);
        }

        .bg-dark-red .section-title::after {
            background: var(--red);
        }

        /* about */
        .about-img-wrap {
            position: relative;
        }

        .about-img-wrap img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .about-icon-list i {
            color: var(--red);
            font-size: 1.8rem;
            margin-right: 12px;
        }

        /* cards & expertise */
        .expertise-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            transition: 0.4s;
            height: 100%;
            background: #fff;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .expertise-card img {
            height: 200px;
            object-fit: cover;
        }

        .expertise-card .card-body {
            padding: 1.8rem;
        }

        .expertise-number {
            background: var(--red);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

        /* value cards */
        .value-icon {
            background: var(--red);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin: 0 auto 16px;
        }

        /* tabs services */
        .nav-tabs .nav-link {
            color: var(--black);
            font-weight: 600;
            border-radius: 0;
            border: none;
            padding: 14px 28px;
            background: #f0f0f0;
            margin-right: 6px;
        }

        .nav-tabs .nav-link.active {
            background: var(--red);
            color: #fff;
            border: none;
        }

        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transition: 0.4s;
            height: 100%;
            background: #fff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card img {
            height: 200px;
            object-fit: cover;
        }

        .service-card .card-body {
            padding: 1.5rem;
        }
        /* service cards */
        .service-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            transition: 0.4s;
            height: 100%;
            background: #fff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card img {
            height: 200px;
            object-fit: cover;
            transition: 0.5s;
        }

        .service-card:hover img {
            transform: scale(1.04);
        }

        .service-card .card-body {
            padding: 1.8rem;
        }
        .commitment-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .commitment-item i {
            font-size: 2rem;
            color: var(--red);
            flex-shrink: 0;
            margin-top: 4px;
        }

        /* renovation cards */
        .renov-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transition: 0.4s;
        }

        .renov-card:hover {
            transform: scale(1.02);
        }

        .renov-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: 0.5s;
        }

        .renov-card:hover img {
            transform: scale(1.05);
        }

        .renov-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            color: #fff;
        }

        /* why choose us */
        .why-icon {
            background: var(--red);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 12px;
        }
        /* why choose */
        /* .why-icon {
            color: var(--red);
            font-size: 1.6rem;
            margin-right: 12px;
        } */

        /* features */
        .feature-icon {
            background: var(--red);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin: 0 auto 16px;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 4px;
            }

            .top-header .social-icons {
                margin-top: 6px;
            }

            .hero {
                min-height: 280px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
        }


        /* process timeline */
        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            background: var(--red);
            color: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.6rem;
            margin: 0 auto 16px;
        }

        .contact-hero {
            background: url('https://placehold.co/1600x600/2c3e50/ffffff?text=Construction+%26+Interior') center/cover no-repeat;
            min-height: 380px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .contact-hero .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .contact-hero .container {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .contact-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
        }

        .contact-hero .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }

        .contact-hero .breadcrumb a:hover {
            color: var(--red);
        }

        .contact-hero .breadcrumb .active {
            color: var(--red);
        }
        .contact-card {
            border: none;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            transition: 0.4s;
            height: 100%;
            background: #fff;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .contact-card i {
            font-size: 2.8rem;
            color: var(--red);
            margin-bottom: 1rem;
        }
        .service-area-card {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s;
        }

        .service-area-card:hover {
            background: var(--red);
            color: #fff;
            transform: scale(1.02);
        }

        .service-area-card i {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
        }
         @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 4px;
            }

            .top-header .social-icons {
                margin-top: 6px;
            }

            .contact-hero {
                min-height: 280px;
            }
        }

        @media (max-width: 576px) {
            .contact-hero h1 {
                font-size: 1.8rem;
            }
        }

        .hero {
            background: url('https://placehold.co/1600x600/2c3e50/ffffff?text=Construction+%26+Interior') center/cover no-repeat;
            min-height: 380px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }
        .feature-card {
            border: none;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            transition: 0.4s;
            height: 100%;
            background: #fff;
        }
        .benefit-card { background: #f8f8f8; padding: 1.5rem; border-radius: 12px; text-align: center; transition: 0.3s; height: 100%; }
    .benefit-card:hover { background: var(--red); color: #fff; transform: scale(1.02); }
    .benefit-card i { font-size: 2.4rem; margin-bottom: 0.5rem; }

    .floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
    .float-btn { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.3); transition: 0.3s; border: none; }
    .float-btn.call { background: var(--red); }
    .float-btn.whatsapp { background: #25D366; }
    .float-btn:hover { transform: scale(1.08); }
    .pulse { animation: pulse 2s infinite; }
    @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(208,13,13,0.6); } 70% { box-shadow: 0 0 0 15px rgba(208,13,13,0); } 100% { box-shadow: 0 0 0 0 rgba(208,13,13,0); } }
    .pulse-whatsapp { animation: pulse-w 2s infinite; }
    @keyframes pulse-w { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-card .number {
            background: var(--red);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .split-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            min-height: 280px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .split-card .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .split-card .content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding: 2rem;
        }

        .strength-icon {
            background: var(--red);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
        }

        .hero .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }

        .hero .breadcrumb a:hover {
            color: var(--red);
        }

        .hero .breadcrumb .active {
            color: var(--red);
        }


        /* process */
        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            background: var(--red);
            color: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.6rem;
            margin: 0 auto 16px;
        }

        .process-line {
            height: 3px;
            background: var(--red);
            width: 80%;
            margin: 0 auto;
        }

        /* gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: 0.4s;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from{
        transform: scale(.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* Responsive */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .close-btn{
        font-size:35px;
        right:20px;
    }

    #lightbox img{
        max-width:95%;
    }
}

        /* testimonials */
        .testimonial-card {
            background: #f8f8f8;
            padding: 28px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 14px;
        }

        /* contact */
        .contact-info i {
            color: var(--red);
            font-size: 1.6rem;
            margin-right: 14px;
        }

        /* footer */
        .footer {
            background: var(--black);
            color: #ccc;
            padding: 50px 0 20px;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer a:hover {
            color: var(--red);
        }

        .footer .social a {
            font-size: 1.4rem;
            margin-right: 16px;
            color: #aaa;
        }

        .footer .social a:hover {
            color: var(--red);
        }

        /* floating */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .float-btn {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
            border: none;
        }

        .float-btn.call {
            background: var(--red);
        }

        .float-btn.whatsapp {
            background: #25D366;
        }

        .float-btn:hover {
            transform: scale(1.08);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(208, 13, 13, 0.6);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(208, 13, 13, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(208, 13, 13, 0);
            }
        }

        .pulse-whatsapp {
            animation: pulse-w 2s infinite;
        }

        @keyframes pulse-w {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-slide {
                height: 70vh;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 4px;
            }

            .top-header .social-icons {
                margin-top: 6px;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        /* custom */
        .btn-red {
            background: var(--red);
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-red:hover {
            background: #b00b0b;
            color: #fff;
            transform: scale(1.02);
        }

        .btn-outline-red {
            background: transparent;
            border: 2px solid var(--red);
            color: var(--red);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-red:hover {
            background: var(--red);
            color: #fff;
        }

        .bg-black {
            background: var(--black);
        }

        .text-red {
            color: var(--red);
        }

        .border-red {
            border-color: var(--red) !important;
        }

        .shadow-card {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }