
        /* ========================================
           CSS STYLES
           ======================================== */

        :root {
            --primary-orange: #f37121;
            --dark-orange: #febe10;
            --light-orange: #fff4f0;
            --text-dark: #000000;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        p, .lead {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark) !important;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }

        /* Carousel */
        .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: rgba(0,0,0,0.4); */
        }

        .carousel-caption {
            z-index: 20;
            bottom: 10%;
            right: 50%;
            text-align: left;
        }

        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            /* text-shadow: 1px 1px 2px rgba(0,0,0,0.5); */
        }

        .carousel-caption p {
            font-weight: 500;
        }

        .btn-orange {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .btn-orange:hover {
            background-color: var(--dark-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255,107,53,0.4);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 4px;
            background-color: var(--primary-orange);
        }

        /* About Section */
        .about-card {
            background-color: var(--light-orange);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }

        .about-card h4 {
            font-weight: 700;
        }

        .about-card p {
            font-weight: 400;
        }

        .about-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        /* Products Section */
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(255,107,53,0.3);
        }

        .product-card .card-title {
            font-weight: 700;
        }

        .product-card .card-text {
            font-weight: 400;
        }

        .product-img {
            height: 250px;
            background-color: var(--light-orange);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-icon {
            font-size: 5rem;
            color: var(--primary-orange);
        }

        /* Contact Section */
        .contact-info {
            background-color: var(--light-orange);
            padding: 40px;
            border-radius: 15px;
        }

        .contact-info h4 {
            font-weight: 700;
        }

        .contact-item {
            margin-bottom: 25px;
            font-weight: 400;
        }

        .contact-item strong {
            font-weight: 600;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-right: 15px;
        }

        .form-label {
            font-weight: 600;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.25);
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 40px 0 20px;
        }

        footer h5 {
            font-weight: 700;
        }

        footer p {
            font-weight: 300;
        }

        footer a {
            color: white;
            text-decoration: none;
            font-weight: 400;
        }

        footer a:hover {
            color: var(--primary-orange);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }
        }


            /* product details pages */
             /* Product Banner */
        .product-banner {
            height: 300px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-bottom: 60px;
            backdrop-filter: blur(15px);
        }

        .product-banner h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 15px;
        }

        .product-banner p {
            font-size: 1.3rem;
            font-weight: 500;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 30px;
        }

        .breadcrumb-item a {
            color: var(--primary-orange);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--text-dark);
        }

        section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        /* Product Description */
        .product-icon-large {
            font-size: 8rem;
            color: var(--primary-orange);
        }

        .icon-box {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 0;
            font-size: 1.05rem;
        }

        .feature-list i {
            color: var(--primary-orange);
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .highlight-box {
            background-color: var(--light-orange);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--primary-orange);
        }

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 280px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-icon-box {
            background: linear-gradient(135deg, var(--light-orange), #ffe5dc);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .gallery-icon {
            font-size: 5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .gallery-text {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta-section {
            background:  var(--text-dark);
            padding: 90px;
            margin: 30px;
            border-radius: 15px;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .btn-orange {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .btn-orange:hover {
            background-color: var(--dark-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255,107,53,0.4);
        }

        .btn-white {
            background-color: white;
            color: var(--primary-orange);
            border: none;
            padding: 14px 35px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-white:hover {
            background-color: #f8f9fa;
            color: var(--dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .btn-outline-white {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 12px 35px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background-color: white;
            color: var(--primary-orange);
            border-color: white;
        }
