* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Kalpurush';
    src: url('/fonts/Kalpurush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Kalpurush', sans-serif;
}

.section-title,
.navbar-nav .nav-link,
.dropdown-menu a,
h1, h2, h3, h4, h5, h6,
p, span {
    font-family: 'Kalpurush', sans-serif;
}
html body {
  background-color: #f1f2f5;
  /* font-family: SolaimanLipi,sans-serif; */
  font-family: Lato, sans-serif, SiyamRupali;
}
/* Common css end */
/* ======= TOP HEADER PART start ======= */
/* header {
  position: sticky;
  top: 0;
  z-index: 3000;
  height: 60px;
}

.btn-light {
  border: 1px solid #ddd;
}

.btn-light:hover {
  background: #f1f1f1;
} */
/* ======= TOP HEADER END PART ======= */
/* ======= Header underline style  start ======= */
.section-title {
  position: relative;
  display: inline-block;
  /* font-weight: bold; */
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #28a745;
   font-family: 'Kalpurush', sans-serif;
  /* text-transform: uppercase; */
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #28a745; /* green underline */
  border-radius: 2px;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 40%, 80%, 100% {
    transform: translateX(-50%) scaleX(1);
  }
  20%, 60% {
    transform: translateX(-50%) scaleX(1.5);
  }
}

/* ======= Header underline style  end ======= */
/* ======= Header underline style  start ======= */
/* .section-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding-bottom: 10px;
  color: #28a745;
  text-transform: uppercase;
} */

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #28a745; /* green underline */
  border-radius: 2px;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 40%, 80%, 100% {
    transform: translateX(-50%) scaleX(1);
  }
  20%, 60% {
    transform: translateX(-50%) scaleX(1.5);
  }
}

