.image-container4 {
    width: 100%; /* Ensures it takes full width of its parent */
    max-width: 100vw; /* Prevents overflow */
    overflow: hidden; /* Hides any excess */
}

.image-container4 img {
    width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes bottom space issue */
    object-fit: cover; /* Ensures it fills the container properly */
}



/* Base Styles */
.categories-section {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    overflow: hidden;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Horizontal Scroll Layout for PC */
.categories-container {
    display: flex;
    flex-wrap: nowrap; /* No wrapping, keeps all items in one line */
    overflow-x: auto; /* Enables horizontal scrolling if needed */
    gap: 20px;
    padding: 10px;
    scrollbar-width: none; /* Hides scrollbar for a clean look */
}

.categories-container::-webkit-scrollbar {
    display: none; /* Hides scrollbar in Webkit browsers */
}

/* Category Item */
.category-item {
    flex: 0 0 auto; /* Prevents shrinking */
    width: 300px; /* Fixed width */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.category-title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #777;
}

.category-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-container {
        flex-direction: column; /* Stacks items vertically */
        overflow-x: hidden; /* Removes horizontal scroll */
        align-items: center;
    }

    .category-item {
        width: 90%; /* Adjust width for better fit */
      
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}




/* Base Styles */
.categories-section {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Grid Layout for PC */
.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamic grid */
    gap: 20px;
  
    margin: auto;
    padding: 0 20px;
}

/* Category Item */
.category-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.category-title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #777;
}

.category-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-container {
        grid-template-columns: 1fr; /* Stacks items vertically */
    }

    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}











/* General Styling */
/* Background Section */
.brown-bg4 {
    background-color: #F8F6E6;
    padding: 60px 20px;
}

/* Title Section */
.comparison-container-outer4 h1 {
    font-size: 28px;
    font-weight: bold;
    color: #A44F2E;
    margin: 0;
  text-align:center;
}

.comparison-container-outer4 h2 {
    font-size: 24px;
    font-weight: bold;
    color: #A44F2E;
    margin-bottom: 30px;
    text-align:center;
}

/* Comparison Table */
.comparison-container4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-table4 {
    background: #FFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: left;
    min-width: 400px;
}

/* Header Styling */
.comparison-header4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid #D1B08A;
}

.column-img img {
    width: 100px; /* Adjust based on actual logo size */
}

.column-title {
    font-size: 18px;
    color: #333;
    text-align: right;
}

/* Table Rows */
.comparison-row4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #E0D6C6;
}

.checkmark {
    color: #A44F2E;
    font-size: 18px;
}

.crossmark {
    color: #666;
    font-size: 18px;
}

/* Call-to-Action Button */
.comparison-table-bottom4 {
    margin-top: 20px;
    text-align:center;
}

.cta-button {
    background-color: #A44F2E;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    text-align:center;
}

.cta-button:hover {
    background-color: #873e24;
    text-align:center;
}


.product-benefits {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #a64b2a;
    margin-bottom: 20px;
}

.benefits-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-image img {
    width: 250px;
    height: auto;
    border-radius: 10px;
}

.benefit-text ul {
    list-style: none;
    text-align: left;
    font-size: 16px;
    color: #333;
    padding: 0;
}

.benefit-text ul li {
    margin-bottom: 10px;
}
.categories-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fdf6e4;
    
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #a64b2a;
    margin-bottom: 20px;
}

.categories-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}




/*from here*/
.section {
            display: flex;
            align-items: center;
            justify-content: space-between;
          
            background-color: #dec6c2ad;
            
        }

        .text-content {
            flex: 1;
            padding: 20px;
           text-align: center;
        }

        .text-content h1 {
            font-size: 7rem;
            color: #688d67;
            margin: 0;
            font-family: Bebas Neue;
        }

        .text-content h2 {
            font-size: 6rem;
            color: #688d67;
            margin: 10px 60px 0;
            font-family: Montserrat Extra Bold;
            text-align: left;
            font-weight:normal;

        }

        .slider-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            max-width: 50%;
            padding: 1px;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 1000%; /* Ensures smooth looping */
        }

        .slide {
            min-width: 100%;
            
        }

        .slide img {
            width: 900px;
            height: 600px;
        }





.tp-product-tab .nav-tabs {
    
    gap: 1.19rem !important;
}
 /* Responsive layout for smaller screens */
    @media (max-width: 768px) {
        .badge-container {
            flex-wrap: wrap; /* Allow badges to wrap */
            justify-content: center;
        }

        .badge {
            width: 100%; /* Full width for badges on small screens */
            max-width: 250px; /* Set a maximum width for consistency */
            margin: 0 auto; /* Center badges */
        }
		
    }
