
    .banner-container {
        width: 100%;
        height: 700px; /* Default height for desktop */
        position: relative;
        overflow: hidden;
    }
    .banner-media {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    /* CSS for image parallax effect */
    .banner-image {
        background-size: cover;
        background-position: center;
        animation: parallax-scroll 10s linear infinite alternate;
    }
    @keyframes parallax-scroll {
        from {
            background-position: center top;
        }
        to {
            background-position: center bottom;
        }
    }
    
    /* ----------------------------------------------------------------- */
    /* Mobile Responsiveness                                             */
    /* ----------------------------------------------------------------- */
    
    /* Styles for tablets (up to 768px wide) */
    @media (max-width: 768px) {
        .banner-container {
            height: 500px; /* Reduce height for tablets */
        }
    }
    
    /* Styles for mobile phones (up to 576px wide) */
    @media (max-width: 576px) {
        .banner-container {
            height: 300px; /* Further reduce height for phones */
        }
    }

.tick{
    color: #00b449;
}


/* --- Desktop and Tablet Styles (for screens wider than 991px) --- */
@media (min-width: 992px) {
    .bd-about__area {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    .bd-about__content-wrapper,
    .bd-about__thumb-wrapper {
        margin-bottom: 60px;
    }
    .bd-about__thumb-wrapper {
        position: relative;
    }
    .bd-about__thumb-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translate(-50%, 50%);
    }
    .bd-about__quite-box {
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        transform: translateX(20%);
        z-index: 2;
    }
}

/* --- Mobile-First Styles (for all screens, overridden by media queries above) --- */
.bd-about__area {
    padding-top: 50px; /* Reduced padding for mobile */
    padding-bottom: 30px;
}
.bd-about__thumb-wrapper {
    position: relative;
    margin-bottom: 30px; /* Adjusted margin for mobile */
}
.bd-about__thumb-1,
.bd-about__thumb-2 {
    max-width: 100%;
    height: auto;
    display: block;
}
.bd-about__thumb-2 {
    position: relative; /* Remove absolute positioning on mobile */
    transform: none;
    margin-top: 20px; /* Add some space between the images */
}
.bd-about__quite-box {
    position: relative; /* Remove absolute positioning on mobile */
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-top: 20px; /* Add some space above the quote box */
    width: 90%;
    margin: 20px auto; /* Center it horizontally */
}

/* New CSS for image styling and animation */
.bd-about__thumb-1 {
    border: 8px solid #ffffff; /* White border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transition for animation */
    overflow: hidden; 
    border-radius: 10px; 
}
.bd-about__thumb-1:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); /* Lift effect */
}
.bd-about__thumb-1 img {
    transition: transform 0.3s ease-in-out;
}
.bd-about__thumb-1:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

 /* Styling for all product tags */
.product-tag {
  position: absolute; /* Positions the tag on top of the product image */
  top: 10px; /* Adjust as needed */
  left: 10px; /* Adjust as needed */
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px; /* Slightly rounded corners */
  z-index: 10;
  color: #fff; /* White text */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Specific styling for the 'New' tag */
.new-tag {
  background-color: #28a745; /* A vibrant green color */
  border: 1px solid #1e7e34; /* Darker green border */
  animation: pulse 2s infinite; /* Apply the animation */
}

/* Keyframes for the pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05); /* Slightly bigger */
    opacity: 0.8; /* A little transparent */
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.size{
    font-size: 20px;
}

/* --- New Section Styles --- */
/* --- New Section Styles --- */
.bd-counter__area {
    background-color: #f7f5ff; /* Optional: adds a light background to the entire section */
    padding: 100px 0;
}

.custom-container {
    display: flex;
    justify-content: flex-end; /* Pushes the content to the far right */
    align-items: center;
    gap: 0; /* Removes any gap between the image and the content box */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* --- Image Section --- */
.counter-image-section {
    position: relative;
    width: 50%; /* Image takes up half of the container */
    max-width: 600px;
    box-sizing: border-box;
    overflow: hidden;
}

.counter-image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 0 0 20px; /* Rounds the left corners only */
}

/* --- Content Section (The Green Box) --- */
.counter-content-section {
    background-color: #6a9b58;
    color: #fff;
    padding: 50px;
    border-radius: 0 20px 20px 0; /* Rounds the right corners only */
    width: 40%; /* Makes the box smaller */
    min-width: 400px;
    box-sizing: border-box;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.counter-title {
    font-size: 2rem; /* Adjusted for a smaller box */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.counter-description {
    font-size: 0.9rem; /* Adjusted for a smaller box */
    line-height: 1.6;
    margin-bottom: 25px;
}

.counter-btn {
    background-color: #fff;
    color: #6a9b58;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.counter-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .custom-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .counter-image-section,
    .counter-content-section {
        width: 100%;
        border-radius: 20px; /* Rounds all corners on smaller screens */
        margin-bottom: 30px;
    }

    .counter-image-section img {
        border-radius: 20px;
    }
}

.features-section {
    padding: 80px 0; /* Adds top and bottom spacing */
    background-color: #f9f7f0; /* Sets a light background color */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Creates a responsive grid */
    gap: 40px; /* Space between grid items */
    text-align: center; /* Centers all content inside the grid */
    align-items: start; /* Aligns items to the start of the grid cell */
}

.feature-item {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow for a floating effect */
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* Lifts the card on hover */
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 120px;
    width: 120px;
    object-fit: contain; /* Ensures the whole image is visible */
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
}