/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap'); */

body {
    font-family: 'Inter', sans-serif;
}

.container{
    max-width: 1440px;
}

/* Start Header CSS */

.header-menu {
    height: 80px;
    background: #FFFFFF;
    border-bottom: 1px solid #F2F4F7;
    display: flex;
    align-items: center;
}

.header-menu .logo img{
    width: 100%;
    height: 50px;
}

.header-menu .navbar-expand-lg .navbar-nav {
    gap: 32px;
}

.header-menu .navbar-nav .nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.header-menu .navbar-nav .nav-link::after{
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
}

.header-menu .navbar-nav .dropdown-menu .dropdown-item{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.header-menu .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.header-menu .navbar-nav .nav-link.active {
    font-weight: 700;
    color: #667085;
}

.header-menu .close-menu{
    display: none;
}

/* Show the dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Make sure the dropdown menu stays aligned with the link */
.nav-item.dropdown .dropdown-menu {
    display: none; /* Initially hide the dropdown */
    position: absolute;
    z-index: 1000;
}

/* Optional: Add a smooth transition for the dropdown */
.nav-item.dropdown .dropdown-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
}

.dropdown-item.active,
.dropdown-item:focus,
.dropdown-item:hover{
    background: #f8f9fa;
}

/* End Header CSS */

/* WhatsApp Float Icon */

.floating{
	position:fixed;
	width:60px;
	height:60px;
	bottom:15px;
	right: 15px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.float-button{
	margin-top:16px;
}

/* ========== Start Home Page Css ========== */

.hero{
    background: url('/storage/setu/home-hero.gif');
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero .based{
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
    animation: fadeIn 1s ease-in forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0; /* Start fully transparent */
    }
    100% {
        opacity: 1; /* End fully visible */
    }
}

.hero h1{
    font-family: 'Kaushan Script';
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 93px;
    text-align: center;
    color: #FFFFFF;
}

.home-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
    display: inline-block;
}

.home-title:nth-child(1) {
    animation-delay: 0.2s;
}

.home-title:nth-child(2) {
    animation-delay: 0.4s;
}

.home-title:nth-child(3) {
    animation-delay: 0.6s;
}

.home-title:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span{
    font-weight: 400;
}

.hero .learn-more{
    padding: 12px 20px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #54595C;
    text-decoration: none;
    margin-top: 32px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start 20px below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at normal position */
    }
}

.counter-section{
    background: #305D7A;
    padding: 40px;
    display: flex;
    align-items: center;
}

.counter-section h3{
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 73px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
}

.counter-section p{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #EAECF0;
    margin-bottom: 0;
}

.about-section{
    padding: 120px 80px;
}

.about-section .mission-vision{
    background: none;
    padding: 0;
    margin: 80px 0;
}

.title-animation{
    animation: fadeInTop 1s ease;
}

