body {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 18px;
  background-image: url("../images/home/body-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.h2 {
  font-size: 35px;
}
.h3 {
  font-size: 30px;
}
.h4 {
  font-size: 25px;
}
.h5 {
  font-size: 21px;
}
.nav-item .nav-link {
  font-size: 18px !important;
  font-weight: 500;
  margin: 0 10px;
  color: #333;
}

.nav-item .nav-link:hover {
  color: #ce171f;
}
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  border-radius: 0px;
  padding: 0px;
  margin-top: 0; /* removes gap */
}
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
  background-color: #ce171f !important;
  color: #fff !important;
}
.navbar .nav-link.active {
  background-color: #ce171f;
  color: #fff !important;
  border-radius: 5px;
}
.image-slider img {
  width: 100%;
  height: 500px;
}

/* arrows */

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}

.services-section .products-section-one .slick-prev:before,
.services-section .products-section-one .slick-next:before {
  font-size: 30px;
  color: #ce171f;
}
/* Card Customizations */

.about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.about-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
  height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-head {
  color: #ce171f;
  font-weight: 500;
  font-size: 35px;
}
.about-section p.lead {
  font-size: 18px;
  color: #333;
}

.about-card h4 {
  position: relative;
  display: inline-block;
  transition: 0.3s ease;
}

.about-card:hover h4 {
  color: #ce171f;
  transform: scale(1.05);
}

.about-card p {
  transition: all 0.3s ease;
}

.about-card:hover p {
  color: #333;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.about-content h4 {
  color: #ce171f;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-content p {
  font-size: 16px;
  color: #333;
}

/* Hover effect */

.about-card:hover {
  transform: translateY(-8px);
  transition: 0.4s;
}

.product-header {
  position: relative;
  padding-top: 30px;
  margin-bottom: 40px;
}
.products-section-one {
  background-image: url("../images/home/product-trans.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* long grey line */

.product-header::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #bfbfbf;
}

/* short red line */

.product-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: #ce171f;
}
.products-section .title {
  color: #ce171f;
  font-weight: 500;
}

.products-section .desc {
  font-size: 18px;
  font-weight: 300;
  color: #333;
}

