@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
  background-color: #f0ece4;
  overflow-x: hidden;
}

* {
  font-family: "Poppins", serif;
}

li {
  list-style-type: none;
}

p {
  color: #6a6d6f;
  font-size: 14px;
}

.top-bar {
  background-color: #004b9b;
  padding: 5px 0;
}

.top-left-ul {
  display: flex;
  justify-content: left;
  /* Aligns content to the left */
  align-items: center;
  /* Centers the content vertically */
}

.our-brand {
  padding: 30px 0;
}

.brand-carousel {}

.owl-dots {
  text-align: center;
}

.owl-dot {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: #222222 !important;
  opacity: 0.8;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-dot.active {
  background-color: #FF170F !important;
}

.link-area {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 15px;
  border-radius: 40px;
  background: tomato;
}

.link-area a {
  text-decoration: none;
  color: #fff;
  font-size: 25px;
}

.single-logo {
  border: 1px solid #b0ada8;
  border-radius: 5px;
}

.single-logo img {
  border-radius: 5px;
}

.header-logo-area {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #ffffff;
  /* Background to avoid transparency issues */
  transition: all 0.3s ease-in-out;
}

.navbar-area {
  position: sticky;
  top: 107px;
  z-index: 999;
  background-color: #004d9b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  /* Optional shadow */
  transition: all 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #add745 !important;
}

.navbar-area .nav-link {
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 0;
  padding: 12px 0;
  font-weight: 600;
}

.account-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 19px;
}

.account-ul ul li {
  padding: 10px 0;
  cursor: pointer;
  color: #545454 !important;
  font-size: 14px;
  position: relative;
}

.account-ul ul li a {
  color: #545454;
  text-decoration: none;
}

.account-ul ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #8ba32e;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.top-left-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 19px;
}

.top-left-ul ul li {
  padding: 10px 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 13px;
  position: relative;
}

.top-left-ul ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: white;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.top-right-ul {
  display: flex;
  justify-content: right;
  align-items: center;
}

.top-right-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 19px;
}

.top-right-ul ul li {
  padding: 10px 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 13px;
  position: relative;
}

@keyframes bggradient {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}


.top-right-ul ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: white;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.brand-logo img {
  width: 150px;
}

.navbar {
  background-color: transparent !important;
  padding: 0;
}

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

.navbar-collapse {
  justify-content: space-between;
  align-items: center;
}

.navbar-nav .nav-item {
  margin: 0 28px 0 0;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-item:hover {
  transform: translateY(-5px);
  /* Moves the menu item up by 5px */
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0px;
}

/* Style for dropdown */
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004f9b;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown:hover>.dropdown-menu {
  display: block;
}

/* Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #004b9b !important;
  color: #acd73b !important;
}

.dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1rem;
  clear: both;
  font-weight: 600;
  color: #ffffff;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.img-back {
  background-color: #efefef;
}

.banner-area {
  background-color: #050d1f;
}

.banner-area .card {
  background-color: transparent;

}

.banner-down-one {
  background-color: #efefef;
}

.banner-down-area .thirteen {
  padding: 20px 0;
}

.alag-color {
  font-size: 35px;
  color: #244976;
}

.thirteen h1 {
  position: relative;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  border: 2px solid #222;
  padding: 5px 11px 3px 11px;
}

.thirteen h1:before,
.thirteen h1:after {
  background-color: #c50000;
  position: absolute;
  content: '';
  height: 7px;
  width: 7px;
  border-radius: 50%;
  bottom: 20px;
}

.thirteen h1:before {
  left: -20px;
}

.thirteen h1:after {
  right: -20px;
}

.has-search .form-control {
  padding-left: 2.375rem;
  max-width: 100%;
  border-radius: 20px;
  font-size: 14px;
  background-color: #ffffff !important;
  background-clip: padding-box !important;
  border: 2px solid #b1d23a !important;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.header-logo-area {
  background-color: #ffffff;
  padding: 10px 0 12px;
  border-bottom: 1px solid #b6d336;
}

.account-ul {
  float: right;
}

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

.account-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.account-ul ul li {
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.account-ul ul li img {
  margin-right: 8px;
  height: 20px;
  width: auto;
}

.fa-location-dot {
  margin-right: 8px;
}

.topbar-li-icon {
  width: 18px;
}

.top-rated-ac h2 {
  font-size: 24px;
  margin: 0px 0 7px 0;
}

.top-rated-ac p {
  margin: 0px 0 35px 0;
}

h2::before {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 5px;
  background-color: #acd73f;
  margin: 0 10px 8px 0;
}

h2::after {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 5px;
  background-color: #acd73f;
  margin: 0 0 8px 10px;
}

.top-rated-ac {
  /*background-image: url('https://worldtradekey.in/indcool/assets/icon/istockphoto-1401295466-612x612.jpg'); */
  background-color: #f1ece4;
  background-size: cover;
  /* Ensures the image covers the entire div */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  padding: 40px 0;
  /* Adds some padding inside the div */
  color: black;
  /* Adjusts text color to make it more visible */
}

