.testimonial-container {
    width: 100%;
    max-width: 1242px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.img-cirlce54 img {
    /* border-radius: 50%; */
    width: 200px;
    margin-top: 1rem;
}
.testimonial-slide00054 {
  min-width: calc(100% / 3);
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

.testimonial-slide00054 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-slide00054 h4 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

/* Navigation Buttons */
button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 100;
}

button:hover {
  background-color: #555;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-slide00054 {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 480px) {
  .testimonial-slide00054 {
    min-width: 100%;
  }
}

       .carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.footer__newslatter form button {
    position: absolute;
    right: 4px !important;
    top: 27px !important;
}

.banner {
    margin: 20px 100px; /* Adds margin to all sides */
    padding-left: 15px;
    padding-right: 15px;
}

.banner__text {
    margin: 20px 0; /* Adds spacing inside the text area */
}

@media (max-width: 768px) {
    .banner {
        margin: 15px 10px; /* Reduce margin for smaller screens */
    }

    .banner__text h1 {
        font-size: 24px; /* Adjust font size */
    }

    .banner__text span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .banner {
        margin: 10px 5px; /* Further reduce margin for very small screens */
    }

    .banner__text h1 {
        font-size: 20px;
    }

    .banner__text span {
        font-size: 14px;
    }
}

/* Mobile specific styles */
@media (max-width: 767px) {
    .slide2 {
        min-width: 100%; /* Show 2 slides at a time on mobile */
    }

    .slider-wrapper {
        width: 200%; /* Adjust to show 2 slides at a time */
    }
}

/* For tablets and other devices */
@media (min-width: 768px) and (max-width: 1024px) {
    .slide2 {
        min-width: 33.33%; /* Show 3 slides at a time on tablets */
    }

    .slider-wrapper {
        width: 300%; /* Adjust to show 3 slides at a time */
    }
}

.product-cat img {
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease;
    border-radius: 360px;
     display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .block-product-cats {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .slide1 {
        flex: 1 0 100%; /* Display two items at a time on mobile */
    }
}

 .categories__item {
        background-size: cover;
        background-position: center;
        height: 300px; /* Default height */
    }

    /* Tablet view (768px and up) */
    @media (max-width: 991.98px) {
        .categories__item {
            height: 200px; /* Adjust height for tablets */
        }
    }

    /* Phone view (up to 768px) */
    @media (max-width: 767.98px) {
        .categories__item.categories__large__item {
            height: 380px; /* Adjust height for phones */
        }
    }




  /* Ensure the gallery is responsive */
.property__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0px; /* Space between items */
}

/* For mobile devices (screen width less than 576px) - 3 items per row */
.property__gallery .col-4,
.property__gallery .col-sm-4 {
    width: calc(33.33% - 15px); /* 3 items per row on mobile */
     padding-right: 5px;
}

/* For mobile devices - Adjust image size */
@media (max-width: 575px) {
    /* Ensure each item occupies 3 items per row */
    .property__gallery .col-4,
    .property__gallery .col-sm-4 {
        width: calc(33.33% - 15px); /* 3 items per row */
         padding-right: 5px;
    }

    /* Adjust the size of images */
    .product__item__pic {
        width: 115px;  /* Full width of the container */
        height: 110px; /* Maintain aspect ratio */
    }

    .product__item__pic img {
        width: 115px;  /* Make image fill its container */
        height: 110px; /* Maintain aspect ratio */
    }

    /* Optional: Adjust text size for mobile */
    .product__item__text h6 {
        font-size: 14px; /* Reduce font size for product name */
    }

    .product__price {
        font-size: 14px; /* Reduce font size for price */
    }
}

/* For small screens and up (up to 768px) - 3 items per row */
@media (max-width: 768px) {
    .property__gallery .col-4,
    .property__gallery .col-sm-4 {
        width: calc(33.33% - 15px); /* 3 items per row */
         padding-right: 7px;
    }
}

/* For medium screens (from 768px up) - 4 items per row */
@media (min-width: 768px) {
    .property__gallery .col-md-3 {
        width: calc(100% - 15px); /* 4 items per row */
         padding-right: 5px;
    }
}

/* For large screens (from 992px up) - 4 items per row */
@media (min-width: 992px) {
    .property__gallery .col-lg-3 {
        width: calc(100% - 15px); /* 4 items per row */
         padding-right: 5px;
    }
}


/* middle banner */

/* General Styles for the Trend Section */
.trend__content {
    margin-bottom: 30px;
}
.trend__item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}
.trend__item__pic img {
    border-radius: 5px;
}
.trend__item__text {
    margin-left: 15px;
}
.rating i {
    color: #ffc107;
    margin-right: 2px;
}
.product__price {
    color: #e74c3c;
    font-weight: bold;
    margin-top: 5px;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .trend .col-lg-4 {
        width: 33.333%;
    }
    .discount {
        display: flex;
        align-items: center;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .trend .col-md-4 {
        width: 33.333%;
    }
    .trend__content {
        text-align: center;
    }
    .trend__item {
        flex-direction: column;
    }
    .trend__item__pic img {
        margin-bottom: 10px;
    }
    .trend__item__text {
        text-align: center;
        margin-left: 0;
    }
}

/* Phone Styles */
@media (max-width: 767px) {
    .trend .col-sm-6 {
        width: 33.333%;
        padding: 5px;
    }
    .trend__content {
        text-align: center;
    }
    .trend__item {
        flex-direction: column;
    }
    .trend__item__pic img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .trend__item__text {
        text-align: center;
        margin-left: 0;
    }
    .discount {
        flex-direction: column;
    }
    .discount__pic {
        width: 100%;
    }
    .discount__text {
        padding: 20px;
    }
}

.trend__item__pic img {
    width: 100%;
    height: auto;
    max-width: 100px; /* Ensure images don't stretch beyond 100px */
    max-height: 100px; /* Ensure images don't stretch beyond 100px */
    object-fit: cover; /* Maintain aspect ratio and crop excess if necessary */
    display: block;
    margin: 0 auto; /* Center images horizontally */
}

.trend__item {
    display: flex;
    align-items: center;
    gap: 15px; /* Add spacing between image and text */
    margin-bottom: 20px; /* Add spacing between items */
}

.trend__item__text {
    flex: 1; /* Allow text to fill remaining space */
    text-align: left; /* Ensure text alignment is consistent */
}

.trend__content {
    padding: 10px;
}

.section-title h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}


