
:root {
  --font-base: "Open Sans", Helvetica, Arial, sans-serif;
  --theme-primary: #f78222;
  --theme-secondary: #0062bd;
  --theme-accent: #90e0ef;
  --theme-bg: #f1f3f5;
  --theme-dark: #333e48;
  --theme-lightdark: #334141;
  --theme-main-dark: #1e2022;
  --theme-red: #ee0000;
  --theme-light-gray: #878787;
  --theme-text-gray: #7c7c7c;
  --theme-muted: #adb5bd;
  --theme-highlight: #f78222;
  --theme-white: #fff;
  --theme-bg-cream: #fffaf0;
  --theme-bg-snow: #fffafa;
  --theme-bg-ghost: #f8f8ff;
}

/* ================================
   Global Reset & Base
================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--theme-dark);
  background-color: var(--theme-white);
}

/* ================================
   Typography
================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-primary);
  letter-spacing: -0.5px;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--theme-dark);
  font-size: 18px;
  margin-bottom: 0 !important;
}

a {
  color: var(--theme-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--theme-secondary);
}

.owl-theme .owl-dots {
  text-align: center;
  margin-top: 0;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 30px;
  background: var(--theme-primary);
}

.breadcrumb-item a{
text-decoration: none;
}
.theme_main_color{
  color: var(--theme-primary);
}
.theme_second_main_color{
  color: var(--theme-secondary);
}
  .wow {
    visibility: hidden;
  }
    #topBtn {
      position: fixed;
      bottom: 30px;
      right: 15px;
      width: 50px;
      height: 50px;
      background-color: var(--theme-primary);
      color: white;
      border: none;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      display: none;
      font-size: 24px;
      text-align: center;
      line-height: 30px;
      transition: all 0.4s ease;
      z-index: 99;
    }

    #topBtn:hover {
      background-color: var(--theme-secondary);
    }

    .text_size_sm{
      font-size: 13px !important;
      color: var(--theme-dark);
    }

      .sm_para{
      font-size: 15px !important;
      color: var(--theme-dark);
    }
 
      .text_size_medium{
      font-size: 16px !important;
      color: var(--theme-secondary);
      font-weight: 600;
    }

    .color_pri{
color: var(--theme-primary);

    }

    .color_sec{
      color: var(--theme-secondary);
    }
    .color_green{
      color: #55a455;
    }
    .font-15{
      color: var(--theme-lightdark);
      font-size: 15px;
      font-weight: 600;
    }
/* ================================
   Buttons
================================== */
.add_cart_btn {
  margin-top: 20px;
  border: 2px solid var(--theme-secondary);
  background-color: var(--theme-white);
  color: var(--theme-primary);
  border-radius: 40px;
  font-weight: 600;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.add_cart_btn:hover {
  background-color: var(--theme-accent);
  color: var(--theme-white);
  border-color: var(--theme-accent);
}

.theme_btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #fff;
    color: var(--theme-secondary);
    border: 1px solid var(--theme-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme_btn:hover {
    background-color: var(--theme-secondary);
    color: #fff;
    text-decoration: none;
}

.theme_btn_2 {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #fff;
    color: var(--theme-secondary);
    border: 1px solid var(--theme-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme_btn_2:hover {
    background-color: var(--theme-secondary);
    color: #fff;
    text-decoration: none;
}

.reset_btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #fff;
    color: var(--theme-dark);
    border: 1px solid var(--theme-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.reset_btn:hover {
    background-color: var(--theme-red);
    color: #fff;
    text-decoration: none;
}


/* ================================
   Top Bar
================================== */
.top_bar_main {
  background-color: #f5f5f5;
  padding: 8px 0;
  color: var(--theme-dark);
  font-size: 14px;
}

.top_bar_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_bar_menu ul li a {
text-decoration: none;
color: var(--theme-dark);
}


.top_bar_main p a {
  color: var(--theme-text-gray);
  font-size: 13.0061px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.top_bar_main p a:hover {
  color: var(--theme-dark);
}

.top_bar_main ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.813rem;
  color: var(--theme-lightdark);
}

.top_bar_main li {
  padding: 0 10px;
  border-right: 1px solid #ccc;
  font-size: 14px;
  display: flex;
  align-items: center;

}

.top_bar_main li:last-child {
  border-right: none;
}
.top_bar_menu .dropdown{
  color: var(--theme-dark) !important;
}

.language-dropdown:hover .dropdown-menu {
  display: block;
}

.language-dropdown {
  position: relative;
}

.language-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px !important;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  background-color: #fff;
  z-index: 1000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================================
   Header
================================== */
.main_header {
  background-color: var(--theme-white);
  padding: 15px 0 !important;
  border-bottom: 1px solid #CECBCB;
 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}



.main_header .navbar-brand img {
  height: 55px;
}

.main_header .nav-link {
  font-weight: 700;
  color: var(--theme-dark);
}

.main_header .dropdown-menu {
  top: 155% !important;
  left: -190px !important;
  border-top: 2px solid var(--theme-primary);
  width: 280px;

}

.main_header .dropdown-menu li {
  font-size: 12px;

}

.main_header .dropdown-item{
font-weight: 600 !important;
}
.header_menu_img {
  width: 25px;   
  height: 30px;     
  object-fit: contain; 
  display: block;
  text-align: start;
}

@media (min-width: 768px) {
  .cs_sub_menu_wrapper {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    z-index: 999;
    background: #fff;
    padding: 2.5rem;
    min-width: 1000px;
    height: 800px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .has-submenu:hover .cs_sub_menu_wrapper {
    display: block;
  }
}

.cs_sub_menu {
  display: flex;
  gap: 10px;
}

.cs_sub_menu h6.submenu-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--theme-main-dark);
}

.cs_sub_menu h6.submenu-title a {
  color: var(--theme-main-dark);
  text-decoration: none;
}

.cs_sub_menu ul li {
  padding: 5px 0 !important;
}

.cs_sub_menu ul li a {
  text-decoration: none;
  color: var(--theme-dark);
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
}

.cs_sub_menu ul li a:hover {
  color: #000000;
  border-bottom: 1px solid #000000;
}

.navbar_icon_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: sans-serif;
}

.cart_icon_area {
  position: relative;
  font-size: 20px;
  color: var(--theme-dark);
}

.cart_badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--theme-primary);
  color: var(--theme-white);
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px white;
}

.cart_price {
  font-weight: bold;
  color: var(--theme-dark);
}


.bottom_navbar {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-family: sans-serif;
  font-size: 14px;
}

.bottom_navbar_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.label_text {
  margin-right: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.bottom_navbar_nav_links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom_navbar_nav_links li {
  border-left: 1px solid #ccc;
  padding-left: 15px;
  white-space: nowrap;
}

.bottom_navbar_nav_links li:first-child {
  border-left: none;
  padding-left: 0;
}

.bottom_navbar_nav_links a {
  text-decoration: none;
  color: var(--theme-dark);
  white-space: nowrap;
  transition: color 0.3s;
}

.bottom_navbar_nav_links a:hover {
  color: var(--theme-main-dark);
}

/* ================================
   Search Bar
================================== */
.nav_search_wrapper {
  border: 2px solid var(--theme-primary);
  border-radius: 50px;
  overflow: hidden;
  background: var(--theme-white);
  max-width: 700px;
}

.nav_category_select:focus {
  box-shadow: none !important;
  border-color: var(--theme-primary);
  outline: none !important;
}

.nav_search_input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 50px 0 0 50px;
}

.nav_search_btn {
  background-color: var(--theme-secondary);
  border: none;
  border-radius: 0 50px 50px 0;
  width: 50px;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   Icon Tooltip
================================== */
.navbar_icon_wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.icon_hide_title {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translate(-50%, -100%);
  background-color: #000;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.navbar_icon_wrapper:hover .icon_hide_title {
  opacity: 1;
}

/* ================================
   Slider
================================== */
.slider_bg_image {
  background-image: url(../images/slider-bg.jpg);
  background-size: cover;
  background-position: center;
  background-color: var(--theme-bg);
  height: 420px;
}

.owl-carousel .item {
  padding: 40px;
  border-radius: 10px;
  text-align: center;

}

.slider_title_1 {
  font-size: 3.00038rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-dark);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  text-align: start;
}

.slider_title_2 {
  font-size: 4.50012rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-dark);
  line-height: 1.1;
  text-align: start;
}

