@import url('mobile.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --primary-color: #111B8F;
    --text-white: #ffffff;
    --text-color: #1D263A;
    --bg-color1: #E8F6EE;
    --bg-color2: #E2F7FF;
    --bg-color3: #FFEEE2;
    --bg-color4: #E9EBFB;
    --bg-color5: #FAE2F0;
    --bg-color6: #CFFFF4;
    --bg-color7: #FFF9DB;
    --bg-color8: #FFE9E9;
    --bg-color9: #F6E3FF;
    --bg-multi-color1: #E8F6EE;
    --bg-multi-color2: #E2F7FF;
    --bg-multi-color3: #FFEEE2;
    --bg-multi-color4: #E9EBFB;
    --bg-color-part1: #E9EBFF;
    --bg-color-part2: #E2F7FF;
    --bg-color-part3: #CFFFF4;
    --bg-color-part4: #FFF9DB;
    --text-color-blue: #2120A3;
    --text-theme-black-900: #121212;
    --text-theme-black-500: #807E7E;
}

body {
  font-family: "Inter", sans-serif;
  background-color: rgb(255, 255, 255);
  /* background-color: rgb(248, 249, 250); */
  font-size: 18px;
}
body,html{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* common styles */
@media screen and ((min-width: 1200px)) {
  .container {
    max-width: 1296px;
  }
}
.pt-30{
  padding-top: 30px;  
}
.pb-30{
  padding-bottom: 30px;  
}
.py-30{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and ((max-width: 768px)) {
  /* .container {
    max-width: 1296px;
  } */
}
.bg-theme{
    background-color: var(--primary-color);
}
.bg-footer-theme{
  background-color: #3F3CC4;
}
.text-color-blue{
  color: var(--text-color-blue);
}
.text-theme{
    color: var(--primary-color);
}
.text-theme-black-900{
  color: #121212;
}
.text-theme-black-500{
  color: #807E7E;
}
.bg-color1{
    background-color: var(--bg-color1);
}
.bg-color2{
    background-color: var(--bg-color2);
}
.bg-color3{
    background-color: var(--bg-color3);
}
.bg-color4{
    background-color: var(--bg-color4);
}
.bg-color5{
    background-color: var(--bg-color5);
}
.bg-color6{
    background-color: var(--bg-color6);
}
.bg-color7{
    background-color: var(--bg-color7);
}
.bg-color8{
    background-color: var(--bg-color8);
}
.bg-color9{
    background-color: var(--bg-color9);
}
.bg-multi-color1{
    background-color: var(--bg-multi-color1);
}
.bg-multi-color2{
    background-color: var(--bg-multi-color2);
}
.bg-multi-color3{
    background-color: var(--bg-multi-color3);
}
.bg-multi-color4{
    background-color: var(--bg-multi-color4);
}
.bg-color-part1{
    background-color: var(--bg-color-part1);
}
.bg-color-part2{
    background-color: var(--bg-color-part2);
}
.bg-color-part3{
    background-color: var(--bg-color-part3);
}
.bg-color-part4{
    background-color: var(--bg-color-part4);
}
.text-white{
    color: var(--text-white);
}
.text-black-900{
    color: var(--text-theme-black-900);
}
.text-black-500{
    color: var(--text-theme-black-500);
}
.lh-normal{
    line-height: normal;
}
.shadow_smc{
    box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.borderc_1{
  border: 1px solid #e4e7ff;
}
.borderc_1_active{
    border: 1px solid var(--primary-color);
}

.breadcrumb {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 512 512'%3E%3Cpath fill='%23111B8F' d='M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z'/%3E%3C/svg%3E");
}
.btn-white_c {
  background-color: white;
  color: #153bbd;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: none;
  display: inline-block;
}
/* Base arrow (when closed) */
.select2-container--default .select2-selection--multiple::after {
  content: "\f107";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
  font-size: 12px;
  color: #555;
  transition: transform 0.2s ease;
  pointer-events: none;
}

/* Rotate arrow when dropdown is open */
.select2-container--open.select2-container--default .select2-selection--multiple::after {
  transform: translateY(-50%) rotate(180deg); /* flips arrow */
}
.select2-container .select2-search--inline .select2-search__field{
    height: 20px !important;
    line-height: normal;
}
.nice-select{
    padding: 8px 8px;
    height: 36px;
    line-height: normal;
}
.nice-select .list{
    position: relative;

}
.nice-select .option i {
    margin-right: 10px;
    color: var(--primary-color);
}
.nice-select span.current i {
    margin-right: 8px;
    color: var(--primary-color);
}
.custom-select-box select {
    display: none !important;
}
.custom-select-box{
    /* max-width: 150px; 
    min-width: 150px;  */
    margin: auto;
}
.border-color{
  border-color: var(--primary-color);
}
.border-top-color1 {
    border-color: #e6e8ff;
    border-top: 1px solid #e6e8ff !important;
    opacity: 1;
    border: 0px;
}
.border-top-color {
    border-color: var(--primary-color);
    border-top: 1px solid var(--primary-color) !important;
    opacity: 1;
    border: 0px;
}
.border-bottom-color {
    border-color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color) !important;
    opacity: 1;
    border: 0px;
}
/* button */
.btn-theme{
  background-color: var(--primary-color);
  color: var(--text-white); 
  border: 1px solid var(--primary-color);
}
.btn-theme:hover{
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color); 
}
.btn-border{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* border radius */

.br-4{
  border-radius: 4px;
}
.br-5{
  border-radius: 5px;
}
.br-8{
  border-radius: 8px;
}
.br-9{
  border-radius: 9px;
}
.br-12{
  border-radius: 12px;
}
.br-16{
  border-radius: 16px;
}
/* viewmore button */
.text-box {
  max-width: 100%;
  line-height: 1.5;
}

.text-ellipsis1 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.text-ellipsis2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.text-ellipsis2.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.toggle-btn {
  color: #111B8F;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
}

.toggle-btn:hover {
  text-decoration: underline;
}

 .fs-10 {
   font-size: 10px;
 }

 .fs-11 {
   font-size: 11px;
 }

 .fs-12 {
   font-size: 12px;
 }

 .fs-14 {
   font-size: 14px;
 }

 .fs-16 {
   font-size: 16px;
 }

 .fs-18 {
   font-size: 18px;
 }

 .fs-20 {
   font-size: 20px;
 }

 .fs-22 {
   font-size: 22px;
 }

 .fss-22 {
   font-size: 22px;
 }

 .fs-24 {
   font-size: 24px;
 }

 .fs-26 {
   font-size: 26px;
 }

 .fs-28 {
   font-size: 28px;
 }

 .fs-32 {
   font-size: 32px;
 }
 .fs-34 {
   font-size: 34px;
 }
 .fs-36 {
   font-size: 36px;
 }

 .fs-38 {
   font-size: 38px;
 }

 .fs-40 {
   font-size: 40px;
 }
.fs-48{
     font-size: 48px;
}
.fs-56{
     font-size: 56px;
}
.fs-60{
  font-size: 60px;
}


 @media screen and (max-width: 992px) {

   .fs-11 {
     font-size: clamp(11px, 1.00vw, 11px);
   }

   .fs-12 {
     font-size: clamp(12px, 1.01vw, 12px);
   }

   .fs-13 {
     font-size: clamp(12px, 1.02vw, 13px);
   }

   .fs-14 {
     font-size: clamp(12px, 1.03vw, 14px);
   }

   .fs-15 {
     font-size: clamp(12px, 1.04vw, 15px);
   }

   .fs-16 {
     font-size: clamp(13px, 1.05vw, 16px);
   }

   .fs-17 {
     font-size: clamp(13px, 1.06vw, 17px);
   }

   .fs-18 {
     font-size: clamp(14px, 1.08vw, 18px);
   }

   .fs-19 {
     font-size: clamp(14px, 1.1vw, 19px);
   }

   .fs-20 {
     font-size: clamp(15px, 1.2vw, 20px);
   }

   .fs-21 {
     font-size: clamp(15px, 1.3vw, 21px);
   }

   .fs-22 {
     font-size: clamp(16px, 1.4vw, 22px);
   }

   .fs-23 {
     font-size: clamp(17px, 1.5vw, 23px);
   }

   .fs-24 {
     font-size: clamp(17px, 1.6vw, 24px);
   }

   .fs-25 {
     font-size: clamp(17px, 1.7vw, 25px);
   }

   .fs-26 {
     font-size: clamp(18px, 1.8vw, 26px);
   }

   .fs-27 {
     font-size: clamp(18px, 1.9vw, 27px);
   }

   .fs-28 {
     font-size: clamp(19px, 2vw, 28px);
   }

   .fs-29 {
     font-size: clamp(19px, 2.1vw, 29px);
   }

   .fs-30 {
     font-size: clamp(20px, 2.2vw, 30px);
   }

   .fs-32 {
     font-size: clamp(20px, 2.2vw, 32px);
   }
   .fs-34 {
     font-size: clamp(20px, 2.4vw, 34px);
   }
   .fs-36 {
     font-size: clamp(20px, 2.4vw, 36px);
   }
   .fs-48 {
     font-size: clamp(20px, 2.4vw, 48px);
   }
   .fs-56 {
     font-size: clamp(21px, 2.8vw, 56px);
   }
  .fs-60 {
     font-size: clamp(22px, 3vw, 60px);
   }
 }

 @media screen and (max-width: 992px) {
   .fs-32 {
     font-size: clamp(10px, 2.2vw, 30px);
   }
 }

 @media screen and (min-width: 992px) and (max-width: 1024px) {
   .fss-22 {
     font-size: clamp(18px, 1.2vw, 34px);
   }
 }

 @media screen and (min-width: 767px) and (max-width: 991px) {
   .fss-22 {
     font-size: clamp(30px, 2.2vw, 40px);
   }
 }

 @media screen and (min-width: 600px) and (max-width: 768px) {
   .fss-22 {
     font-size: clamp(30px, 2.2vw, 40px);
   }
 }

 @media screen and (max-width: 450px) {
   .fss-22 {
     font-size: clamp(15px, 2.2vw, 29px);
   }
 }

 @media screen and (max-width: 350px) {
   .fss-22 {
     font-size: clamp(12px, 2.2vw, 29px);
   }
 }


.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* navbar */
.navbar-brand {
    font-weight: bold;
}
.offcanvas-start {
    width: 250px;
}
.book-now-btn {
    white-space: nowrap;
}
.user-role{
  border: 1px solid var(--primary-color);
  padding: 7px 7px;
  border-radius: 9px;
}
.nav_header_desk .nav-item .nav-link{
    color: var(--text-color);
}
.nav_header_desk .nav-item .nav-link.active{
    color: var(--primary-color);
}
.navbar-nav .nav-link.active{
    color: var(--primary-color);
}
.cart_header i{
 color: var(--text-color);
}
.cart_header .badge_header{
  color: var(--primary-color);
}
.cart_header .badge_header{
  position: absolute;
  top: -10px;
  right: -6px;
  border-radius: 50px;
  padding: 2px 4px;

}
.cart-btn{
  padding: 7px;
}
.badge-header-cart{
  position: absolute;
  top: -8px;
  right: -10px;
  line-height: normal;
}

/* search icon */
/* .nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
}
.nav .search-box {
  position: absolute;
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #4a98f7;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #fff;
  padding: 0 15px 0 45px;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}

@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
} */
 /* wrapper */
@media screen and (max-width: 992px) {
  .main-wrapper{
  padding-bottom: 68px;
}
  
}
/* service page */
.services_tabs_header{

}
.profile_theambs{
  width: 50px; 
  height: 50px; 
  object-fit: cover;
}
.services_tabs_header .nav-tabs .nav-link{
  margin-bottom: calc(-0 * 1px);
  border-radius: 6px;
  border: 0px;
}

.nav-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.nav-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.nav-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}


.services_tabs_header .nav-item{
  /* border: 1px solid var(--primary-color); */
  border-radius: 6px;
}
.services_tabs_header .nav-tabs .nav-link{
  /* border: 1px solid var(--primary-color); */
  color: var(--primary-color);
}
.services_tabs_header .nav-tabs .nav-link{
  border: 1px solid transparent;
}
.services_tabs_header .nav-tabs .nav-link.active{
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--text-white);
}
.services_tabs_header .nav-tabs .nav-link.active svg path{
  fill: var(--text-white);
}
.services_tabs_header .nav-tabs{
  border: 0px;
}
.side-left-border::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.side-left-border.bg-left-color1::before {
  background-color: var(--bg-color1);
}
.side-left-border.bg-left-color2::before {
  background-color: var(--bg-color2);
}
.side-left-border.bg-left-color3::before {
  background-color: var(--bg-color3);
}
.side-left-border.bg-left-color4::before {
  background-color: var(--bg-color4);
}
.side-left-border.bg-left-color5::before {
  background-color: var(--bg-color5);
}
.side-left-border.bg-left-color6::before {
  background-color: var(--bg-color6);
}
.side-left-border.bg-left-color7::before {
  background-color: var(--bg-color7);
}
.side-left-border.bg-left-color8::before {
  background-color: var(--bg-color8);
}
.side-left-border.bg-left-color9::before {
  background-color: var(--bg-color9);
}
/* image zoom */
/* .image-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
    } */