/* ======= Header underline style  end ======= */
 /* ===============================
          Shopping Cart Dropdown part start
      ================================= */

      .cart-dropdown-wrapper{
          position: relative;
      }

      /* Dropdown Box */
      .shopping-cart-dropdown{
          position: absolute;
          top: 120%;
          right: 0;
          width: 360px;
          background: #fff;
          border-radius: 18px;
          padding: 20px;
          box-shadow: 0 15px 40px rgba(0,0,0,0.12);
          opacity: 0;
          visibility: hidden;
          transform: translateY(15px);
          transition: all 0.35s ease;
          z-index: 9999;
      }

      /* Hover Show */
      .cart-dropdown-wrapper:hover .shopping-cart-dropdown{
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      /* Header */
      .cart-header{
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 18px;
          padding-bottom: 12px;
          border-bottom: 1px solid #eee;
      }

      .cart-header h6{
          margin: 0;
          font-size: 18px;
          font-weight: 700;
      }

      .cart-header span{
          font-size: 14px;
          color: #666;
      }

      /* Cart Item */
      .cart-item{
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 14px 0;
          border-bottom: 1px solid #f1f1f1;
      }

      .cart-item:last-child{
          border-bottom: none;
      }

      /* Image */
      .cart-item-img img{
          width: 70px;
          height: 70px;
          object-fit: cover;
          border-radius: 12px;
          border: 1px solid #eee;
      }

      /* Info */
      .cart-item-info{
          flex: 1;
      }

      .cart-item-info h6{
          font-size: 15px;
          font-weight: 500;
          margin-bottom: 5px;
          line-height: 1.4;
          color: #111;
          text-align: start;
           font-family: 'Kalpurush', sans-serif;
      }

      .cart-item-info p{
          margin: 0;
          font-size: 13px;
          color: #777;
      }

      /* Price */
      .cart-item-price{
          font-size: 15px;
          font-weight: 700;
          color: #198754;
      }

      /* Footer */
      .cart-footer{
          margin-top: 20px;
      }

      .cart-total{
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 18px;
          font-size: 16px;
      }

      .cart-total strong{
          color: #198754;
          font-size: 18px;
      }

      /* Buttons */
      .cart-btns{
          display: flex;
          gap: 10px;
      }

      .view-cart-btn,
      .checkout-btn{
          flex: 1;
          height: 48px;
          border-radius: 12px;
          text-decoration: none;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 600;
          transition: 0.3s ease;
      }

      /* View Cart */
      .view-cart-btn{
          background: #f1f1f1;
          color: #111;
      }

      .view-cart-btn:hover{
          background: #ddd;
          color: #111;
      }

      /* Checkout */
      .checkout-btn{
          background: #198754;
          color: #fff;
      }

      .checkout-btn:hover{
          background: #146c43;
          color: #fff;
      }

      /* Responsive */
      @media(max-width: 576px){

          .shopping-cart-dropdown{
              width: 320px;
              right: -60px;
          }

      }
 /* ===============================
          Shopping Cart Dropdown part end
      ================================= */
 
/* ======= Menu Part start ======= */
.main_menu .navbar-brand a {
    display: inline-block;
}
.main_menu .navbar-brand img {
    height: 45px;
     /* width: 160px;  */
}

.main_menu .navbar-brand h6 {
    font-size: 14px;
    color: #222;
}
/* .main_menu {
  
   background: #fff;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
} */

.main_menu {
    position: absolute;
    top: 37px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 999;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.12); */
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.main_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    /* background: #fff; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
/* Fixed Navbar on scroll down */


/* Fixed Navbar when scrolling up */
 /* .main_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #161F6F; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
} */

/* Navbar links when fixed */
/* .main_menu.fixed .nav-link {
    color: #fff;
}  */
/* ---------- Navbar Base ---------- */
.nav {
  width: 100%;
  /* padding: 20px; */
  transition: all 0.3s ease;
  z-index: 5000;
  
}

.navbar-nav .nav-item {
  position: relative;
  transition: all 0.4s linear;
}

.navbar-nav .nav-link {
  /* color: #222; */
  color: #28a745;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  padding: 0 15px !important;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
   font-family: 'Kalpurush', sans-serif;
    /* color: #333; */
}

/* Parent link hover effect */
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-item.show > .nav-link,
.navbar-nav .nav-item:focus-within > .nav-link,
.navbar-nav .nav-item > .nav-link[aria-expanded="true"] {
  /* background-color: #1959bf; */
  background-color: #28a745;
  color: #fff !important;
}

/* ---------- Dropdowns ---------- */
/* Dropdown menu base style */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  /* opacity: 0;
  visibility: hidden; */
  /* transform: translateY(10px);
  transition: all 0.3s ease; */
  margin-top: 0;
   font-family: 'Kalpurush', sans-serif;
   font-size: 18px;
  font-weight: 500;
  border-radius: 0;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* Dropdown items */
.dropdown-menu a {
  /* color: #fff; */
  color: #28a745;
   font-family: 'Kalpurush', sans-serif;
   font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  display: block;
}

.dropdown-menu a:hover {
  /* background-color: #84adef; */
  /* background-color:  #1959bf; */
  background-color:  #28a745;
  color: #fff !important;
}

/* Submenu styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}



/* ---------- Search Styling ---------- */
.navbar .search-form {
    margin-left: 20px;
    flex-grow: 1;
    max-width: 480px !important;
    display: flex;
}

.navbar .search-form .input-group {
    width: 100%;
}

.navbar .search-form .form-control {
    border-radius: 20px 0 0 20px;
    height: 35px;
    border: 1px solid #ccc;
}

.navbar .search-form .input-group .btn {
    border-radius: 0 20px 20px 0;
    height: 35px;
    /* border: 1px solid #1959bf;
    background-color: #1959bf; */
    border: 1px solid #28a745;
    background-color: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transition: background 0.3s ease;
}

.navbar .search-form .input-group .btn:hover {
    background-color: #0848a2;
    color: #fff;
}
.search-form {
  margin-left: 20px;
  width: 50px;  /* <<< THIS is why the search is tiny */
}

/* ======= Menu Part end ======= */
/* ======= Banner Part Start ======= */

#single_slider {
    padding-top: 39px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

#single_slider .swiper {
    width: 100%;
}