.slider_subtitle {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-dark);
  margin-top: 1rem;
  letter-spacing: 0.5px;
  text-align: start;
}

.slider_img img {
  max-width: 80%;
  height: 350px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.slider_item_title {
  font-size: 1.06225rem;
  font-weight: 700;
  color: var(--theme-secondary);
  margin-bottom: 0.5rem;
}

.slider_item_subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--theme-dark);
  margin-bottom: 1rem;
}

.item_slider_price .cross_price {
  font-size: 1.06225rem;
  color: var(--theme-dark);
  text-decoration: line-through;
  font-weight: 400;
}

.item_slider_price {
  color: var(--theme-red);
  font-size: 34.0061px;
  font-weight: 400;
}

/* ================================
   Cart Progress
================================== */
.cart_progress_container {
  width: 100%;
  max-width: 360px;
  font-family: var(--font-base);
}

.cart_progress_labels {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 6px;
  font-size: 14px;
  color: var(--theme-dark);
}

.cart_progress_labels b {
  font-weight: 600;
}

.cart_progress {
  width: 100%;
  height: 14px;
  border-radius: 50px;
  background-color: #eeeeee;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cart_progress_fill {
  height: 100%;
  width: 17.6%;
  background-color: var(--theme-primary);
  border-radius: 50px 0 0 50px;

}

.offer_count {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.time_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--theme-primary);
  padding: 10px;
  border-radius: 8px;
}

.time_box span:first-child {
  font-size: 2.12538rem;
  font-weight: 400;
  color: #383838;

}

.time_box span:nth-child(2) {
  font-size: 12px;
  font-weight: 400;
  color: #383838;
}

.invisible {
  visibility: hidden;
}

/* trending  product   */
/* Custom nav-pills styling */
.custom-pills .nav-link {
  border-radius: 50px;
  background-color: #f2f2f2;
  color: var(--theme-text-gray);
  margin: 0 8px;
  padding: 3px 25px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-weight: 500;
  border-radius: 30px !important;
}

.custom-pills .nav-link:hover {
  color: var(--theme-text-gray);
}

.custom-pills .nav-link.active {
  background-color: var(--theme-primary) !important;
  color: var(--theme-white);
  border-color: var(--theme-primary) !important;
}

.go_icon_text a {
  font-size: 14px;
  color: #606060;
  text-decoration: none;
}

.go_icon_text a:hover {
  color: var(--theme-main-dark);
  text-decoration: none;
}
.trending_product {
  background-color: var(--theme-white);
  padding: 60px 0;
}

.pr_slider_main_title {
  font-size: 1.37462rem;
  text-align: start;
  font-weight: 400;
  color: var(--theme-dark);
  letter-spacing: 0.144px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 0;
}

.pr_slider_main_title::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: -18px;
  height: 3px;
  width: 100%;
  background-color: var(--theme-primary);
  border-radius: 2px;
  z-index: 2;
}

.trending-slider .item {
  padding: 0;
  margin: 20px 1px;
}

.pr_card {
  background: var(--theme-white);
  border-right: 1px solid #d1cdcd;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
  padding: 1rem;

}

.pr_card:hover {
  box-shadow: rgba(1, 1, 1, 0.3) 0px 0px 6px 0px;
  border-right: none !important;
  position: relative;
}

.pr_card_title a {
  color:var(--theme-primary);
  font-size: 12px;
  font-weight: 600;
  text-align: start;
  display: block;
  text-decoration: none;
}

.pr_card_subtitle a {
  color: var(--theme-secondary);
  font-weight: 600;
  text-decoration: none;
  text-align: start;
  display: block;
  font-size: 12px;
  height: 80px;
}

.pr_card_img {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
}

.pr_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.pr_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin-top: 10px;
}

.pr_card_price {
  font-size: 20px;
  font-weight: 400;
  color: var(--theme-lightdark);
}

.pr_card_cart {
  background-color: var(--theme-primary);
  color: var(--theme-white);
  border: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pr_card_cart:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.pr_card_hover_footer {
  border-top: 1px solid #e7eaf3;
  margin-top: 15px;
  display: none;
}

.pr_card_hover_footer_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  font-size: 13px;
}

.pr_card_hover_footer_item a {
  text-decoration: none;
  color: var(--theme-text-gray);
}

.pr_card_hover_footer_item a:hover {
  text-decoration: none;
  color: var(--theme-text-gray);
}

.pr_card:hover .pr_card_hover_footer {
  display: block;
}

.best_deals_section {
  background-color: #f5f5f5;
  padding: 50px 0;
  width: 100%;
}

.best_deals_cards {
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  border-radius: 8px;
  flex-direction: column;
}

.best_deals_cards_img img {
  max-width: 100%;
  height: auto;
}

.best_deals_cards_title {
  max-width: 100%;
}