.zoom-image {
  /* max-width: 200px; */
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoom-image:hover {
  transform: scale(1.02);
}

/* Zoom Overlay Styles */
.zoom-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  cursor: zoom-out;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

/* plus minus button */
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  /* font-size: 27px; */
}

.quantity-control button {
  background: transparent;
  border: none;
  width: 40px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.quantity-control span {
  padding: 0 10px;
  display: inline-block;
  min-width: 24px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: normal;
}
@media screen and (max-width: 768px) {
    .quantity-control span {
  padding-top: 5px;
  padding-bottom: 5px;
  }
  .quantity-control button{
    height: 32px;
  }
}
.quantity-control button:focus {
  outline: none;
  box-shadow: none;
}
/* cart add ui */
.radius-10{
  border-radius: 10px;
}
.service-list-section .service-card:last-child {
  margin-bottom: 0;
  border: 0px;
}
.service-list-section .service-card {
  /* border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px; */
  margin-bottom: 15px;
  position: relative;
}

.service-list-section .service-icon {
  min-width: 70px;
  max-width: 70px;
  height: 70px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-right: 12px;
}

.service-list-section .service-icon img {
  /* max-width: 26px; */
  width: 100%;
  aspect-ratio: 1/1;
}



.trash-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  cursor: pointer;
  color: #777;
}

