*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem !important;
  font-family: "Inria Sans", sans-serif;
  position: relative;
  height: 100%;
}

.hidden {
  display: none !important;
}

input {
  outline: none;
}

.fancybox__container {
    z-index: 10500;
}

.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.btn:active {
  transform: scale(0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.container,
.container-fluid {
  height: 100%;
  padding: 0;
}

.row {
  /* height: 100%; */
}

.datepicker-container {
  z-index: 10000 !important;
}

.datepicker-panel [data-view="month current"],
.datepicker-panel [data-view="year current"] {
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  color: red;
}

select {
  appearance: none !important;
  cursor: pointer;
}

/*------------------------------Scroller--------------------------------------*/

/* width */

::-webkit-scrollbar {
  width: 8px;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 199, 199);
}

/*------------------------------Swal------------------------------------------*/

.swal2-container {
    z-index: 99999999999999 !important
}

.swal2-popup {
  padding-bottom: 0 !important;
  max-width: 80% !important;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px !important;
  padding: 0 1rem !important;
  width: 40em !important;
}

.swal2-icon {
  margin: 2em auto 1em !important;
}

.swal2-title {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 1.8rem !important;
}

.swal2-html-container {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  font-size: 2rem !important;
}

.swal2-actions {
  margin: 0 !important;
  margin-bottom: 0.5em !important;
  width: 100% !important;
  font-size: 1.4rem;
}

.swal2-styled.swal2-confirm {
  background-color: var(--color-theme);
}

.swal2-styled.swal2-cancel {
  background-color: var(--bs-danger);
}

.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus {
  box-shadow: none !important;
}

/*------------------------------Header----------------------------------------*/

.header-wrapper {
    padding: 15px 0;
    border-bottom: 1px solid gainsboro;
    background: white;
}

.header-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 9999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 35px;
}

.header-logo img {
    height: 100%;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #000;
}

.header-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.8);
  transition: width 0.6s ease;
}

.header-nav a:hover::before {
  width: 100%;
}

.header-search {
    border: 1px solid gainsboro;
    padding: 5px 12px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.header-search:focus-within {
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.header-search i {
    font-size: 16px;
    color: gray;
}

.header-search input {
    border: none;
    height: 100%;
    font-size: 14px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icons a {
    font-size: 22px;
    border: 1px solid gainsboro;
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #2f2f2f;
    transition: all 0.3s ease;
}

.header-icons a:hover {
    background: #2f2f2f;
    color: white;
    transform: scale(1.05);
}

.header-icons a.quick-enquiry {
    font-size: 12px;
    border: 1px solid gainsboro;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    background: #2f2f2f;
    color: white;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-icons a.quick-enquiry:hover {
    background: white;
    color: #2f2f2f;
    transform: scale(1.02);
    border: 1px solid gray;
}

/*------------------------------Hero------------------------------------------*/

.hero-wrapper {
    padding: 40px 0;
}

.hero-section {
    
}

.hero-section-left {
}

.hero-section-left h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-options {
    border: 1px solid gainsboro;
    border-radius: 10px;
    padding: 25px;
}

.hero-options h3 {
    font-size: 22px;
    font-weight: 700;
    color: gray;
    margin-bottom: 20px;
}

.hero-options .option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.hero-options .option-card {
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-options .option-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scale: 1.05;
}

.hero-options .option-grid p {
    font-size: 13px;
    text-align: center;
    margin: 0;
}

.hero-options .option-grid img {
    width: 70px;
    height: 70px;
}

.hero-section-right {
    width: 100%;
}

.hero-section-right img {
    width: 100%;
    height: auto;
}

/*------------------------------Explore---------------------------------------*/

.explore-wrapper {
    padding: 40px 0;
    padding-top: 20px;
}

.explore-section {
    
}

.explore-slider {
    
}

.explore-slide {
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
    border-radius: 15px;
}

.explore-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.explore-slide img:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scale: 1.05;
}

.slide-prev,
.slide-next {
  width: 50px;
  height: 50px;
  font-size: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid gainsboro;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.3s ease;
}

.slide-prev:hover,
.slide-next:hover {
  background: #2f2f2f;
  color: white;
  transform: scale(1.05);
}

.explore-section .slide-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

.explore-section .slide-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

/*------------------------------Service Slider--------------------------------*/

.service-slider-wrapper {
    padding: 40px 0;
    padding-top: 20px;
}

.service-slider-section {
    
}

.service-slider-section h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-slider {
    
}

.service-slide {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  max-width: 250px;
  overflow: hidden;
}

.service-slide .img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 220px;
  transition: all 0.3s ease;
}

.service-slide .img img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-slide .img img:hover {
  background: #2f2f2f;
  color: #fff;
  transform: scale(1.05);
  border: 1px solid black;
}

.service-slide .img:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
}

.service-slide .title {
  font-size: 16px;
  color: black;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.service-slide .rating {
    
}

.service-slide .rating i {
    font-size: 12px;
}

.service-slide .price {
    flex-wrap: wrap;
}

.service-slide .price-new {
    
}

.service-slide .price-old {
    color: gray;
    text-decoration: line-through;
}

.service-slider-section .slide-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

.service-slider-section .slide-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

/*------------------------------Category Slider-------------------------------*/

.category-slider-wrapper {
    padding: 40px 0;
    padding-top: 20px;
}

.category-slider-section {
    
}

.category-slider-section h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.category-slider {
    
}

.category-slide {
    position: relative;
}

.category-slide .img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0;
  height: 300px;
  width: 100%;
  display: block;
}

.category-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.category-slide .img img:hover {
    scale: 1.05;
}

.category-slide .title {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  bottom: 0;
  left: 0;
  background: #000000b8;
  width: 100%;
  padding: 10px 10px;
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
}

.category-slider-section .slide-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

.category-slider-section .slide-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9
}