.best_deals_cards_title h6 {
  font-size: 18px;
  font-weight: 300;
  color: var(--theme-main-dark);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.best_deals_cards_title a {
  font-size: 0.938rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--theme-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.best_deals_cards_title a span {
  background-color: var(--theme-primary);
  padding: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.best_deals_cards_title a:hover {
  color: var(--theme-main-dark);
}

.best_deals_cards_title a span:hover {
  transform: rotate(90deg);
}

.popular_product {
  background-color: #ffffff;
  padding: 60px 0;
}

.pop_pro_slider .item {
  padding: 0;
  margin: 20px 1px;
}

.category_items_main {
  background-color: var(--theme-white);
  padding: 40px 0;
  width: 100%;
}

.category_items_box {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  transition: transform 0.4s ease;
}

.category_items_box:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.category_items_img {
  height: 150px;
}

.category_items_title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.169px;
  color: var(--theme-dark);
  margin: 0;
}

.partner_logo_slider {
  margin: 20px 0;
}

.partner_logo_slider .container {
  border-top: 1px solid #e7eaf3;
  border-bottom: 1px solid #e7eaf3;
  padding: 30px 0;
}

#partnerLogoCarousel {
  width: 90%;
  margin: auto;
}

.partner_logo_slider .item {
  text-align: center;
  padding: 10px;
}

.partner_logo_slider .item img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  transition: 0.3s ease;
}

.partner_logo_slider .item img:hover {
  transform: scale(1.05);
}

.partner-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 2;
}

.partner-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-secondary);
  border-radius: 50%;
  background-color: transparent;
  color: var(--theme-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  pointer-events: all;
}

.partner-nav button:hover {
  background-color: var(--theme-highlight);
  color: #fff;
  border-color: var(--theme-highlight);
}

.footer_news_letter {
  background-color: var(--theme-primary);
  padding: 1em 0;
  width: 100%;
}

.footer_news_letter .news_letter_icon {
  font-size: 2rem;
  color: #fff;
}

.footer_news_letter .news_letter_title {
  font-size: 20px;
  color: #fff;
}

.footer_news_letter .news_letter_subtitle {
  font-size: 18px;
  color: #fff;
  margin-left: 20px;
}

.newsletter-form {
  display: flex;
  margin-top: 4px;
  max-width: 100%;
}

.newsletter_email {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 16px;
  outline: none;
  height: 40px;
}

.newsletter_button {
  background-color: var(--theme-dark);
  color: white;
  padding: 9px 25px;
  border: none;
  border-radius: 0 25px 25px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter_button:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* footer css  */
.footer_main {
  background-color: var(--theme-white);
  padding: 50px 0;
  width: 100%;
}

.footer_main .headset {
  font-size: 30px;
  color: var(--theme-primary);
  line-height: 1;
}

.footer_main .support-text p {
  margin: 0;
  font-size: 12px;
  color: var(--theme-text-gray);
}

.footer_main .support-text h5 {
  margin: 0;
  font-size: 15px;
  color: var(--theme-main-dark);
}

.footer_main ul li {
  margin-bottom: 3px;
}

.footer_main ul li a {
  text-decoration: none;
  color: var(--theme-dark);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer_main ul li a:hover {
  color: var(--theme-primary);
}

.con_info h6 {
  color: var(--theme-dark);
  font-size: 15px;
  font-weight: 600;
}

.con_info p {
  font-family: var(--font-base);
  font-size: 13px;
  line-height: 1.6;
}

.con_info a {
  text-decoration: none;
  transition: color 0.3s;
}

.con_info a:hover {
  color: var(--theme-primary);
}

.con_info .icon_circle {
  background-color: var(--theme-secondary);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.social_list p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.social_list a {
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
}

.social_list a:hover {
  text-decoration: underline;
}
.footer_logo{
  width: 35%;
}
.footer_social_media {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.footer_social_media:hover {
  background-color: var(--theme-primary);
  color: #fff !important;
}

.copy_right {
  width: 100%;
  background-color: #eaeaea;
  padding: 15px 0;
  color: var(--theme-dark);
}

.payment_img {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment_img img {
  max-width: 2.5rem;
}



.custom_row_bottom_border {
  border-bottom: 1px solid rgb(173, 166, 166) !important;

}

.theme_banner_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.theme_banner_img {
  width: 100%;
  height: 550px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.theme_banner_img img{
  width: 100%;
  height:100%;
  object-fit: cover;
    border-radius: 10px;
}


.address_info {
  background-color: var(--theme-bg-snow);
  padding: 50px 0;
  width: 100%;

}

.add_info_card {
  background-color: var(--theme-white);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--theme-dark);
}

.address_info .con_info_icon {
  background-color: var(--theme-primary);
  height: 70px;
  width: 70px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-white);
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

.add_info_card h5 {
  color: var(--theme-main-dark);
  font-size: 20px;
  letter-spacing: 1.7px;
  text-align: center;
  margin: 20px;
}

.add_info_card p {
  font-size: 14px;
}

.add_info_card {
  text-align: center;
}

.con_info_sec {
  background-color: var(--theme-bg-cream, #fcefee);
  padding: 50px 0;
  width: 100%;
}

.map_info_card {
  background-color: var(--theme-white);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--theme-dark);
}

.theme_heading_border {
  position: relative;
  display: flex;
  align-items: center;
}

.theme_heading {
  position: relative;
  color: var(--theme-main-dark);
  font-size: 2rem;
  letter-spacing: 2px;
  padding-bottom: 15px;
  font-weight: 600;
}

.theme_heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--theme-primary);
  width: 100%;
  z-index: 1;
}

.theme_heading_border::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ddd;
  margin-top: 44px;
}



.theme_heading_h5 {
  position: relative;
  color: var(--theme-main-dark);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-left: 10px;
  text-transform: capitalize;
}

.theme_heading_h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: var(--theme-primary);
  border-radius: 2px;
}



.theme_sub_heading  {
    font-size: 17px;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    word-break: break-word;
    transition: color 0.3s ease;
}
.theme_sub_heading:hover {
    color: #5a6268;
}


.contact_form_card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.custom_contact_form .form-control {
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  padding: 10px 12px;
  font-size: 15px;
  background-color: #fff;
}

.custom_contact_form .form-control:focus {
  border-color: var(--theme-primary);
  outline: none;
}

.custom_contact_form .form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  display: flex;
  align-items: center;
}

.custom_contact_form .form-label i {
  font-weight: bold;
}

.custom_contact_form .btn-primary {
  background-color: var(--theme-primary);
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  transition: ease-in-out 0.4s;
}

.custom_contact_form .btn-primary:hover {
  background-color: var(--theme-secondary);
}

.about_main_sec h6 {
  color: var(--theme-secondary);
  font-size: 18px;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-top: 30px;
}

.about_main_sec p {
font-size: 13px;
}

.why_choose_box {
  background-color: #e6ecf5;
  border-radius: 15px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why_choose_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why_choose_box h5 {
  color: var(--theme-primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.why_choose_box p {
  color: var(--theme-main-dark);
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  font-weight: 500;
}

.all_product_list {
  background-color: #f5f5f5;
  padding: 50px 0;
  width: 100%;
}

.pro_list_card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pro_list_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.all_product_list_img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 3px solid #eee;
  position: relative;
}

.all_product_list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pro_list_card:hover .all_product_list_img img {
  transform: scale(1.05);
}


.pro_list_card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--theme-primary);
  text-align: center;
  letter-spacing: 1.5px;
  margin: 1.2rem 0 0.8rem;
  position: relative;
  transition: 0.4s ease-in-out;
}