.trash-icon:hover {
  color: #000;
}

.border-bottom-light {
  border-bottom: 1px solid #eee;
}
/* hero section */
.hero-section {
  padding: 4rem 1rem;
}

.hero-title {
  /* font-size: 2.5rem;
  font-weight: 700; */
  line-height: 1.3;
}

.user-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .user-group img {
    width: 33px;
    height: 33px;
  }
  
}
.user-group img:first-child {
  margin-left: 0;
}

.book-btn {
  /* background-color: #fff;
  color: #0C1C84;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out; */
}

/* .book-btn:hover {
  background-color: #f0f0f0;
} */

/* .hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
} */

.hero-images img {
  width: 100%;
  border-radius: 16px;
}

.user-label {
  /* font-size: 0.9rem; */
  margin-top: 0.25rem;
  color: #dbe2ff;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }
}
/* range section */
.range-service-card .service-card {
  /* width: 100px; */
  min-width: 100px;
  min-height: 100px;
  /* max-height: 198px; */
      aspect-ratio: 1 / 1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.range-service-card .service-card img {
  max-width: 100px;
  max-height: 100px;
}
@media screen and (min-width: 1250px) {
  .range-service-card .service-card {
    /* width: 198px;
    height: 198px; */
    aspect-ratio: 1 / 1;
  }
  
}
@media screen and (min-width: 1100px) {
  .range-service-card .service-card {
    /* width: 155px;
    height: 155px; */
    aspect-ratio: 1 / 1;
    margin: auto;
  }
  
}
.range-service-card .service-card:hover {
  transform: scale(1.05);
}
.range-service-card .services-section {
  background-color: #fff;
  padding: 2rem 1rem;
}
@media screen and (max-width: 500px) {
  .range-service-card .service-card{
    min-width: auto;
    min-height: auto;
  }
  .range-service-card .service-card img{
    max-width: 100%;
    max-height: 100%;
  }
  .range-service-card span{
    font-size: 12px;
  }
}
/* Featured Services */
.service-card-box .service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  max-width: 300px;
}