@keyframes fadeInTop {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.content-animation{
    animation: bounce-in-left 2s ease;
}

@keyframes bounce-in-left {
    0% {
      opacity: 0;
      transform: translateX(-2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.slider-animation{
    animation: fadeInUp 2s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

.title-description{
    animation: bounce-in-right 2s ease;
}

@keyframes bounce-in-right {
    0% {
      opacity: 0;
      transform: translateX(2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.about-section .about-us{
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #305D7A;
    margin-bottom: 0;
}

.about-section .about-content h2{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #1A3343;
}

.about-section .about-content .content{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #54595C;
    /* margin-bottom: 40px; */
    margin-bottom: 16px;
    text-align: justify;
}

.about-section .about-content{
    margin-right: 60px;
}

.about-section .about-content .learn-more-btn{
    padding: 12px 20px;
    background: #305D7A;
    border: 1px solid #305D7A;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    text-decoration: none; 
}

.about-section .about-content .learn-more-btn button{
    margin-top: 24px;
    background: transparent;
    border: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.about-section .about-content .learn-more-btn button span{
    margin-left: 8px;
}

.about-section .about-images .img-fluid{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-section .about-images .col-6:nth-child(1) {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section .about-images .col-6 .col-12:nth-child(1) {
    animation: fadeInLeft 0.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section .about-images .col-6 .col-12:nth-child(2) {
    animation: fadeInLeft2 0.5s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.about-counter-section h3{
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 73px;
    text-align: center;
    color: #305D7A;
}

.about-counter-section .title{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #1A3343;
}

.about-counter-section .description{
    /* width: 280px; */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #54595C;
}

.about-counter-section .about-counter{
    margin-bottom: 32px;
}

.about-counter-section .about-counter-1{
    margin-top: 32px;
}


/*  */

.product-slider{
    background: #F0F3F6;
    padding: 120px 80px;
}

.product-slider .swiper-container{
    position: relative;
}

.product-slider .swiper-container .swiper{
    position: initial;
}

.product-slider .based{
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    color: #305D7A;
    margin-bottom: 0;
}

.product-slider h2{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #1A3343;
}

.product-slider .description{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #54595C;
    margin-bottom: 40px;
}

.product-slider .swiper-wrapper{
    height: auto;
}

.product-slider .product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background: #305D7A;
    border: 1px solid #BFCDD6;
    border-radius: 16px;
}

.product-slider .product-card img {
    width: 178px;
    height: 176px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-slider .product-card .based {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  padding: 16px 16px 0;
}

.product-slider .product-card .based .rate {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  padding: 4px 12px;
  gap: 10px;
  width: 82px;
  height: 32px;
  background: #F5F7F9;
  border: 1px solid #BFCDD6;
  border-radius: 99px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #305D7A;
}

.product-slider .products .product-card .based .rate i {
  color: #305D7A;
  font-size: 20px;
  font-weight: 700;
}

.product-slider .product-card .detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 12px 16px;
  background: #F5F7F9;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #BFCDD6;
  border-radius: 0px 0px 16px 16px;
}

.product-slider .product-card .detail h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: #1A3343;
  margin-bottom: 5px;
}
  
.product-slider .product-card .detail p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #667085;
  margin: 0;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}
  
.product-slider .product-card .product-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
  height: 48px;
  background: #305D7A;
  border: 1px solid #305D7A;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 99px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 14px;
}
  
.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: #FFFFFF;
    border: 1px solid #D5D7D8;
    box-shadow: 4px 0px 18px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 56px;
    height: 56px;
}
  
.product-slider .swiper-button-next {
    right: -30px;
}

.product-slider .swiper-button-prev {
    left: -30px;
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
    font-size: 15px;
    color: #1e446f;
}

.product-slider .testimonial-see-all-btn{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.product-slider .testimonial-see-all-btn .see-all{
    padding: 12px 20px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #54595C;
    text-decoration: none;
    margin-top: 32px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-product{
    padding: 120px 80px;
}

.featured-product h2{
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    color: #1A3343;
    margin-bottom: 50px;
}

.featured-product .custom-card {
    background-color: #305D7A;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
}

.featured-product .custom-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
}

.featured-product .custom-card .content {
    flex-grow: 1;
}

.featured-product .custom-card h6{
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #FFFFFF;
}

.featured-product .custom-card a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #A0B4C2;
    text-decoration: none;
}


.from-product{
    padding: 120px 80px;
    background: #F5F7F9;
}

.from-product h2{
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    color: #1A3343;
    margin-bottom: 50px;
}

.from-product .custom-card {
    background-color: #F2B178;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    animation: bounce-in-left 2s ease;
    animation-delay: 0.2s;
}

@keyframes bounce-in-left {
    0% {
      opacity: 0;
      transform: translateX(-2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.from-product .custom-card1 {
    background-color: #91D5EB;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    animation: bounce-in-right 2s ease;
    animation-delay: 0.2s;
}

@keyframes bounce-in-right {
    0% {
      opacity: 0;
      transform: translateX(2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.from-product .custom-card2 {
    background-color: #F07272;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    animation: bounce-in-left 2s ease;
    animation-delay: 0.4s;
}

@keyframes bounce-in-left {
    0% {
      opacity: 0;
      transform: translateX(-2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.from-product .custom-card3 {
    background-color: #D8A7EA;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    animation: bounce-in-right 2s ease;
    animation-delay: 0.4s;
}

@keyframes bounce-in-right {
    0% {
      opacity: 0;
      transform: translateX(2000px);
    }
    100% { 
        transform: translateX(0); 
    }
}

.from-product .custom-card img,
.from-product .custom-card1 img,
.from-product .custom-card2 img,
.from-product .custom-card3 img {
    width: 156px;
    height: 156px;
    border-radius: 8px;
    margin-right: 16px;
}

.from-product .custom-card .content {
    flex-grow: 1;
}

.from-product h6{
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #1A3343;
}

.from-product p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #1A3343;
}

.manufacturing{
    padding: 120px 80px;
}

.manufacturing .based{
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #305D7A;
    margin-bottom: 0;
}

.manufacturing h2{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #1A3343;
    margin-bottom: 0;
}

.manufacturing .description{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #54595C;
    margin-bottom: 0;
}

.manufacturing .process-section{
    padding: 32px;
    background: #305D7A;
    border-radius: 16px;
    margin-top: 40px;
}

.manufacturing .process-section h3{
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.manufacturing .process-left .process-step{
    display: flex;
    gap: 10px;
}

.manufacturing .process-left .process-step span{
    padding: 10px 24px;
    width: 47px;
    height: 47px;
    background: #F5F7F9;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.manufacturing .process-left .process-step p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #141414;
    padding: 10px 24px;
    width: 265px;
    height: 47px;
    background: #F5F7F9;
    border: 1px solid #305D7A;
    border-radius: 99px;
}

.manufacturing .process-left .learn-more{
    padding: 12px 20px;
    background: #FFFFFF;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #54595C;
    margin-top: 24px;
}

.manufacturing .process-right img{
    width: 100%;
}

/* Start Testimonial Section */

.testimonial{
    padding: 120px 80px;
}

.testimonial .based{
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    color: #305D7A;
    margin-bottom: 0;
}

.testimonial h2{
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    color: #1A3343;
}

.testimonial p.description {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #54595C;
}

.testimonial .carousel-inner {
    padding: 1em;
}

.testimonial .carousel .card {
    margin: 0 0.5em;
    border: 0;
}

.testimonial .card-body{
    padding: 32px 24px;
    background: #F3F7F5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial .carousel img {
    width: 45px;
    height: 45px;
    border-radius: 100px;
}

.testimonial .carousel-item h5{
    margin-left: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #305D7A;
    margin-bottom: 0;
}

.testimonial .carousel-item span{
    margin-left: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #777D81;
}

.testimonial .carousel-item .testimonial-card{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #1A3343;
    margin-bottom: 56px;
}

.testimonial .carousel-control-prev,
.testimonial .carousel-control-next {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    top: 100%;
    /* transform: translateY(-50%); */
    border: 1px solid #D5D7D8;
}

.testimonial .carousel-control-prev {
      left: 46%;
}

.testimonial .carousel-control-next {
      right: 46%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i{
    color: #000000;
}

/* End Testimonial Section */

/* Start Blog */
.blog-section{
    padding: 120px 80px;
}

.blog-section .latest-blog img{
    width: 100%;
    border-radius: 16px;
}

.blog-section .category-time{
    display: flex;
    align-items: center;
    padding: 4px 10px 4px 4px;
    width: fit-content;
    gap: 8px;
    background: #EAEFF2;
    mix-blend-mode: multiply;
    border-radius: 16px;
    margin-top: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #305D7A;
}

.blog-section .categories{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    background: #FFFFFF;
    border-radius: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #305D7A;
}

.blog-section .blog-title{
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1A3343;
    margin-top: 8px;
    margin-bottom: 8px;
}

.blog-section .blog-description{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #54595C;
    margin-bottom: 8px;
}

.blog-section .author-date{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #305D7A;
    margin-bottom: 8px;
}

.blog-section a.blog-read-more{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #305D7A;
    text-decoration: none;
}

.blog-section .blog-row{
    margin-top: 60px;
}

.blog-section .blog{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    /* gap: 16px; */
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #BFCDD6;
    border-radius: 16px;
}

.blog-section .blog img{
    width: 100%;
    border-radius: 16px;
}

.blog-section .blog .blog-title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-section .blog .blog-description{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
    .blog-section{
        padding: 60px 10px;
    }

    .blog-section .blog-title{
        font-size: 20px;
        line-height: 25px;
    }

    .blog-section .blog-row{
        margin-top: 30px;
    }
}
/* End Blog */

/* Start Product  */

.product-img{
    padding: 120px 80px;
}

.product-img .image img{
    width: 100%;
}

.product-img .product-content h2{
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 68px;
    letter-spacing: 0.02em;
    color: #090808;
    margin-bottom: 20px;
    animation: bounce-in-right 2s ease;
}

@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    
    100% {
        transform: translateX(0);
    }
}

.product-img .product-content{
    margin-left: 67px;
}

.product-img .product-content p{
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #090808;
    margin-bottom: 0;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    animation: bounce-in-right 2s ease;
    animation-delay: 0.2s;
}

@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    
    100% {
        transform: translateX(0);
    }
}

.product-img .product-btn{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    animation: bounce-in-up 2s ease;
}

@keyframes bounce-in-up {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    
    100% {
        transform: translateX(0);
    }
}

.product-img .product-btn .inquire-btn,
.product-img .product-btn .request-btn{
    padding: 12px 20px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #54595C;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-img .product-btn .inquire-btn:hover,
.product-img .product-btn .request-btn:hover{
    background: #305D7A;
    border: 1px solid #305D7A;
    color: #FFFFFF;
}

.product-detail{
    padding: 0 120px 80px;
}

.product-detail .product-detail-content h2{
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 68px;
    letter-spacing: 0.02em;
    color: #090808;
    margin-bottom: 20px;
}

.product-detail .product-detail-content p{
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #090808;
    margin-bottom: 0;
}

.product-detail .product-detail-sidebar{
    background: #F5F7F9;
    padding: 10px 20px 20px;
    border-radius: 16px;
    height: 600px;
    overflow-y: scroll;
}

.product-detail .product-detail-sidebar .blog-section{
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-detail .product-detail-sidebar h5{
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #000000;
    margin-bottom: 20px;
}

.product-slider.similar-products .swiper-button-next,
.product-slider.similar-products .swiper-button-prev {
    position: absolute;
    top: -20px;
    transform: translateY(-50%);
    z-index: 999;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #D5D7D8;
    backdrop-filter: blur(4px);
    border-radius: 28px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider.similar-products .swiper-button-next {
    right: 0px;
    left: auto;
}

.product-slider.similar-products .swiper-button-prev {
    left: auto;
    right: 65px;
}

.product-slider.similar-products .swiper-button-next:after,
.product-slider.similar-products .swiper-button-prev:after {
    font-size: 15px;
    color: #1A3343;
}

.product-slider.similar-products h4{
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    display: flex;
    align-items: center;
    color: #000000;
    margin-bottom: 20px;
}

.product-slider.similar-products{
    background: transparent;
    padding: 40px 120px 80px;
    animation: bounce-in-up 2s ease;
}

@keyframes bounce-in-up {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    
    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 767px) {
    .product-img{
        padding: 60px 10px;
    }

    .product-img .product-content{
        margin-left: 0;
    }

    .product-img .product-content h2{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    
    .product-img .product-content p{
        font-size: 14px;
        text-align: justify;
    }

    .product-img .product-btn{
        gap: 12px;
        margin-top: 20px;
    }

    .product-img .product-btn .inquire-btn,
    .product-img .product-btn .request-btn{
        font-size: 13px;
    }

    .product-detail{
        padding: 0px 10px 60px 10px;
    }

    .product-detail .product-detail-content h2{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    
    .product-detail .product-detail-content p{
        font-size: 14px;
        text-align: justify;
    }

    .product-detail .product-detail-sidebar{
        margin-top: 30px;
        padding: 5px 15px 15px;
    }

    .product-detail .product-detail-sidebar .blog-section{
        gap: 16px;
    }

    .similar-products h4{
        font-size: 25px;
        line-height: 30px;
    }

    .product-slider.similar-products .swiper-button-next {
        right: 0px;
        left: auto;
    }

    .product-slider.similar-products .swiper-button-prev {
        left: auto;
        right: 65px;
    }

    .product-slider.similar-products{
        padding: 0px 10px 60px 10px;
    }
}
/* End Product */

/* Start Footer */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0px 48px;
    gap: 19px;
    background: #F5F7F9;
    border-top: 1px solid #D5D7D8;
}
.footer .logo img{
    width: auto;
    height: 70px;
}

.footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #777D81;
    margin: 32px 0;
}

.footer .social-icons i {
    font-size: 24px;
    color: #305D7A;
    margin-right: 15px;
}

.footer h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #305D7A;
}

.footer .list-unstyled li{
    margin-bottom: 12px;
}

.footer .list-unstyled a{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #777D81;
    text-decoration: none;
}

.footer .list-unstyled a i{
    font-size: 16px;
    color: #305D7A;
}

.footer .map {
    border-radius: 8px;
    overflow: hidden;
}

.footer .map iframe {
    width: 100%;
    height: 222px;
    border: none;
    border-radius: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #EAECF0;
    display: flex;
    justify-content: space-between;
}

.footer-bottom p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #A4A8AB;
    margin: 0;
}

.footer-bottom .list-unstyled{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.footer-bottom .list-unstyled a{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #A4A8AB;
}

/* End Footer */


/* ========== Start About Page CSS ========== */


.about-hero {
    background: url('/storage/setu/about-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.about-hero h1{
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    z-index: 9;
    position: relative;
}

.about-hero .breadcrumbs{
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.about-hero .breadcrumbs .home-icon img{
    width: 17px;
    height: 18px;
}

.about-hero .breadcrumbs .angel-arrow img{
    width: 7px;
    height: 10px;
}

.about-hero .breadcrumbs .about-page{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.mission-vision{
    padding: 120px 80px;
    background: #F5F7F9;
}

.mission-vision .container{
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.mission-vision .vision-content-img img{
    width: 100%;
    border-radius: 16px;
}

.mission-vision .vision-content{
    margin-left: 64px;
}

.mission-vision .mission-content{
    margin-right: 64px;
}

.mission-vision .vision-content img,
.mission-vision .mission-content img{
    padding: 20px;
    background: #DAF0FE;
    border-radius: 100px;
    margin-bottom: 24px;
}

.mission-vision h2{
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #101828;
    margin-bottom: 16px;
}

.mission-vision .content{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #54595C;
    margin-bottom: 0;
}

.product-section .nav-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    gap: 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-section .nav-tabs{
    border-color: #EAECF0;
    margin-bottom: 40px;
}

.product-section .tab-btn{
    padding: 12px 40px;
    background: transparent;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #305D7A;
    border: 0;
}

.product-section .tab-btn.active{
    background: #EAEFF2;
    border-bottom: 2px solid #305D7A;
    border-radius: 8px;
}

.product-section .tab-content .tab-pane .detail{
    padding: 40px;
    background: #305D7A;
    border-radius: 16px;
}

.product-section  .tab-content .tab-pane .detail h2{
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
}

.product-section .tab-content .tab-pane .detail p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.product-section .tab-content .tab-pane .image img{
    width: 100%;
    border-radius: 16px;
    height: 233px;
    object-fit: cover;
}

.our-team{
    margin-top: 60px;
}

.our-team .team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.our-team .team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.our-team .team-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 24px 32px;
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
}

.our-team .team-card h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
}

.our-team .team-card p strong{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.our-team .team-card p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
}


/* ========== sustainability Page CSS ==========  */


.sustainability{
    padding: 120px 80px;
}

.sustainability .about-content h2{
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #1A3343;
}

.sustainability .about-content .content{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #54595C;
}

.sustainability .sustainability-content{
    margin-top: 58px;
}

.sustainability-content .farming-practices{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 24px;
    gap: 38px;
    background: #305D7A;
    border-radius: 16px;
    margin-bottom: 24px;
}

.sustainability-content .farming-practices h3{
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.sustainability-content .farming-practices p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.sustainability-content .farming-practices .farming{
    margin-right: 38px;
}

.sustainability-content .sustainability-img img,
.sustainability-content .farming-practices-img img{
    width: 100%;
    border-radius: 16px;
}

.sustainability-content .farming-practices:nth-of-type(even) .row .col-12 .farming {
    margin-left: 38px;
    margin-right: 0;
}


/* ========== Gallery Page CSS ========== */


.gallery-section{
    padding: 120px 80px;
    animation: bounce-in-up 2s ease;
}

@keyframes bounce-in-up{
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0);
    }
}

.gallery-section img{
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.gallery-section .gallery{
    gap: 24px;
}

.gallery-section .col-12.col-md-4{
    margin-bottom: 24px;
}

.gallery-section .career-animation{
    animation: bounce-in-up 2s ease;
}

@keyframes bounce-in-up{
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0);
    }
}


/* ========== Start Services Page CSS ========== */


.services{
    padding: 120px 80px;
    animation: bounce-in-up 2s ease;
}

@keyframes bounce-in-up{
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0);
    }
}

.services .service h2{
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #101828;
}

.services .service .content{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #667085;
    margin-bottom: 40px;
}

.services .service-detail{
    display: flex;
    gap: 16px;
}

.services .service-detail .img{
    width: 60px;
    height: 60px;
    background: #DAF0FE;
    border: 8px solid #F0F9FF;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services h2{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #101828;
    margin-bottom: 8px;
}

.services .content{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    margin-bottom: 0;
}

.services .services-content-img img{
    width: 100%;
    border-radius: 16px;
}

.services .services-content{
    margin-right: 88px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services .service-detail .img img{
    width: 14px;
    height: 12px;
}

.services .container .row:nth-child(1){
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.services .col-md-12:nth-of-type(even) .row .col-12 .services-content{
    margin-right: 0;
    margin-left: 88px;
}

.contact-form{
    padding: 120px 80px;
}

.contact-form .form-image img{
    width: 100%;
    border-radius: 16px;
}

.contact-form h3{
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #101828;
    margin-bottom: 20px;
}

.contact-form p{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #667085;
    margin-bottom: 0;
}

.contact-form .form{
    margin-top: 48px;
}

.contact-form .form .form-label{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.contact-form .form .form-control{
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.contact-form .form .iti{
    width: 100%;
}

.contact-form .form .iti--separate-dial-code .iti__selected-flag{
    background: transparent;
}

.contact-form .form .iti__selected-dial-code{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
}

.contact-form .form .form-check{
    margin-top: 24px;
}

.contact-form .form .form-check-label{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.contact-form .form .form-check-label a{
    color: #667085;
    text-decoration: underline;
}

.contact-form .form .form-check-input{
    cursor: pointer;
}

.contact-form .form .send-btn{
    width: 100%;
    padding: 12px 20px;
    height: 48px;
    background: #305D7A;
    border: 1px solid #305D7A;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 32px;
}

.contact-form .row .container{
    max-width: 500px;
}

.contact-form .row .col-12.col-md-6:nth-child(1){
    display: flex;
    align-items: center;
}


/* ========== Start Catalogue Page CSS ========== */


.catalogue-section{
    padding: 120px 80px;
}

.catalogue-section .catalogue{
    /* opacity: 0; */
    /* transform: translateY(20px); */
    animation: bounce-in-left 2s ease;
    animation-delay: 0.2s;
}

@keyframes bounce-in-left {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        transform: translateX(0);
    }
}

.catalogue-section .catalogue img{
    width: 100%;
    border-radius: 16px;
}

.catalogue-section .catalogue h4{
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #1A3343;
    margin-top: 24px;
    margin-bottom: 4px;
}

.catalogue-section .catalogue p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #54595C;
    margin-bottom: 0;
}

.catalogue-section .col-12.col-md-3{
    margin-bottom: 64px;
}


/* ========== Start Career Page ========== */

.career-section{
    padding: 120px 80px;
}

.career-section .career-img{
    text-align: center;
}

.career-section .career-img img{
    /* width: 100%; */
}

.career-section .position-title{
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #101828;
    margin-bottom: 20px;
}

.career-section .position-description{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #667085;
    margin-bottom: 0;
}

.career-section .open-positions{
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.career-section .open-positions .job-post{
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    padding: 24px;
    /* gap: 24px; */
    /* height: 208px; */
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    border-radius: 16px;
}

.career-section .open-positions .job-post .category{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #305D7A;
    margin-bottom: 4px;
}

.career-section .open-positions .job-post .position{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.career-section .open-positions .job-post .apply-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    width: 112px;
    gap: 8px;
    height: 48px;
    background: #305D7A;
    border: 1px solid #305D7A;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.career-section .open-positions .job-post .job-description{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    margin: 16px 0;
}

.career-section .open-positions .job-post .location-time{
    display: flex;
    gap: 24px;
}

.career-section .open-positions .job-post .location img,
.career-section .open-positions .job-post .time img{
    margin-right: 8px;
}

.career-section .open-positions .job-post .location,
.career-section .open-positions .job-post .time{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.gallery-section .explore-title{
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #101828;
    margin-bottom: 20px;
}

.gallery-section .explore-description{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #667085;
    margin-bottom: 40px;
}


/* ========== Start Product Page CSS ========== */

.top-filters {
    padding: 16px 0px;
    animation: bounce-in-up 2s ease;
    /* animation-delay: 0.2s; */
}

@keyframes bounce-in-up{
    0% {
        opacity: 0;
        transform: translatey(20px);
    }
    100% {
        transform: translateX(0);
    }
}

.product-section .product-filter{
    animation: bounce-in-up 2s ease;
    animation-delay: 0.2s;
}

@keyframes bounce-in-up{
    0% {
        opacity: 0;
        transform: translatey(40px);
    }
    100% {
        transform: translateX(0);
    }
}

.top-filters .container{
    display: flex;
    justify-content: space-between;
}

.top-filters .filter-buttons {
    display: flex;
    gap: 10px;
}

.top-filters #toggle-filters{
    background: transparent;
    border: 0;
    box-shadow: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #224257;
}

.top-filters #toggle-filters.filters{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
}

.top-filters button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    background: #FFFFFF;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    cursor: pointer;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #54595C;
}

.top-filters button.active {
    background: #F1F2F2;
    border: 1px solid #A4A8AB;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #414547;
}

.top-filters .search-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.top-filters .search-bar.hidden {
    opacity: 0;
    visibility: hidden;
}

.top-filters .input {
    padding: 12px 12px 12px 40px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 73px;
    background-image: url('/storage/setu/searchicon.png');
    background-repeat: no-repeat;
    background-position: 15px 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
}

.filters {
    width: 500px;
    background-color: #ffffff;
    /* border-right: 1px solid #ddd; */
    transition: width 0.3s ease;
    overflow: hidden;
}

.filters.collapsed {
    width: 0;
    border: 0;
}

#filters.custom-filter{
    height: 200px;
}

.filters .filter-header {
    display: none;
}

.filters .filter-options {
    padding: 16px;
}

.filters .filter-options label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.products {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px;
    transition: grid-template-columns 0.3s ease;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.products .product-card .based{
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 16px;
}

.products .product-card .product-image{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.products .product-card .product-image img{
    /* width: 100%; */
    width: 178px;
    height: 176px;
}

.products .product-card .based .rate{
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    width: 82px;
    height: 32px;
    background: #F5F7F9;
    border: 1px solid #BFCDD6;
    border-radius: 99px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #305D7A;
}

.products .product-card .based .rate i{
    color: #305D7A;
    font-size: 20px;
    font-weight: 700;
}

.products .total-product p{
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1A3343;
}

.filters:not(.collapsed) ~ .products {
    grid-template-columns: repeat(3, 1fr);
}

.products .product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
    /* gap: 14px; */
    background: #305D7A;
    border: 1px solid #BFCDD6;
    border-radius: 18px;
    /* width: 350px; */
    width: 337px;
}

.products .product-card .detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 16px 16px;
    /* gap: 14px; */
    background: #F5F7F9;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #BFCDD6;
    border-radius: 0px 0px 16px 16px;
}

.products .product-card .detail h4{
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #1A3343;
    margin-bottom: 5px;
}

.products .product-card .detail p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #667085;
    margin: 0;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

.products .product-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: bold;
}

.products .product-card p {
    font-size: 14px;
    color: #666;
}

.products .product-card .product-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    width: 100%;
    height: 48px;
    background: #305D7A;
    border: 1px solid #305D7A;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 99px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 14px;
}

.product-filter .container{
    display: flex;
}

.product-filter .filter-options .input {
    padding: 10px 10px 10px 40px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 73px;
    background-image: url('/storage/setu/searchicon.png');
    background-repeat: no-repeat;
    background-position: 15px 13px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #667085;
    width: 100%;
}

/* .product-filter .dropdown{
    margin-top: 24px;
} */

.product-filter .dropdown .dropdown-btn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    gap: 10px;
    height: 44px;
    background: #305D7A;
    border-radius: 12px 12px 0px 0px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    border: 0;
    width: 100%;
}

.product-filter .dropdown .dropdown-menu.show{
    width: 100%;
    /* transform: translate(0px, 43px) !important; */
    padding: 12px;
    background: #F5F7F9;
    border-radius: 0px 0px 12px 12px;
    padding: 12px !important;
    border: 0;
}

.product-filter .dropdown .dropdown-menu .form-check-input:checked{
    background: #305D7A;
    border-color: #305D7A;
}

.product-filter .dropdown .dropdown-menu .form-check-input:focus{
    box-shadow: none;
}

.product-filter .dropdown .dropdown-menu .form-check-input{
    background: transparent;
    border: 1px solid #D0D5DD;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-filter .dropdown .dropdown-menu input[type='checkbox']:checked:after {
    content: '\2713';
    color:white;
}

.product-filter .filters .filter-options label{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: #4B4B4B;
}

.product-filter .dropdown .dropdown-menu .form-check{
    display: flex;
    gap: 10px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .our-team .team-card .overlay {
        padding: 12px 12px 16px;
    }

    .our-team .team-card h5 {
        font-size: 25px;
        line-height: 30px;
    }

    .our-team .team-card p strong {
        font-size: 15px;
        line-height: 24px;
    }

    .our-team .team-card p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .our-team .team-card .overlay {
        padding: 10px 10px 12px;
    }

    .our-team .team-card h5{
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 5px;
    }

    .our-team .team-card p strong{
        font-size: 14px;
        line-height: 20px;
    }

    .our-team .team-card p{
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 991px) {

    /* Start Header CSS */
    .header-menu .navbar-collapse {
        position: absolute;
        top: -12px;
        left: -250px;
        width: 250px;
        height: 100vh;
        background-color: #FFFFFF;
        transition: left 0.3s ease-in-out;
        z-index: 1050;
    }

    .header-menu .navbar-collapse.show {
        left: -12px;
    }

    .header-menu .navbar-toggler {
        /* z-index: 1060; */
        border: 0;
    }

    .header-menu .navbar-toggler .hamburger{
        width: 25px;
        height: 2px;
        background-color: black;
        margin: 6px 0;
    }

    .header-menu .navbar-toggler:focus {
        box-shadow:none;
    }

    .header-menu .navbar-nav {
        margin-top: 20px;
        margin-left: 20px !important;
    }   

    .header-menu .navbar-expand-lg .navbar-nav {
        gap: 16px;
    }

    .header-menu .close-menu {
        display: flex;
        justify-content: flex-end;
        margin-top: 20px;
        padding-right: 20px;
    }

    .header-menu .navbar-toggler-close {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .header-menu .navbar-toggler-close i {
        font-size: 30px;
        color: #667085;
    }

    .header-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .header-menu-overlay.show {
        display: block;
    }

    /* End Header CSS */

}

@media screen and (min-width: 768px) {
    .testimonial .carousel-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 3);
    }

    .product-section .tab-nav-arrows {
        display: none;
    }
}

@media (max-width: 767px) {

    /* ========== Start Home Page Css ========== */

    .hero {
        height: 350px;
    }

    .hero .based{
        font-size: 20px;
        line-height: 15px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero .learn-more{
        margin-top: 16px;
    }

    .counter-section h3 {
        font-size: 30px;
        line-height: 36px;
    }

    .counter-section p {
        font-size: 14px;
    }

    .about-section {
        padding: 60px 10px;
    }

    .about-section .mission-vision{
        margin: 20px 0;
    }

    .about-section .mission-vision .vision-content{
        margin-top: 15px;
    }

    .about-section .about-content{
        margin-right: 0;
    }

    .about-section .about-content .content{
        text-align: justify !important;
        font-size: 14px;
        line-height: 24px;
    }

    /*  */

    .product-slider{
        padding: 60px 10px;
    }

    .product-slider .based{
        font-size: 18px;
        line-height: 25px;
    }

    .product-slider h2{
        font-size: 30px;
        line-height: 50px;
    }

    .product-slider .description{
        font-size: 15px;
        line-height: 25px;
    }

    .product-slider .swiper-button-next, 
    .product-slider .swiper-button-prev{
        width: 45px;
        height: 45px;
    }

    .product-slider .swiper-button-next {
        right: -8px;
    }

    .product-slider .swiper-button-prev {
        left: -8px;
    }

    .product-slider .testimonial-see-all-btn {
        margin-top: 10px;
    }

    .featured-product {
        padding: 60px 10px;
    }

    .featured-product h2{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 25px;
    }

    .featured-product .custom-card h6{
        font-size: 16px;
        line-height: 25px;
    }

    .from-product{
        padding: 60px 10px;
    }

    .from-product h2{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 25px;
    }

    .featured-product h6{
        font-size: 16px;
        line-height: 25px;
    }

    .from-product .custom-card,
    .from-product .custom-card1,
    .from-product .custom-card2,
    .from-product .custom-card3{
        flex-direction: column;
    }

    .from-product p{
        font-size: 16px;
        line-height: 20px;
    }

    .manufacturing{
        padding: 60px 10px;
    }

    .manufacturing .based{
        font-size: 18px;
        line-height: 25px;
    }

    .manufacturing h2{
        font-size: 30px;
        line-height: 40px;
    }

    .manufacturing .description{
        margin-top: 10px;
    }

    .manufacturing .process-section{
        padding: 16px;
    }

    .manufacturing .process-section h3{
        font-size: 20px;
        line-height: 30px;
    }

    .manufacturing .process-left .learn-more{
        margin-bottom: 24px;
    }

    .testimonial{
        padding: 60px 10px;
    }

    .testimonial .based {
        font-size: 18px;
        line-height: 25px;
    }

    .testimonial h2{
        font-size: 27px;
        line-height: 40px;
    }

    .testimonial p.description{
        font-size: 12px;
    }

    .testimonial .carousel-control-prev{
        left: 35%;
    }

    .testimonial .carousel-control-next{
        right: 35%;
    }

    .footer .list-unstyled a{
        font-size: 13px;
        line-height: 20px;
    }

    .footer p{
        font-size: 13px;
        line-height: 20px;
    }

    .footer .social-icons i{
        font-size: 20px;
        margin-right: 10px;
    }

    /* ========== Start About Page CSS ========== */

    .about-hero{
        height: 128px;
    }

    .about-hero h1{
        font-size: 30px;
    }

    .mission-vision{
        padding: 60px 10px;
    }

    .mission-vision .container{
        gap: 50px;
    }

    .mission-vision .vision-content {
        margin-left: 0px;
    }

    .mission-vision .mission-content {
        margin-right: 0px;
    }

    .mission-vision .content{
        font-size: 15px;
        line-height: 25px;
        text-align: justify;
    }

    .mission-vision .vision-content img,
    .mission-vision .mission-content img{
        margin-bottom: 12px;
        margin-top: 24px;
    }

    .mission-vision .row.align-items-center:nth-of-type(2) .col-12:nth-of-type(1){
        order: 1;
    }

    .product-section .nav-tabs{
        height: 48px;
        margin-bottom: 19px;
        /* margin-top: 12px; */
    }

    .product-section .tab-btn{
        padding: 10px 20px;
        /* font-size: 14px; */
        font-size: 12px;
        line-height: 13px;
        /* line-height: 20px; */
    }

    .product-section .tab-btn.active{
        padding: 10px 20px;
    }

    .product-section .tab-content .tab-pane .detail{
        margin-right: 0;
    }

    .product-section .tab-content .tab-pane .detail h2{
        font-size: 27px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .product-section  .tab-content .tab-pane .detail p{
        font-size: 14px;
        text-align: justify;
    }

    .product-section .tab-content .tab-pane .image{
        margin-top: 20px;
    }

    .product-section .tab-nav-arrows{
        position: relative;
    }

    .product-section .tab-nav-arrows #prevTab{
        position: absolute;
        top: 0;
        z-index: 1;
        transform: translateY(-170%);
        left: 0;
    }

    .product-section .tab-nav-arrows #nextTab{
        position: absolute;
        top: 0;
        z-index: 1;
        transform: translateY(-170%);
        right: 0;
    }

    .product-section .tab-nav-arrows button{
        background: #FFFFFF;
        border: 1px solid #D0D5DD;
        border-radius: 99px;
        padding: 5px 13px;
    }

    .our-team .team-card h5 {
        font-size: 24px;
        line-height: 25px;
    }

    .our-team .team-card p strong{
        font-size: 15px;
        line-height: 24px;
    }

    .our-team .team-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .about-counter-section h3{
        font-size: 30px;
        line-height: 40px;
    }

    .about-counter-section .title{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .about-counter-section .description{
        font-size: 14px;
        line-height: 20px;
    }

    .about-counter-section .about-counter{
        margin-bottom: 16px;
    }

    .about-counter-section .about-counter-1{
        margin-top: 16px;
    }

    .about-section .about-us{
        font-size: 18px;
        line-height: 25px;
    }

    .about-section .about-content h2{
        font-size: 30px;
        line-height: 40px;
    }

    /* ========== Start Sustainability Page CSS ========== */

    .sustainability{
        padding: 60px 10px;
    }
    
    .sustainability .about-content h2{
        font-size: 30px;
        line-height: 40px;
    }
    
    .sustainability .about-content .content{
        font-size: 14px;
        line-height: 25px;
        text-align: justify !important;
    }

    .sustainability .sustainability-content{
        margin-top: 29px;
    }

    .sustainability-content .farming-practices .farming{
        margin-right: 0px;
    }

    .sustainability-content .farming-practices:nth-of-type(even) .row .col-12 .farming{
        margin-left: 0;
    }

    .sustainability-content .farming-practices h3{
        font-size: 20px;
        line-height: 30px;
    }

    .sustainability-content .farming-practices:nth-of-type(even) .row .col-12 .farming h3{
        margin-top: 10px;
    }

    .sustainability-content .farming-practices p{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
        text-align: justify;
    }

    /* ========== Start Gallery Page CSS ========== */

    .gallery-section {
        padding: 60px 10px;
    }

    /* ========== Start Service Page CSS ========== */

    .services{
        padding: 60px 10px;
    }

    .services .service h2{
        font-size: 30px;
        line-height: 40px;
    }

    .services .service .content{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .services .service-detail .img {
        width: 30px;
        height: 30px;
        padding: 15px;
    }

    .services .service-detail .img img {
        width: 10px;
        height: 10px;
    }

    .services h2{
        font-size: 15px;
        line-height: 24px;
    }

    .services .content{
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .services .col-md-12:nth-of-type(odd) .row .col-12:nth-child(1){
        order: 1;
    }

    .services .services-content{
        margin-top: 20px;
    }

    .services .container .row:nth-child(1){
        gap: 60px;
    }
    
    .services .services-content{
        margin-right: 0px;
        gap: 12px;
    }

    .services .col-md-12:nth-of-type(even) .row .col-12 .services-content{
        margin-left: 0px;
    }

    .contact-form {
        padding: 60px 10px;
    }

    .contact-form h3{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .contact-form p{
        font-size: 14px;
        line-height: 24px;
    }

    .contact-form .form {
        margin-top: 24px;
    }

    .contact-form .form .form-control{
        font-size: 14px;
    }

    .contact-form .form .iti__selected-dial-code{
        font-size: 14px;
    }

    .contact-form .form .row .col-md-6:nth-child(2){
        margin-top: 16px;
    }

    .contact-form .form .form-check {
        margin-top: 16px;
    }

    .contact-form .form .form-check-label{
        font-size: 14px;
    }

    .contact-form .form .send-btn{
        font-size: 14px;
        margin: 16px 0;
    }

    /* ========== Start Catalogue Page CSS ========== */

    .catalogue-section{
        padding: 60px 10px;
    }

    .catalogue-section .catalogue h4{
        font-size: 22px;
        line-height: 24px;
    }

    .catalogue-section .col-12.col-md-3{
        margin-bottom: 32px;
    }

    /* ========== Start Career Page CSS ========== */

    .career-section {
        padding: 60px 10px;
    }

    .career-section .open-positions .job-post .location-time{
        gap: 12px;
    }

    .gallery-section .explore-title{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .gallery-section .explore-description{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    /* ========== Start Product Page CSS ========== */

    .top-filters .filter-buttons{
        overflow-x: scroll;
    }

    .top-filters .container{
        display: block;
    }

    .product-filter .container{
        display: block;
    }

    .top-filters .search-bar{
        display: block;
        margin-top: 20px;
    }

    .top-filters .input{
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .filters {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 999;
        padding: 16px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .filters.collapsed {
        display: none;
    }

    .top-filters .container {
        flex-direction: column;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .top-filters button {
        font-size: 14px;
    }

    .filters .filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid #ddd;
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        color: #224257;
    }

    
    .filters .filter-header button {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

    
    .filters .filter-header button i {
        font-size: 20px;
        color: #224257;
    }
}

@media screen and (min-width: 576px) {
    .testimonial .carousel-inner {
      display: flex;
      width: 100%;
      margin-inline: auto;
      padding: 1em 0;
      overflow: hidden;
      padding-bottom: 50px;
    }

    .testimonial .carousel-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 3);
    }
}

@media (max-width: 576px) {

    .our-team .team-card .overlay{
        padding: 12px 12px 16px;
    }

    .our-team .team-card h5 {
        font-size: 16px;
        line-height: 20px;
    }

    .our-team .team-card p strong{
        font-size: 14px;
        line-height: 20px;
    }

    .our-team .team-card p {
        font-size: 12px;
        line-height: 20px;
    }
}