.pro_list_card h3:hover {
color: var(--theme-secondary);
}

.pro_list_card h3 a {
  color: inherit; 
  text-decoration: none; 
  display: inline-block;
}


.pro_list_card h3::after {
  content: '';
  display: block;
  width: 250px;
  height: 2px;
  background-color: var(--theme-secondary);
  margin: 8px auto 0;
  border-radius: 3px;
}

.pro_list_card p {
  color: var(--theme-dark);
  font-size: 13px;
  padding: 1rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0;
  flex-grow: 1;
}

.view_more_btn {
  display: block;
  width: max-content;
  margin: 0 auto 1rem;
  padding: 8px 20px;
  background-color: var(--theme-secondary);
  color: #fff;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view_more_btn:hover {
  background-color: var(--theme-primary);
  color: #fff;
}
.product_details {
  background: #fff;
  padding: 40px 20px;

}

.product-gallery {
  max-width: 500px;
  margin: auto;
  border: 1px solid var(--theme-muted);
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.pro_de_carousel .item {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.product-gallery  .pro_de_carousel .item {
 padding: 0px !important;
}
.pro_de_carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.pro_search_icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--theme-secondary);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.5s ease;
}


.pro_search_icon i {
  color: #fff;
  font-size: 18px;
}

.pro_search_icon:hover {
  background: var(--theme-primary);
}


.thumb-grid {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-start; 
  flex-wrap: nowrap; 
  overflow-x: auto;  
  scrollbar-width: thin;      
  -ms-overflow-style: none; 
  padding-bottom: 12px;
}

.thumb-grid::-webkit-scrollbar {
  height: 6px; 
}

.thumb-grid::-webkit-scrollbar-thumb {
  background: var(--theme-muted);
  border-radius: 4px;
}

.thumb-grid::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 6px; 
}

.thumb-grid .item {
  cursor: pointer;
  padding: 2px;
  flex: 0 0 auto; 
}

.thumb-grid .item img {
  width: 100px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--theme-muted);
  border-radius: 6px;
  transition: border 0.3s;
  padding: 10px;
}

.thumb-grid .item.active img {
  border-bottom: 2px solid var(--theme-primary);
}

.product_meta .item_number {
  color: var(--theme-primary);
  font-weight: 600;
  font-size: 1rem;
}

.product_meta .ean {
  color: #6c757d;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product_features li {
  font-size: 12px;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 15px;
}

.product_features li::before {
  content: "❯";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-muted);
  font-weight: bold;
}

.product_title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-secondary);
}

.rating {
  color: #f39c12;
  font-size: 1.1rem;
}

.price_on_request_btn {
  padding: 5px 10px;
  text-decoration: none;
  background-color: var(--theme-primary);
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.price_on_request_btn:hover {
  background-color: var(--theme-secondary);
  color: #fff;
  transform: translateY(-5px);
}


#productTab .nav-item .nav-link {
color: var(--theme-dark); 
}
#productTab .nav-item .nav-link.active {
  font-weight: 700;
  color:var(--theme-main-dark);
  position: relative;
  background-color: transparent;
  border-bottom: 2px solid var(--theme-primary); 
}

#productTab .nav-item .nav-link.active::after {
  content: '';
  height: 4px;
  width: 10px;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background-color: var(--theme-primary);
}

#productTab .nav-item button {
  border: none;
}

#technical-details{
  padding: 60px 15px;
}
#item-document{
  padding: 60px 15px;
}
#item-description{
  padding: 60px 15px;
}
#customer-reviews{
  padding: 60px 15px;
}

#item-description h6{
 color: var(--theme-secondary);
 font-weight: 600;
}
#item-description p{
font-size: 14px;
}
.star-rating span {
  cursor: pointer;
  font-size: 1.5rem;
}
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: gold;
}

.review_rating_section p{
color: var(--theme-dark);
font-size: 14px;
}
.review_rating_section h6{
color: var(--theme-dark);
font-size: 14px;
}
.review_rating_section h6 span{
color: var(--theme-dark);
font-size: 12px;
font-weight: 500;
}

.items_disc h4{
color: var(--theme-secondary) !important;
}
.items_disc p{
font-size: 15px;
}

.category_theme_page{
  padding: 60px 0;
  width: 100%;
  background-color:var(--theme-white);
}
.theme_category_items_btn{
  background-color:var(--theme-primary);
  color: var(--theme-white);
  padding: 10px 15px;
  transition: all ease-in-out 0.4s;
  cursor: pointer;
}
.theme_category_items_btn:hover{
  background-color:var(--theme-secondary);

}
.theme_category_items_list {
  overflow: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: height 0.7s ease;
}

.theme_category_items_list.open {
  height: auto;
}

.theme_category_items_list li a {
  padding: 10px 14px;
  border-bottom: 1px solid #d3e4f0;
  font-size: 13px;
  font-weight: 500;
  display: flex; align-items: center;
  justify-content: space-between;
}
.theme_category_items_list li a {
 text-decoration: none;
 color:var(--theme-secondary);
}
.theme_category_items_list li a:hover {
 color: var(--theme-primary);
}

/* sub category list  */
.sub_product_list {
  background-color: var(--theme-bg-snow);
  padding: 60px 0;
}

.sub_product_list h2 {
    font-size: 17px;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    word-break: break-word;
    transition: color 0.3s ease;
}
.sub_product_list h2:hover {
    color: #5a6268;
}



.subpro_list_card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e2e8f0;
}

.subpro_list_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--theme-secondary);
}

.subpro_list_card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--theme-white);
border-bottom: 1px solid rgb(221, 218, 218);
padding: 15px;
}

.subpro_list_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.subpro_list_card h3 {
  text-align: center;
  margin: 5px 0;
  padding: 0 10px;
  position: relative;
  line-height: 1.4;
}

.subpro_list_card h3 a {
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-primary);
  text-decoration: none;
  letter-spacing: 0.8px;
  transition: color 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}


.subpro_list_card:hover h3 a {
  color: var(--theme-secondary);
}