.service-card-box  .service-card img {
  width: 100%;
  height: auto;
  display: block;
}
.aspect-box {
  position: relative;
  width: 100%;
  padding-top: 77.12%; /* 236 / 306 × 100 to match your image */
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  
}

.aspect-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
    .service-content {
      padding: 1rem;
    }

    .category-badge {
      display: inline-block;
      background-color: #E8F6EE;
      color: #3E8C66;
      padding: 4px 10px;
      border-radius: 50px;
      margin-top: 0.5rem;
    }

    .service-footer {
      border-top: 1px solid #eee;
      padding: 0.75rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    @media screen and (max-width: 500px) {
      .service-footer {
        padding: 0.5rem 0.5rem;
      }
    }
    .time-label {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      color: #566363;
    }

    .time-label i {
      margin-right: 6px;
      color: #0C1C84;
    }

    .book-btn {
      background-color: #0C1C84;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 12px;
    }
    .book-btn-border {
      border: 1px solid #0C1C84 !important;
      background-color: transparent;
      color: var(--primary-color);
      border: none;
      border-radius: 8px;
      padding: 8px 12px;
    }
    @media screen and (max-width: 768px) {
      .service-content {
        padding: 0.5rem;
      }
      .book-btn {
        padding: 6px 10px;
      }
      .book-btn-border {
        padding: 6px 10px;
      }
    }

/* best service */
.services-section .icon-card {
  position: relative;
  /* background-color: #E9EBFF; */
  border-radius: 16px;
  padding: 1.5rem 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
}
.services-section .icon-circle {
  /* position: absolute; */
  top: -70px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* width: 60px;
  height: 60px; */
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  width: 90px;
  height: 90px;
  margin: auto;
  position: relative;
  margin-bottom: -72px;
}

@media screen and (max-width: 768px) {
  .services-section .icon-circle {
    width: 70px;
    height: 70px;
  }
  .services-section .icon-circle img{
    width: 70px;
    /* height: 70px; */
  }
}
.services-section .card-text {
  color: #566363;
}
/* air conditioner */
.ac-service-section {
  
  /* padding: 4rem 1rem; */
  position: relative;
  color: white;
}

.ac-service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(43, 51, 157,0.8);
  z-index: 1;
}

.ac-service-section .ac-service-content {
  position: relative;
  z-index: 2;
}

.ac-service-section .service-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  /* align-items: center; */
  gap: 1rem;
}

.ac-service-section .service-card img {
  width: 100%;
  max-width: 224px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 10px;
  /* margin: auto; */
}
@media screen and (max-width: 768px) {
  .ac-service-section .service-card img {
    margin: auto;
  }
  
}


.ac-service-section .btn-view {
  border: 1px solid #2B339D;
  color: #2B339D;
  background-color: #fff;
}

.ac-service-section .btn-cart {
  background-color: #2B339D !important;
  color: #fff !important;
}

.ac-service-section .btn {
  border-radius: 8px;
  padding: 8px 12px;
}

/* brand section */
.brand-section-logo .brand-section {
      background-color: #eef0ff;
      padding: 2rem 1rem;
    }

    .brand-section-logo .swiper-slide {
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: center; */
      /* flex-direction: column; */
      /* text-align: center; */
    }

    .brand-section-logo .brand-logo {
      max-height: 60px;
      /* width: 60px;
      background-color: #fff; */
      /* border-radius: 50%; */
      /* display: flex;
      align-items: center;
      justify-content: center; */
      /* margin-bottom: 0.5rem;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.05); */
    }

    .brand-section-logo .brand-logo img {
      /* max-width: 70%;
      max-height: 70%; */
    }

    .brand-section-logo .swiper-wrapper {
      align-items: center;
    }

    .brand-section-logo .swiper-slide span {
      color: #2028a0;
      font-weight: 500;
    }