.main-menu.menu-style-1>nav>ul>li>a {
          display:none
      }
    /* Additional styling for very small screens */
    @media (max-width: 480px) {
        .why-choose-us h2 {
            font-size: 1.5rem;
        }

        .badge h3 {
            font-size: 0.9rem;
          
        }
		
    }
@media (max-width:768px){
  .tp-product-tab .nav-tabs {
     padding: 0px !important;
     transform : none !important;
  }
}

.tp-product-tab .nav-tabs {
    padding-left: 150px;
    transform: translateX(-350px);
}
.tp-header-area .p-relative .z-index-11 {
    margin-bottom: 0;
    padding-bottom: 0;
}


.why-choose-us {
    text-align: center;
    background-color: #ffff; /* Light background */
    padding: 40px 20px;
    color: #333;
}

.why-choose-us h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top:20px;
}
.badge-icon img {
    width: 85px;
    height: 70px;
}

.badge-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    background-color: #fff;
    
    padding-top:20px;
    padding-bottom:20px;
    max-width: 200px;
    
    text-align: center;
}

.badge-icon {
    
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}



.badge h3 {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    margin: 10px 0;
   

}

.badge p {
    font-size: 14px;
    color: #666;
    line-height: 1.0;
}

/* Reset and box-sizing for all elements */
*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Responsive video styling */
video {
    width: 100%; /* Make the video take full width of its container */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the content fits within the container */
    margin-top:20px;
}

/* Add a container for better responsiveness */
.video-container {
    position: relative; /* Allows for better positioning if needed */
    width: 100%; /* Full width of the container */
    max-width: 100%; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the container */
    overflow: hidden; /* Prevent overflow issues */
}

/* Maintain aspect ratio using a responsive technique */
.video-container::before {
    content: '';
    display: block;
    padding-top: 28%; /* Aspect ratio: 500px height / 1519px width * 100 */
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Optional: Style the title */
.site-feature-item-title {
    font-size: 16px; /* Adjust as needed */
    margin-top: 0; /* Remove extra space if any */
}

.features {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px; /* Adjust width as needed */
}

.feature-item img {
    width: 50px; /* Set icon size */
    height: 50px;
    margin-bottom: 10px; /* Space between icon and text */
}

.feature-item p {
    font-size: 14px;
    color: #333; /* Adjust color as needed */
}



/* Hide the star rating */
.d-flex .align-items-center .tp-product-rating-simple .gap-1{
  display :none;
}

/* Increase the size of the product image */
.tp-product img {
    width: 150%; /* Increase width as needed */
    height: auto; /* Keep aspect ratio */
}

/* Increase the entire product card */
.tp-product {
    transform: scale(1.2); /* Scale up the product card */
    transition: transform 0.3s ease; /* Add smooth scaling transition */
}

/* Adjust font size of product name and price if needed */
.text-truncate .tp-product-title {
    font-size: 25px;
}

.tp-product .product-price {
    font-size: 1.1em; /* Increase font size of price */
}
.tp-product-price-review svg.icon {
    display: none;
}
.tp-product-rating-simple span{
  display:none;
}
.tp-product-content{
  padding-top:0px;
}

.tp-product-price-review {
  display:block;
}
.tp-section-title-wrapper-4 {
  text-align : center;
}

.mb-60{
  text-align : center;
}


/* testimonals*/


.review-section {
    max-width: 800px;
    margin: 0 auto;
}

.review {
    display: none;
    transition: opacity 0.5s;
}

.review.active {
    display: block;
    opacity: 1;
}

.review img {
    width: 100px;
    border-radius: 50%;
}

.arrows {
    cursor: pointer;
    font-size: 2rem;
    color: #555;
    padding: 0 20px;
}

.arrows:hover {
    color: #333;
}

.tp-testimonial-rating {
    margin-bottom: -70px;
}
.tp-testimonial-rating span {
  display:none;
}


.tp-testimonial-content p {
    color: #e8f0f7;
}
.tp-testimonial-section-title .text-center {
    font-size: 25px;
}

.tp-footer-widget {
    
    text-align: left;
}




.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Maximum width of the video */
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* Keeps the container's aspect ratio */
  overflow: hidden; /* Ensures content stays inside the container */
}

.video-container img,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures content fits within the container */
  cursor: pointer; /* Indicates that the thumbnail or video is clickable */
}

.video-container img {
  display: block; /* Ensure the thumbnail is visible by default */
}