/* Desktop */
#single_slider .swiper-slide img {
    width: 100%;
    height: 92vh;
    /* height: auto; */
    object-fit: cover;
    display: block;
}
 /* #single_slider .swiper-slide img{
    width:100%;
    aspect-ratio: 16/6;
    object-fit: cover;
} */

/* Overlay Text */
/* .slide-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

.slide-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-overlay h4 {
    font-size: 22px;
    font-weight: 400;
} */

/* Navigation Buttons */
/* =========================
   SINGLE SLIDER
========================= */

/* #single_slider{
    margin-top: 0;
    overflow: hidden;
} */
 #single_slider {
   
    top: -60px !important;
}
#single_slider .swiper{
    width: 100%;
}

#single_slider .swiper-slide{
    overflow: hidden;
}

#single_slider .swiper-slide img{
    width: 100%;
    height: 720px;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.swiper-button-next,
.swiper-button-prev{
    width: 45px;
    height: 45px;
    background: #fff;
    color: #28a745;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    transition: .3s;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: #28a745;
    color: #fff;
}

.swiper-button-prev{
    left: 15px;
}

.swiper-button-next{
    right: 15px;
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1400px){

   #single_slider {
    width: 100%;
    height: 650px !important;
    top: 21px !important;
}
}

/* =========================
   DESKTOP
========================= */

@media (max-width: 1199px){

    #single_slider {
    width: 100%;
    height: 580px !important;
    top: -15px !important;
}


}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    #single_slider {
    width: 100%;
    height: 433px !important;
    top: -44px !important;
}
#single_slider img{
    width: 100%;
    height: 400px !important;
}


    .swiper-button-next,
    .swiper-button-prev{
        width: 40px;
        height: 40px;
    }

}

/* =========================
   SMALL TABLET
========================= */

@media (max-width: 767px){

   #single_slider {
    width: 100%;
    height: 336px !important;
    top: -71px !important;
}
#single_slider img{
    width: 100%;
    height: 336px !important;
}

    .swiper-button-next,
    .swiper-button-prev{
        /* width: 35px;
        height: 35px; */
        display: none;
    }

    /* .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size: 14px;
    }

    .swiper-button-prev{
        left: 8px;
    }

    .swiper-button-next{
        right: 8px;
    } */

}

/* =========================
   MOBILE
========================= */

@media (max-width: 575px){

    #single_slider .swiper-slide img{
        height: 220px;
    }
#single_slider {
    width: 100%;
    height: 328px !important;
    top: -87px !important;
}
#single_slider img{
    width: 100%;
    height: 200px !important;
}
    .swiper-button-next,
    .swiper-button-prev{
        /* width: 30px;
        height: 30px; */
        display: none;
    }

    /* .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size: 12px;
    } */

}

/* =========================
   EXTRA SMALL MOBILE
========================= */

@media (max-width: 375px){

   #single_slider {
    width: 100%;
    /* height: 200px !important; */
    top: -74px !important;
}
#single_slider img{
    width: 100%;
    /* height: 200px !important; */
}

}
.category-section {
    /* padding: 80px 0; */
    padding-bottom: 40px;
    /* background: #f8f9fc; */
    margin-top: -25px;
}
/* ======= Banner Part End ======= */


/* ======= Featured Products Part start ======= */
#featured_products{
  /* padding: 40px 0; */
  padding-bottom: 40px;
}
.featuredSwiper{
  padding-bottom: 0px !important;
  overflow: hidden;
}

.featuredSwiper .swiper-wrapper{
  align-items: stretch;
  height: auto !important;
}

