     :root {
         --primary-color: #360d11;
         --secondary-color: #e74c3c;
         --accent-color: #f39c12;
         --light-color: #f8f9fa;
         --dark-color: #360d11;
     }

     body {
         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         color: #333;
         padding-top: 76px;

     }

     .navbar-brand img {
         height: 60px;
         margin-right: 10px;
         border-radius: 50%;

     }

     .nav-link {
         color: white;
     }

     .navbar-brand span {
         font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
         font-size: 18px;
     }


     @media (max-width: 600px) {
         .navbar-brand img {
             height: 40px;
             margin-right: 10px;
             border-radius: 50%;

         }

         .navbar-brand span {
             font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
             font-size: 16px;
         }

     }


     .hero-section {
         background-image:
             url('https://images.unsplash.com/photo-1600585154340-043788447eb1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'),
             linear-gradient(to bottom, #4facfe, #00f2fe);
         /* example gradient */
         background-size: cover;
         background-position: center;
         color: white;
         padding: 120px 0 100px;
         margin-bottom: 50px;
     }

     .brand-highlight {
         color: var(--accent-color);
         font-weight: bold;
     }

     .section-title {
         position: relative;
         padding-bottom: 15px;
         margin-bottom: 40px;
         color: var(--primary-color);
     }

     .section-title:after {
         content: '';
         position: absolute;
         bottom: 0;
         left: 0;
         width: 80px;
         height: 3px;
         background-color: var(--secondary-color);
     }

     .center-title:after {
         left: 50%;
         transform: translateX(-50%);
     }

     .product-card {
         border: none;
         border-radius: 10px;
         overflow: hidden;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
         margin-bottom: 30px;
         height: 100%;
     }

     .product-card:hover {
         transform: translateY(-10px);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .product-img {
         height: 250px;
         object-fit: cover;
         width: 100%;
     }

     .contact-info {
         background-color: var(--light-color);
         border-radius: 10px;
         padding: 30px;
         margin-bottom: 30px;
     }

     .icon-box {
         width: 60px;
         height: 60px;
         background-color: var(--secondary-color);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         margin: 0 auto 15px;
         color: white;
         font-size: 24px;
     }

     .footer {
         background-color: var(--primary-color);
         color: white;
         padding: 40px 0 20px;
     }

     .btn-custom {
         background-color: var(--secondary-color);
         color: white;
         padding: 10px 25px;
         border-radius: 5px;
         border: none;
         transition: all 0.3s;
     }

     .btn-custom:hover {
         background-color: #c0392b;
         color: white;
         transform: translateY(-2px);
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     }

     .location-card {
         border-left: 5px solid var(--secondary-color);
         padding-left: 15px;
         margin-bottom: 20px;
     }


     .addes p {
         font-size: 13px;
     }

     /* Sticky WhatsApp and Call Buttons */
     .sticky-buttons {
         position: fixed;
         bottom: 30px;
         right: 30px;
         z-index: 1000;
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

     .sticky-btn {
         width: 60px;
         height: 60px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         font-size: 24px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
         transition: all 0.3s ease;
         border: none;
         position: relative;
     }

     .sticky-btn:hover {
         transform: scale(1.1);
         box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
     }

     .whatsapp-btn {
         background-color: #25D366;
     }

     .call-btn {
         background-color: var(--secondary-color);
     }

     .sticky-btn .btn-label {
         position: absolute;
         right: 70px;
         background-color: rgba(0, 0, 0, 0.8);
         color: white;
         padding: 5px 10px;
         border-radius: 5px;
         font-size: 14px;
         white-space: nowrap;
         opacity: 0;
         transition: opacity 0.3s;
         pointer-events: none;
     }

     .sticky-btn:hover .btn-label {
         opacity: 1;
     }

     /* Feature Section */
     .feature-box {
         text-align: center;
         padding: 30px 20px;
         border-radius: 10px;
         background-color: white;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
         transition: transform 0.3s ease;
         height: 100%;
     }

     .feature-box:hover {
         transform: translateY(-5px);
     }

     .feature-icon {
         font-size: 40px;
         color: var(--secondary-color);
         margin-bottom: 20px;
     }

     /* Contact Form */
     .contact-form {
         background-color: white;
         border-radius: 10px;
         padding: 40px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     }

     .form-control,
     .form-select {
         padding: 12px 15px;
         border: 1px solid #ddd;
         border-radius: 5px;
         margin-bottom: 20px;
         transition: border-color 0.3s;
     }

     .form-control:focus,
     .form-select:focus {
         border-color: var(--secondary-color);
         box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
     }

     /* Testimonials */
     .testimonial-card {
         background-color: white;
         border-radius: 10px;
         padding: 30px;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
         margin-bottom: 30px;
         border-left: 5px solid var(--accent-color);
     }

     .testimonial-text {
         font-style: italic;
         color: #555;
     }

     .client-name {
         font-weight: bold;
         color: var(--primary-color);
         margin-top: 15px;
     }

     /* Gallery */
     .gallery-item {
         border-radius: 10px;
         overflow: hidden;
         margin-bottom: 30px;
         height: 300px;
     }

     .gallery-item img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s;
     }

     .gallery-item:hover img {
         transform: scale(1.05);
     }

     /* Services */
     .service-card {
         background-color: white;
         border-radius: 10px;
         padding: 30px;
         text-align: center;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
         margin-bottom: 30px;
         transition: transform 0.3s;
         height: 100%;
     }

     .service-card:hover {
         transform: translateY(-10px);
     }

     .service-icon {
         font-size: 40px;
         color: var(--secondary-color);
         margin-bottom: 20px;
     }

     /* Process Steps */
     .process-step {
         text-align: center;
         padding: 20px;
         position: relative;
     }

     .step-number {
         width: 60px;
         height: 60px;
         background-color: var(--secondary-color);
         color: white;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 24px;
         font-weight: bold;
         margin: 0 auto 20px;
     }

     /* Back to Top Button */
     .back-to-top {
         position: fixed;
         bottom: 100px;
         right: 30px;
         width: 50px;
         height: 50px;
         background-color: var(--primary-color);
         color: white;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 20px;
         z-index: 999;
         opacity: 0;
         transition: opacity 0.3s, transform 0.3s;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
         text-decoration: none;
     }

     .back-to-top.show {
         opacity: 1;
     }

     .back-to-top:hover {
         transform: translateY(-5px);
         color: white;
     }

     @media (max-width: 768px) {
         .hero-section {
             padding: 100px 0 60px;
         }

         .product-img {
             height: 200px;
         }

         .sticky-buttons {
             bottom: 20px;
             right: 20px;
         }

         .sticky-btn {
             width: 50px;
             height: 50px;
             font-size: 20px;
         }

         .sticky-btn .btn-label {
             font-size: 12px;
             right: 60px;
         }

         .contact-form {
             padding: 25px;
         }

         .gallery-item {
             height: 250px;
         }
     }

     .card-title {
         margin-top: 40px;
     }

     .card-body {
         margin-left: 10px;
     }