* {
    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;
}

/* 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;
  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: 600;
          margin-bottom: 5px;
          line-height: 1.4;
          color: #111;
          text-align: start;
      }

      .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
      ================================= */
 /* ===============================
          TOP HEADER PART END
      ================================= */

/* ======= Side menu part start ======= */
.category-menu {
  background: #fff;
  border: 1px solid #ddd;
  position: relative;
}

.menu-title {
  background: #28a745;
  color: #fff;
  padding: 20px;
  margin: 0;
}

.main-menu,
.submenu,
.sub-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu > li {
  position: relative;
  border-bottom: 1px solid #eee;
}

.main-menu > li > a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.main-menu > li:hover {
  background: #f8f9fa;
}

/* ЁЯФ╖ Level 1 submenu (ALWAYS visible) */
.submenu {
  position: static;
  width: 100%;
  display: block;
  border: none;
  /* background: #f1f1f1; */
    
}

/* ЁЯФ╖ Level 2 submenu (HOVER ржП show рж╣ржмрзЗ) */
.sub-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 999;
}

/* ЁЯФе Hover ржХрж░рж▓рзЗ show */
.submenu-item:hover > .sub-submenu {
  display: block;
}




/* ЁЯФ╖ Important */
/* тЭМ remove padding from li */
.submenu-item {
  position: relative;
  border: 1px solid #ddd;
  padding-left: 0; /* important */
}

/* тЬЕ padding goes to link */
.submenu-item > a {
  display: block;
  padding: 10px 15px 10px 20px; /* left padding here */
  color: #333;
  text-decoration: none;
}

/* ЁЯФе hover full width */
.submenu-item > a:hover,
.sub-submenu a:hover {
  background: #f1f1f1;
}


.sub-submenu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
}


.sub-submenu a:hover {
  background: #f1f1f1;
  
}
/* ======= Side menu 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: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 999;
    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;
}


/* 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: 999;
}

.navbar-nav .nav-item {
  position: relative;
  transition: all 0.4s linear;
}

.navbar-nav .nav-link {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  padding: 0 15px !important;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

/* 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;
}

/* 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: #222;
  padding: 10px 20px;
  display: block;
}

.dropdown-menu a:hover {
  /* background-color: #84adef; */
  background-color:  #1959bf;;
  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: 280px;
    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;
    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 ======= */

.top-menu-bar {
  /* background: #f2f5f4; */
  background: #fff;
}

.top-menu-bar .nav-link {
  color: #222;
  /* color: #fff; */
  font-weight: 500;
  padding: 10px 15px;
}

.top-menu-bar .nav-link:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

/* .top-menu-bar .nav-link.active {
  background: #146c43;
  border-radius: 4px;
} */
/* Slider container */

#single_slider {
  padding-top: 20px;
  position: relative;
  width: 100%;
  /* height: 100vh;  */
   height: auto; 
  overflow: hidden;
  /* padding-top: 60px; */
}

/* Each slide image */
#single_slider .swiper-slide img {
  width: 100%;
  /* height: 100vh;        */
   height: auto;
  object-fit: cover;   /* cover entire slide */
}

/* Optional: overlay text on slide */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.slide-overlay h2 {
  font-size: 48px;
  font-weight: bold;
}

.slide-overlay h4 {
  font-size: 24px;
  margin-top: 10px;
}

/* Navigation arrows */

/*тАФ рж╕рж╛ржзрж╛рж░ржг ржирзЗржнрж┐ржЧрзЗрж╢ржи рж╕рзНржЯрж╛ржЗрж▓ (ржЙржнрзЯ ржмрж╛ржЯржирзЗрж░ ржЬржирзНржп) тАФ*/
.swiper-button-next,
.swiper-button-prev {
    background: #ffffff;
    color: #34495e;
    border: none;
    cursor: pointer;
    
    /* ржирж┐ржЦрзБржБржд ржЧрзЛрж▓ (Circular) ржмрж╛ржЯржи рждрзИрж░рж┐рж░ ржЬржирзНржп */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    /* ржкржЬрж┐рж╢ржирж┐ржВ */
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* ржирж┐ржЦрзБржБрждржнрж╛ржмрзЗ ржорж╛ржЭржЦрж╛ржирзЗ рж░рж╛ржЦрж╛рж░ ржЬржирзНржп */
    z-index: 10;
    
    /* ржкрзНрж░рж┐ржорж┐рзЯрж╛ржо рж╣рж╛рж▓ржХрж╛ рж╢рзНржпрж╛ржбрзЛ */
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    
    /* рж╕рзНржорзБрже ржЕрзНржпрж╛ржирж┐ржорзЗрж╢ржи ржЗржлрзЗржХрзНржЯ */
    transition: all 0.3s ease;
}