/*------------------------------Banner----------------------------------------*/

.banner-wrapper {
    padding: 40px 0;
    padding-top: 20px;
}

.banner-section {
    
}

.banner-img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.banner-img img {
  width: 100%;
  transition: all .3s ease;
}

.banner-img img:hover {
    scale: 1.02;
}

/*------------------------------Footer----------------------------------------*/

.footer-wrapper {
  background: #fafafa;
}

.footer {
  padding: 40px 0;
  color: #000;
}

.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.footer .footer-logo img {
  height: 50px;
  transition: all .3s ease;
}

.footer .footer-logo img:hover {
  scale: 1.05;
}

.footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer .footer-col h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-col ul li {
  margin-bottom: 8px;
}

.footer .footer-col ul li a {
  position: relative;
  color: #3c3c3c;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer .footer-col ul li a:hover {
  color: #000;
}

.footer .footer-col ul li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.8);
  transition: width 0.6s ease;
}

.footer .footer-col ul li a:hover::before {
  width: 100%;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #000;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.footer .social-icons a:hover {
  background: #000;
  color: #fff;
}

.footer .app-links img {
  width: 130px;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s;
}

.footer .app-links img:hover {
  scale: 1.05;
}

.footer .footer-bottom {
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: #555;
}

.footer .footer-bottom p {
  margin: 4px 0;
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 0;
  }

  .footer .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer .footer-col {
    width: 100%;
  }

  .footer .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0;
  }

  .footer .footer-logo h2 {
    font-size: 1.2rem;
  }

  .footer .app-links img {
    width: 110px;
  }
}

/*------------------------------Breadcrumb------------------------------------*/

.breadcrumb-wrapper {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.breadcrumb-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.breadcrumb-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 120px;
    justify-content: center;
}