.view_more_btn_2 {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 8px 0;
  background-color: var(--theme-secondary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: 0 0 8px 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view_more_btn_2:hover {
  background-color: var(--theme-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product_categories_intro_content h5 {
    color: var(--theme-secondary);
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.4rem; 
    letter-spacing: 1px;
   text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease; 
}



.product_categories_intro_content p{
color: var(--theme-dark);
font-size: 14px;
font-weight: 500;
margin-top: 20px;
line-height: 25px;

}
.product_categories_intro_content ul li{
color: var(--theme-dark);
font-size: 13px;
font-weight: 600;
line-height: 25px;
}

.about_brand_text h6 {
    margin-top: 30px;
    color: var(--theme-primary); 
    font-size: 18px;
    font-weight: 600; 
    letter-spacing: 0.5px; 
    transition: color 0.3s ease; 
}

.about_brand_text h6:hover {
    color: var(--theme-secondary); 
}

.main_carrier_sec{
  background-color: var(--theme-white);
  padding: 60px 0;
}
.main_carrier_sec .container{
  background-color: var(--theme-bg-ghost);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.hiring_heading {
  font-size: 2.5rem;
  background-color: var(--theme-secondary);
  color: var(--theme-white);
  font-weight: bold;
  text-align: center;
letter-spacing: 1.4px;
padding: 20px 0;
border-radius: 10px;
}
.job_title{
  font-size: 22px;
  color: var(--theme-dark);
  font-weight: 700;
}
.job_opening{
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-secondary);
}
.apply_now_btn{
  background-color: var(--theme-primary);
  color: var(--theme-white);
  padding: 8px 15px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 30px;
}

.main_carrier_form_sec{
  background-color: var(--theme-white);
  padding: 60px 0;
}
.main_carrier_form_sec .container{
  background-color: var(--theme-bg-ghost);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.carr_app_title{
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-secondary);
  letter-spacing: 2px;
}
.about_job_txt{
  font-size: 14px;
}

.main_carrier_form_sec .form-control {
    height: 45px;   
    font-size: 15px;  
    border-radius: 8px;
     color: #6c757d !important; 
}


.main_carrier_form_sec textarea.form-control {
    height: auto;   
    min-height: 60px; 
}

    .thankyou-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px 50px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      animation: fadeIn 1s ease-in-out;
    }

    .thankyou-box h1 {
      font-size: 2rem;
      color: #28a745;
      margin-bottom: 15px;
      animation: scaleUp 0.6s ease-in-out;
    }

    .thankyou-box p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 35px;
    }

    .checkmark {
      font-size: 4rem;
      color: #28a745;
      margin-bottom: 15px;
      animation: bounce 1s ease infinite;
    }

    .btn-back {
      display: inline-block;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-top: 20px;
      box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
      transition: all 0.3s ease;
    }

    .btn-back:hover {
      background: linear-gradient(135deg, #0056b3, #004099);
      box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
      transform: translateY(-3px);
      color: var(--theme-white) !important;
    }
  


    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scaleUp {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

.courier-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  transition: all 0.3s ease;
}

.courier-partner-card img {
  max-height: 50px;
  object-fit: contain;
}

.courier-partner-card:hover {
  border-color:var(--theme-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.login_main {
  background-color: var(--theme-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
.login_card {
  background: var(--theme-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 400px;
  text-align: center;
}
.login_card h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login_card form {
  display: flex;
  flex-direction: column;
}
.input_group {
  position: relative;
  margin-bottom: 15px;
}
.input_group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
}
.input_group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}
.login_card button {
  background: var(--theme-secondary);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
    transition: background 0.3s ease;
}
.login_card button:hover {
  background: var(--theme-primary);
}
.signup_link {
  margin-top: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.signup_link a {
  color: var(--theme-secondary);
  text-decoration: none;
  font-weight: 500;
}
.signup_link a:hover {
  text-decoration: underline;
}

.ragister_main {
  background-color: var(--theme-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.ragister_main_card {
  background: var(--theme-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 420px;
  text-align: center;
}

.ragister_main_card h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ragister_main_card form {
  display: flex;
  flex-direction: column;
}

.input_group {
  position: relative;
  margin-bottom: 15px;
}

.input_group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
}

.input_group input {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

.input_group input:focus {
  border-color: var(--theme-secondary);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.ragister_main_card button {
  background: var(--theme-secondary);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.ragister_main_card button:hover {
  background: var(--theme-primary);
}

.signup_link {
  margin-top: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.signup_link a {
  color: var(--theme-secondary);
  text-decoration: none;
  font-weight: 500;
}

.signup_link a:hover {
  text-decoration: underline;
}

.filter_all_product_main{
  background-color: var(--theme-white);
  padding: 50px 0;
}
.filter_all_product_main p{
 font-size: 13px !important;
}

.btn_square{
background-color: var(--theme-white);
border: 1px solid var(--theme-main-dark);
border-radius: 7px;
font-size: 14px;
padding: 5px 10px;
}

.btn_round{
border: 1px solid var(--theme-secondary);
color: var(--theme-secondary);
padding: 3px 20px;
text-decoration: none;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
}
.btn_round:focus,
.btn_round:active {
  border: 2px solid var(--theme-primary);
}


.pop_filter_droupdown{
  font-size: 13px !important;
  padding: 0 !important;
}
.pop_filter_droupdown li{
 border-bottom: 1px solid var(--theme-light-gray);
  padding:5px 0;
}

.filter_sidebar {
  background: #fff;
  border-radius: 6px;
}


 #filterAccordion .accordion-button{
 font-size: 14px;
}



.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordion-body {
  padding: 10px;
  font-size: 13px !important;
}

.badge {
  font-size: 12px;
  font-weight: 500;
}


.range_filter input[type="text"] {
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  height: 45px;
}

.range_filter button {
  padding: 10px 20px;
  border-radius: 6px;
  height: 45px;
}

.filter_by_select{
  padding: 5px 10px;
}
.filter_by_select select{
  font-size: 13px !important;
}

.filter_by_select select:focus{
 border: 1px solid var(--theme-primary);
 box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.pro_list_fil_row{
margin-bottom: 20px;
border: 2px solid rgb(235, 234, 234);
}
.pro_list_fil_row h6:hover{
color: var(--theme-primary);
}
.pro_l_part_logo {
  height: 50px; 
  width: 200px; 
  display: flex;
  align-items: center;
 
  overflow: hidden;
}

.pro_l_part_logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}



.pr_l_img {
  height: 180px;
  width: 100%;

}

.pr_l_img img {
  max-height: 100%;
  max-width: 100%; 
  object-fit:cover; 
}



.pc_num {
  font-size: 14px;
  font-weight: 600;
  color:var(--theme-primary);
  margin-bottom: 20px;
}

.pc_offer {
  font-size: 14px;
  font-weight: 700;
  background: #e63946;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 8px;
}

.pc_old {
  font-size: 15px;
  color: #888;
  text-decoration: line-through;
}

.pc_new {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-primary);
  margin: 15px 0;
}

.pc_status {
  font-size: 14px;
  font-weight: 600;
  color: #2ca02c;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc_btn {
  display: inline-block;
  background: var(--theme-secondary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  margin-top: 20px;
}
.pc_btn:hover {
  background: var(--theme-primary);
  color: var(--theme-white);
}

.pr-list_info {
  font-size: 13px;
  line-height: 1.6;  
  color: var(--theme-text-gray);
}

.pr-list_info .pro_data_list {
  border-top: 1px solid var(--theme-text-gray);
  padding: 8px 0;     
 
}

.more_pro_list_links ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.more_pro_list_links ul li {
  position: relative;
  padding-right: 10px;
  text-decoration: none;
}
.more_pro_list_links ul li a {
  text-decoration: none;
   font-weight: 500;
  color: var(--theme-light-gray);
}
.more_pro_list_links ul li::after {
  content: "|";
  position: absolute;
  right: 0;
}

.more_pro_list_links ul li:last-child::after {
  content: "";
}

.info-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
 background-color: #888;
  color: var(--theme-white);
  padding: 2px 5px;
  border-radius: 50%;
  font-size: 10px;
  
}

.info-tooltip {
  display: none;
  position: absolute;
  top: -40%;
  left: 200px; 
  background-color: var(--theme-white);
  transform: translateX(-50%);
 color: var(--theme-secondary);
  border: 1px solid var(--theme-secondary);
  padding: 12px;
  width: 320px;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  z-index: 100;
}


.info-icon:hover .info-tooltip {
  display: block;
}

.pdf_title_des{
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-dark);
}

.pro_details_price_box{
  background-color: #fdfdfd;
  border: 1px solid #dcdcdc;
  padding: 10px;
}

.in_stock_img {
  display: block;
  max-width: 70px;
}

.in_stock_img img {
  width: 100%; 
  height: auto; 
  display: block;
}

.pro_details_price_box p{
font-size: 13px;
font-weight: 600;
color: green;
margin-top: 10px;
}

.footer_keyword_collection {
  background: #f9f9f9;
  padding: 20px 0;
  margin-top: 40px;
}

.seo_footer_box {
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  max-height: 140px; 
  overflow-y: auto; 
  padding: 10px;
  border-top: 1px solid #ddd;
}
.seo_footer_box p{
font-size: 12px;
}



.seo_footer_box a {
  color: #000;
  text-decoration: underline;
  font-size: 12px;
}


.filter_icon{
display: none;
}

.readmore_content {
  overflow: hidden;
  transition: all 0.5s ease;
  height: 0;
}
.intro-text p{
 font-size: 0.9rem;  
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
  line-height: 1.6; 
}

.readmore_content h5 {
  font-size: 1.3rem;
  letter-spacing: 1.5px; 
  margin: 0.75rem 0;   
  font-weight: 600; 
  color: var(--theme-secondary);
}

.readmore_content p {
  font-size: 0.9rem;  
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
  line-height: 1.6; 
}

.pro_2_main{
  background-color: #f5f5f5;
  width: 100%;
  padding: 40px 0;
}

.pro_2_main h4{
  color: var(--theme-secondary);
  font-weight: 600;
  letter-spacing: 1.5px;
}

 /* 25-09-2025  */

 /* all brands pages css  */
 /* Brands Section */
.brands_section {
  margin-top: 30px;
}

.brand_card {
  position: relative;
  background: #fff; /* या transparent अगर चाहो */
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.brand_card img {
  width: auto;  
  height: 60px; 
  max-width: 100%; 
  object-fit: contain; 
  transition: transform 0.3s ease;
}



.brand_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.brand_card:hover img {
  transform: scale(1.1);
}

.brand_card .brand_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0; 
  background: var(--theme-secondary);
  color: var(--theme-white); 
  font-size: 14px;
  font-weight: 600; 
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08); 
  border-radius: 0 0 12px 12px; 
}

.brand_card:hover .brand_title {
  opacity: 1;
  transform: translateY(0);
}
 /* end all brands  */

/* customer section  */
 .our_customers_section {
  margin-top: 10px;
}

.our_customers_card {
  position: relative;
  background: #fff; 
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.our_customers_card img {
  width: auto;  
  height: 40px; 
  max-width: 100%; 
  object-fit: contain; 
  transition: transform 0.3s ease;
}



.our_customers_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.our_customers_card:hover img {
  transform: scale(1.1);
}

.our_customers_card .our_customers_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0; 
  background: var(--theme-secondary);
  color: var(--theme-white); 
  font-size: 14px;
  font-weight: 600; 
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08); 
  border-radius: 0 0 12px 12px; 
}

.our_customers_card:hover .our_customers_title {
  opacity: 1;
  transform: translateY(0);
}
 /* end customer  */
 .custom-compare-table {
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  width: 100%;
  border: 1px solid #ddd;
}

.custom-compare-table thead th {
  background: var(--theme-primary);
  color: var(--theme-white);
  font-weight: 600;
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.custom-compare-table td {
  padding: 14px 12px;
  border: 1px solid #ddd;
  vertical-align: middle;
}



.custom-compare-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #005eb8;
}

.custom-scroll-x {
  overflow-x: auto;
  white-space: nowrap;
}

.custom-scroll-x table {
  min-width: 650px;
}

.prd-detail-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  max-width: 100%;
}

.prd-img img {
  width: 160px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.prd-info {
  flex: 1;
  min-width: 0;
}

.prd-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0 0 6px;
  line-height: 1.4;
  display: block; 
  width: 250px;
}
.prd-title a {
  color: #005eb8;
  text-decoration: none;
}
.prd-title a:hover {
  text-decoration: underline;
}

.prd-stock,
.prd-mfr {
  font-size: 13px;
  margin: 2px 0;
  color: #555;
}

.prd-stock span,
.prd-mfr span {
  font-weight: 600;
  color: #2a2a2a;
}

.prd-price-box {
  text-align: center;
}

.prd-price {
  font-size: 18px;
  font-weight: 700;
  color: #005eb8;
  margin-bottom: 8px;
}

.prd-unit {
  font-size: 13px;
  font-weight: 400;
  color: #555;
}

.prd-price-box .pc_btn,
.prd-price-box .theme_btn {
  display: block;
  width: 80%;
  margin: 10px auto;
  text-align: center;
  font-size: 13px;
  border-radius: 4px;
}

.datasheet_dropdown_items {
  font-size: 0.8rem !important; 
  padding: 8px 0;
  border-radius: 8px;
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.datasheet_dropdown_items li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.datasheet_dropdown_items li:last-child {
  border-bottom: none;
}

.datasheet_dropdown_items .dropdown-item {
  padding: 8px 14px;
  color: #333;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px; 
}

.datasheet_dropdown_items .dropdown-item:hover {
  background-color: var(--theme-secondary);
  color: #fff;
}

.datasheet_dropdown_items .dropdown-item i {
  font-size: 1rem;
  color: var(--theme-primary);
}
.cable_tray_pro_tab_h{
   min-width: 20rem; 
  max-width: 30rem; 

}
.cable_tray_info_tab_h  {
  min-width: 10rem; 
  max-width: 20rem; 
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; 
}
.custom-compare-table thead th {
    position: sticky;
    top: 200px;
    background: #fff;
    z-index: 10;
    padding: 0.75rem;
    text-align: center;
}

.text_for_searching{
  width: 100%;
  height: 80px;
  overflow-y: auto;

}

.text_for_searching h6 {
  font-size: 13px;
  font-weight: 600;
 margin-top: 20px;
  color: var(--theme-secondary);
}
.text_for_searching table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.text_for_searching table tr th {
 border: 1px solid #ddd;
 font-size: 13px !important;
 color: gray;
}

.text_for_searching table td {
  padding: 3px 5px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 11px;
  overflow-x: hidden; 
}

.theme_main_container  {
 background-color: var(--theme-bg-snow);
 width: 100%;
 padding: 60px 0;
}
.theme_main_container h6 {
  color: var(--theme-secondary);
  font-size: 18px;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-top: 30px;
}

.theme_main_container p {
font-size: 13px;
}

/* new product css  */

/* Card design */
.pro_new_des {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-slider .item{
  padding: 0 !important;
}

.pro_new_des:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Card container */
.pro_new_des {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Container */
.highlight_slider_img {
  border-radius: 12px;
  padding: 15px 0;
  text-align: center;
  overflow: hidden;
}

/* Image */
.highlight_slider_img img {
  width: 80%;
  max-width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.pro_new_des .card-body {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pro_new_des .item-number {
  margin-bottom: 6px;
  font-size: 14px;
  color:var(--theme-primary);
  font-weight: 500;
}

/* Title */
 .highlight_slider_subtitle {
  font-size: 14px !important;
  font-weight: 600;
  min-height: 60px;
  margin: 12px 0;
  color: var(--theme-secondary);
  transition:  0.4s ease-in-out;
}

 .highlight_slider_subtitle:hover {
  color: var(--theme-primary);
}


.pro_new_des .btn-request {
  background: var(--theme-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.4s;
}

.pro_new_des .btn-request:hover {
  background: var(--theme-secondary);
  color: #fff;
}

.pro_nav {
  position: relative;
  width: 100%;
  bottom: 190px; 
}

.pro_nav button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--theme-secondary);
  border-radius: 50%;
  background-color: #fff;
  color: var(--theme-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.pro_nav .btn-pro-prev {
  left: -25px; 
}

.pro_nav .btn-pro-next {
  right: -25px;
}

.pro_nav button:hover {
  background-color: var(--theme-highlight);
  border-color: var(--theme-highlight);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.2);
}

.pro_nav {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-loaded + .pro_nav {
  opacity: 1;
}

.lg_para{
      font-size: 15px !important;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.9;
    margin: 1rem 0 2rem 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    word-break: break-word;
    transition: color 0.3s 
ease;
}

/* Core Values Section */
.core_values_main {
  background-color: #f3f3f1; 
  padding: 50px 0;
  width: 100%;
}

/* Core Box / Card */
.core_box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.core_box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Circle */
.core_icon_circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: var(--theme-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.core_box:hover .core_icon_circle {
  transform: scale(1.05);
  background: var(--theme-primary);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}


.core_box h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  color: var(--theme-primary);
}

.core_box:hover h5 {
  color: var(--theme-secondary);
}

.core_box .sm_para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  text-align: justify;
}



.text_for_searching p{
color: var(--theme-dark);
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 25px;
}

.profile_card_modern {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.profile_card_modern:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.profile_header_modern {
  text-align: center;
  margin-bottom: 20px;
}
.profile_img_modern {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%; 
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin: 0 auto 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile_card_modern:hover .profile_img_modern {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.profile_name_modern {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--theme-secondary);
  margin-bottom: 5px;
}

.profile_position_modern {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.profile_separator {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  margin: 0 auto 15px;
  border-radius: 2px;
}

.card_title_modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.lg_para_modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.about_team_sec {
  background-color: var(--theme-bg-snow);
  padding: 50px 0;
}

.team_card {
  background: var(--theme-white);
  border-radius: 20px;
padding-bottom: 30px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
  border: 4px solid #fff;
}

.team_card:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 30px 50px rgba(0,0,0,0.25); 
}


.team_card img {
  width: 400px;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #fff;
  margin-bottom: 20px;
  transition: transform 0.4s ease; 
}

.team_card:hover img {
  transform: scale(1.02); 
}

.team_card h4 {
  font-size: 23px;
  margin-bottom: 8px;
  color: var(--theme-secondary);
  font-weight: 700; 
  letter-spacing: 1px; 
  text-transform: capitalize; 
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}


.team_card p {
  font-size: 16px;
  color: #777;
  margin-bottom: 15px;
}

.team_card .profile_separator {
  width: 60px;
  height: 4px;
  background-color: var(--theme-color-primary);
  margin: 10px auto;
  border-radius: 2px;
}

.gallery_banner_slider .banner_slide {
  position: relative;
  overflow: hidden;
 
}

.gallery_banner_slider .banner_slide img {
  width: 100%;
  height: 70vh;
  object-fit: cover;

  transition: transform 0.6s ease;
}


/* Dots */
.owl-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  display: inline-block;
  margin: 4px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  opacity: 1;
  transform: scale(1.3);
}


.custom_nav_gallery_slider .nav_btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--theme-secondary);
  border-radius: 50%;
  background-color: #fff;
  color: var(--theme-dark); 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.custom_nav_gallery_slider .nav_btn:hover {
  background-color: var(--theme-highlight);
  border-color: var(--theme-highlight);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.2);
}


.custom_nav_gallery_slider .prev_btn {
  left:-10px;
}

.custom_nav_gallery_slider .next_btn {
  right:-10px;
}
.photos_gallery a img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.photos_gallery a:hover img {
  transform: scale(1.05);
}

.photos_gallery_v a img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.photos_gallery_v a:hover img {
  transform: scale(1.03);
}


.catalog-img {
    height: 550px;   
    object-fit: cover;  
    width: 100%;
}

.catalog-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-primary);
    text-decoration: none;
    margin-top: 10px;
}

.catalog-title:hover {
    text-decoration: underline;
}

.customer_valued_image_wrapper {
  width: 100%;
  background: #f8f9fa; 
  border-radius: 10px;
  text-align: center;
  padding: 10px; 
}

.customer_valued_image {
  max-width: 100%;
  height: auto; 
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.theme_faq_accordion {
  margin-top: 30px !important;
}

.theme_faq_accordion .accordion-item {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme_faq_accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.theme_faq_accordion .accordion-button {
  background-color: var(--theme-white);
  color: #6c757d;
  font-weight: 500;
  font-size: 17px;
  padding: 22px 20px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}

.theme_faq_accordion .accordion-button:hover {
  background-color: #f1f5f9;
  color: #495057;
}

.theme_faq_accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--theme-secondary) 0%, #0056b3 100%);
  color: #fff;
  font-weight: 500;
}

.theme_faq_accordion .accordion-button::after {
  transition: transform 0.3s ease;
}
.theme_faq_accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.theme_faq_accordion .accordion-body {
  background-color: #fff;
  padding: 20px 24px;
  color: #444;
  line-height: 1.8;
  font-size: 15.8px;
}

.theme_faq_accordion .accordion-button:focus {
  box-shadow: none;
}


.theme_faq_accordion a {
  color: var(--theme-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.theme_faq_accordion a:hover {
  color: var(--theme-secondary);
  text-decoration: underline;
}

.theme_hero_main {
  width: 100%;
  position: relative;
  margin: 0;
  
  overflow: hidden;
}

.theme_hero_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom:40px ;
}

.theme_hero_img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.theme_hero_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none; 
}

.theme_nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 5px;
  z-index: 10;
  pointer-events: none;
}

.theme_nav button {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--theme-secondary);
  color: #111;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  pointer-events: all;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;

}

.theme_nav button:hover {
  background: var(--theme-secondary);
  color: #fff;
}

/* DOTS */
.theme_hero_slider .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
 
}

.theme_hero_slider .owl-dot span {
  width: 10px;
  height: 10px;
 background-color:var(--theme-main-dark) !important;
  opacity: 0.5;
  margin: 0 4px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme_hero_slider .owl-dot.active span {
  background: var(--theme-primary) !important;
  opacity: 1;
  transform: scale(1.2);
}

#whatsappBtn {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 9999;
}

#whatsappBtn a {
  background-color: #25D366; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#whatsappBtn a:hover {
  transform: scale(1.1);
}
#emailBtn {
  position: fixed;
  bottom: 80px;
  left: 15px;
  z-index: 9999;
}

#emailBtn a {
  background-color: var(--theme-secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#emailBtn a:hover {
  transform: scale(1.1);
}

/* ===== call Button ===== */
#callBtn {
  position: fixed;
  bottom: 140px;
  left: 15px;
  z-index: 9999;
}

#callBtn a {
  background-color: var(--theme-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#callBtn a:hover {
  transform: scale(1.1);
}

.brands_image_main_box {
  background-color: #fffff0;
  padding: 50px 0;
}

.product-enquiry-form {
  background: #f5f5f5;
  border: 1px solid #e4e4e4;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.product-enquiry-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}

.product-enquiry-form input,
.product-enquiry-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.product-enquiry-form input:focus,
.product-enquiry-form textarea:focus {
  border-color: var(--theme-secondary);
  background-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
  outline: none;
}

.product-enquiry-form textarea {
  resize: none;
}

.product-enquiry-form .form-btn {
  background: var(--theme-secondary);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-enquiry-form .form-btn:hover {
  background: var(--theme-primary);
  transform: translateY(-2px);
}

.product-enquiry-form label i {
  color:var(--theme-primary);
  font-size: 1rem;
  vertical-align: middle;
}

.product-enquiry-form label {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

#product-file{
  cursor: pointer !important;
}
/* blog css  */
.blog_card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all .3s ease;
  height: 100%;
}

.blog_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* IMAGE WRAPPER */
.blog_img_wrap {
  display: block;
  width: 100%;
  height: 240px; 
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
  position: relative;
}

/* IMAGE */
.blog_img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  transition: transform .35s ease;
}

.blog_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog_title a {
  color: #111;
  text-decoration: none;
}

.blog_title a:hover {
  color: var(--theme-primary);
}

.blog_desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog_btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 22px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: all .3s ease;
}

.blog_btn:hover {
  background: var(--theme-secondary);
  padding-left: 27px;
  color: var(--theme-white);
}

.blog-details-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.blog-details-section h1 {
  color: var(--theme-primary);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
/* Decorative underline */
.blog-details-section h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: var(--theme-secondary);
  border-radius: 2px;
}


.blog-content-block {
  margin-bottom: 50px;
  padding-bottom: 40px;
  position: relative;
}

.blog-content-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d0d0d0, transparent);
}