.featuredSwiper .swiper-slide{
  display: flex;
  height: auto !important;
  /* padding: 10px 5px 20px; */
}
#featured_products .badge_new{
  background: #0d6efd;
}

.book-card{
    background:#ecd5d5;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(0,0,0,.09);
    transition:.3s;
    height:100%;
    text-align:center;

    display:flex;
    flex-direction:column;
}

.book-card:hover{
    transform:translateY(-5px);
}

.book-img{
    position:relative;
    overflow:hidden;
}

.book-card img{
    width:100%;
    height:170px;
    object-fit:contain;
    /* background:#f8f9fa; */
    background:#ecd5d5;
    padding:10px;
    transition:.4s;
}

/* Overlay */
.book-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    font-size: 14px;
    background:rgba(0,0,0,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

/* Hover Effect */
.book-card:hover .book-overlay{
    opacity:1;
    visibility:visible;
}

.book-card:hover img{
    transform:scale(1.05);
}

/* View Details Button */
.view-btn{
    /* background:#198754; */
    background:#28a745;
    color:#fff;
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.view-btn:hover{
    /* background:#146c43; */
    background:#28a745;
    color:#fff;
}

.book-info{
    padding:10px;
    text-align:center;

    display:flex;
    flex-direction:column;
    flex-grow:1;
    
}

.book-info h6{
    font-size:14px;
    color:#333;
    font-weight:500;
    margin-bottom:5px;
    /* min-height:48px; */
     font-family: 'Kalpurush', sans-serif;
}

.add-to-cart-btn{
    margin-top:auto; /* Button নিচে চলে যাবে */
    background:#28a745;
    border-color:#28a745;
    font-size:14px;
    color:#fff;
    padding:7px 10px;
    border-radius:5px;
    font-weight:500;
    transition:.3s;
}
.book-info span{
    display:block;
    color:#198754;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.book-info .btn{
    border-radius:30px;
}


/* =====================================
   LARGE TABLET (992px ↓)
===================================== */
@media (max-width: 991.98px){

    .book-card img{
        height: 180px;
    }

    .book-info h6{
        font-size: 15px;
        line-height: 1.5;
    }

    .book-info p{
        font-size: 14px;
    }

    .book-info span{
        font-size: 17px;
    }

    .add-to-cart-btn{
        font-size: 13px;
        padding: 8px;
    }

    .view-btn{
        padding: 8px 18px;
        font-size: 13px;
    }
}


/* =====================================
   TABLET (768px ↓)
===================================== */
@media (max-width: 767.98px){

    #featured_products{
        padding-bottom: 30px;
    }

    .book-card{
        border-radius: 10px;
    }

    .book-card img{
        height: 160px;
        padding: 8px;
    }

    .book-info{
        padding: 10px 8px;
    }

    .book-info h6{
        font-size: 14px;
        line-height: 1.4;
        min-height: 40px;
    }

    .book-info p{
        font-size: 13px;
        margin-bottom: 6px;
    }

    .book-info span{
        font-size: 16px;
        margin-bottom: 8px;
    }

    .add-to-cart-btn{
        font-size: 13px;
        padding: 8px;
    }

    .view-btn{
        padding: 8px 15px;
        font-size: 12px;
    }
}


/* =====================================
   MOBILE (576px ↓)
===================================== */
@media (max-width: 575.98px){

    #featured_products{
        padding-bottom: 25px;
    }

    .featuredSwiper .swiper-slide{
        padding: 3px;
    }

    .book-card{
        border-radius: 8px;
    }

    .book-card img{
        height: 140px;
        padding: 6px;
    }

    .book-info{
        padding: 8px 6px;
    }

    /* Product Name */
.book-info h6{
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: -20px !important;
    font-family: 'Kalpurush', sans-serif;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Author */
.book-info p{
    margin-bottom: 6px;
    color: #666;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .book-info span{
        font-size: 15px;
        margin-bottom: 8px;
    }

    .add-to-cart-btn{
        font-size: 12px;
        padding: 7px 5px;
    }

    .view-btn{
        font-size: 12px;
        padding: 7px 12px;
    }
}


/* =====================================
   EXTRA SMALL DEVICE (400px ↓)
===================================== */
@media (max-width: 400px){

    .book-card img{
        height: 120px;
    }

    /* Product Name */
.book-info h6{
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: -20px !important;
    font-family: 'Kalpurush', sans-serif;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Author */
.book-info p{
    margin-bottom: 6px;
    color: #666;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .book-info span{
        font-size: 14px;
    }

    .add-to-cart-btn{
        font-size: 11px;
        padding: 6px 4px;
    }

    .view-btn{
        font-size: 11px;
        padding: 6px 10px;
    }
}
/* ======= Featured Products Part end ======= */

/* =========================================
   NEW ARRIVAL SECTION (FULL RESPONSIVE)
========================================= */
.Category_main{
    background: #ffffff;
    padding: 30px 20px;
}

#new_arrival{
  padding: 100px 0 40px;
  overflow: hidden;
}

/* =========================================
   SWIPER FIX (IMPORTANT FOR SHADOW)
========================================= */

.newArrivalSwiper{
  overflow: hidden !important;
  padding: 15px 5px 30px;
}

.newArrivalSwiper .swiper-wrapper{
  align-items: stretch;
  height: auto !important;
  overflow: visible !important;
}

.newArrivalSwiper .swiper-slide{
  display: flex;
  height: auto !important;
  overflow: visible !important;
  padding: 10px 5px 20px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product_card_main{
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 15px;
}

.product_card_main:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.product_card{
  position: relative;
  cursor: pointer;
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.product_img{
  position: relative;
  overflow: hidden;
}

.product_img img{
  width: 100%;
  height: 300px;
  /* object-fit: cover; */
  transition: 0.5s ease;
}

.product_card:hover .product_img img{
  transform: scale(1.08);
}

.product_img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: 0.4s ease;
}

.product_card:hover .product_img::after{
  opacity: 1;
}

/* =========================================
   BADGE
========================================= */

.badge_new{
  position: absolute;
  top: 12px;
  left: 12px;
  background: #198754;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 5;
}

/* =========================================
   PRODUCT NAME
========================================= */

.product_name{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;

  margin: 0;
  padding: 10px;

  font-size: 14px;
  font-weight: 600;
  text-align: center;

  border-radius: 30px;
  border: 1px solid #0d6efd;

  background: #fff;
  color: #222;

  transition: 0.4s ease;
}

.product_card:hover .product_name{
  background: #198754;
  color: #fff;
  border-color: #fff;
}

/* =========================================
   PRODUCT INFO
========================================= */

.product_info{
  padding: 18px 14px;
  text-align: center;
  background: #e9e7e7;
  margin-top: auto;
}

.price{
  border: 1px solid #0d6efd;
  border-radius: 30px;
  padding: 6px;
  font-size: 14px;
  color: #198754;
  margin-bottom: 8px;
  transition: 0.4s ease;
}

.product_card_main:hover .price{
  background: #0d6efd;
  color: #fff;
}

/* =========================================
   SEE MORE BUTTON
========================================= */

.see-more-btn{
  /* background: #198754; */
  background: #28a745; 
  color: #fff;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #198754;
  transition: 0.4s ease;
}

.see-more-btn:hover{
  background: transparent;
  color: #198754;
  transform: translateY(-3px);
}

/* =========================================
   LARGE DEVICE (1200px)
========================================= */
@media (max-width: 1199.98px){
  .product_img img{
    height: 280px;
  }
}

/* =========================================
   LAPTOP (992px)
========================================= */
@media (max-width: 991.98px){
  #new_arrival{
    padding: 50px 0 35px;
  }

  .product_img img{
    height: 280px;
  }

  .product_name{
    font-size: 13px;
  }
}

/* =========================================
   TABLET (768px)
========================================= */
@media (max-width: 767.98px){

  #new_arrival{
    padding: 45px 0 30px;
  }

  .product_img img{
    height: 280px;
  }

  .product_info{
    padding: 15px 12px;
  }

  .price{
    font-size: 13px;
  }

}