/* adds-banner-section */
/* .adds-banner-section .download-section {
      background-color: #2E39AC;
      color: white;
      padding: 3rem 1rem;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .adds-banner-section .download-section .phones {
      position: absolute;
      right: 2rem;
      bottom: -2rem;
      max-width: 280px;
    }

    .adds-banner-section .btn-store {
      max-width: 150px;
    }

    .adds-banner-section .service-box {
      background-color: #E6EDFF;
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .adds-banner-section .service-card {
      background: #fff;
      padding: 1rem;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      width: 100%;
      max-width: 280px;
    }

    .adds-banner-section .service-card small {
      color: #888;
    }

    .adds-banner-section .strike {
      text-decoration: line-through;
      color: #888;
      font-size: 0.9rem;
    }

    .adds-banner-section .rating-stars {
      color: #FFC107;
    }

    .adds-banner-section .btn-cart {
      background-color: #fff;
      border: 1px solid #0C1C84;
      color: #0C1C84;
      border-radius: 8px;
      padding: 0.5rem 1rem;
      margin-top: 1rem;
    }

    .adds-banner-section .rating-box {
      background-color: #E6EDFF;
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
    }

    .adds-banner-section .rating-box h1 {
      font-size: 3.5rem;
      color: #2E39AC;
    }

    .adds-banner-section .rounded-img {
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
    }

    @media (max-width: 768px) {
    .adds-banner-section  .download-section .phones {
        position: relative;
        margin-top: 2rem;
        right: 0;
        bottom: 0;
      }
    } */
.franchise-section-bg{
      background-color: var(--primary-color);
            border-radius: 12px;
    }
    .adds-banner-section  .franchise-section {
      /* padding: 2rem; */
      color: #fff;
      /* overflow: hidden; */
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* gap: 2rem; */
    }
    @media screen and (min-width: 1100px) {
      .adds-banner-section .franchise-section{
          width: 989px;
          margin: auto;
      }
      .adds-banner-section{
        /* padding-top: 48px;
        margin-top: 48px; */
      }
      .franchise-section-bg{
        margin-top: 123px
      }
      .adds-banner-section .franchise-section img {
        /* max-height: 200px; */
            margin-top: -123px
      }
      
    }
    @media screen and (max-width: 768px) {
      .adds-banner-section .franchise-section img{
        max-height: 200px;
      }
      .franchise-content{
        padding-bottom: 1rem;
      }
    }
   

    .adds-banner-section .download-section {
      background-color: #DCE6FC;
      border-radius: 12px;
      
      margin-top: 2rem;
    }
.adds-banner-section .download-section .text-contain{
  padding: 1.5rem 0rem;
}
    .adds-banner-section .app-badges img {
      max-height: 50px;
    }

    .adds-banner-section .download-image img {
      /* max-height: 250px; */
    }
    @media screen and (max-width: 768px) {
      .adds-banner-section .download-image img {
        max-height: 200px;
        margin: auto;
      }
      .adds-banner-section .cartoon-bottom img{
        max-height: 150px;
      }
      
    }
    .adds-banner-section .btn-white {
      background-color: white;
      color: #153bbd;
      padding: 0.5rem 1.5rem;
      border-radius: 6px;
      font-weight: 500;
      border: none;
    }

    @media(max-width: 768px){
      .adds-banner-section .franchise-section, .download-section {
        flex-direction: column;
        text-align: center;
      }
      .adds-banner-section .download-image {
        margin-top: 2rem;
      }
      .adds-banner-section .cartoon-bottom {
        margin-bottom: 2rem;
      }
    }
/* testimonial section */
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  /* box-shadow: 0 0 20px rgba(0,0,0,0.05); */
  /* padding: 2rem; */
  height: 100%;
}
.testimonial-footer {
  background-color: #e7edfd;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  background-color: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #000;
  bottom: 0;
top: auto;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 16px;
  display: none;
}

.swiper-nav-buttons {
  display: flex;
  gap: 10px;
}
.testimonial-header .swiper-nav-buttons{
  width: 120px;
}
@media screen and (max-width: 500px) {
  .testimonial-header .swiper-nav-buttons{
    width: auto;
  }
  .brand-section-logo .brand-logo img{
    max-height: 40px;
  }
  
}
/* offer section */