.breadcrumb-title {
    font-size: 35px;
    font-weight: 700;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li {
  font-size: 15px;
  color: #666;
}

.breadcrumb li a {
  color: #2f2f2f;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-size: 18px;
}

.breadcrumb li a:hover {
  color: #000;
}

/*------------------------------About-----------------------------------------*/

.about-wrapper {
    padding: 40px 0;
}
.about-section {
    width: 100%;
}
.about-img {
    border-radius: 20px;
    width: 100%;
}
.about-heading {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
}
.about-heading span {
    color: #1d9bdb;
}
.about-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

/*------------------------------Why Choose Us---------------------------------*/

.wcu-wrapper {
    padding: 40px 0;
    padding-top: 20px;
}
.wcu-section {
    
}
.wcu-heading {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}
.wcu-heading span {
    color: #1d9bdb;
}
.wcu-card {
    border: 1px solid lightgray;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 20px;
    height: -webkit-fill-available;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 20px -4px gainsboro;
    transition: all .3s ease;
    cursor: pointer;
}
.wcu-card:hover {
  transform: scale(1.03);
}
.wcu-card .wcu-img {
    
}
.wcu-card .wcu-img i {
    font-size: 30px;
    color: #1d9bdb;
}
.wcu-text {
    
}
.wcu-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d9bdb;
    margin-bottom: 15px;
}
.wcu-desc {
    margin: 0;
    font-size: 14px;
}

/*------------------------------Gallery---------------------------------------*/

.gallery-wrapper {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}

/*------------------------------Contact---------------------------------------*/

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.contact-info {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-info h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 35px;
  color: #0f8ed1;
}

.contact-info p {
  color: #666;
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
  gap: 10px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f8ed1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.info-icon i {
  color: #fff;
  font-size: 20px;
}

.info-content {
  flex: 1;
}

.info-content h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 5px;
}

.info-content p {
  margin: 0;
  color: #555;
  font-size: 16px;
}

.contact-form {
  max-width: 450px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: all .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f8ed1;
}

.contact-form button {
  background: #0f8ed1;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #024c9d;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
}

/*------------------------------Service Category------------------------------*/

.service-cat-wrapper {
    padding: 60px 0;
}

.heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.heading-only {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.heading-sec {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: gray;
}

.service-cat-grid {
    display: grid;
    gap: 30px;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-cat-card {
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(182 182 182 / 50%);
  background: #f5f5f5;
  text-align: center;
  height: -webkit-fill-available;
  transition: all .3s ease;
}

.service-cat-card:hover {
  scale: 1.05
}

.service-cat-card img {
    max-width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 1;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.service-cat-card p {
    font-size: 19px;
}

/*------------------------------Services--------------------------------------*/

.service-item-wrapper {
  padding: 60px 0;
}

.service-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: start;
}

.service-item-grid .service-slide {
  border: 1px solid #c1c1c1;
  padding: 0 10px;
}

.service-item-grid .service-slide .img {
  width: calc(100% + 20px);
  left: -10px;
  position: relative;
  border-radius: 0 !important;
  height: 200px;
}

.service-item-grid .service-slide .img img {
  top: -10px;
  position: relative;
}

.service-slide .order-btn {
  width: calc(100% + 20px);
  position: relative;
  left: -10px;
  outline: none;
  border: navajowhite;
  background: #1d9bdb;
  color: white;
  padding: 10px 10px;
  border-radius: 0;
  box-shadow: 0 5px 12px -3px gray;
  cursor: pointer;
}

/*------------------------------Product---------------------------------------*/

.product-container {
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
}
.product-container .product {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .product-container .product {
    grid-template-columns: 1fr;
  }
}
.product-container .image-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.product-container .main-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}
.product-container .thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #999 #eee;
}

.product-container .thumbnails::-webkit-scrollbar {
  height: 8px;
}

.product-container .thumbnails::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.product-container .thumbnails::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #999, #555);
  border-radius: 10px;
}