.blog-content-block img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-content-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--theme-secondary);
  margin: 30px 0 15px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.blog-content-block h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--theme-primary);
  margin-top: 20px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.blog-content-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: #444;
  margin: 16px 0;
}


.blog-content-text ul {
  margin: 15px 0 20px 20px;
}

.blog-content-text ul li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* =========================
   HEADER new  design
========================= */
.header_pro_search_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    max-width: 420px;
}

.header_pro_search_wrap:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 6px 20px rgba(247,130,34,0.25);
}

.header_pro_search_wrap .bi-search {
    font-size: 18px;
    color: var(--theme-primary);
    flex-shrink: 0;
    transition: 0.3s ease;
}

.header_pro_search_input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    width: 340px;
    transition: 0.35s ease;
}

.header_pro_search_wrap:has(.header_pro_search_input:focus) {
    border-color: var(--theme-secondary);
    box-shadow: 0 8px 26px rgba(0,98,189,0.28);
}

.header_pro_search_wrap:has(.header_pro_search_input:focus) .bi-search {
    color: var(--theme-secondary);
}

.header_pro_search_input::placeholder {
    color: #9a9a9a;
    font-weight: 400;
}

.header_pro_search_input::-webkit-search-cancel-button {
    display: none;
}

/* ================= EXTRA CSS FOR BRAND BOX ================= */