/* footer desktop */
.ps-footer-mobile {
  overflow: hidden;
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100vw;
  z-index: 1000;
}
.footer_nav_wrapper .footer_nav:hover{
  color: var(--text-white);
}
.f-i i{
  color: var(--primary-color);
}
.f-i{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
}
.f-i:hover{
  background-color: #5664ff;
}
.f-i:hover i{
  color: var(--text-white);
}
.svg-play-store{
  width: 38px;
  height: 38px;
}
.footer_nav_wrapper .footer_nav{
  color: #fff;
}
.badge-footer-count{
  position: absolute;
  top: -8px;
  left: 20px;
}
/* .badge-footer-count-desk{
  position: absolute;
  top: -8px;
  left: 20px;
} */
.menu--footer {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
}
.menu--footer li {
    flex-grow: 1;
    padding: 15px 0 !important;
    position: relative;
}
.menu--footer li a {
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 1;
    position: relative;
}
.menu--footer li i {
    color: white;
    display: block;
    font-size: 20px;
}
.menu--footer li span {
    color: white;
    font-size: 12px;
}
.list-style-none{
  list-style: none;
}




/* mobile footer  */
.mobile-model-footer.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,50px);
}
.mobile-model-footer .modal-dialog {
  position: fixed !important;
  bottom: 0 !important;
  left: 0% !important;
  right: 0% !important;
  margin-bottom: 0 !important;
      
} 

.mobile-model-footer.modal.show .modal-dialog {
    transform: none;
}

.mobile-model-footer .modal-content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  
}

.selected-city {
  min-width: 150px;
}
.service-card-img .service-icon img{
  max-width: 80px;
  /* height: 100px; */
  aspect-ratio: 1/1;
}





/* checkout page */

.card-payment-title::before {
  content: '';
  border: 2px solid var(--primary-color);
}
.card-gray{
  background-color: #F6F7FB;
}
.border-top-botom_c {
    border-top: 1px dashed #dee2e6 !important;
    border-bottom: 1px dashed #dee2e6 !important;
}


.card-radio {
    padding: 0
}

/* .card-radio .form-check-label {
    background-color: #fff;
    border: 1px solid #dde1ef;
    border-radius: .25rem;
    padding: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    position: relative;
    padding-right: 20px
} */
 .badge-c{
  background-color: #e0e7ff;
 }
.address-card {
  background-color: #f6f7fb;
  border-radius: 12px;
  padding: 8px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  /* margin: auto; */
}
.form-check-bg{
      background-color: #f6f7fb;
    border-radius: 12px;
    /* padding: 16px 20px; */
    box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.1);
}
.card-radio .radio-checkmark {
    /* background-color: #f6f7fb;
    border-radius: 12px;
    padding: 16px 20px; */
    /* box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.1); */
    /* margin: auto; */
    padding: 12px 12px;
    /* padding: 16px 20px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    position: relative;
    padding-right: 50px
    /* padding-right: 20px */
}
.edit-delete{
  right: 3px;
    top: 8px;
    line-height: normal;
  padding: 0;
}
.edit-delete button{
  line-height: normal;
  /* padding: 0; */
}
/* .card-radio .form-check-label:hover {
    cursor: pointer
} */
.card-radio .radio-checkmark:hover {
    cursor: pointer
}

/* .card-radio .form-check-input {
    display: none
} */
.card-radio .radio-check {
    display: none
}

/* .card-radio .form-check-input:checked+.form-check-label {
    border-color: var(--primary-color) !important
} */
.card-radio .radio-check:checked+.radio-checkmark {
    border-color: var(--primary-color) !important
}

.card-radio .radio-check:checked+.radio-checkmark:before{
  content: "\e426";
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  /* top: 2px;
  right: 6px; */
  top: 8px;
  right: 30px;
  font-size: 1rem;
  color: var(--primary-color)
}
/* .card-radio .form-check-input:checked+.form-check-label:before {
    content: "\e426";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 1rem;
    color: var(--primary-color)
} */
.card-radio.dark .radio-check:checked+.radio-checkmark:before{
  color: #fff
}
/* .card-radio.dark .form-check-input:checked+.form-check-label:before {
    color: #fff
} */




/* addresses */
.file-input-address .user_from.iconSelect.nice-select {
      background-color: #f6f7fb;  
      border: 1px solid #D9D9D9;
      padding: 14px;
      height: 49px;
      border-radius: 8px;
    }
    .file-input-address .form-control:focus, 
    .file-input-address .form-select:focus {
      outline: none;
      border-color: none;
    }
    .file-input-address .form-control,
    .file-input-address .form-select {
      background-color: #f6f7fb;
      border: 1px solid #D9D9D9;
      border-radius: 8px;
      padding: 14px;
      font-size: 14px;
      color: #000;
    }

    .file-input-address .form-control::placeholder {
      color: #888;
    }

    .file-input-address .form-group {
      margin-bottom: 16px;
    }
/* group btn */
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  color: #fff !important;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary{
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-check+.btn:hover{
  color: var(--primary-color);
  border-color: var(--primary-color);
}


/* progress bar */
/* @media screen and (min-width: 768px) { */
  
  .stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
  }
  .stepper-item .step-name{
    text-align: center;
  }
  .stepper-item.active .step-counter{
    background-color: #ff0000;
  }
  .stepper-item.active::after{
    border-bottom: 2px solid #ff0000;
    z-index: 3;
    background-color: #ff0000;
  }
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
    color: #fff;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color: var(--primary-color);
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }
/* } */