.video-container video {
  display: none; /* Hide the video by default */
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 2; /* Ensure play button stays above everything else */
}


.pb-135 {
    padding-bottom: 30px;
}
.pt-130 {
    padding-top: 90px;
}



/*from here*/

.brown-bg{
   background:#b2713d;
   padding-top:20px;
   padding-bottom:20px;
}

/* Container */
.comparison-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #E3C7A3;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
 .comparison-container-outer h1,
.comparison-container-outer h2{
    margin: 10px 0;
    color: wheat;
    text-align:center;
}

/* Table Header */
.comparison-table > div:first-child {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 12px;
    border-bottom: 2px solid #A98B73;
}

/* Comparison Rows */
.comparison-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    font-size: 18px;
    color: #5A3E2B;
    border-bottom: 1px solid #A98B73;
}

/* Icons and Feature Text */
.checkmark, .crossmark {
    flex: 0 0 40px;  /* Equal spacing */
    text-align: center;
    font-weight: bold;
    color: #ff0000;
     content: "✅";
    content: "❌"
}
.checkmark{
    color:#008000;
    content: "✅";
}

.feature {
    flex: 1;  /* Expands to fill available space */
    text-align: center;
    font-weight: bold;
	border-left: 1px solid #A98B73;
	border-right: 1px solid #A98B73;
}

/* CTA Button */
.comparison-table-bottom {
  
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

} 
.column-img{
		width:20px;
  }

.column-title2{
		max-width:20%;
  }

.cta-button {
    background-color: wheat;
    color: #b2713d;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #b2713d;
    color: wheat;
    border: 2px solid wheat;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 480px) {
    .comparison-container {
        width: 90%;
    }

    .comparison-row {
        font-size: 16px;
        padding: 10px;
    }

    .checkmark, .crossmark {
        flex: 0 0 35px;
    }

    .cta-button {
        font-size: 16px;
        padding: 8px 16px;
    }
	.column-title1{
		max-width:20%;
  }
	.column-title2{
		max-width:20%;
  }
  .checkmark{
    color: #008000;
  }
  .crossmark{
    color: #ff0000;
  }
}

/*till  here*/



.ck-content a {
    color: rgb(31 27 26);
}

.custom-section {
  background-color: #b2713d;
  padding: 30px; /* Reduced padding for mobile */
}

/* Mobile-first approach: Single column layout */
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.grid-item {
  padding: 15px;
  text-align: center; /* Center text for better readability */
}

.grid-item.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.grid-item.text h2 {
  color: #ffff;
  font-size: 1.5rem; /* Smaller font for mobile */
}

.grid-item.text p {
  color: #f5f5dc;
  font-size: 1.1rem; /* Smaller font */
  line-height: 26px;
  text-align: justify;
  text-justify: inter-word;
}

.learn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px; /* Smaller button */
  background-color: wheat;
  color: #b2713d;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
}

.learn-more:hover {
  background-color: #b2713d;
  color: wheat;
  border: 2px solid wheat;
  transform: scale(1.05);
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .custom-section {
    padding: 50px;
  }

  .grid-container {
    grid-template-columns: 1fr 1fr; /* Two-column layout for larger screens */
    gap: 20px;
  }

  .grid-item {
    padding: 20px;
    text-align: justify; /* Align text normally */
  }

  .grid-item.text h2 {
    font-size: 2rem;
  }

  .grid-item.text p {
    font-size: 1.3rem;
    line-height: 30px;
  }

  .learn-more {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.tp-header-search-wrapper {
  border-radius :24px;
}
.tp-header-search-btn button {
  border-radius :20px;
}
.tp-category-menu-btn {
	border-radius :10px;
}
.video-container img {
	border-radius:10px;
}
.tp-btn-border {
	border-radius:10px;
}
.tp-slider-btn .tp-btn {
   display: inline-block;
  margin-top: 10px;
  padding: 8px 16px; /* Smaller button */
  background-color: wheat;
  color: #b2713d;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
}
.tp-slider-btn .tp-btn:hover {
   background-color: #b2713d;
  color: wheat;
  border: 2px solid wheat;
  transform: scale(1.05);
}
.tp-header-search-category .product-category-label {
  display :none;
}
.pl-70 {
    padding-left: 300px;
    padding-right: 0px;
}
.swiper-container-fade .swiper-slide {
	height:250px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-height {
        min-height: 650px;  
    }    
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-header-main {
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .tp-header-sticky-area{
        padding-bottom: 0px;
        padding-top: 0px;
  }
}