   /*Drefresh Tech */
        :root {
            --primary-color: #B22222; /* Firebrick Red */
            --secondary-color: #FFD700; /* Gold */
            --gold-gradient: linear-gradient(45deg, #FFD700, #DAA520, #B8860B); /* Gold Gradient */
            --light-bg: #f8f9fa; /* Light background */
            --dark-text: #343a40; /* Dark text */
            --card-bg-light: #ffffff; /* Lighter card background */
            --card-border-light: #e0e0e0; /* Lighter card border */
            --hover-shadow: rgba(255, 215, 0, 0.5);
            --transition-speed: 0.3s;
            --font-family: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--light-bg);
            color: var(--dark-text);
        }

     /* Top Bar Styling */
        .top-bar {
            background-color: var(--primary-color);
            color: var(--light-bg); /* Text color for top bar */
            padding: 5px 0;
            font-size: 0.85rem;
            overflow: hidden;
        }

        .top-bar .marquee-content {
            white-space: nowrap;
            animation: marquee 20s linear infinite;
            display: inline-block;
            padding-left: 100%;
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }

        /* Navbar Styling */
        .navbar {
            background-color: var(--card-bg-light); /* Light navbar background */
            border-bottom: 1px solid var(--card-border-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding-top: 20px; /* Add padding to make space for overlapping logo */
            padding-bottom: 20px;
            position: relative; /* Needed for absolute positioning of logo */
        }

        .navbar-brand {
            position: absolute; /* Position the brand independently */
            left: 50%;
            transform: translateX(-50%);
            top: 0; /* Position from the top of the navbar */
            z-index: 1001; /* Ensure logo is above other elements */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column; /* Stack logo and potential text if added later */
        }

        .navbar-brand img {
            height: 100px; /* Larger size for overlapping effect */
            width: 100px; /* Make width equal to height for round shape */
            border-radius: 50%; /* Make it round */
            object-fit: cover; /* Ensure image covers the circular area */
            border: 5px solid var(--card-bg-light); /* White border to stand out */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Shadow for depth */
            margin-bottom: -50px; /* Pull half of the logo down to overlap */
            transition: transform 0.3s ease;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        /* Adjust navbar-toggler and collapse for logo overlap */
        .navbar-toggler {
            position: relative;
            z-index: 1002; /* Ensure toggler is above logo */
        }

        .navbar-collapse {
            margin-top: 50px; /* Push nav links down to avoid logo overlap */
            /* For mobile, ensure links are centered or stacked */
            justify-content: center !important; /* Center links on mobile */
        }

        @media (min-width: 992px) { /* Apply on large devices and up */
            .navbar-collapse {
                justify-content: space-between !important; /* Distribute links on desktop */
            }
            .navbar-nav-left {
                margin-right: auto; /* Push left links to the left */
            }
            .navbar-nav-right {
                margin-left: auto; /* Push right links to the right */
            }
        }


        .navbar-nav .nav-link {
            color: var(--dark-text) !important; /* Dark text for nav links */
            font-weight: 600;
            margin: 0 10px;
            transition: color var(--transition-speed);
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important; /* Red on hover */
        }

        .navbar-toggler {
            border-color: var(--secondary-color);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Animated Navbar Button */
        .btn-animated {
            background: var(--gold-gradient);
            border: none;
            color: var(--dark-text); /* Dark text on gold button */
            font-weight: 700;
            border-radius: 50px;
            padding: 8px 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-animated::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.75s ease-out;
            transform: translate(-50%, -50%) scale(0);
            z-index: -1;
        }
                .wrap1 {
                    width: 100%;
                    height: auto;
                    display: table;
                    float: left;
                    padding-top: 70px;
                    padding-bottom: 70px;
                    background-image: url(../img/bg-pattern.png);
                    box-shadow: inset 0 11px 11px -11px #B0B0B0;
                }
        .btn-animated:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .btn-animated:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }

        /* Owl Carousel Styling */
        .owl-carousel .item img {
            width: 100%;
           
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .owl-carousel .item img {
               
            }
        }

        /* Section General Styling */
        .section-heading {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--card-bg-light);
            border-bottom: 1px solid var(--card-border-light);
        }

        .about-section p {
            line-height: 1.8;
            color: var(--dark-text);
        }

        /* Why Choose Us Section */
        .why-choose-us-section {
            padding: 80px 0;
            background-color: var(--light-bg);
            text-align: center;
        }

        .why-choose-us-item {
            background-color: var(--card-bg-light);
            border: 1px solid var(--card-border-light);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
        }

        .why-choose-us-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .why-choose-us-item .icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .why-choose-us-item h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .why-choose-us-item p {
            color: var(--dark-text);
            font-size: 0.95rem;
        }

        /* Product Cards Styling */
        .products-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .product-card {
            background-color: var(--card-bg-light);
            border: 1px solid var(--card-border-light);
            border-radius: 15px;
            overflow: hidden;
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 10px 30px var(--hover-shadow);
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-bottom: 1px solid var(--card-border-light);
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .product-card-body {
            padding: 25px;
            text-align: center;
        }

        .product-card-body h5 {
            color: var(--dark-text);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-card-body .price {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .product-card-body .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--light-bg);
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 25px;
            transition: background-color var(--transition-speed), border-color var(--transition-speed), transform var(--transition-speed);
        }

        .product-card-body .btn-primary:hover {
            background: var(--gold-gradient);
            border-color: transparent;
            color: var(--dark-text);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--card-bg-light);
            text-align: center;
        }

        .faq-accordion .accordion-item {
            border: 1px solid var(--card-border-light);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-accordion .accordion-button {
            background-color: var(--light-bg);
            color: var(--dark-text);
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 10px;
            transition: background-color var(--transition-speed);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--light-bg);
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8f9fa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-body {
            padding: 20px;
            text-align: left;
            background-color: var(--card-bg-light);
            color: var(--dark-text);
        }

        /* About Us Page/Section (Fireworks) */
        #aboutUsSection {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 80px 0;
            background-color: var(--card-bg-light);
        }

        #fireworksCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        #aboutUsContent {
            position: relative;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.85);
            padding: 40px;
            border-radius: 15px;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            color: var(--dark-text);
        }

        #aboutUsContent h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        #aboutUsContent p {
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Footer Styling */
        .footer {
            background-color: var(--primary-color);
            color: var(--light-bg);
            padding: 30px 0;
            font-size: 0.9rem;
        }

        .footer a {
            color: var(--light-bg);
            text-decoration: none;
            transition: color var(--transition-speed);
        }

        .footer a:hover {
            color: var(--secondary-color);
        }

        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer .social-icons a {
            font-size: 1.5rem;
            margin: 0 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 15px;
            margin-top: 20px;
        }

        .footer-keywords {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px; /* Space between keywords and copyright */
        }
  