
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            background: #fefcf3;
        }

        /* festive palette: red, yellow, blue, white, gold */
        :root {
            --primary-red: #d42e2e;
            --gold: #f5b342;
            --soft-yellow: #ffe484;
            --deep-blue: #1e3c72;
            --light-bg: #fffaf0;
        }

        .top-header {
            background: var(--deep-blue);
            color: white;
            font-size: 0.9rem;
            padding: 6px 0;
        }

        .top-header a {
            color: #ffd966;
            text-decoration: none;
            margin: 0 6px;
        }

        .top-header a:hover {
            color: white;
        }

        .top-header .social-icons a {
            color: #fff;
            margin-left: 10px;
            font-size: 1rem;
        }

        .top-header .social-icons a:hover {
            color: var(--gold);
        }

        .navbar {
            background: white !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--deep-blue) !important;
        }

        .navbar-brand span {
            color: var(--primary-red);
        }

        .nav-link {
            font-weight: 500;
            color: #222 !important;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .btn-call-nav {
            background: var(--primary-red);
            color: white !important;
            border-radius: 30px;
            padding: 6px 18px;
            font-weight: 600;
        }

        .btn-call-nav:hover {
            background: #b91e1e;
        }

        .hero-slider .carousel-item {
            height: 85vh;
            background-size: cover;
            background-position: center;
        }

        .hero-slider .carousel-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-slider .carousel-caption {
            z-index: 2;
            bottom: 30%;
        }

        .hero-slider .carousel-caption h1 {
            font-size: 3.4rem;
            font-weight: 700;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .hero-slider .carousel-caption p {
            font-size: 1.3rem;
        }

        .btn-hero {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            margin: 6px;
        }

        .btn-hero-primary {
            background: var(--primary-red);
            border: none;
            color: white;
        }

        .btn-hero-primary:hover {
            background: #b91e1e;
            color: white;
        }

        .btn-hero-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-hero-outline:hover {
            background: white;
            color: #222;
        }

        section {
            padding: 70px 0;
            overflow: hidden;
        }

        .section-title {
            font-weight: 700;
            color: var(--deep-blue);
            position: relative;
            margin-bottom: 40px;
        }

        .section-title:after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--gold);
            display: block;
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .about-img {
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .product-img{
    overflow: hidden;
    border-radius: 20px;
}

.product-img img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s ease;
}

.product-img img:hover{
    transform:scale(1.08);
}

/* Tablet */
@media (max-width:991px){
    .product-img img{
        height:400px;
    }
}

/* Mobile */
@media (max-width:767px){
    .product-img img{
        height:250px;
        border-radius:15px;
    }
}

        .feature-icon {
            font-size: 2rem;
            color: var(--primary-red);
            margin-right: 12px;
        }

        .service-card {
            border: none;
            border-radius: 24px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(212, 46, 46, 0.12);
        }

        .service-card .card-img-top {
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            height: 200px;
            object-fit: cover;
        }

        .service-card .card-body {
            padding: 1.8rem;
        }

        .service-card i {
            font-size: 2.4rem;
            color: var(--primary-red);
            margin-bottom: 12px;
        }

        .why-icon {
            font-size: 2.2rem;
            color: var(--gold);
            background: #fff4d6;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            margin: 0 auto 16px;
        }

        .gallery-img {
            border-radius: 20px;
            overflow: hidden;
            transition: 0.3s;
            cursor: pointer;
        }

        .gallery-img img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: 0.4s;
        }

        .gallery-img:hover img {
            transform: scale(1.08);
        }

        .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%;
    }
}

        .process-step {
            background: white;
            border-radius: 40px;
            padding: 30px 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
            position: relative;
        }

        .process-step .step-number {
            background: var(--primary-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 16px;
        }

        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 16px;
        }

        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 30px;
            height: 100%;
        }

        .contact-info i {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-right: 16px;
        }

        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 12px;
            border-radius: 20px;
            overflow: hidden;
        }

        .faq-accordion .accordion-button {
            background: white;
            font-weight: 600;
            border-radius: 20px;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--soft-yellow);
            color: var(--deep-blue);
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), #b91e1e);
            color: white;
            padding: 60px 0;
        }

        .cta-section .btn {
            border-radius: 50px;
            padding: 14px 40px;
            font-weight: 600;
        }

        .footer {
            background: #0d1b2a;
            color: #ddd;
            padding: 50px 0 20px;
        }

        .footer a {
            color: #bbb;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--gold);
        }

        .footer .social-icons a {
            font-size: 1.4rem;
            margin-right: 16px;
            color: #ccc;
        }

        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 25px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .floating-buttons a {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
        }

        .floating-buttons a:hover {
            transform: scale(1.08);
        }

        .btn-call-float {
            background: #25d366;
        }

        .btn-whatsapp-float {
            background: #128C7E;
        }

        .back-to-top {
            position: fixed;
            bottom: 172px;
            right: 32px;
            z-index: 999;
            background: var(--deep-blue);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            text-decoration: none;
            opacity: 0.8;
        }

        .back-to-top:hover {
            background: var(--primary-red);
            color: white;
        }

        @media (max-width: 768px) {
            .hero-slider .carousel-item {
                height: 70vh;
            }

            .hero-slider .carousel-caption h1 {
                font-size: 2rem;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 4px;
            }
        }