/* Product Card */
.products-section .product-card {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../images/home/Product-bg-1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Image wrapper */
.products-section .image-wrapper {
  position: relative;
}

/* Image */
.products-section .image-wrapper img {
  height: 250px;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

/* Overlay */
.products-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(202, 61, 43, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s;
}

/* Heading */
.products-section .overlay h5 {
  color: #fff;
  font-size: 19px;
  transform: translateY(20px);
  transition: 0.3s;
}

/* Hover */
.products-section .product-card:hover .overlay {
  opacity: 1;
}

.products-section .product-card:hover .overlay h5 {
  transform: translateY(0);
}

.products-section .product-card:hover img {
  transform: scale(1.05);
}

/* Divider stays bottom */
.products-section .divider {
  position: relative;
  margin: 25px;
  border-top: 2px solid #fff;
}

.products-section .circle {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  background: #ce171f;
  /* background: #f10f19; */
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Enquiry */

.enquiry-section .enquire-btn {
  background: #ce171f;
  color: white;
  padding: 10px 25px;
  font-weight: 600;
}

.enquiry-section .submit-btn {
  background: #ce171f;
  color: white;
}
.enquiry-section input,
.enquiry-section .form-select {
  border: 1px solid #ce171f;
}
/* Top line design */

.services-header {
  position: relative;
  padding-top: 30px;
  margin-bottom: 40px;
}

.services-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #bfbfbf;
}

.services-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: #ce171f;
}

.services-header h2 {
  color: #ce171f;
  font-weight: 500;
  margin-top: 0px;
}

.services-header p {
  /* max-width: 800px; */
  color: #333;
  font-size: 18px;
  font-weight: 300;
}

/* Service card */

.service-card {
  background: rgb(244, 244, 244);
  padding: 30px;
  border-radius: 15px;
  margin: 10px;
  height: 100%;
}

.service-card img {
  width: 150px;
  margin: auto;
  margin-bottom: 20px;
}

.service-card h4 {
  color: #ce171f;
  font-weight: 500;
}
.service-card p {
  max-height: 120px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.enquiry-section #quoteForm input {
  border: 1px solid #ce171f;
}
/* Slick arrows */

.services-section .slick-prev:before,
.services-section .slick-next:before {
  color: #fff;
  font-size: 24px;
}
.services-slider {
  position: relative;
}

/* Arrow style */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  /* background:white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* left arrow */

.slick-prev {
  left: 10px;
}

/* right arrow */

.slick-next {
  right: 10px;
}
/* Stats Section */

.stats-section {
  background: url(images/ac-bg.jpg) center/cover no-repeat;
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px;
  color: #333;
}

.stats-section h2 {
  font-weight: 600;
  font-size: 36px;
}

.stats-section p {
  font-size: 18px;
}

/* Testimonials */

.testimonial-section {
  background: url(images/testimonial-bg.jpg) center/cover no-repeat;
  padding: 20px 0;
  border-radius: 20px;
  margin: 40px;
  color: white;
}

/* .testimonial-section h2 {
  font-weight: 500;
  font-size: 50px;
} */
.testimonial-section .heading p {
  font-size: 25px;
}

.testimonial-card {
  background: white;
  color: #333;
  padding: 20px 20px;
  border-radius: 12px;
  margin: 10px;
}
.testimonial-card .stars i {
  color: #ffd700;
  font-size: 14px;
}
.testimonial-card .stars {
  margin-bottom: 10px;
}
.testimonial-card .icon {
  display: flex;
  justify-content: space-between;
}
.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-card p {
  min-height: 60px;
  font-size: 16px;
  color: #333;
  margin-bottom: 0px;
}
/* Slick */

.testimonial-card .slick-prev:before,
.testimonial-card .slick-next:before {
  color: #ce171f;
  font-size: 28px;
}
.footer-section {
  background: #333;
  color: #fff;
  padding: 60px 40px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ce171f;
}

.footer-logo {
  max-width: 120px;
}
p {
  font-size: 17px;
}

.product-filter {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  /* max-width: 1200px; */
  gap: 10px;
  flex-wrap: wrap;
}

.product-filter button {
  padding: 12px 12px;
  border: none;
  border-radius: 5px;
  background-color: rgb(244, 244, 244);
  color: #333;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #bbb1b1;
  transition: 0.3s;
  position: relative; /* important */
}

.product-filter button.active {
  background-color: #ce171f;
  color: white;
  border: none;
}

/* Triangle pointer */
.product-filter button.active::after {
  content: "";
  position: absolute;
  bottom: -9px; /* adjust distance */
  left: 50%;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ce171f; /* same as button color */
}

/* Product Grid */
.product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0px 0px 0px;
  padding: 0 20px;
}
.product-card .image-bg {
  background-image: url(../images/home/Product-bg-1.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Product Card */
.product-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 300px;
  /* height: 220px; */
  padding: 30px 0px;
  object-fit: cover;
}

.product-container .product-card h3 {
  padding: 14px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  min-height: 50px;
  background: #f4f4f4;
  margin-bottom: 0px;
}

.vrf-air-conditioners .product-container .product-card h3 {
  padding: 14px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  min-height: 80px;
  background: #f4f4f4;
  margin-bottom: 0px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}

.product-container .product-card p {
  margin: 10px 10px 10px;
  font-size: 15px;

  color: #fff;
  text-align: left;
}
.card-top {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 10px;
}
.card-top .rating {
  padding: 3px 8px;
  border-radius: 20px;
  color: #ce171f;
  background-color: #fff;
}
.card-top .ton-badge {
  background-color: #fff;
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 11px;
  display: flex;
  align-items: center;
  color: #ce171f;
}
/* .product-card ul {
  list-style: none;
  padding: 0 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.product-card ul li {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-card ul li i {
  color: #fff;
  font-size: 15px;
  padding: 1px 2px;
  background-color: #ce171f;
} */
.h2.section-heading {
  color: #ce171f;
}
.cassette-air-conditioners .banner img,
.split-air-conditioners .banner img,
.ductable-air-conditioners .banner img,
.vrf-air-conditioners .banner img,
.contact-hero .image img,
.contact-image img {
  width: 100%;
  height: 500px;
}
.cassette-air-conditioners h2,
.split-air-conditioners h2,
.ductable-air-conditioners h2,
.vrf-air-conditioners h2 {
  color: #ce171f;
  margin: 20px 0px;
}
.cassette-air-conditioners h1,
.split-air-conditioners h1,
.ductable-air-conditioners h1,
.vrf-air-conditioners h1 {
  color: #333;
  margin: 20px 0px;
  font-size: 25px;
}
.cassette-air-conditioners p,
.split-air-conditioners p,
.ductable-air-conditioners p,
.vrf-air-conditioners p {
  font-size: 18px;
  font-weight: 300;
  color: #333;
}
/* Buttons */
.cassette-air-conditioners .product-card,
.split-air-conditioners .product-card,
.ductable-air-conditioners .product-card,
.vrf-air-conditioners .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
  cursor: pointer;
  border: 1px solid #cdc8c8;
  /* transition: transform 0.3s ease; */
}