/* =========================================
   MOBILE (576px) → 2 COLUMN FIX
========================================= */
@media (max-width: 575.98px){

  .newArrivalSwiper{
    padding: 10px 0 20px;
  }

  .product_card_main{
    border-radius: 12px;
  }

  .product_img img{
    height: 280px;
  }

  .product_name{
    font-size: 12px;
    padding: 8px;
    width: 90%;
  }

  .price{
    font-size: 12px;
  }

  .see-more-btn{
    font-size: 14px;
    padding: 9px 22px;
  }
}

/* =========================================
   SMALL MOBILE (400px)
========================================= */
@media (max-width: 399.98px){

  .product_img img{
    height: 280px;
  }

  .product_name{
    font-size: 11px;
  }

}

/* ===== Top Rated Section Start ===== */
#top_rated{
  padding-bottom: 40px;
}
.topRatedSwiper{
  padding-bottom: 0px !important;
  overflow: hidden;
}

.topRatedSwiper .swiper-wrapper{
  align-items: stretch;
  height: auto !important;
}

.topRatedSwiper .swiper-slide{
  display: flex;
  height: auto !important;
  padding: 10px 5px 20px;
}

#top_rated .badge_new{
  background: #ff9800;
}
/* ===== Top Rated Section End ===== */

/* ======= Client Part start ======= */
/* ======= CLIENT FIX FULL HEIGHT CLEAN ======= */