.product-container .thumbnails::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #666, #333);
}
.product-container .thumbnails img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
  object-fit: cover;
  border: 1px solid gray;
}
.product-container .thumbnails img:hover {
  opacity: 1;
}
.product-container .details {}
.product-container .details h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.product-container .details p {
  margin-bottom: 15px;
  color: #555;
}
.product-container .price {
  font-size: 1.8em;
  color: #1e7e34;
  font-weight: bold;
}
.product-container .old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1em;
  margin-left: 10px;
}
.product-container .order-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
}
.product-container .order-btn:hover {
  background: #0056b3;
}
.product-container .product-info {
  margin-top: 40px;
  background: #fff;
  border-radius: 10px;
  letter-spacing: 1px;
  font-size: 18px;
}
.product-container .product-info ul, .product-container .product-info ol {
  margin-left: 25px;
}
.product-container .rating-summary {
  font-size: 1.8em;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-left: 15px;
}

.product-container .rating-value {
  color: #ffb400;
}

.product-container .rating-count {
  font-size: 0.6em;
  color: #666;
  font-weight: normal;
}
.product-container .reviews {
  margin-top: 40px;
  letter-spacing: 1px;
}
.product-container .review {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid gainsboro;
}
.product-container .review .name {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
  gap: 5px
}
.product-container .review .name span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.product-container .review .name span img {
  width: 50px;
  height:50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid gray;
  box-shadow: 0 3px 12px -6px #000000;
}
.product-container .rating {
  color: #ffb400;
}

/*----------------------------Product Tag-------------------------------------*/

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tag-grid .card {
  padding: 15px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgb(221 221 221);
  background: linear-gradient(    180deg,    rgba(43, 111, 219, 0.12),    rgba(43, 111, 219, 0.06)  );
  border-radius: 10px;
  cursor: pointer;
}

.tag-grid .card:hover {
    scale: 1.03;
    
}
.tag-grid .badge {
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 26px;
  border: 1px solid rgba(43, 111, 219, 0.08);
  color: #00ab00;
}
.tag-grid .title {
  font-weight: 700;
  font-size: 15px;
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .tag-grid .card {
    padding: 10px;
  }
  .tag-grid .badge {
    min-width: 52px;
    height: 52px;
  }
}

/*------------------------------Login-----------------------------------------*/

.login-wrapper {
  padding: 60px 0;
}

.login-section {
  display: flex;
  align-items: center;
}

.login-section .login-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-section img {
  width: 80%;
}

.login-section .login-form {
  flex: 1;
  border: 1px solid gainsboro;
  padding: 40px 30px;;
  border-radius: 10px;
  box-shadow: 0px 5px 12px -6px #686868;
}

.login-form .form-group {
  display: flex;
  flex-direction: column;
}
.login-form .login-title {
  font-size: 30px;  
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.login-form .form-group label {
  font-size: 18px;
}
.login-form .form-group input, .login-form .form-group select {
  border: 1px solid gainsboro;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all .3s ease;
}
.login-form .form-group input[type="file"] {
  padding: 10px 15px;
  font-size: 12px;
}
.login-form .form-group select {
    color: gray;
}
.login-form .form-group input:focus {
  border: 1.5px solid #5fbbe8;
}
.login-form .login-btn {
  background: #5fbbe8;
  font-size: 16px;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  margin: auto;
  display: block;  
}
.login-form .link-btn {
  text-align: right;
  display: block;
  color: #1266f1 !important;
  font-size: 14px;
}
.divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.divider:after,
.divider:before {
content: "";
  position: absolute;
flex: 1;
height: 1px;
  width: 45%;
background: #dddddd;
  top: 12px;
}

.divider:before {
  left: 0;  
}

.divider:after {
  right: 0;
}
.form-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.mandatory {
    color: red;
    margin-left:5px;
}

/*------------------------------Profile---------------------------------------*/

.profile-container {
  padding: 20px 0;
}

.profile-container .profile-header {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 10px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  justify-content: space-between;
}

.profile-container .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
  border: 4px solid #4a6cf7;
}

.profile-container .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-container .profile-info {
  flex: 1;
  text-align: left;
}

.profile-container .profile-info h1 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #2d3748;
}

.profile-container .profile-info p {
  color: #718096;
  margin-bottom: 0; 
}

.profile-container .profile-stats {
  display: flex;
  gap: 25px;
}

.profile-container .stat-item {
  text-align: center;
}