.top-rated-ac-img {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.top-rated-ac-img img {
  display: block;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-rated-ac-img:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.living-banner {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.living-banner img {
  display: block;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.living-banner:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.living-solution {
  padding: 4px 0;
}

/* Section Styling */
.top-rated-products {
  padding: 25px 0;
  background-color: #f1ece4;
}

/* Title Center Alignment */
.top-rated-div {
  margin-bottom: 30px;
}

.top-rated-div h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #6b6d6f;
}

/* Product Card Centering */

 .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
/* .product-card {
  margin: 0 auto 15px;
  background-color: var(--card-background, #fff);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
} */

.product-card {
  margin: 0 auto 15px;
  background-color: var(--card-background, #fff);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card a {
  text-decoration: none;
}

.apply-card {
  background: none !important;
  border: 0px !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.product-card__image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.apply-coupen:hover {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

/* Card Info Center Alignment */
.product-card__info {
  padding: 21px 20px;
}

/* Title Styling */

.product-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color, #333);
  line-height: 1.4;
  height: 2.8em;
  /* Limit to 2 lines */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

/* .product-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color, #333);
} */

/* Description Styling */
.product-card__description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

/* Price and Button Alignment */
.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* Price Styling */
.product-card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0049a9;
}

/* Button Styling */
.product-card__btn {
  background-color: #0049a9;
  color: white;
  border: none;
  /*padding: 10px 20px;*/
  padding: 10px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  width: 48%;
}

.buy-now {
  background-color: transparent !important;
  border: 1px solid #0049a9 !important;
  color: #0049a9 !important;
  width: 50%;
  text-align: center;
}

.product-card__btn:hover {
  background-color: #acd73f;
  color: white;
  text-decoration: none;
}

.uncompromise {
  padding: 30px 0;
  /* background: radial-gradient(circle, #fff 0, #f6f6ff 53%, #e6e6e7 100%); */
}

.uncompromise .card {
  border: 0;
  background: none;
  border-right: 2px solid #818387;
}

.uncompromise .card img {
  width: 60px;
  padding: 20px 0 0 0;
}

.cart .card {
  border-radius: 10px;
}

.uncompromise .card h5 {
  font-size: 16px;
}

.footer-class {
  background-color: #e6e1d6;
  padding: 40px 0 0 0;
}

.footer-row {
  padding: 70px 20px 0 20px;
}

.footer-class ul {
  padding: 0;
}

.top-rated-div p {
  font-size: 17px;
}

.Location li {
  line-height: 38px;
  font-size: 14px;
}

.footer-class li i {
  color: #acd547;
  padding-right: 4px;
}

.footer-class li a {
  font-size: 13px;
  line-height: 32px;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00ff00;
}

.contact-info img {
  width: 50px;
  height: 50px;
}

.email {
  color: white;
  margin-top: 5px;
  display: block;
}

.footer p {
  color: white;
}

.footer h5 {
  margin-bottom: 20px;
}

.footer .row {}

.product-thumb {
  position: relative;
  margin-top: 30px;

}

.owl-dots {
  display: none;
}

/* fix blank or flashing items on carousel */
.product-thumb .owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav>div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #cdcbcd;
  cursor: pointer;
}

.owl-nav i {
  font-size: 25px;
  color: #014a9b;
}

.owl-nav .owl-prev {
  left: -40px;
  position: absolute;
  top: 46%;
}

.owl-nav .owl-next {
  right: -40px;
  position: absolute;
  top: 51%;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  color: #000;
  /* Optional: Change icon color on hover */
}

.product-thumb .card {
  background: none;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-thumb .card:hover {
  transform: translateY(-10px);
  /* Moves the card upward by 10px */
}

.product-thumb .card img {
  width: 100px !important;
  margin-top: 16px;
  border-radius: 10px;
}

.product-thumb .card h5 {
  font-size: 15px;
  margin: 0;

}

.need-help {
  padding: 30px 0;
  background: #f0ece4;
}

.custom-card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  height: 100%;
  margin-bottom: 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: scale(1.05);
  /* zoom in slightly */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* optional for a subtle shadow */
}

.custom-card h5 {
  font-size: 26px;
  color: #6a6d6f;
  margin-bottom: 24px;
  font-weight: 300;
}

.circle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #6a6d6f;
  border-radius: 50%;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #6a6d6f;
}

.arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #004ba9;
  font-size: 18px;
  position: absolute;
  bottom: 20px;
}

.arrow-icon:hover {
  background-color: #aad13d;
}

.arrow-icon span {
  color: white;
}

.main-flex {
  justify-content: space-between;
  /* Align the title and icon */
}

.row>div {}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .product-card {
    max-width: 100%;
    /* Adjust card width to fit smaller screens */
    padding: 10px;
  }

  .product-card__image {
    /*height: 200px;*/
  }

  .product-card__title {
    font-size: 1.3rem;
  }

  .product-card__description {
    font-size: 0.8rem;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .product-card__btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

.single-logo {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.single-logo img {
  display: block;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.single-logo:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #00499d;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.breadcrumb-area {
  background-color: #d9d7d3;
  padding: 12px 0;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb a:after {
  background-image: url(https://indcool.in/frontend/img/icon-arrow-black-right-10-10.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: .625rem;
  margin: 0 .25rem;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  width: .625rem;
}

.exp-card {
  border-left: 4px solid white !important;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  padding: 10px;
  border-radius: 5px;
}

.client-testimonial {
  margin-bottom: 40px;
}

.breadcrumb {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.breadcrumb a {
  text-decoration: none;
  color: #545454;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #555;
}

.pd-wrap {
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

.heading-section {
  text-align: center;
  margin-bottom: 20px;
}

.sub-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: #2e9ca1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading-section h2 {
  font-size: 32px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  min-width: 80px;
  background-size: 100%;
}

.carousel-testimonial .item {
  padding: 30px 10px;
}

.quote {
  position: absolute;
  top: -23px;
  color: #2e9da1;
  font-size: 27px;
}

.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 500;
}

.position {
  color: #adadad;
  font-size: 14px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  outline: none;
  height: 25px;
}

.owl-nav button svg {
  width: 25px;
  height: 25px;
}

.owl-nav button.owl-prev {
  left: 4px;
}

.owl-nav button.owl-next {
  right: 4px;
}

.owl-nav button span {
  font-size: 27px;
}

.product-thumb .item img {
  height: 100px;
}

.product-name {
  font-size: 35px;
  font-weight: 500;
  line-height: 43px;
  margin-bottom: 4px;
}

.product-price-discount {
  font-size: 22px;
  font-weight: 400;
  padding: 10px 0;
  clear: both;
}

.product-price-discount span.line-through {
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 14px;
  vertical-align: middle;
  color: #a5a5a5;
}

.display-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.product-info {
  width: 100%;
}

.reviews-counter {
  font-size: 13px;
}

.reviews-counter span {
  vertical-align: -2px;
}

.rate {
  float: left;
  padding: 0 10px 0 0;
}

.rate:not(:checked)>input {
  position: absolute;
  top: -9999px;
}

.rate:not(:checked)>label {
  float: right;
  width: 15px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 21px;
  color: #ccc;
  margin-bottom: 0;
  line-height: 21px;
}

.rate:not(:checked)>label:before {
  content: '\2605';
}

.rate>input:checked~label {
  color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
  color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
  color: #c59b08;
}

.product-dtl {
  padding: 0 50px;
}

.product-dtl p {
  font-size: 14px;
  line-height: 24px;
  color: #7a7a7a;
}

.product-dtl .form-control {
  font-size: 15px;
}

.product-dtl label {
  line-height: 16px;
  font-size: 15px;
  margin-bottom: 16px;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

.product-count {
  margin-top: 15px;
}

.product-count .qtyminus,
.product-count .qtyplus {
  width: 34px;
  height: 34px;
  background: #004c9d;
  text-align: center;
  font-size: 19px;
  line-height: 36px;
  color: #fff;
  cursor: pointer;
}

.product-count .qtyminus {
  border-radius: 3px 0 0 3px;
}

.product-count .qtyplus {
  border-radius: 0 3px 3px 0;
}

.product-count .qty {
  width: 60px !important;
  text-align: center;
}

.round-black-btn {
  border-radius: 4px;
  background: #004a9d;
  color: #fff;
  border-radius: 30px;
  padding: 7px 45px;
  display: inline-block;
  margin-top: 20px;
  border: solid 2px #004c9d;
  transition: all 0.5s ease-in-out 0s;
  display: block;
  text-align: center;
  text-decoration: none;
}

.round-black-btn:hover,
.round-black-btn:focus {
  background: transparent;
  color: #212529;
  text-decoration: none;
}

.product-info-tabs {
  margin-top: 25px;
}

.product-info-tabs .nav-tabs {
  border-bottom: 2px solid #d8d8d8;
}

.product-info-tabs .nav-tabs .nav-item {
  margin-bottom: 0;
}

.product-info-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #323232;
}

.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
  border: none;
}

.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active,
.product-info-tabs .nav-tabs .nav-link.active:hover {
  border: none;
  border-bottom: 2px solid #00519b;
  font-weight: bold;
  font-size: 19px;
  background-color: #004f9b;
  color: white;
  min-width: 200px;
}

.product-info-tabs .tab-content .tab-pane {
  padding: 30px 20px;
  font-size: 15px;
  line-height: 24px;
  color: #7a7a7a;
}

.review-form .form-group {
  clear: both;
}

.mb-20 {
  margin-bottom: 20px;
}

.review-form .rate {
  float: none;
  display: inline-block;
}

.review-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: #000;
}

.review-form .form-control {
  font-size: 14px;
}

.review-form input.form-control {
  height: 40px;
}

.review-form textarea.form-control {
  resize: none;
}

.review-form .round-black-btn {
  text-transform: uppercase;
  cursor: pointer;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 9999;
  display: none;
  /* Initially hidden */
}

.sticky-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#product-name {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

#product-price {
  font-size: 16px;
  font-weight: bold;
  color: #004aa8;
}

#buy-now-btn {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
}

#thumb .item {
  border: 2px solid #202529;
  padding: 2px;
  margin: 2px;
  border-radius: 4px;
  cursor: pointer;
}

.pad {
  padding: 30px 0;
}

.nned {
  margin-top: 2px;
}

.content-ul-aplus ul {
  margin-left: 20px;
}

.content-ul-aplus ul li {
  line-height: 36px;
  text-indent: -8px;
}

.content-background {
  background-color: #f0ece4;
}

.section-col-content {
  display: flex;
  gap: 30px;
}

.col-sec-2 h3 {
  font-size: 23px;
}

.lg-floor-content .card {
  min-height: 430px !important;
}

.my-content {
  background-color: #efefef;
  padding: 30px 0;
}

.featured-list {
  display: flex;
  gap: 30px;
  margin-bottom: 1px;
}

.features-heading h5 {
  margin: 6px 0;
  padding: 6px 0 6px 0;
}

.myhrclass {
  background-color: black !important;
  border: 1px solid #0054a9;
}

.product-slider .item img {
  width: 100%;
  cursor: zoom-in;
}

.video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  z-index: 1000;
}