/* #clients {
  padding: 40px 0 !important;
} */
.clients_section{
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Swiper container */
.clientSwiper {
  overflow: hidden;
  height: 190px !important;
}

/* wrapper fix */
.clientSwiper .swiper-wrapper {
  display: flex;
  align-items: stretch; /* equal height */
}

/* slide fix */
/* .clientSwiper .swiper-slide {
  display: flex;
  height: auto !important;
} */

/* card full stretch হবে */
.client_card {
  flex: 1;                
  display: flex;
  flex-direction: column;
  /* justify-content: center; */

  /* background: #fff; */
  background: #ecd5d5;;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
  transition: 0.3s;
}

/* hover */
.client_card:hover {
  transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
 
}

/* inner spacing clean */
.client_card img {
  height: 60px;
  margin-bottom: 8px;
  object-fit: contain;
}

.client_card h6 {
  margin: 5px 0;
  font-weight: 500;
  color: #333;
  font-family: 'Kalpurush', sans-serif;
  
}

.client_card p {
  margin: 0;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
   font-family: 'Kalpurush', sans-serif;
}
/* =====================================
   MOBILE (767px ↓)
===================================== */
@media (max-width: 767.98px){

    .clients_section{
        padding: 35px 0;
    }

    .client_card{
        padding: 15px 10px;
        border-radius: 10px;
    }

    .client_card img{
        max-width: 120px;
        height: 100px;
        margin-bottom: 12px;
        
    }

    .client_card h6{
        font-size: 15px;
        margin-bottom: 8px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .client_card p{
        font-size: 12px;
        line-height: 1.6;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* =====================================
   SMALL MOBILE (480px ↓)
===================================== */
@media (max-width: 480px){
  .category-section {
    /* padding: 80px 0; */
    padding-bottom: 40px;
    /* background: #f8f9fc; */
    margin-top: -163px;
}

    .client_card{
        padding: 12px 8px;
    }

    .client_card img{
        max-width: 100px;
        height: 80px;
    }

    .client_card h6{
        font-size: 14px;
    }

    .client_card p{
        font-size: 11px;
    }
}

/* ======= Client Part end ======= */

/* ======= About Part start ======= */

.about-section {
  position: relative;
  color: #fff;
  z-index: 1;
}

.about-section .overlay {
  background: rgba(0, 0, 0, 0.5); 
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}

.home-about-header {
  font-size: 40px; 
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
}


.about-title {
  /* font-size: 2.5rem; */
  font-weight: 700;
  line-height: 1.3;
}

/* Description Paragraph */
.about-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f8f9fa;
}

/* ======= About Part end ======= */

/* ======= Image & Video Section ======= */
/*====gallery part start===*/
#gallery_part{
   padding-top: 120px;
    padding-bottom: 60px;
}

 .album-folder {
      text-align: center;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      transition: 0.3s;
      background-color: #f8f9fa;
    }

    .album-folder:hover {
      background-color: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
    }

    /* .album-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 6px;
    } */
    .album-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 6px;
    }
    .album-images {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 6px;
    }

    .album-title {
      margin-top: 10px;
      font-weight: 600;
      font-size: 1rem;
      color: #333;
    }
/*====gallery part end===*/


/*====video part start===*/
#video_part{
  padding-top: 120px;
  padding-bottom: 60px;
}

