
        .heading {
            font-weight: 1000;
        }

        /* Ensure the background image section covers the full viewport height */
        .image-section {
            position: relative;
            min-height: 340px;
            /* Use min-height to ensure the section fills at least the full viewport height */
            width: 100%;
            background-image: url('assets/img/pine-oil.jpg');
            /* Background image */
            background-size: cover;
            /* Ensure the image covers the entire div */
            background-position: center;
            /* Keep the image centered */
            background-repeat: no-repeat;
            /* Ensure the image does not repeat */
            display: flex;
            /* Enable flexbox */
            justify-content: center;
            /* Center content horizontally */
            align-items: center;
            /* Center content vertically */
            box-sizing: border-box;
            /* Ensure padding is included in height calculation */
            padding-top: 60px;
            /* Add padding to account for sticky navbar height */
            padding-bottom: 20px;
            /* Add padding at the bottom to prevent text from touching the bottom */
        }

        /* Adding overlay effect */
        .image-section::before {
            content: "";
            /* This is necessary to create the pseudo-element */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0);
            /* Black color with 50% opacity */
            z-index: 1;
            /* Ensure the overlay is on top of the image */
        }

        /* Text over the image */
        .image-section .overlay-text {
            position: relative;
            /* Position relative to the parent container */
            color: rgb(255, 255, 255);
            font-size: 36px;
            font-weight: bold;
            /* Ensure the text is above the overlay */
            max-width: 90%;
            /* Limit the width of the text */
            padding: 20px;
            box-sizing: border-box;
            /* Ensure padding is included in width */
            overflow: hidden;
            /* Prevent text from overflowing */
            text-overflow: ellipsis;
            /* Adds ellipsis if text overflows */
            display: flex;
            /* Flexbox to center the text */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* Center the content */
            z-index: 2;
            width: 100%;
            /* Make sure the overlay text container is full width */
            max-height: 80%;
            /* Limit the height of the content */
            flex-grow: 1;
            /* Allow it to grow inside flex container */
        }

        .button {
            position: relative;
            padding: 18px 35px;
            margin: 10px 0;
            font-size: 15px;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(45deg, #ff4b5c, #ff6a95, #ff4f77);
            /* Multi-color gradient */
            border: 2px solid transparent;
            border-radius: 50px;
            /* Rounded corners for a smooth look */
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            z-index: 1;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            /* Make text bold and uppercase for emphasis */
        }

        .button::before,
        .button::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background: #ff4f77;
            /* Color on hover */
            transition: all 0.4s cubic-bezier(0.75, 0.1, 0.2, 1.2);
            z-index: -1;
        }

        .button::after {
            background: #ff6a95;
            /* Second color for the hover effect */
            transition-delay: 0.2s;
        }

        .button:hover::before {
            left: 0;
        }

        .button:hover::after {
            left: 0;
        }

        .button:hover {
            transform: scale(1.1);
            letter-spacing: 2px;
            box-shadow:
                0 8px 20px rgba(255, 79, 119, 0.5),
                /* Soft glowing effect */
                0 0 30px rgba(255, 79, 119, 0.3);
            /* Neon-like glow */
            filter: brightness(1.2);
            /* Slight brightness boost */
            color: white;
        }

        .button span {
            position: relative;
            z-index: 1;
        }

        .button::before {
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        }

        .button::after {
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .button:active {
            transform: scale(0.98);
            box-shadow: 0 3px 15px rgba(255, 79, 119, 0.4);
        }

        /* Prevent image from compressing on mobile */
        @media (max-width: 768px) {
            .image-section {
                /* Reduce the height to account for the navbar */
                padding-top: 60px;
                /* Ensure the content doesn't get hidden behind the navbar */
                padding-bottom: 20px;
                /* Add padding at the bottom */
            }

            .image-section .overlay-text {
                font-size: 24px;
                /* Adjust font size for smaller screens */
                max-width: 80%;
                /* Make sure text fits better on smaller screens */
                padding: 10px;
                /* Add some padding to prevent text from touching edges */
                line-height: 1.4;
                /* Improve text readability */
            }

            .cta-button {
                font-size: 16px;
                /* Adjust button font size for mobile */
                padding: 10px 20px;
                /* Adjust padding for smaller screens */
            }
        }


        /* Add space after each paragraph */
        .content-section p {
            margin-bottom: 20px;
            /* Adds space after each paragraph */
            line-height: 1.8;
            /* Increases line height for better readability */
        }

        /* Adds space after each heading */
        .content-section h1,
        .content-section h2 {
            margin-bottom: 20px;
            /* Adds space after headings */
        }

        /* Adds space between list items */
        .content-section ul li {
            margin-bottom: 10px;
            /* Adds space between list items */
        }

        /* Space between the list and next paragraph */
        .content-section ul {
            margin-bottom: 20px;
            /* Adds space after the list */
        }

        strong {
            color: #ed502e;
        }


        /* Style for the whole category container */
        /* Style for the individual categories (list items) */
        .col-md-4 ul li {
            list-style-type: none;
            margin: 10px 0;
        }

        .col-md-4 ul li a {
            text-decoration: none;
            font-size: 18px;
            color: #ff3700;
            /* Default link color */
            padding: 15px;
            display: block;
            border: 2px solid #ff3700;
            /* Border around each category */
            border-radius: 8px;
            /* Rounded corners for each category box */
            background-color: #f9f9f9;
            /* Light background color */
            transition: all 0.3s ease;
        }

        /* Hover effect for each category box */
        .col-md-4 ul li a:hover {
            background-color: #ff3700;
            /* Background color on hover */
            color: white;
            /* Text color change */
            border-color: #ff3700;
            /* Border color change on hover */
            transform: translateY(-5px);
            /* Slight lift effect */
        }

        .card a {
            text-decoration: none !important;
            color: rgb(0, 0, 0) !important;
        }

        .card {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border: none;
            margin-bottom: 20px;
        }

        .card img {
            width: 100%;
            height: auto;
        }

        .card-body {
            text-align: center;
        }

        /* General reset for margin and padding */
        /* General reset for margin and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Main container for the section */
        .products-section {
            padding: 50px 20px;
            background-color: #f4f4f9;
            /* Light gray background */
            text-align: center;
        }

        /* Heading styling */
        .products-heading {
            font-size: 28px;
            /* Appropriate size for desktop as a subheading */
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: #ed502e;
            /* A warm color for the background */
            padding: 20px;
            color: #fff;
            border-radius: 8px;
            display: inline-block;
        }

        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 2rem auto;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 25%;
            padding: 0 10px;
            box-sizing: border-box;
            text-align: center;
            /* Center-align content */
        }

        .slide img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .slide img:hover {
            transform: scale(1.05);
        }

        .product-name {
            margin-top: 10px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            /* Darker text for better readability */
            text-transform: capitalize;
            letter-spacing: 1px;
        }

        .slider-button {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .slider-button:hover {
            background: white;
        }

        .prev-button {
            left: 10px;
        }

        .next-button {
            right: 10px;
        }

        @media (max-width: 992px) {
            .slide {
                min-width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .slide {
                min-width: 50%;
            }
        }

        @media (max-width: 576px) {
            .slide {
                min-width: 100%;
            }
        }

        /* Media Queries for responsive text sizing */
        @media screen and (max-width: 1200px) {
            .products-heading {
                font-size: 24px;
                /* Slightly smaller for medium screens */
            }
        }

        @media screen and (max-width: 992px) {
            .products-heading {
                font-size: 22px;
                /* Smaller for tablets */
            }
        }

        @media screen and (max-width: 768px) {
            .products-heading {
                font-size: 20px;
                /* Smaller for mobile devices */
            }
        }

        @media screen and (max-width: 480px) {
            .products-heading {
                font-size: 18px;
                /* Even smaller for very small screens */
            }
        }

        .product h4 {
            font-size: 20px;
            /* Base font size */
        }

        @media screen and (max-width: 768px) {
            .product h4 {
                font-size: 15px;
                /* Smaller for mobile devices */
            }
        }

        @media screen and (max-width: 480px) {
            .product h4 {
                font-size: 10px;
                /* Smaller for mobile devices */
            }
        }

        #img {
            height: 150px;
        }

        #carousel-img {
            height: 250px;
            width: 300px;
        }