.button-container {
    display: flex;           /* Use Flexbox */
    justify-content: flex-start; /* Align buttons to the left */
    gap: 0px;               /* Add space (gapping) between items */
    flex-wrap: wrap;         /* Wrap buttons to the next line if needed */
    margin: 10px 0;          /* Vertical margin for the container */
    padding: 0;              /* Remove default padding */
    list-style: none;        /* Remove bullet points */
}

/* Style for the button */
.custom-button {
    background-color: #007BFF; /* Button color (blue) */
    color: #ca1515;           /* Text color (white) */
    padding: 10px 20px;       /* Spacing inside the button */
    border: none;             /* Remove border */
    border-radius: 15px;       /* Rounded corners */
    cursor: pointer;          /* Pointer cursor on hover */
    margin: 5px;              /* Gap between buttons */
    font-size: 16px;          /* Font size */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover effect */
.custom-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Optional: Style the <li> to ensure proper spacing if needed */
li {
    list-style: none;         /* Remove bullet points */
    margin: 3px;              /* Add gap between list items */
}



@media screen and (max-width: 768px){
    .trend__content {
    padding: 0px;
}
.trend__item__pic img {
    width: 100%;
    height: auto;
    max-width: 118px;
    max-height: 100px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  .container {
    width: 90%;
    max-width: 1182px;
    margin: 0 auto;
    padding: 20px 0;
    /*text-align: center;*/
  }
  .store-heading {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    position: relative;
  }
  .store-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: red;
    margin-top: 5px;
  }
  .product-grid {
    display: flex;
    justify-content: center; /* Center all circles */
    gap: 10px; /* Reduced spacing between circles */
  }
  .grid-item {
    width: 800px; /* Fixed width for large circles */
    height: 360px; /* Fixed height for large circles */
    border-radius: 50%; /* Makes the container circular */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* White text for contrast */
    font-size: 144px; /* Large font size for visibility */
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer; /* Pointer cursor for clickable items */
  }
  .grid-item:nth-child(1) {
    background-color: #ff6f61; /* Example color for the first circle */
  }
  .grid-item:nth-child(2) {
    background-color: #ffa726; /* Example color for the second circle */
  }
  .grid-item:nth-child(3) {
    background-color: #66bb6a; /* Example color for the third circle */
  }
  .grid-item a {
    color: #fff;
    text-decoration: none; /* Remove underline from links */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .grid-item {
      width: 200px; /* Smaller size for smaller screens */
      height: 120px;
      font-size: 50px;
    }
    .product-grid {
      gap: 5px; /* Even smaller spacing on small screens */
    }
  }