.video-album {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.video-album:hover {
  transform: translateY(-5px);
}

.video-album .overly {
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 10px;
  background: rgba(26, 25, 25, 0.5);
  opacity: 1;
  transition: all linear 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .video-album:hover .overly {
  opacity: 1;
} */

.video-album .overly i {
  color: #fff;
  font-size: 40px;
}

.album-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.album-title {
  margin-top: 10px;
  font-weight: 600;
}

video {
  width: 100%;
  border-radius: 8px;
}


/*====video part end===*/


/* ======= Blog Section ======= */
.blog-section {
  background-color: #f8f9fa;
}

.section-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* .section-title {
  font-size: 2rem;
  font-weight: 700;
} */

/* Blog Card */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.blog-desc {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-img img {
    height: 180px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .blog-img img {
    height: 160px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}



/* ======= Product details Part start ======= */
/* Main Product Image */
/* Main Product Image */
/* .product-main-img {
  width: 100%;
  height: 400px; 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  background: #fff;
} */

.product-main-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* border-radius: 12px; */
    /* box-shadow: 0 0px 5px rgba(0,0,0,0.1); */
    position: relative;
    background: #fff;
    padding-bottom: 50px;
    border: 1px solid #222;
   
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps image aspect ratio while filling container */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth change */
  display: block;
  
}
.product-main-img p{
  padding-bottom:10px;
}

/* Thumbnails below main image */
.product-thumbnails {
  flex-wrap: wrap;
}

.thumb-item {
  flex: 1 1 calc(25% - 0.5rem);
  cursor: pointer;
}

.thumb-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  /* transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent; */
}

.thumb-item img:hover {
  transform: scale(1.05);
  /* border: 2px solid #28a745; */
}

/* Responsive */
@media(max-width:768px){
  .thumb-item img {
    height: 60px;
  }
}

/* ======= Product details Part end ======= */
/* ======= Footer Part start ======= */

/* ======= Footer Part end ======= */


/* ==== abour part start === */
#about_part{
    padding-top: 100px;
    padding-bottom: 60px;
    
}

.about_head h2{
    text-align: center;
}
.about_inner{
  text-align: justify;
}
.about_item{
    background-color: #fff;
    padding: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border-radius: 12px;
}
/* ==== abour part end === */

/* ==== all product part start === */
.product-card {
  border: none;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image & Button */
.product-img {
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.1);
}
.add-to-cart {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
}
.product-card:hover .add-to-cart {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Product Info */
.product-info {
  background: #fff;
}
.product-name {
  font-size: 18px;
  font-weight: 600;
}
.price {
  font-size: 20px;
  font-weight: bold;
}
.product_details{
  padding-top: 10px;
  padding-bottom: 10px;
}
.form-label{
  padding-top: 10px;
  font-weight: 600;
}
/* ==== all product part end === */

/* =========================================
   SOCIAL MEDIA SECTION PART START
========================================= */
#social_media_section{
  position: relative;
  padding: 70px 0;
  background: url('/frontend/aircond_assets/images/social-bg.png') no-repeat center center/cover;
  z-index: 1;
  overflow: hidden;
}

/* Overlay */
#social_media_section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 107, 138, 0.85);
  z-index: -1;
}