.video-modal video {
  width: 100%;
  max-width: 600px;
}

.close-video {
  display: block;
  margin: 10px auto;
  background: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.cart .card p {
  margin-bottom: 5px !important;
}

.checkout-btn {
  border-color: #0050a0;
  background-color: #0050a0;
  border-radius: 29px;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
  padding: 2rem 0;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: black;
  /* Default color */
}

/* Active State */
.icon-box.active p {
  color: #004d9b !important;
}

.icon-box.active img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(90%) saturate(1236%) hue-rotate(193deg) brightness(87%) contrast(98%);
}

.shop-page {
  margin-top: 40px;
}

.sidebar {
  max-width: 300px;
  padding: 1rem;
  background-color: #f6f1eb;
  border-right: 1px solid #ddd;
  border-radius: 6px;
}

.sidebar h6 {
  font-size: 14px;
  font-weight: 600;
  color: #545454 !important;
}

.form-check-input:checked {
  border-color: #004a9e;
  background-color: #004b9f;
}

#filterForm .form-check-label {
  font-size: 13px !important;
}

.price-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-slider span {
  font-size: 12px;
}

.shophr {
  margin: 0;
}

.about-section {
  position: relative;
  padding: 120px 0px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  padding-right: 100px;
}

.about-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #004ba0;
  border-radius: 5px;
}