.profile-container .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #4a6cf7;
}

.profile-container .stat-label {
  font-size: 14px;
  color: #718096;
}

.profile-container .profile-body {
  display: flex;
  gap: 25px;
}

.profile-container .tabs-container {
  flex: 0 0 280px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1;
}

.profile-container .tab {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  font-size: 15px;
  height: fit-content;
}

.profile-container .tab:hover {
  background-color: #f8fafc;
}

.profile-container .tab.active {
  background-color: #f0f4ff;
  border-bottom-color: #4a6cf7;
  color: #4a6cf7;
  font-weight: 600;
}

.profile-container .tab i {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.profile-container .content-area {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.profile-container .tab-content {
  display: none;
}

.profile-container .tab-content.active {
  display: block;
}

.profile-container .section-title {
  font-size: 22px;
  padding: 15px 20px;
  border-bottom: 2px solid #90afd9;
  color: #4a6cf7;
  background: #f0f4ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-container .section-body {
  padding: 15px 20px;
  border: 1px solid gainsboro;
  border-top: none;
}

.profile-container .orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.order-card {
  border: 1px solid #c9ccd0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.order-image {
  height: 160px;
  overflow: hidden;
}

.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.order-card:hover .order-image img {
  transform: scale(1.05);
}

.order-details {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #2d3748;
}

.order-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 14px;
  color: #718096;
}

.order-price {
  font-weight: 700;
  color: #4a6cf7;
}

.order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-success {
  background-color: #c6f6d5;
  color: #276749;
}

.status-danger {
  background-color: #fed7d7;
  color: #9b2c2c;
}

.status-warning {
  background-color: #ffcf49;
  color: #2e2e2e;
}

.status-primary {
  background-color: #96d5ff;
  color: #292929;
}

.address-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.address-card:hover {
  border-color: #4a6cf7;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.address-title {
  font-weight: 600;
  color: #2d3748;
}

.default-badge {
  background-color: #4a6cf7;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.address-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn-primary {
  background-color: #4a6cf7;
  color: white;
}

.btn-primary:hover {
  background-color: #3a5bd9;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #cbd5e0;
  color: #4a5568;
}

.btn-outline:hover {
  background-color: #f7fafc;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.wishlist-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.wishlist-item:hover {
  transform: translateY(-5px);
}

.wishlist-image {
  height: 160px;
  overflow: hidden;
}

.wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-details {
  padding: 15px;
}

.wishlist-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3748;
}

.wishlist-price {
  font-weight: 700;
  color: #4a6cf7;
  margin-bottom: 10px;
}

.wishlist-actions {
  display: flex;
  justify-content: space-between;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: #718096;
  font-size: 16px;
  transition: color 0.3s ease;
}

.btn-icon:hover {
  color: #4a6cf7;
}

@media (max-width: 7680px) {
  .profile-container .profile-body {
    flex-direction: column;
    gap: 5px;
  }

  .profile-container .tabs-container {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
  }

  .profile-container .profile-header {
    flex-direction: row;
    text-align: center;
    gap: 15px;
  }

  .profile-container .profile-avatar {
    margin-right: 0;
    margin-bottom: 0;
  }

  .profile-container .profile-stats {
    justify-content: center;
  }
}

/*------------------------------Modal------------------------------*/

body > .modal-backdrop {
  display: none !important;
}
.modal-backdrop {
  position: absolute;
  opacity: 0.3 !important;
}
.modal {
  position: fixed;
  z-index: 99999;
  background: #00000061;
  top: 0 !important;
  left: 0 !important;
}
.modal-dialog {
  position: absolute;
  width: 100%;
  margin: 0;
  bottom: 0;
  z-index: 99;
  max-height: calc(100% - var(--appPanel-mt));
}
.modal-content {
  border-radius: 2rem 0 0 2rem;
  border: none;
  position: absolute;
  top: 0;
  box-shadow: 0px -11px 26px -19px rgba(0, 0, 0, 0.75);
  height: 100%;
}
.modal-header {
  background: var(--color-theme);
  border: 0.2rem solid var(--color-theme-light);
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: initial;
  border-radius: 2rem 2rem 0 0;
}
.modal-title {
  font-size: 25px !important;
}
.modal-body {height: inherit;overflow-y: auto;overflow-x: hidden;}
.modal.fade .modal-dialog {
  right: -100%;
  transition: all 0.3s;
  height: 100%;
  position: absolute;
  top: 0 !important;
  transform: none !important;
}
.modal.fade.show .modal-dialog {
  right: 0;
}