.cassette-air-conditioners .product-card:hover,
.split-air-conditioners .product-card:hover,
.ductable-air-conditioners .product-card:hover,
.vrf-air-conditioners .product-card:hover {
  transform: translateY(-5px);
}

.cassette-air-conditioners .image-bg,
.split-air-conditioners .image-bg,
.ductable-air-conditioners .image-bg,
.vrf-air-conditioners .image-bg {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  overflow: hidden;
}

.cassette-air-conditioners .image-bg img,
.split-air-conditioners .image-bg img,
.ductable-air-conditioners .image-bg img,
.vrf-air-conditioners .image-bg img {
  max-width: 300px;
  object-fit: contain;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.cassette-air-conditioners .product-card:hover .image-bg img,
.split-air-conditioners .product-card:hover .image-bg img,
.ductable-air-conditioners .product-card:hover .image-bg img,
.vrf-air-conditioners .product-card:hover .image-bg img {
  transform: scale(1.1);
}

.cassette-air-conditioners .overlay,
.split-air-conditioners .overlay,
.ductable-air-conditioners .overlay,
.vrf-air-conditioners .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.85);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: center;
  border-radius: 0px;
}

.cassette-air-conditioners .product-card:hover .overlay,
.split-air-conditioners .product-card:hover .overlay,
.ductable-air-conditioners .product-card:hover .overlay,
.vrf-air-conditioners .product-card:hover .overlay {
  opacity: 1;
}
.cassette-air-conditioners .card-top,
.split-air-conditioners .card-top,
.ductable-air-conditioners .card-top,
.vrf-air-conditioners .card-top {
  position: absolute;
  top: 0px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
  color: white;
  z-index: 10; /* Make sure it’s above the image */
}

.cassette-air-conditioners .features,
.split-air-conditioners .features,
.ductable-air-conditioners .features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cassette-air-conditioners .feature,
.split-air-conditioners .feature,
.ductable-air-conditioners .feature {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 13px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* justify-content: start; */
  width: calc(50% - 4px); /* 2 items per row with 8px gap */
  box-sizing: border-box; /* include padding in width */
  text-align: center;
}

.cassette-air-conditioners .feature .fa-check,
.split-air-conditioners .feature .fa-check,
.ductable-air-conditioners .feature .fa-check {
  color: #fff;
  font-size: 14px;
  border: 1px solid #fff;
  margin-right: 6px;
  padding: 2px 3px;
}