/* Wrapper */
.social_wrapper{
  position: relative;
  z-index: 2;
}

/* Section Heading */
.social_heading{
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Social Group */
.social_group{
  margin-bottom: 40px;
}

/* Group Title */
.social_title{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

/* Row */
.social_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Social Card */
.social_item{
  width: 180px;
  min-height: 95px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 15px 12px;

  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 12px;

  text-align: center;
  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);

  transition: all 0.3s ease;
}

/* Hover */
.social_item:hover{
  background: #3165b9;
  border-color: #3165b9;
  transform: translateY(-4px);
  color: #fff;
}

/* Icon */
.social_item i{
  font-size: 22px;
  margin-bottom: 8px;
}

/* Text */
.social_item span{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;

  word-break: break-word;
  overflow-wrap: break-word;
}

/* =========================================
   LARGE DEVICE (1200px ↓)
========================================= */
@media (max-width: 1199.98px){

  .social_item{
    width: 170px;
  }

}

/* =========================================
   LAPTOP (992px ↓)
========================================= */
@media (max-width: 991.98px){

  #social_media_section{
    padding: 60px 0;
  }

  .social_heading{
    font-size: 28px;
  }

  .social_title{
    font-size: 20px;
  }

  .social_row{
    gap: 16px;
  }

  .social_item{
    width: 160px;
    min-height: 90px;
  }

}

/* =========================================
   TABLET (768px ↓)
========================================= */
@media (max-width: 767.98px){

  #social_media_section{
    padding: 50px 0;
  }

  .social_heading{
    font-size: 24px;
    margin-bottom: 30px;
  }

  .social_title{
    font-size: 18px;
  }

  .social_row{
    gap: 14px;
  }

  .social_item{
    width: calc(50% - 14px);
    max-width: 220px;
    min-height: 85px;
    padding: 14px 10px;
  }

  .social_item i{
    font-size: 20px;
  }

  .social_item span{
    font-size: 13px;
  }

}

/* =========================================
   MOBILE (576px ↓)
========================================= */
@media (max-width: 575.98px){

  .social_row{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .social_item{
    width: calc(50% - 10px); /* 2 ta card */
    min-width: unset;
    max-width: unset;

    min-height: 80px;
    padding: 12px 8px;
  }

  .social_item i{
    font-size: 18px;
  }

  .social_item span{
    font-size: 12px;
    line-height: 1.4;
  }

}

/* =========================================
   SMALL MOBILE (400px ↓)
========================================= */
@media (max-width: 399.98px){

 /* =========================================
   MOBILE (576px ↓)
========================================= */
@media (max-width: 575.98px){

  .social_row{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .social_item{
    width: calc(50% - 10px); /* 2 ta card */
    min-width: unset;
    max-width: unset;

    min-height: 80px;
    padding: 12px 8px;
  }

  .social_item i{
    font-size: 18px;
  }

  .social_item span{
    font-size: 12px;
    line-height: 1.4;
  }

}

}

/* =========================================
   SOCIAL MEDIA SECTION PART END
========================================= */
/* ==== All Product part start === */
#all_product{
  padding-top: 30px;
  padding-bottom: 60px;
}
.product-info h5{
  padding-bottom: 10px;
}
/* ==== All Product part end === */

/* ==== All Product part end === */
#contact{
   padding-top: 40px;
  padding-bottom: 40px;
}
/* ==== All Product part end === */