/*------------------------------Menu Modal------------------------------*/

#menu_modal .modal-header {
  background: white;
  border: none;
  padding: 10px 10px;
}
#menu_modal .modal-header span {
  width: 3rem;
}
#menu_modal .modal-header .modal-title {
  text-align: center;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.menu-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-list li a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem;
  cursor: pointer;
}
.menu-list li a p {
  flex: 1;
}
.flex-row {
  display:flex;
  flex-direction: row;
}
.flex-row--between {
  justify-content: space-between;
  align-items: center;
}
.icon-btn {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  display:flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 5px -3px black;
}
.modal .product-card {
    border: 1px solid gray;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 9px -9px black;
    padding: 0 10px 0 10px;
    margin-bottom: 10px;
}
.modal .product-card .product-img {
    width: calc(100% + 20px);
    height: 120px;
    left: -10px;
    position: relative;
    margin-bottom: 10px;
}
.modal .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal .product-title {
    font-size: 20px;
}
.modal .product-price {
    font-size: 18px;
    color: #008a00;
}
.modal .product-desc {
    color: gray;
    font-size: 12px;
}
.modal .login-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

#search-result {
    padding: 10px;
    position: fixed;
    width: 100%;
    height: calc(100vh - 68px);
    bottom: 0;
    background: white;
    z-index: 99;
    display: none;
    overflow: auto;
}

#search-result.show {
    display: block;  
}