.cassette-air-conditioners .btn-quote,
.split-air-conditioners .btn-quote,
.ductable-air-conditioners .btn-quote,
.vrf-air-conditioners .btn-quote {
  background-color: #ce171f;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  border: #ce171f;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  align-self: center;
}
.catalogue-card {
  background-image: url(../images/home/Product-bg-1.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.catalogue-card .catalogue-content {
  margin-top: 60px;
  height: 290px;
}
.catalogue-card .catalogue-content p {
  text-align: center;
}
.catalogue-card .catalogue-content h2 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.catalogue-card .catalogue-content button {
  border: 1px solid #fff;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

.catalogue-card .catalogue-content button .btn-download {
  color: #fff;
  text-decoration: none;
}

.vm-section {
  position: relative;
}

/* Card Design */
.vm-section .card-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.vm-section .card-box:hover {
  transform: translateY(-5px);
}
.about-us-content h1 {
  font-size: 35px;
  color: #ce171f;
  text-align: center;
  justify-content: center;
  /* color: #333; */
}
/* Icon */
.vm-section .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(206, 23, 31, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.vm-section .icon-box img {
  width: 54px;
  color: #ce171f;
}

/* Headings */
.vm-section .card-box h4 {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.vm-section .card-box p {
  color: #333;
  /* line-height: 1.6; */
  font-weight: 300;
  font-weight: 300;
  font-size: 17px;
}
.journey-section .content p {
  color: #333;
  font-size: 17px;
  font-weight: 300;
}
/* Bottom Boxes */
.vm-section .small-box {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(206, 23, 31, 0.1);
  transition: 0.3s;
}

.vm-section .small-box:hover {
  transform: translateY(-5px);
}

.vm-section .small-box img {
  width: 50px;
  color: #ce171f;
  padding-bottom: 10px;
  margin: auto;
  display: block;
}

.vm-section .small-box h5 {
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}

.vm-section .small-box p {
  color: #333;
  font-size: 18px;
  margin: 0;
  font-weight: 300;
}

.timeline {
  position: relative;
  display: flex;
  padding-top: 60px;
  justify-content: space-between;
}

/* Center line */
.timeline .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ce171f;
  transform: translateY(-50%);
}
.timeline .card p {
  font-size: 16px;
}
/* Item */
.timeline .timeline-item {
  position: relative;
  width: 15%;
  text-align: center;
}

/* Card */
.timeline .card {
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Speech arrow */
.timeline .card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
}

/* Top card arrow */
.timeline-item.top .card::after {
  bottom: -20px;
  border-top-color: #fff;
}

/* Bottom card arrow */
.timeline-item.bottom .card::after {
  top: -20px;
  border-bottom-color: #fff;
}

/* Positioning */
.timeline-item.top .card {
  margin-bottom: 70px;
}

.timeline-item.bottom .card {
  margin-top: 70px;
}

/* Connector line */
.timeline-item::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #ce171f;
  left: 50%;
  transform: translateX(-50%);
}

/* TOP items */
.timeline-item.top::before {
  top: 50%; /* center line nundi start */
  height: 130px; /* card varaku reach */
}

/* BOTTOM items */
.timeline-item.bottom::before {
  bottom: 58%; /* center line nundi start */
  height: 130px;
}
/* Diamond year */
.year {
  width: 60px;
  height: 60px;
  background: #ce171f;
  transform: rotate(45deg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix text inside */
.year span {
  transform: rotate(-45deg);
  color: #fff;
  font-weight: 600;
}

.our-channel-partners .state-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.our-channel-partners .state-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.our-channel-partners .state-card .icon {
  width: 45px;
  height: 45px;
  background: rgba(206, 23, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-page h2 {
  color: #ce171f;
}
.our-channel-partners .state-card .icon i {
  color: #ce171f;
  font-size: 20px;
}

/* Text */
.our-channel-partners .state-card h5 {
  margin: 0;
  font-weight: 500;
}
.our-channel-partners .heading {
  display: block;
  text-align: center;
}
.our-channel-partners .heading p {
  font-weight: 300;
  font-size: 18px;
}
.our-clients .card-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.our-clients .card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(206, 23, 31, 0.1);
}

.our-clients .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(206, 23, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.our-clients .icon-circle img {
  width: 50px;
  color: #ce171f;
}
.our-clients .heading p {
  font-size: 18px;
  color: #333;
  font-weight: 300;
  padding-bottom: 20px;
}
.our-clients .card-title {
  font-size: 16px;
  font-weight: 600;
}

.quote-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.quote-content {
  background: #fff;
  width: 500px;
  margin: 8% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.quote-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

#quoteForm .row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* FIXED selector */
#quoteForm .row.full {
  flex-direction: column;
}

/* Make inputs share equal width */
#quoteForm .row input {
  flex: 1;
}

#quoteForm input,
#quoteForm textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 10px;
  font-size: 16px;
  outline: none;
  /* background: #f7f7f7; */
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  padding: 2px 2px;
  /* border: 1px solid #ce171f; */
  font-size: 30px;
  color: #ce171f;
}
.submit-bttn {
  background-color: #ce171f;
  font-size: 20px;
  color: #fff;
  border: 2px solid #ce171f;
  padding: 5px 15px;
  border-radius: 30px;
}
#quoteForm input:focus,
#quoteForm textarea:focus {
  border-bottom: 2px solid #ce171f;
  background: #fff;
}
.about-us-content .vm-section,
.our-channel-partners {
  background-image: url("../images/about/About-us.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vrf-card {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 20px;
  text-align: left;
}

.vrf-content h3 {
  font-size: 18px;
  font-weight: 600;
}

.vrf-desc {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

.vrf-para {
  font-size: 14px;
  margin-top: 8px;
}
.timeline.mobile {
  display: none;
}

/* ===== BLOG CARD ===== */
.posts .blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px #bbb1b1;
  cursor: pointer;
}

.posts .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px #bbb1b1;
}

/* ===== IMAGE ===== */
.posts .blog-img {
  height: 220px;
  overflow: hidden;
}

.posts .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.posts .blog-content {
  padding: 18px;
}

.posts .blog-date {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
}

.posts .blog-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.posts .blog-title a {
  text-decoration: none;
  color: #ce171f;
  font-weight: 500;
}

.posts .blog-title a:hover {
  color: #ce171f;
}

.posts .blog-desc {
  font-size: 16px;
  font-weight: 300;
  color: #333;
}
.about-us-page .image img,
.blog-page .image img {
  height: 500px;
}
.Careers .heading h1,
.blog-post .heading h1 {
  font-size: 35px;
  color: #ce171f;
  text-align: center;
}
.career-content {
  margin-bottom: 50px;
}
.career-form {
  width: 900px;
  background: #fff;
  padding: 60px 120px;
  margin: 0px auto;
}

.career-form input:focus {
  border-color: #bbb1b1;
  /* box-shadow: 0 0 5px #ce171f; */
}
.career-form input,
.career-form input[type="file"] {
  display: block;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #bbb1b1;
  background: #fff;
  width: 100%;
  border-radius: 0px;
}
/* ===== FILE INPUT FIX ===== */
.career-form input[type="file"] {
  padding: 10px;
  border-radius: 0px;
}

/* ===== BUTTON ===== */
.career-form .submit-btn {
  background: #ce171f;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.career-form .submit-btn:hover {
  background: #333;
}
#backToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed at bottom right */
  bottom: 40px;
  right: 40px;
  z-index: 100;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #ce171f;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

#backToTop:hover {
  background-color: #ce171f;
}

.contact-hero .hero-text {
  color: #f8f9fa;
  /* max-width: 620px; */
}

.dealer-section {
  padding: 60px 0;
  min-height: 100vh;
}

.bg-one {
  background-image: url("../images/home/product-trans.jpeg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.filter-section {
  /* background: #f8f9fa; */
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
  background: rgb(255, 255, 255);
  padding: 30px;
}

.search-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(153, 153, 153);
  font-size: 16px;
  pointer-events: none;
}

.search-wrapper .form-control {
  padding-left: 40px;
}

.filter-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #ce171f;
  box-shadow: 0 0 0 0.2rem rgba(206, 23, 31, 0.25);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-filter {
  background-color: #ce171f;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background-color: #a71218;
  color: white;
}

.btn-reset {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background-color: #5a6268;
  color: white;
}

.dealer-count {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.dealer-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.dealer-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dealer-card:hover {
  box-shadow: 0 8px 16px rgba(206, 23, 31, 0.15);
  transform: translateY(-5px);
}

.dealer-name {
  font-size: 18px;
  font-weight: 700;
  color: #ce171f;
  margin-bottom: 15px;
  word-break: break-word;
}

.dealer-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.dealer-icon {
  color: #ce171f;
  min-width: 25px;
  font-size: 18px;
  margin-top: 2px;
}

.dealer-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  word-break: break-word;
}

.dealer-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  background-color: #f0f0f0;
  color: #333;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge-state {
  background-color: #ce171f;
  color: white;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.no-results-icon {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-results h3 {
  color: #666;
  margin-bottom: 10px;
}
/* .contact-hero {
    min-height: 420px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('../images/allpagebanners/Contact-Us.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
} */

.contact-hero .hero-title {
  font-size: 35px;
  color: #ce171f;
  text-align: center;
}

.contact-hero .hero-text {
  color: #333;
  text-align: center;
  /* max-width: 620px; */
}

.contact-card,
.office-card,
.form-card {
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.contact-card {
  border: none;
}

.bg-grey {
  background-color: #fafafa;
}

.bg-sales {
  background-color: #f7f4f1;
}

.bg-one {
  background-image: url("../images/home/product-trans.jpeg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-card .icon,
.form-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #ce171f;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h5,
.office-card h5,
.form-card h5 {
  color: #222;
  font-weight: 700;
}

.office-card {
  background: #fff;
  padding: 1rem 2rem;
}

.office-card small {
  color: #6c757d;
}

.office-card p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.office-card p i {
  color: #ce171f;
  font-size: 1.1rem;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.office-card .fa-location-dot {
  color: #ce171f;
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  background-color: rgba(206, 23, 31, 0.1);
  padding: 8px;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.office-card .sales-phone span {
  background-color: rgba(206, 23, 31, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  color: #ce171f;
}

.office-card .sales-phone span a {
  color: #ce171f;
  text-decoration: none;
  font-weight: 500;
}

.office-card .sales-phone span i {
  font-size: 14px;
}
footer p i {
  padding-right: 6px;
}
footer p a {
  color: #fff;

  font-size: 18px;
  padding-bottom: 10px;
  text-decoration: none;
}
footer p a:hover,
footer p i:hover {
  color: #a71218;
}
.footer-section .social-icons a {
  background-color: #fff;
  color: #333;
  padding: 4px 11px;
  border-radius: 23px;
}
.footer-section .social-icons  i:hover {
  color: #a71218;
}
.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 0.95rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #ce171f;
  box-shadow: 0 0 0 0.2rem rgba(206, 23, 31, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: #bbb;
}

.form-group {
  margin-bottom: 20px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  background: linear-gradient(135deg, #ce171f 0%, #ce171f 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 32px;
  font-size: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-send:hover {
  background: #b2141b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(206, 23, 31, 0.4);
  color: white;
}

.btn-send:active {
  transform: translateY(0);
}

.company-info p {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.company-info p a {
  color: #ce171f;
  text-decoration: none;
  font-weight: 500;
}

.company-info p i {
  color: #ce171f;
  font-size: 1rem;
  min-width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  background-color: rgba(206, 23, 31, 0.2);
  padding: 6px;
  border-radius: 8px;
}

.company-info p strong {
  color: #222;
  display: block;
  margin-bottom: 4px;
}

.section-label {
  color: #ce171f;
}

/* .footer-section .footer-title,
        .footer-section h5,
        .footer-section p,
        .footer-section a {
            color: #f8f9fa;
        }

        .footer-section a {
            text-decoration: none;
        }

        .footer-section .footer-links li {
            margin-bottom: 0.65rem;
        } */

.footer-section .footer-links li a:hover {
  color: #ce171f;
}
.overlay .product-list-content {
  text-align: start;
  /* text-decoration: dashed !important; */
  display: block !important;
  list-style: disc !important;
}
.overlay .product-list-content li {
  font-size: 14px;
  margin-bottom: 5px;
  gap: 5px;
}
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-banner h1 {
    color: #ce171f;
    font-weight: 500;
    font-size: 30px;
}

.blog-banner h3 {
  margin-top: 22px;
  font-weight: 500;
}

.blog-banner h5 {
  margin-top: 20px;
  font-weight: 500;
}

.blog-banner p {
    font-size: 18px;
    color: #333;
}
/* Responsive Mobile */
@media (max-width: 992px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .career-form {
    width: 100%;
    padding: 20px 20px;
  }
  .about-us-page .image img,
  .blog-page .image img {
    height: 300px;
  }
  .vm-section .card-box {
    padding: 20px;
  }
  .image-slider img {
    height: 200px;
  }
  .stats-section,
  .testimonial-section {
    padding: 30px 0px;
    margin: 20px;
  }
  .testimonial-section h2 {
    font-size: 30px;
  }
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 100%;
    width: 100%;
    max-width: 100% !important;
    object-fit: contain;
  }
  .product-container {
    padding: 0px;
  }
  .product-card .buttons {
    gap: 20px;
  }
  .stats-section h2 {
    margin-bottom: 0px;
  }
  .cassette-air-conditioners .banner img,
  .split-air-conditioners .banner img {
    height: 200px;
  }
  .product-filter button {
    width: 100%;
  }
  .product-filter button.active {
    margin-bottom: 10px;
  }
  .product-container .product-card p {
    margin: 25px 0px 10px;
  }
  .cassette-air-conditioners .btn-quote,
  .split-air-conditioners .btn-quote {
    margin-top: 1px;
  }
  .cassette-air-conditioners .feature,
  .split-air-conditioners .feature {
    /* background:transparent; */
    padding: 5px 8px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }

  /* Remove horizontal center line */
  .timeline::before {
    display: none;
  }

  .timeline .timeline-item {
    width: 100%;
    margin-bottom: 40px;
  }

  /* Reset positioning */
  .timeline-item.top .card,
  .timeline-item.bottom .card {
    margin: 15px auto 0;
  }

  /* Remove connector vertical lines */
  .timeline-item::before {
    display: none;
  }

  /* Make all cards same flow */
  .timeline-item.top,
  .timeline-item.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Year on top */
  .year {
    margin-bottom: 10px;
  }

  /* Card styling */
  .timeline .card {
    width: 90%;
    text-align: center;
  }

  /* Remove speech arrows */
  .timeline .card::after {
    display: none;
  }
  /* about.html */
  .timeline {
    flex-direction: column;
    padding-top: 0px;
    display: none;
  }
  .timeline.mobile {
    display: block;
  }
  .timeline.mobile .timeline-item {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .timeline.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeline.mobile .timeline-item {
    margin-bottom: 20px;
    text-align: center;
  }

  .timeline.mobile .year {
    width: 60px;
    height: 60px;
    background: #ce171f;
    transform: rotate(45deg);
    margin: 0 auto 10px;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
  }

  .timeline.mobile .year span {
    transform: rotate(-45deg);
    color: #fff;
    font-weight: 600;
  }

  .timeline.mobile .card {
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  /* Connector from line to card */
  .timeline.mobile .card::before {
    content: "";
    position: absolute;
    width: 2px;
    background: #ce171f;
    left: 50%;
    transform: translateX(-50%);
    height: 52px;
    top: -35%;
  }
  .our-channel-partners {
    padding-top: 0px !important;
  }
  .quote-content {
    width: 100%;
  }
  .cassette-air-conditioners .banner img,
  .split-air-conditioners .banner img,
  .ductable-air-conditioners .banner img,
  .vrf-air-conditioners .banner img,
  .about-us-page .image img {
    height: 200px;
  }
  .filter-group {
    margin-bottom: 20px;
  }

  .dealer-list {
    grid-template-columns: 1fr;
  }

  .filter-section {
    padding: 20px;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .btn-filter,
  .btn-reset {
    width: 100%;
  }
}