@media screen and (max-width: 767px) {
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: 10px;
  }
  .stepper-item .step-name{
    text-align: center;
  }
  .stepper-item.active .step-counter{
    background-color: #ff0000;
  }
  .stepper-item.active::after{
    border-bottom: 2px solid #ff0000;
    z-index: 3;
  }
  .stepper-item.active::before{
    background-color: #ff0000;
  }
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 3px;
    height: 100%;
    top: 20px;
    left: 19px;
    z-index: 2;
    background-color: #ccc;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 3px;
    height: 100%;
    top: 20px;
    left: 19px;
    z-index: 2;
    background-color: #ccc;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color: var(--primary-color);
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--primary-color);
    width: 3px;
    height: 100%;
    top: 20px;
    left: 19px;
    z-index: 3;
    background-color: var(--primary-color);
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item.active:last-child::before,
  .stepper-item:last-child::before,
  .stepper-item:last-child::after {
    content: none;
  }
}


/*order card address */
.mn-80 {
  min-width: 80px;
}
.list-mbs {
  margin-bottom: 16px;
}
.product-thank-you-order-list .product-fluid-img-ty {
  /* width: 90px;
  height: 90px;
  object-fit: contain;
  text-align: center; */

  width: 90px;
    height: 90px;
    object-fit: cover;
    text-align: center;
    background-color: #ced3e8;
    border-radius: 8px;
}
.product-text-elip2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.product-thank-you-order-list .product-checko-right {
  width: calc(100% - 100px);
}




/* progress bar */

.progress-hr-vr .progress {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b7b7b7;
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 0.8em;
}
/* line 11, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li {
  display: block;
  min-height: 44px;
  margin-left: 30px;
  text-align: left;
}
/* line 17, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li:first-child:after {
  display: block;
}
/* line 22, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li:last-child:after {
  display: none;
}
/* line 27, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li.active:after {
  background: #b7b7b7;
}
/* line 31, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li:after {
  width: 2px;
  height: 100%;
  display: block;
  left: -20px;
  top: 0;
  margin-left: 0;
}
/* line 39, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical > li:before {
  float: left;
  display: inline-block;
  margin-left: -30px;
  position: absolute;
}
/* line 47, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.right > li {
  margin-left: 0;
  margin-right: 30px;
}
/* line 50, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.right > li:before {
  margin-left: 0;
  margin-right: -30px;
  right: 0;
}
/* line 55, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.right > li:after {
  right: -20px;
  left: auto;
}
/* line 62, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li {
  margin-left: 0;
  float: left;
  width: 50%;
  clear: right;
  padding-right: 30px;
  margin: 0;
  padding-left: 0;
  box-sizing: border-box;
}
/* line 70, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li > .progress-icon {
  border: 1px solid #b7b7b7;
  padding: 5px 10px;
  background: #ffffff;
}
/* line 74, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li > .progress-icon:before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #b7b7b7;
  content: '';
  position: absolute;
  right: 23px;
  top: 15px;
  margin-top: -10px;
}
/* line 87, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:before {
  right: -11px;
  left: auto;
  margin-left: 0;
}
/* line 92, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:after {
  right: -1px;
  left: auto;
}
/* line 96, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:nth-child(2n) {
  float: right;
  clear: left;
  padding-left: 30px;
  margin: 0;
  padding-right: 0;
}
/* line 103, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:nth-child(2n) > .progress-icon:before {
  border-left: 0 none;
  border-right: 8px solid #b7b7b7;
  right: auto;
  left: 23px;
}
/* line 110, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:nth-child(2n):before {
  left: -11px;
  right: auto;
}
/* line 114, ../sass/components/_progress.scss */
.progress-hr-vr .progress.vertical.center > li:nth-child(2n):after {
  left: -1px;
  right: auto;
}
/* line 122, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li {
  display: table-cell;
  text-align: center;
  position: relative;
}
/* line 127, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li.active:before {
  background: #008000;
}
/* line 130, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li.active:after {
  background: #008000;
}
/* line 134, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li:before {
  position: relative;
  content: attr(data-step);
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto 2px;
  line-height: 22px;
  background: #b7b7b7;
  border-radius: 100%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}
/* line 148, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li:after {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  top: 11px;
  left: -50%;
  content: '';
  background: #b7b7b7;
  margin-left: 2px;
  z-index: 0;
}
/* line 161, ../sass/components/_progress.scss */
.progress-hr-vr .progress > li:first-child:after {
  display: none;
}




/* profile setting */
/* .admin-wrapper {
  display: flex;
} */
.text-red {
  color: #ff0000 !important;
}
.profile-admin-wrapper .sidebars .sidebar2 .active{
  background-color: rgb(192 193 213);
  display: block;
  color: var(--primary-color);
}
.profile-admin-wrapper .sidebars .sidebar2 a{
  color: #000;
  display: block;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  transition: 0.3s;
}
.profile-admin-wrapper .sidebar {
  /* background-color: #fff; */
  /* width: 400px; */
  /* flex-shrink: 0;
  height: 100%;
  overflow-y: auto; */
}