/*тАФ ржмрж╛ржорзЗрж░ ржмрж╛ржЯржи (.swiper-button-prev) тАФ*/
.swiper-button-prev {
    left: 15px; /* рж╕рзНржХрзНрж░рж┐ржирзЗрж░ ржмрж╛ржо ржкрж╛рж╢ ржерзЗржХрзЗ ржПржХржЯрзБ ржлрж╛ржБржХрж╛ */
}

/*тАФ ржбрж╛ржирзЗрж░ ржмрж╛ржЯржи (.swiper-button-next) тАФ*/
.swiper-button-next {
    right: 15px; /* рж╕рзНржХрзНрж░рж┐ржирзЗрж░ ржбрж╛ржи ржкрж╛рж╢ ржерзЗржХрзЗ ржПржХржЯрзБ ржлрж╛ржБржХрж╛ */
}

/*тАФ ржорж╛ржЙрж╕ рж╣рзЛржнрж╛рж░ (Hover) ржХрж░рж▓рзЗ ржпрзЗ рж╕рзБржирзНржжрж░ ржЗржлрзЗржХрзНржЯ рж╣ржмрзЗ тАФ*/
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #34495e; /* ржмрзНржпрж╛ржХржЧрзНрж░рж╛ржЙржирзНржб ржХрж╛рж▓рж╛рж░ ржЪрзЗржЮрзНржЬ рж╣ржмрзЗ */
    color: #ffffff;      /* ржнрзЗрждрж░рзЗрж░ ржЕрзНржпрж╛рж░рзЛ ржмрж╛ ржЯрзЗржХрзНрж╕ржЯ рж╕рж╛ржжрж╛ рж╣ржмрзЗ */
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.3); /* рж╢рзНржпрж╛ржбрзЛ ржЖрж░ржУ ржЧрзНрж▓рзЛ ржХрж░ржмрзЗ */
    transform: translateY(-50%) scale(1.05); /* ржмрж╛ржЯржиржЯрж┐ рж╕рж╛ржорж╛ржирзНржп ржмрзЬ рж╣ржмрзЗ */
}

/* Swiper ржПрж░ ржбрж┐ржлрж▓рзНржЯ ржЖржЗржХржи рж╕рж╛ржЗржЬ ржХрж┐ржЫрзБржЯрж╛ ржЫрзЛржЯ ржУ рж╕рзБржирзНржжрж░ ржХрж░рж╛рж░ ржЬржирзНржп */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}
/* Pagination dots */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .slide-overlay h2 {
    font-size: 32px;
  }
  .slide-overlay h4 {
    font-size: 18px;
  }
}

/* ======= Banner Part end ======= */


/* ======= Featured Products Part start ======= */
#featured_products{
  padding: 40px 0;
}
.featuredSwiper{
  padding-bottom: 0px !important;
  overflow: hidden;
}

.featuredSwiper .swiper-wrapper{
  align-items: stretch;
  height: auto !important;
}

.featuredSwiper .swiper-slide{
  display: flex;
  height: auto !important;
}
#featured_products .badge_new{
  background: #0d6efd;
}


/* ======= Featured Products Part end ======= */
/* =========================================
   NEW ARRIVAL SECTION (FULL RESPONSIVE)
========================================= */

#new_arrival{
  /*padding: 60px 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);
}

.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;
  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;
}

#top_rated .badge_new{
  background: #ff9800;
}
/* ===== Top Rated Section End ===== */

/* ======= Client Part start ======= */
/* ======= CLIENT FIX FULL HEIGHT CLEAN ======= */

/* #clients {
  padding: 40px 0 !important;
} */

/* Swiper container */
.clientSwiper {
  overflow: hidden;
  height: 220px;
}

/* 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;
  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(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
 
}

/* inner spacing clean */
.client_card img {
  height: 60px;
  margin-bottom: 8px;
  object-fit: contain;
}

.client_card h6 {
  margin: 5px 0;
  font-weight: 600;
  
}

.client_card p {
  margin: 0;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}


/* ======= 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;
}

.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;
}


/* 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 ===== */
#social_media_section{
  position: relative;
  padding: 60px 0;
  background: url('/frontend/aircond_assets/images/social-bg.png') no-repeat center center/cover;
  z-index: 1;
 
}

/* Overlay */
#social_media_section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 107, 138, 0.85);
  z-index: -1;
}

/* Heading */
.social_heading{
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Group */
.social_group{
  margin-bottom: 30px;
}

.social_title{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Row */
.social_row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Card */
.social_item{
  width: 180px;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* Icon */
.social_item i{
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}
.social_item span{
  font-size: 16px;
 font-weight: 500;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Name */
.social_item span{
  font-size: 14px;
  font-weight: 700;
}

/* Hover */
.social_item:hover{
  background: #3165b9;
  border-color: #3165b9;
}

/* ==== All Product part start === */
#all_product{
  padding-top: 30px;
  padding-bottom: 60px;
}
.product-info h5{
  padding-bottom: 10px;
}
/* ==== 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 === */