.header_search_container{
    position: relative;
    max-width: 420px;
}
.brand_search_item_list{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow:
        0 14px 40px rgba(0,0,0,0.12),
        0 3px 10px rgba(0,0,0,0.06);
    padding: 6px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 999;

    max-height: 300px;
    overflow-y: auto;
}

/* Scrollbar – clean & thin */
.brand_search_item_list::-webkit-scrollbar{
    width: 6px;
}
.brand_search_item_list::-webkit-scrollbar-track{
    background: #f4f4f4;
    border-radius: 10px;
}
.brand_search_item_list::-webkit-scrollbar-thumb{
    background: #cfcfcf;
    border-radius: 10px;
}

/* LI */
.brand_search_item_list li{
    position: relative;
}

/* 🔥 BORDER AFTER EACH ITEM */
.brand_search_item_list li:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: #eeeeee;
}

/* LINK */
.brand_search_item_list li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.brand_search_item_list li a:hover{
    background: #f9f9f9;
    color: var(--theme-primary);
    padding-left: 22px;
}

/* ICON ANIMATION */
.brand_search_item_list li a i{
    font-size: 13px;
    opacity: 0.6;
    transition: 0.25s ease;
}

.brand_search_item_list li a:hover i{
    opacity: 1;
    transform: translateX(4px);
}

/* =========================
   HEADER ICON GROUP
========================= */

.header_icon_group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header_icon_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.35s ease;
}

.header_icon_box:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 6px 20px rgba(247,130,34,0.25);
}

.header_icon_box i {
    font-size: 14px;
    color: var(--theme-primary);
    transition: 0.3s ease;
}

.header_icon_text {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
}

.header_icon_box:hover i {
    color: var(--theme-secondary);
}
.header_cart_badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--theme-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mob_brand_search_icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #ffffff;
    color: #333;
    border: 1px solid var(--theme-secondary);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.35s ease;
}

.mob_brand_search_icon i {
    font-size: 1.1rem;
}


.mob_brand_search_icon:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 6px 20px rgba(247,130,34,0.25); 
    color: var(--theme-primary);  
}

.brand-logo-box{
    width: 100%;    
    height: 100px;   
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden; 
}

.brand-logo-box img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;  
}