/* .profile-admin-wrapper .sidebar .sidebar2 a {
  color: #adb5bd;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0.5rem;
  transition: 0.3s;
} */
.profile-info-setting{
  max-width: 105px;
  height: 105px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #D8D8D8;
  background: #F6F6F6;
  border-radius: 50%;
}
.profile-info-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;   
}
.profile-admin-wrapper .sidebars .sidebar2 a:hover,
.profile-admin-wrapper .sidebars .sidebar2 a.active {
    background-color: rgb(192 193 213);
    /* background-color: rgb(244 165 28 / 20%); */
    
}
.profile-admin-wrapper .sidebars .sidebar2 a.active i{
    color: var(--secondary);
}
/* .profile-admin-wrapper .main-content {
  flex-grow: 1;
  overflow-y: auto;
} */

.profile-admin-wrapper .page-section {
  display: none;
}

.profile-admin-wrapper .page-section.active {
  display: block;
}


@media (min-width: 768px) {
  .profile-admin-wrapper .offcanvas{
    position: relative !important;
    visibility: visible !important;
    transform: translateX(0%) !important;
  }
  .profile-admin-wrapper .offcanvas-md {
    position: static;
    transform: none;
    visibility: visible !important;
    /* border-right: 1px solid #dee2e6; */
  }

  .profile-admin-wrapper .offcanvas-body {
    padding: 1rem 0;
    background-color: #343a40;
    color: white;
  }
  .profile-admin-wrapper .offcanvas.offcanvas-start.profile-card{
    /* width: 280px !important; */
    transform: translateX(0%);
  }
  .profile-admin-wrapper .sidebar {
    background-color: #fff;
    /* width: 280px; */
    flex-shrink: 0;
    height: 100%;
    overflow-y: auto;
    }
    .profile-card-z{
        z-index: 1;
    }
}
@media screen and (max-width: 768px) {

  .profile-admin-wrapper .sidebar.mobile-side-tabs{
    width: 100%;
  }
  .profile-admin-wrapper .mobile-side-tabs {
    border: 0pc solid transparent;
    background-color: transparent;
  }
}


/* table ui */
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th{
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
}
.dataTable tbody tr {
  border-radius: 8px;
  background: #fff; /* Optional for spacing visibility */
  border-style: none;
}

.dataTable tbody tr td {
  background: #fff;
  /* border: 1px solid #dee2e6; */
}
.dt-scroll .dt-scroll-head{
  margin-bottom: 10px;
}
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  /* box-shadow: inset 0 0 0 9999px rgb(12 28 132 / 4%); */
  box-shadow: inset 0 0 0 9999px rgb(246, 247, 251) !important;
}
table.table.dataTable.table-striped > thead > tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
table.table.dataTable.table-striped > thead > tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
table.table.dataTable.table-striped > tbody > tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
table.table.dataTable.table-striped > tbody > tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
table.dataTable th, table.dataTable td{
  border: 0px;
}
.history-pagigation .dt-paging-button.page-item .page-link{
  color: var(--primary-color);
}
.history-pagigation .dt-paging-button.page-item.active .page-link{
  color: var(--text-white) !important;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.history-pagigation .dt-paging-button.page-item .page-link.first,
.history-pagigation .dt-paging-button.page-item .page-link.previous,
.history-pagigation .dt-paging-button.page-item .page-link.last,
.history-pagigation .dt-paging-button.page-item .page-link.next{
  background-color: rgb(246, 247, 251);
  color: var(--primary-color);
}
.history-pagigation .dt-paging-button.page-item .page-link:hover,
.history-pagigation .dt-paging-button.page-item .page-link:focus{
  color: var(--text-white) !important;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.dt-column-order{
  cursor: pointer !important;
  position: relative !important;
  display: inline-flex !important;
    align-items: center;
}
.dt-orderable-asc.dt-orderable-desc .dt-column-order::before{
  right: 1.3em;
  content: "\f062" !important;
}
.dt-orderable-asc.dt-orderable-desc .dt-column-order::after{
  right: 0.5em;
  content: "\f063" !important;
}
.dt-orderable-asc.dt-orderable-desc .dt-column-order::before {
  position: absolute !important;
  bottom: 0.9em !important;
  display: block !important;
}
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after{
  opacity: 0.7 !important;
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order {
  width: 30px !important;
}
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after{
  left: auto !important;
  opacity: 0.8;
}
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before{
  bottom: auto !important;
}
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
    font-family: 'Font Awesome 6 Pro';
}

table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
  position: absolute;
  bottom: 0.1em;
  display: block;
  opacity: 0.3;
}


/* contect us */

.contect_details .promo-banner {
  /* background-color: #f8f9fc; */
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */
}

.contect_details .promo-icon {
  background-color: #e0e7ff;
  color: var(--primary-color);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
}

.contect_details .promo-text h6 {
  margin: 0;
  font-weight: 600;
}

.contect_details .promo-text p {
  margin: 0;
  color: #6c757d;
  font-size: 0.875rem;
}