.about-section .image-column .inner-column .image {
  position: relative;

}

.about-section .image-column .inner-column .image image {
  border-radius: 10px;

}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
  background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #f9f9f9;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #004aa2;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.about-section .btn-style-three:before {
  position: absolute;
  content: '';
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
  color: #ffffff;
  background: #004da6;
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #004da6;
  font-family: 'Arimo', sans-serif;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.sec-title .title {
  position: relative;
  color: #004f9a;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #ff5a6e;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: #a0d849 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading h2 span {
  color: #acd73e;
}

.team-area {
  padding: 50px 0;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.team-area .single-item {
  margin-bottom: 30px;
}

.team-area .item .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.team-area .item .thumb::after {
  background: #232323 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
}

.team-area .team-items .item:hover .thumb::after {
  opacity: 0.7;
}

.team-area .item .thumb .overlay {
  top: -100%;
  left: 0;
  padding: 20px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: 1;
}

.team-area .item:hover .thumb .overlay {
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.team-area .item .thumb .overlay p {
  color: #ffffff;
}

.team-area .item .thumb .overlay h4 {
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.team-area .item .thumb img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.team-area .item:hover .thumb img {
  opacity: .6;
}

.team-area .item .thumb .social li {
  display: inline-block;
}

.team-area .item .thumb .social li a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin: 0 2px;
  text-align: center;
  width: 40px;
}

.team-area .info {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 40px 20px 20px;
  position: relative;
  text-align: center;
  z-index: 9;
}

.team-area .info .message {
  height: 50px;
  line-height: 40px;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.team-area .info .message a {
  background: #fff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  box-sizing: border-box;
  color: #004b9f;
  display: inline-block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  width: 50px;
}

.team-area .info .message a i {
  font-weight: 500;
}

.team-area .info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
  color: #004d98;
  font-size: 20px;
}

.team-area .info span {
  color: #7c7677;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.team-area .social li.twitter a {
  background-color: #00b6f1;
}

.team-area .social li.pinterest a {
  background-color: #bd081c;
}

.team-area .social li.facebook a {
  background-color: #3b5998;
}

.team-area .social li.google-plus a {
  background-color: #df4a32;
}

.team-area .social li.vimeo a {
  background-color: #1ab7ea;
}

.team-area .social li.instagram a {
  background-color: #cd486b;
}

.footer_get_touch_outer {
  margin-top: 80px;
}

.grid-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
}

.get_form_inner {
  display: block;
  padding: 50px 40px;
  background: #fff;
  box-shadow: -4px -2px 20px -7px #cfd5df;
  border-radius: 5px 0px 0px 5px;
}

input[type="text"],
input[type="text"],
input[type="email"],
input[type="tel"] {
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  color: #333;
  height: 42px;
  padding: 0 0 0 20px;
  width: 100%;
  outline: 0;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.grid-full {
  margin: 20px 0;
}

textarea {
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  color: #333;
  padding: 12px 0 0 20px;
  width: 100%;
  outline: 0;
  margin-bottom: 20px;
}

.get_form_inner_text h3 {
  color: #333;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

input[type="submit"] {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid;
  font-weight: 500;
  padding: 10px 20px;
  outline: 0;
  cursor: pointer;
  color: #103e65;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

input[type="submit"]:hover {
  background-color: #f85508;
  border-color: #f85508;
  color: #fff;
}

.get_say_form {
  display: inline-block;
  padding: 45px 0 25px 30px;
  background: #004b9d;
  position: relative;
  border-radius: 0px 5px 5px 0;
}

.get_say_form h5 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 40px;
}

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

.get_say_social-icn {
  display: flex;
  position: absolute;
  bottom: 40px;
}

.get_say_social-icn a {
  font-size: 22px;
  color: #fff;
  padding: 0 20px 0 0;
}

.get_say_info_sec i {
  color: #fff;
  font-size: 32px;
}

.get_say_info_sec>li {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  margin-bottom: 40px;
}

.get_say_info_sec>li a {
  width: 100%;
  display: block;
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
  text-decoration: unset;
  font-weight: 500;
  background: #162b65;
  border-radius: 5px 0 0 5px;
  transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.get_say_info_sec>li a:hover {
  background-color: #abd93f;
}

.google-map {
  padding: 40px 0 60px 0;
}

.section-pad {
  padding: 40px 0;
}

.career-img {
  text-align: center;
}

.career .text {
  text-align: justify;
}

.notice-container {
  display: flex;
  align-items: flex-start;
  border-left: 4px solid black;
  padding-left: 15px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.notice-text {
  font-size: 16px;
}

.notice-text strong {
  font-weight: bold;
}

.team-sign {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  display: block;
}

.section-padding {
  padding: 10px 0;
}

.product-range-area {
  background-image: url('https://indcool.in/frontend/img/air-conditioners-page-1.jpg');
  background-color: #f1ece4;
  background-size: cover;
  /* Ensures the image covers the entire div */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
}

.ac-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.ac-card img {
  width: 100%;
  height: auto;
  display: block;
}

.ac-text {
  padding: 20px;
}

.myunitarrow {
  float: right;
}

.product-count input[type="text"],
.product-count input[type="email"],
.product-count input[type="tel"] {
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  color: #333;
  height: 35px;
  padding: 0 0 0 0px !important;
  width: 100%;
  outline: 0;
}

.zoomContainer {
  z-index: 99 !important;
  /* Ensure it's on top */
  position: absolute !important;
  /* Prevents layout breakage */
}

.product-slider img {
  max-width: 100%;
  /* Ensures image responsiveness */
  height: auto;
  /* Maintains aspect ratio */
  object-fit: contain;
  /* Keeps images proportionate */
}

.checkout-btn:hover {
  color: #004f9b;
  background-color: #acd939;
  border-color: #9fda45;
}

.container-fluid {
  padding: 0 30px 0 30px;
}

.full-screen {
  padding: 0 !important;
}

.partner-container {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .1),
    0 5px 12px -2px rgba(0, 0, 0, .1),
    0 18px 36px -6px rgba(0, 0, 0, .1);
  overflow: hidden;
  margin: 10px;
}

.partner-container .title {
  padding: 25px;
  background: #f6f8fa;
}

.partner-container .title p {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}

.partner-container .title p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(to right, #F37A65, #D64141);
}

.user_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px;
}

.user_details .input_box {
  width: calc(50% - 20px);
  margin-bottom: 12px;
}

.input_box label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.input_box label::after {
  content: " *";
  color: red;
}

.input_box input,
.input_box select {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 15px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
  background-color: #f6f8fa;
  font-family: 'Poppins', sans-serif;
  transition: all 120ms ease-out;
}

.input_box input:focus,
.input_box input:valid,
.input_box select:focus {
  box-shadow: 0 0 0 2px #AC8ECE;
}

.reg_btn {
  padding: 25px;
  margin: 15px 0;
}

.reg_btn input {
  height: 45px;
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(to right, #abd944, #004b9b);
  border-radius: 5px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

.reg_btn input:hover {
  background: linear-gradient(to right, #D64141, #F37A65);
}

@media screen and (max-width: 584px) {
  .user_details {
    max-height: 340px;
    overflow-y: scroll;
  }

  .user_details::-webkit-scrollbar {
    width: 0;
  }

  .user_details .input_box {
    width: 100%;
  }
}

@media screen and (max-width: 419px) {
  .gender .category {
    flex-direction: column;
  }
}

.partner-form {
  padding: 30px 0;
}

.partner-form h3::after {
  content: "";
  display: block;
  width: 22%;
  height: 2px;
  background: linear-gradient(to right, #004b9f, #add33a);
  margin: 10px auto;
}

.login {
  margin: 20px auto;
  padding: 40px 50px;
  max-width: 500px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 1px 1px #666;
}

.login input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin: 10px 0;
  padding: 14px 12px;
  font-size: 16px;
  border-radius: 2px;
  font-family: Raleway, sans-serif;
}

.login input[type=email],
.login input[type=text],
.login input[type=password] {
  border: 1px solid #c0c0c0;
  transition: .2s;
}

.login input[type=text]:hover {
  border-color: #F44336;
  outline: none;
  transition: all .2s ease-in-out;
}

.login input[type=submit] {
  border: none;
  background: #0049a9;
  color: white;
  font-weight: bold;
  transition: 0.2s;
  margin: 20px 0px;
}

.login input[type=submit]:hover {
  background: #b0d638;
}

.login h2 {
  margin: 20px 0 0;
  color: #004d9b;
  font-size: 28px;
}

.login p {
  margin-bottom: 40px;
}

.links {
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #c0c0c0;
  margin-bottom: 10px;
}

.links a {
  display: table-cell;
  padding-top: 10px;
}

.links a:first-child {
  text-align: left;
}

.links a:last-child {
  text-align: right;
}

.login h2,
.login p,
.login a {
  text-align: center;
}

.login a {
  text-decoration: none;
  font-size: .8em;
}

.login a:visited {
  color: inherit;
}

.login a:hover {
  text-decoration: underline;
}

.annual-maintenance {
  padding: 20px 0;
}

.quote-container {
  background-color: #004d9b;
  border: 2px solid #acd838;
  padding: 30px;
  max-width: 100%;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  border-radius: 10px;
}

.quote-text {
  color: #ffffff;
  font-size: 17px;
}

.quote-text span {
  color: white;
}

.author {
  font-size: 1rem;
  margin-top: 15px;
  font-style: italic;
  color: #ccc;
}

.terrif-plan {
  padding: 50px 0;
}

.snip1519 {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 250px;
  max-width: 302px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #004aa0;
  color: #9e9e9e;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.snip1519 *,
.snip1519 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1519 figcaption {
  padding: 12% 10% 14%;
}

.snip1519 i {
  font-size: 54px;
  color: #fff;
  width: 80px;
  line-height: 80px;
  background-color: #d2652d;
  border-radius: 50%;
  padding: 0;
  margin: 0 0 10px;
  text-align: center;
  display: inline-block;
}

.snip1519 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin: 10px 0;
}

.snip1519 p {
  font-size: 0.9em;
  font-weight: 400;
  margin: 0 0 20px;
  color: black;
}

.snip1519 .button {
  text-decoration: none;
  color: #777;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.snip1519 .button:before {
  background-color: #d2652d;
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  z-index: -1;
  opacity: 0;
}

.snip1519 .button:hover {
  color: #fff;
}

.snip1519 .button:hover:before {
  top: 0;
  opacity: 1;
}

.terrif-plan h4 {
  color: #004aa0;
}

.terrif-plan .table {
  margin-top: 30px;
}

.faq-section {
  background: #fdfdfd;
  min-height: 100vh;
  padding: 10vh 0 0;
}

.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}

.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: rgba(233, 30, 99, 0.1);
  padding-left: 10px;
}

.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #004ca1;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  background: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.job-info {
  display: flex;
  align-items: center;
}

.job-info i {
  font-size: 20px;
  margin-right: 10px;
  color: #333;
}

.job-details {
  margin-left: 10px;
}

.job-title {
  font-weight: bold;
  font-size: 18px;
}

.job-meta {
  font-size: 14px;
  color: gray;
}

.apply-btn {
  background-color: #004f9b;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.apply-btn:hover {
  background-color: #b5d537;
  color: #004f9b;
}

.wp-block-list {
  padding-left: 30px;
  margin-top: 14px;
}

.wp-block-list li {
  list-style-type: square;
}

.form-border {
  border: 2px solid #004f9b;
  padding: 30px;
  margin: 20px;
  border-radius: 8px;

}

.form-border p {
  font-size: 19px;
}

.modal {
  z-index: 9999999 !important;
}

.mobile-area {
  display: none !important;
}

.product-info-tabs .tab-content .tab-pane ul {
  padding-left: 20px;
}

.product-info-tabs .tab-content .tab-pane ul li {
  list-style-type: square;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }

  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 320px) {
  .mobile-area {
    display: block !important;
  }

  .top-bar {
    display: none !important;
  }

  .header-logo-area {
    display: none !important;
  }

  .navbar-area {
    display: none !important;
  }
}

@media only screen and (max-width: 480px) {
  .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    z-index: 10;
  }

  .icons {
    position: relative;
  }

  .icons a {
    position: relative;
    margin-right: 1opx;
    color: #000;
    text-decoration: none;
    font-size: 18px;
  }

  .mobile-area {
    display: block !important;
  }

  .top-bar {
    display: none !important;
  }

  .header-logo-area {
    display: none !important;
  }

  .navbar-area {
    display: none !important;
  }
}

.youtube iframe {
  border-radius: 10px;
  overflow: hidden;
}

.product-thumb a {

  color: #003373 !important;
  text-decoration: none;
}


.ecatalogue .card {
  max-width: 30em;
  flex-direction: row;
  background-color: #004f9b;
  border: 0;
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
  margin: 1em auto;
}

.ecatalogue .card.dark {
  color: #fff;
}

.ecatalogue .card.card.bg-light-subtle .card-title {
  color: dimgrey;
}

.ecatalogue .card img {
  max-width: 25%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}

.ecatalogue .card-body {
  display: flex;
  justify-content: space-between;
}

.ecatalogue .text-section {
  max-width: 100%;
}

.ecatalogue .cta-section {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.ecatalogue .cta-section .btn {
  padding: 0.3em 0.5em;
  /* color: #696969; */
}

.ecatalogue .card.bg-light-subtle .cta-section .btn {
  background-color: #898989;
  border-color: #898989;
}

@media screen and (max-width: 475px) {
  .ecatalogue .card {
    font-size: 0.9em;
  }
}

.ecatalogue-btn {
  margin-top: 10px;
}

.frewuently-asked {
  padding: 30px 0;
}

.heading-freq {
  padding: 30px 0;
}

.accordion-header::before,
.accordion-header::after {
  content: none !important;
  display: none !important;
}

/* General Section Styling */
.frewuently-asked {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.heading-freq {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

/* Accordion Styling */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: #007bff;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.accordion-button:hover {
  background-color: #0056b3;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #0056b3;
  color: white;
}

.accordion-body {
  background-color: white;
  padding: 15px;
  font-size: 16px;
  color: #333;
  border-radius: 0 0 8px 8px;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
  content: "\25BC";
  /* Unicode for down arrow */
  font-size: 14px;
  color: white;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.accordion-button.collapsed::after {
  transform: rotate(180deg);
}

.accordion-button::after {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading-freq {
    font-size: 24px;
  }

  .accordion {
    width: 95%;
  }

  .accordion-button {
    font-size: 16px;
    padding: 12px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

.shop-category-anchor {
  font-size: 13px !important;
  color: #212529 !important;
  text-decoration: none !important;
}

.shop-category-form-check {
  padding-left: 0 !important;
}

.has-search {
  position: relative;
}

#searchResults {
  position: absolute;
  top: 100%;
  /* Just below the input box */
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  /* border: 1px solid #ccc; */
  max-height: 300px;
  /* Scrollable if many results */
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.uncompromise .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uncompromise .card:hover {
  transform: translateY(-10px);
  /* Moves the card upward by 10px */
}

.map-locator {
  background-image: url('https://indcool.in/frontend/img/image.jpg');
  padding: 10px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  /* if needed */
}

.map-locator img {
  max-width: 400px;
  border-radius: 8px;
}

.location-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
}

.location-list img {
  width: 18px;
  height: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.map-wrapper {
  position: relative;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
}

.map-pin img {
  width: 28px;
  height: auto;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.tooltip-address {
  display: none;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 13px;
  z-index: 100;
}

.map-pin:hover .tooltip-address {
  display: block;
}

/* Add this blinking animation */
@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.map-pin img {
  width: 28px;
  height: auto;
  animation: blink 1.2s infinite;
}

.social-icon-hover {
  transition: transform 0.3s ease;
}

.social-icon-hover:hover {
  transform: translateY(-5px);
  /* Moves icon up slightly on hover */
}

.cool-app-section {
  background-color: #f0ece4;
}

.cool-app-section h3 {
  color: #004d9b;
}

.cool-app-section .btn img {
  height: 20px;
}

.mobile-mockup {
  max-height: 500px;
  object-fit: contain;
}