.skeleton-line {
    height: 30px;
    width: 100%;
    background: linear-gradient(90deg, #eee, #f5f5f5, #eee);
    background-size: 200% 100%;
    animation: skeleton 1.2s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/*-------------------Form------------------*/

.form-input-control.basic {
  flex: 0;
  border: none;
}
.form-input-control.basic .form__input--checkbox {
  padding: 0 1rem !important;
}
.form-input-control.basic .checkbox__label {
  padding: 0 1rem !important;
}
.form-input-control.basic .input__field .form__input {
  border: none !important;
  background: none !important;
  padding: 0.5rem !important;
}

textarea {
  margin: 0;
}
::file-selector-button {
  display: none;
}

.form-input-control {
  position: relative;
  display: flex;
  flex-direction: column;
  /*flex: 1;*/
  margin-bottom: 1rem;
}
.form-input-control .input__label {
  color: #605daf;
  font-weight: 700;
  font-size: 1.6rem;
  pointer-events: none;
  transition: all 0.3s ease;
  text-align: left;
}
.form-input-control .input__field {
  position: relative;
}
.form-input-control .input__field i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  z-index: 1;
}
.form-input-control .input__field i.input__icon {
  color: #605daf;
  left: 1rem;
  font-weight: 700;
}
.form-input-control i.uil-shield-exclamation,
.form-input-control i.uil-shield-check {
  color: #e74c3c;
  visibility: hidden;
  right: 1rem;
}
.form-input-control.error i.uil-shield-exclamation {
  color: #e74c3c;
  visibility: visible;
}
.form-input-control.success i.uil-shield-check {
  color: #2ecc71;
  visibility: visible;
}
.form-input-control small {
  color: #e74c3c;
  font-size: 1.4rem !important;
  visibility: hidden;
  position: relative;
  height: 0;
  width: 0;
  text-align: left;
  font-weight: 700;
}
.form-input-control.error small {
  visibility: visible;
  height: auto;
  width: auto;
}

.form-input-control .input__field .form__input {
  border: 1px solid gainsboro;
  background-image: linear-gradient(175deg, white 0%, #dfe9f3 100%);
  padding: 1.2rem 3rem 1.2rem 3.5rem;
  width: 100%;
  outline: none;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #424242;
  color: #000000;
  background: var(--bs-gray-200);
  /* font-weight: 700; */
}
input[readonly] {
  background:#e5e4e4 !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-theme-lightest);
    background-image: linear-gradient(175deg, white 0%, #dfe9f3 100%);
    padding: 1.2rem 0.8rem 1.2rem 3rem;
    width: 100%;
    outline: none;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: #424242;
    color: #000000;
    background: var(--bs-gray-200);
    font-weight: 700;
    height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
}
.form-input-control.error .input__field .form__input {
  border-color: #e74c3c;
}
.form-input-control.success .input__field .form__input {
  border-color: #2ecc71;
}

.form-input-control i.uil-times {
  display: none;
  right: 1rem;
}
.form-input-control:has(.form__input:not(:placeholder-shown)) i.uil-times {
  display: block;
}

/*-----------------------Pic---------------------------*/

.avatar-upload {
  position: relative;
  width: fit-content;
  gap: 1rem;
}
.avatar-upload small {
  text-align: center;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 30px;
}
.avatar-upload-full {
    width: auto;
}
.avatar-upload-full .avatar-preview {
    width: 100% !important;
}
.avatar-upload-full .avatar-preview > div {
    border-radius: 1rem !important;
}
.avatar-upload-fit {
    width: auto;
}
.avatar-upload-fit .avatar-preview {
    width: 100% !important;
    height: 15rem !important;
}
.avatar-upload-fit .avatar-preview > div {
    border-radius: 1rem !important;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 3rem;
  color: #20c996;
  font-weight: 700;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-preview {
  width: 15rem;
  height: 15rem;
  position: relative;
  border-radius: 100%;
  border: 0px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*------------------------------Mobile Header---------------------------------*/

.mobile-header-wrapper {
    display: none;
    padding: 12px 15px;
    border-bottom: 1px solid gainsboro;
    background: white;
}

.mobile-header-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 9999;
}

@media(max-width: 991px) {
    .header-wrapper { display: none; }
    .mobile-header-wrapper { display: block; }
}

.mobile-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header-logo {
    height: 32px;
}

.mobile-header-logo img {
    height: 100%;
    width: auto;
}

.mobile-icons-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-icons-right i {
    font-size: 26px;
    cursor: pointer;
    color: #2f2f2f;
}

.mobile-search-box {
    display: none;
    margin-top: 10px;
    border: 1px solid gainsboro;
    padding: 8px 12px;
    border-radius: 6px;
}

.mobile-search-input {
    width: 100%;
    border: none;
    font-size: 15px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    margin-top: 15px;
    border-top: 1px solid gainsboro;
    padding-top: 10px;
}

.mobile-menu a {
    padding: 10px 5px;
    font-size: 16px;
    display: block;
    color: #212529;
    border-bottom: 1px solid #efefef;
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-enquiry {
    color: #212529 !important;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 5px;
    margin-top: 5px;
}

.mobile-menu, .mobile-search-box {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mob-footer {
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  padding: 12px 0 8px 0;
  position: fixed;
  bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 10px -5px black;
}

.mob-footer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 3px;
}

.mob-footer a.active {
  color: #2768b3;
}

.mob-footer a span {
  font-size: 12px;  
}

/*---------------------------------Responsive---------------------------------*/

.mob-el {
    display: none;
}

@media (max-width: 750px) {
    .hero-wrapper {
        padding: 30px 15px;
    }
    .hero-options {
        padding: 0;
        border: none;
    }
    .hero-options .option-grid img {
        width: 50px;
        height: 50px;
    }
    .hero-section-right {
        width: 100%;
        margin-top: 20px;
    }
    .explore-wrapper {
        padding: 20px 15px;
        padding-top: 0;
    }
    .service-slider-wrapper {
        padding: 40px 15px;
        padding-top: 0;
    }
    .service-slide .img {
        height: 170px;
    }
    .slide-prev, .slide-next {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
    .banner-wrapper {
        padding: 40px 15px;
        padding-top: 0;
    }
    .banner-img {
        border-radius: 10px;
    }
    .footer-wrapper {
        background: #fafafa;
        padding: 0 15px;
    }
    #search-result {
        height: calc(100vh - 115px);
    }
    .service-item-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    #search-result .heading-only {
        font-size: 22px !important;
        margin-top: 10px !important;
    }
    .service-item-grid .service-slide .img {
        width: calc(100% + 20px);
        height: 120px;
    }
    .breadcrumb-wrapper {
        padding: 0px 15px;
    }
    .about-wrapper {
        padding: 30px 15px;
    }
    .about-img {
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .about-section p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .about-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .wcu-wrapper {
        padding: 20px 15px;
        padding-top: 0;
    }
    .wcu-heading {
        font-size: 25px;
        margin-bottom: 20px;
        text-align: left;
    }
    .gallery-wrapper {
        padding: 40px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    .contact-section {
        gap: 20px;
        padding: 40px 15px;
    }
    .contact-wrapper iframe {
        width: 85% !important;
        margin: auto;
    }
    .contact-info h2 {
        font-size: 30px;
    }
    .info-content h4 {
        font-size: 20px;
    }
    .info-icon {
        width: 45px;
        height: 45px;
        margin-right: 5px;
    }
    .service-cat-wrapper {
        padding: 40px 15px;
    }
    .heading {
        font-size: 30px;
    }
    .heading-sec {
        font-size: 15px;
    }
    .service-cat-grid {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .service-cat-card img {
        margin-bottom: 10px;
        height: 80px;
    }
    .service-cat-card p {
        font-size: 15px;
    }
    .service-cat-card {
        padding: 10px;
    }
    .service-item-wrapper {
        padding: 40px 15px;
    }
    .heading-only {
        font-size: 25px;
    }
    .breadcrumb-title {
        font-size: 30px;
    }
    .product-container {
        margin: 30px auto;
        padding: 0px 15px;
    }
    .product-container .order-btn {
        padding: 10px 15px;
        font-size: 0.8em;
    }
    .login-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    .login-wrapper {
        padding: 40px 15px;
    }
    .login-section .login-form {
        padding: 30px 20px;
        margin-top: 15px;
    }
    .login-form .login-title {
        font-size: 25px;
    }
    .login-form .form-group label {
        font-size: 14px;
        margin-bottom: 3px;
    }
    .login-section .login-img {
        width: 80%;
    }
    .profile-container .profile-avatar {
        width: 60px !important;
        height: 60px !important;
        border: 2px solid #4a6cf7;
    }
    .profile-container .profile-avatar img {
        width: 60px !important;
        height: 60px !important;
    }
    .profile-container .profile-header {
        padding: 10px 15px;
    }
    .profile-container .profile-info {
        font-size: 12px;
    }
    .profile-container .profile-info h1 {
        font-size: 20px;
    }
    .profile-container .profile-body {
        padding: 0 15px;
    }
    .profile-container .tab {
        padding: 12px 10px;
        border: 1px solid gainsboro;
        border-bottom: 2px solid transparent;
        font-size: 12px;
        white-space: nowrap;
    }
    .profile-container .tabs-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .profile-container .section-title {
        font-size: 20px;
        padding: 10px 15px;
    }
    .mob-el {
        display: block;
    }
    .web-el {
        display: none;
    } 
    .modal-content {
        border-radius: 0;
    }
    .wcu-card {
        height: 100%;
    }
    .service-cat-card {
        height: 100%;
    }
    .breadcrumb-wrapper {
        display: none;
    }
    body {
        padding-bottom: 90px;
    }
    .login-section .login-img {
        display: none;
    }
    .login-section .login-form {
        margin: 0;
        box-shadow: none;
        border: none;
        padding: 0 10px;
    } 
}


















