body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

/* ------------------------------
   GLOBAL RESET
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   TOP BAR
================================ */
.brand-topbar {
  background: #222;
  color: #fff;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 991px) {
  .brand-topbar {
    display: none;
  }
}

.btn-quote {
  background-color: #ea303a;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #d11a2a;
  color: #ffffff;
  box-shadow: 0 0 0 0.3rem rgba(209, 26, 42, 0.3);
  transform: translateY(-2px);
}

/* ===============================
   SOCIAL ICONS
================================ */
.top-social-icons {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  background: #e80b0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: 0.3s;
  text-decoration: none;
}

.social-circle i {
  color: #fff;
  font-size: 15px;
}

.social-circle:hover {
  background: var(--brand-red);
}

.social-circle:hover i {
  color: #fff;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.brand-navbar .nav-link {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin: 8px;
  transition: 0.3s;
}

.brand-navbar .nav-link:hover,
.brand-navbar .nav-link.active {
  color: var(--brand-red);
}

.product-search-box {
  position: relative;
}

.header-product-search-box {
  width: 230px;
  min-width: 190px;
  margin-left: 12px;
}

.header-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.header-search-form input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 10px;
  font-size: 14px;
  color: #111;
}

.header-search-form input::placeholder {
  color: #666;
}

.header-search-form button {
  width: 44px;
  height: 100%;
  flex: 0 0 44px;
  border: 0;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.header-search-form button:hover,
.header-search-form button:focus {
  background: #111;
}

.product-search-suggestions {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 1080;
  width: min(360px, 90vw);
  max-height: 315px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.product-search-suggestions[hidden] {
  display: none !important;
}

.product-search-suggestion {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px 11px;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.product-search-suggestion i {
  color: var(--brand-red);
  font-size: 13px;
  flex: 0 0 auto;
}

.product-search-suggestion:hover,
.product-search-suggestion:focus,
.product-search-suggestion.is-active {
  background: #f2f2f2;
  color: var(--brand-red);
  outline: none;
}

.product-search-empty {
  padding: 11px;
  color: #666;
  font-size: 14px;
}

.mobile-product-search-box {
  width: 100%;
  min-width: 0;
  margin: 0 0 16px;
}

.mobile-header-search {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.mobile-product-search-box .product-search-suggestions {
  left: 0;
  right: 0;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .brand-navbar .nav-link {
    margin: 6px 4px;
    font-size: 13px;
  }

  .header-product-search-box {
    width: 195px;
    min-width: 170px;
    margin-left: 8px;
  }
}

/* ===============================
   DESKTOP DROPDOWN
================================ */
.product-dropdown {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.dropdown-item:hover {
  background-color: var(--brand-red-dark);
  color: #fff;
}

/* ===============================
   TOGGLER ICON
================================ */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(177,0,0,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===============================
   OFFCANVAS
================================ */
.brand-offcanvas {
  background: var(--muted-gray);
}

.brand-offcanvas .nav-link {
  font-weight: 600;
  color: #000;
  padding: 8px 0;
}

.brand-offcanvas .nav-link:hover,
.brand-offcanvas .nav-link.active {
  color: var(--brand-red);
}

/* ===============================
   MOBILE PRODUCTS DROPDOWN
================================ */
.mobile-products .mobile-product-list {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.mobile-products.open .mobile-product-list {
  display: block;
}

.mobile-product-list li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-product-list li a:hover {
  color: var(--brand-red);
}

.mobile-products i {
  transition: transform 0.3s;
}

.mobile-products.open i {
  transform: rotate(180deg);
}

/* page header */
.about-banner {
  width: 100%;
  min-height: 350px;
  background: url("../img/company-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.contact-banner {
  width: 100%;
  min-height: 350px;
  background: url("../img/contact-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.product-banner {
  width: 100%;
  min-height: 221px;
  background: url("../img/our-products-banner.png") center center / cover
    no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.exact-content {
  max-width: 1300px;
  padding: 0 20px;
  text-align: center;
}

.exact-content h2 {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #050404;
}

/* BREADCRUMB */
.breadcrumb-bar {
  background-color: #f5cbcb;
 box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.breadcrumb-inner {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  text-align: right;
  font-size: 14px;
}

.breadcrumb-inner a {
  color: #333;
  text-decoration: none;
}

.breadcrumb-inner span {
  margin: 0 6px;
  color: #0a0909;
}

.breadcrumb-inner strong {
  color: #e62928;
  font-weight: 600;
}

@media (max-width: 992px) {
  .exact-content h2 {
    font-size: 28px;
  }

  .breadcrumb-inner {
    text-align: center;
  }
}

/* ----------- Carousel ----------- */
#heroCarousel {
  overflow: visible !important;
  z-index: auto !important;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.10); */
}

.carousel-caption {
  position: absolute;
  top: 35%;
  left: 10%;
  text-align: left;
  z-index: 5;
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 18px;
  color: #f1f1f1;
  margin-top: 15px;
  max-width: 550px;
}

@media (max-width: 991px) {
  .carousel-item {
    height: 200px !important;
  }
}

/* counter */
.stats-section {
  position: relative;
  margin-top: -100px;
  z-index: 20;
}

.stats-box {
  background: #f7f7f7;
  text-align: center;
  padding: 35px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-box:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.stats-icon {
  height: 90px;
  width: auto;
  margin-bottom: 10px;
  margin-top: -15px;
}

.stats-box h3 {
  font-size: 42px;
  /* font-weight: bold; */
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
  margin-top: -10px;
}

.stats-box p {
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  margin-top: -13px;
  /* margin: 0; */
}

@media (max-width: 768px) {
  .stats-section {
    margin-top: -32px;
  }

  .stats-box {
    height: 223px;
  }

  .stats-box h3 {
    font-size: 35px;
  }

  .stats-container {
    margin-left: 2px;
  }
}

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 36px;
  }
}

/* our prodcuts */
.product-section {
  text-align: center;
  padding: 20px 20px !important;
  background: #fff;
}

.product-para {
  font-size: 18px !important;
}

.product-section h2 {
  font-weight: 700;
  font-size: 2.9rem;
  color: #222;
  margin-bottom: 20px;
}

.heading-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.heading-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #df2229;
  border-radius: 50%;
}

.product-section p {
  max-width: 900px;
  margin: 20px auto 50px;
  color: #555;
  font-size: 15px;
}

/* --- SLIDER --- */
.slider-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* --- CARD --- */
.product-card {
  flex: 0 0 calc(25% - 20px);
  margin: 10px;
  border-radius: 10px;
  height: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card h5 {
  background: #df2229;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 15px;
  margin: 15px 0;
}

.product-card p {
  font-size: 13px;
  color: #666;
  padding: 0 10px 20px;
  /* text-align: justify; */
  margin-top: -4px;
}

/* --- BUTTONS OUTSIDE --- */
.slider-btn {
  position: absolute;
  top: 45%;
  background: transparent;
  padding: 0px 5px;
  border: none;
  color: white;
  /* font-size: 15px; */
  font-size: 28px;
  background-color: #df2229;
  cursor: pointer;
  z-index: 10;

  border-radius: 50%;
  transition: color 0.3s ease;
}

.slider-btn i {
  color: white;
}

.slider-btn:hover {
  color: #084298;
}

.slider-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* --- PAGINATION DOTS --- */
.pagination-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 5px;
  transition: all 0.3s;
}

.dot.active {
  background: #df2229;
  width: 12px;
  height: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .product-card {
    flex: 0 0 calc(50% - 20px);
  }

  .prev-btn {
    left: -50px;
  }

  .next-btn {
    right: -50px;
  }
}

@media (max-width: 767px) {
  .product-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    font-size: 36px;
  }

  .prev-btn {
    left: -22px;
  }

  .next-btn {
    right: -30px;
  }

  .product-section h2 {
    font-size: 2.5rem;
  }
}

.about-main {
  font-size: 3.2rem;
  line-height: 52px;
}

.about-section {
  background-color: #df2229;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.about-section .highlight {
  color: #fff;
  font-weight: 700;
}

.k-icon i {
  font-size: 45px;
  color: white;
  /* replace with your brand color */
}

.k-box:hover i {
  transform: scale(1.15);
  transition: 0.3s ease-in-out;
  color: white;
}

.about-section button {
  border: none;
  background-color: white;
  color: black;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 15px;
}

.about-para {
  font-size: 15px;
  line-height: 20px;
  width: 80%;
}

.about-para span {
  font-size: 36px;
  font-weight: 600;
}

.about-2para {
  font-size: 16px;
  width: 95%;
  text-align: justify;
}

.image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* background-color: #204c84; */
  clip-path: ellipse(80% 60% at 70% 50%);
  /* overflow: hidden; */
}

.image-wrapper .main-image {
  width: 100%;
  height: 500px;
  display: block;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.product-div-ul {
  display: flex;
  gap: 10px;
  margin-top: -7px;
}

.home-link {
  color: black;
  text-decoration: none;
  background-color: white;
  padding: 15px 30px;
  /* margin-top: 10px; */
  border-radius: 50px;
}

.product-div-ul li i {
  color: #b31e19;
  font-size: 800;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f00;
  font-size: 26px;
  z-index: 2;
}

.pulse,
.pulse.delay {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.3);
  width: 80px;
  height: 80px;
  animation: pulseAnim 2.5s infinite;
}

.pulse.delay {
  animation-delay: 1.25s;
}

@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(2.3);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.logo {
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991px) {
  .image-wrapper {
    width: 100%;
    clip-path: ellipse(100% 60% at 50% 50%);
    clip-path: ellipse(100%);

    margin-top: 2rem;
  }

  .play-button {
    margin-left: 176px;
  }

  .image-wrapper .main-image {
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    height: 379px;
  }

  .about-section {
    text-align: center;
  }

  .logo-row {
    justify-content: center;
  }

  .about-main {
    font-size: 31px;
    line-height: 30px;
  }

  .about-para {
    line-height: 1.1;
    margin-left: 30px;
  }

  .about-2para {
    padding-left: 15px;
  }
}

/* why choose */

.kingsun-section {
  background: #fff;
}

.kingsun-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.k-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.k-underline .line {
  width: 90px;
  height: 3px;
  background: #154890;
}

.k-underline .dot {
  width: 16px;
  height: 16px;
  background: #154890;
  border-radius: 50%;
  margin: 0 12px;
}

.k-desc {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #333333bb;
}

.k-box {
  display: flex;
  padding: 10px;
}

.k-icon {
  min-width: 100px;
  height: 100px;
  background: #df2229;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.k-icon img {
  width: 45px;
}

.k-head {
  font-size: 23px;
  font-weight: 600;
  color: #313131d3;
}

.k-text {
  font-size: 16px;
  color: #33333396;
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .k-box {
    flex-direction: flex;
    text-align: center;
  }

  .k-text {
    text-align: justify;
  }

  .k-head {
    font-size: 18px;
  }

  .why-choose {
    margin-top: -30px !important;
  }

  .k-icon {
    margin: 0 auto 12px;
    min-width: 80px;
    height: 80px;
  }

  .k-desc {
    text-align: justify;
  }

  .kingsun-title {
    font-size: 2.1rem;
  }
}

/* partners */

/* CSS FILE (partners.css) */

.partners-title {
  font-size: 2.9rem;
  font-weight: 700;
}

.p-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.p-line {
  width: 90px;
  height: 3px;
  background: #154890;
}

.p-dot {
  width: 16px;
  height: 16px;
  background: #154890;
  border-radius: 50%;
  margin: 0 12px;
}

.partners-desc {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.partner-logo {
  width: 200px;
  height: auto;
  transition: 0.3s;
}

.partner-logo:hover {
  transform: scale(1.02);
}

/* BUTTON ANIMATION */
.quote-btn {
  position: relative;
  background: #0e57a0;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 30px;
}

/* NEW DOOR ANIMATION FROM TOP-RIGHT & BOTTOM-LEFT */
.quote-btn .overlay-left,
.quote-btn .overlay-right {
  position: absolute;
  width: 0;
  height: 0;
  background: #000;
  transition: 0.45s ease;
  z-index: 0;
  /* LOWER so text stays on top */
}

/* Comes from bottom-left */
.overlay-left {
  left: 0;
  bottom: 0;
  border-top-right-radius: 120px;
}

/* Comes from top-right */
.overlay-right {
  right: 0;
  top: 0;
  border-bottom-left-radius: 120px;
}

/* On hover expand diagonally */
.quote-btn:hover .overlay-left {
  width: 60%;
  height: 100%;
}

.quote-btn .btn-text {
  position: relative;
  z-index: 5;
}

.quote-btn i {
  position: relative;
  font-size: 17px !important;
  z-index: 5;
  /* same as text so icon stays visible */
}

.quote-btn:hover .overlay-right {
  width: 60%;
  height: 100%;
}

/* Text stays visible */
.quote-btn span {
  position: relative;
  z-index: 5;
  /* TEXT ALWAYS ABOVE */
}

@media (max-width: 576px) {
  .partner-logo {
    width: 120px;
  }

  .quote-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .partners-desc {
    text-align: justify;
  }

  .partners-section {
    margin-top: -50px;
  }
}

/*  */
.testimonial-section {
  text-align: center;
  padding: 20px 20px;
}

.testi-heading {
  font-size: 2.9rem;
  font-weight: 700;
}

.testi-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 10px auto 30px;
  position: relative;
  border-radius: 4px;
}

.testi-line::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #df2229;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.test-para {
  font-size: 17px;
  color: #333333a8;
}

.testi-slider-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testi-slider-container {
  overflow: hidden;
  margin-top: 50px;
}

.testi-top h5 {
  font-size: 18px;
}

.testi-card {
  flex: 0 0 calc(33.33% - 20px);
  margin: 10px;
  padding: 20px;
  width: 400px;
  height: 280px;
  background: #fff;
  /* border-radius:10px;  */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.testi-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-quote {
  margin-left: auto;
  background: #df2229;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.testi-content {
  margin-top: 12px;
  font-size: 17px;
  color: #555555ce;
  text-align: left;
}

.testi-btn {
  position: absolute;
  top: 45%;
  background: #df2229;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.testi-prev {
  left: -50px;
}

.testi-next {
  right: -50px;
}

.testi-dots {
  text-align: center;
  margin-top: 20px;
}

.testi-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 4px;
  border-radius: 50%;
  transition: 0.3s;
}

.testi-dots .active {
  background: #df2229;
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 100%;
    height: 333px;
  }

  .testimonial-section {
    padding: 10px 20px;
  }

  .testi-prev {
    left: -30px;
  }

  .testi-heading {
    font-size: 2rem;
  }

  .testi-next {
    right: -25px;
  }

  .testi-top h5 {
    font-size: 15px;
  }
}

/* products */
.featured-products-section {
  padding: 30px 20px;
  background: #fff;
}

.featured-heading {
  font-size: 2.9rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.heading-line {
  width: 90px;
  height: 5px;
  background: #afc4e7;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

/* .heading-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #238b8c;
  border-radius: 50%;
} */

.featured-description {
  max-width: 900px;
  margin: 25px auto 50px;
  color: #555;
  font-size: 15px;
}

.fp-card {
  /* background: #fff; */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  text-align: center;
}

.fp-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.fp-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fp-card:hover img {
  transform: scale(1.03);
}

.fp-title {
  background: #df2229;
  margin: 0;
  padding: 15px 8px;
  color: white !important;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  min-height: 70px;
}

.quote-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 12px 35px;
  background: #c40000;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #084298;
}

/* Responsive */
@media (max-width: 991px) {
  .fp-img-box {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .fp-img-box {
    height: 180px;
  }

  .fp-title {
    font-size: 13px;
    min-height: auto;
  }

  .featured-products-section {
    padding: 29px 20px;
  }

  .featured-description {
    text-align: justify;
  }

  .section-desc {
    margin-left: 2px !important;
    text-align: justify;
  }

  .fp-img-box img {
    height: 180px;
  }
}

/* news */
.news-events-section {
  background-color: #df2229;
  /* Same BG color as screenshot */
}

.section-title {
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 15px;
  max-width: 900px;
  /* text-align: center; */
  margin-left: 130px;
}

.event-card {
  height: 300px;
}

.event-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.event-date {
  font-size: 14px;
  color: #777;
}

.card-title {
  font-weight: 600;
  color: #000;
}

.card-text {
  font-size: 14px;
  color: #444;
}

.btn-outline-primary {
  border-radius: 30px;
}

.news-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.event-card button {
  border: 2px solid #238b8c;
  color: #238b8c;
  border-radius: 50px;
}

.event-card button:hover {
  background-color: #238b8c;
  color: white;
}

.news-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .event-card img {
    height: 200px;
  }

  .card-title {
    font-size: 16px;
  }
}

/* footer */
.footer-section {
  background: #151515;
  color: #ffffff;
  border-top: 4px solid #e42428;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  font-size: 14px !important;
}

.footer-container {
  max-width: 1200px;
}

.footer-section .row {
  row-gap: 18px;
}

.footer-section img {
  max-width: 150px;
  height: auto !important;
  margin-bottom: 12px;
}

.footer-brand-div > a {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.footer-brand-div > a img {
  margin-bottom: 0;
}

.footer-para {
  width: 100%;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.footer-heading {
  position: relative;
  display: inline-block;
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 34px;
  height: 3px;
  background: #e42428;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 17px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 8px;
}

.footer-links li i {
  flex: 0 0 auto;
  color: #e42428;
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.product-div ul li {
  font-size: 14px;
}

.product-div {
  padding-left: 0;
}

.about-div ul li {
  font-size: 14px;
}

.about-div {
  padding-left: 28px;
}

.footer-address-div {
  padding-left: 14px;
}

.footer-contact-div {
  padding-left: 12px;
}

.footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.footer-info li i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #e42428;
  font-size: 18px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.footer-office-label {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-weight: 700;
}

.other-office-label {
  margin-top: 8px;
}

.footer-address-line {
  display: block;
  margin-bottom: 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.contact-div p {
  margin-bottom: 6px;
}

.footer-contact-info li {
  word-break: break-word;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.footer-social-link {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #e42428;
  border: 1px solid #e42428;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social-link i {
  color: inherit;
  font-size: 15px;
}

.footer-social-link:hover {
  color: #e42428;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-link:hover i {
  color: #e42428;
}

.footer-bottom {
  background: #0a0a0a;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 14px !important;
}

.footer-bottom a {
  color: #e42428 !important;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive fixes */
@media (max-width: 767px) {
  .footer-section {
    text-align: left;
  }

  .footer-para {
    width: 100%;
  }

  .about-div {
    padding-left: 12px;
  }

  .product-div,
  .footer-address-div,
  .footer-contact-div {
    padding-left: 12px;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .footer-legal a:not(:last-child)::after {
    right: -10px;
  }

  .footer-bottom p {
    margin: 0 12px;
  }

  .footer-container {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 47px;
  margin-bottom: 20px;
  color: #c21c1e;
}

.aboutus-para {
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}

.aboutus {
  margin-top: 10px;
}

.aboutus strong {
  color: #c21c1e;
}

.about {
  margin-top: 40px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* contact*/
.enquiry-media {
  padding-right: 20px;
}

.enquiry-img {
  border-radius: 12px;
}

.enquiry-title {
  font-size: 36px;
  font-weight: 700;
  color: #df2229;
  margin-top: 20px;
}

.enquiry-text {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.enquiry-strong {
  margin-top: 10px;
}

/* ---------- Form Fields ---------- */
.field-box,
.select-box,
.textarea-box {
  position: relative;
  margin-bottom: 20px;
}

.field-input,
.select-input,
.textarea-input {
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.field-input:focus,
.select-input:focus,
.textarea-input:focus {
  border-color: #df2229;
}

/* ---------- Floating Labels ---------- */
.field-box label,
.select-box label,
.textarea-box label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  background: #f9f9f9;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s;
}

.field-input:focus + label,
.select-input:focus + label,
.textarea-input:focus + label,
.field-input:not(:placeholder-shown) + label,
.textarea-input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #df2229;
}

/* ---------- Button ---------- */
.enquiry-btn {
  background: #df2229;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #b71c1c;
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .enquiry-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .enquiry-title {
    font-size: 24px;
  }

  .field-input,
  .select-input,
  .textarea-input {
    padding: 15px 12px;
  }
}

@media (max-width: 480px) {
  .enquiry-title {
    font-size: 22px;
  }

  .enquiry-text {
    font-size: 14px;
  }
}

.contact-heading {
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-heading5 {
  font-size: 25px;
  color: #df2229;
  /* font-weight: 600; */
}

.contact-button {
  background-color: #df2229;
  color: white;
  font-size: 20px;
}

.contact-button:hover {
  background-color: #df2229;
  color: white;
}

.contact-add {
  font-size: 12px;
  line-height: 1.55;
  color: #333;
}

.contact-address-list {
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

.contact-address-group {
  margin-bottom: 14px;
}

.contact-address-label {
  display: block;
  margin-bottom: 6px;
  color: #df2229;
  font-size: 14px;
  font-weight: 700;
}

/* legal pages */
.legal-banner {
  min-height: 260px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("../img/company-banner.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal-banner-content h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.legal-page-section {
  padding: 62px 0 70px;
  background: #f7f7f7;
}

.legal-page-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.legal-page-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: #e42428;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-page-heading h2 {
  color: #111111;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.legal-page-heading p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.legal-toc,
.legal-content {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.legal-toc {
  position: sticky;
  top: 115px;
  padding: 20px;
}

.legal-toc h3 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

.legal-toc a {
  display: block;
  padding: 10px 12px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 6px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a:focus {
  color: #e42428;
  background: #fff3f3;
  border-left-color: #e42428;
}

.legal-content {
  padding: 32px;
}

.legal-block {
  scroll-margin-top: 120px;
}

.legal-block:not(:last-child) {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #eeeeee;
}

.legal-block h3 {
  color: #111111;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-block p {
  color: #444444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: #444444;
  font-size: 15px;
  line-height: 1.75;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e42428;
}

.legal-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legal-contact-block a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #e42428;
  font-weight: 800;
  text-decoration: none;
}

.legal-contact-block a:hover {
  color: #111111;
}

@media (max-width: 991px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 767px) {
  .legal-banner {
    min-height: 190px;
  }

  .legal-banner-content h1 {
    font-size: 32px;
  }

  .legal-page-section {
    padding: 42px 0 50px;
  }

  .legal-page-heading h2 {
    font-size: 29px;
  }

  .legal-content {
    padding: 22px 16px;
  }

  .legal-block h3 {
    font-size: 21px;
  }
}

/* sitemap */
.sitemap-banner {
  min-height: 260px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("../img/company-banner.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sitemap-banner-content h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.sitemap-section {
  padding: 70px 0;
  background: #f7f7f7;
}

.sitemap-title {
  color: #111111;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sitemap-subtitle {
  color: #555555;
  font-size: 16px;
  margin-bottom: 0;
}

.sitemap-tree-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.sitemap-tree,
.sitemap-tree ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 28px;
}

.sitemap-tree {
  padding-left: 0;
}

.sitemap-tree ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  background: #e42428;
  opacity: 0.28;
}

.sitemap-tree li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 26px;
}

.sitemap-tree > li {
  padding-left: 0;
}

.sitemap-tree ul li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 8px;
  width: 18px;
  height: 2px;
  background: #e42428;
  opacity: 0.45;
}

.sitemap-tree ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  width: 11px;
  height: 11px;
  border: 2px solid #e42428;
  border-radius: 50%;
  background: #ffffff;
}

.sitemap-tree a,
.sitemap-tree span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.sitemap-tree span {
  color: #ffffff;
  background: #e42428;
  border-color: #e42428;
}

.sitemap-tree i {
  color: inherit;
  font-size: 18px;
}

.sitemap-tree a:hover {
  color: #ffffff;
  background: #e42428;
  border-color: #e42428;
}

.sitemap-tree ul {
  margin-top: 12px;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .sitemap-banner {
    min-height: 190px;
  }

  .sitemap-banner-content h1 {
    font-size: 34px;
  }

  .sitemap-section {
    padding: 45px 0;
  }

  .sitemap-title {
    font-size: 30px;
  }

  .sitemap-tree-wrap {
    padding: 22px 16px;
  }

  .sitemap-tree,
  .sitemap-tree ul {
    padding-left: 20px;
  }

  .sitemap-tree {
    padding-left: 0;
  }

  .sitemap-tree a,
  .sitemap-tree span {
    width: 100%;
    font-size: 14px;
  }
}

/* blog section */

.mmw-blog-section {
  padding: 60px 0;
}

.mmw-blog-card {
  background: #ffffff;
  border-radius: 12px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.blog-heading {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}

.mmw-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.mmw-blog-img-wrapper {
  width: 100%;
  height: 220px;
  /* IMG SIZE */
  overflow: hidden;
}

.mmw-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mmw-blog-title {
  font-size: 1.3rem;
  font-weight: 700;

  margin-top: 15px;
  color: #e42428;
}

.mmw-blog-desc {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}

:root {
  --primary: #e22327;
  --bg: #f7f7f7;
  --card-bg: #ffffff;
  --text-dark: #111;
}

.mission-vission-section {
  padding: 60px;
}

.section-box {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 370px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.section-img {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.section-box h3 {
  color: var(--primary);
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.section-box p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-box,
  .section-img {
    height: 374px;
  }

  .mission-vission-section {
    padding: 20px;
  }

  .our-core {
    height: 270px;
  }

  .section-img {
    height: 250px;
  }
}

/* industires we serve */
.industries-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.industries-img-wrapper {
  position: relative;
  display: inline-block;
}

.industries-img {
  width: 500px;
  height: 500px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.industries-img-wrapper:hover .industries-img {
  transform: scale(1.05);
}

.industries-overlay-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  z-index: -1;
}

/* CONTENT */
.industries-title {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 700;
  color: #222;
}

.industries-text {
  font-size: 18px;
  color: #070606;
}

.industries-list li {
  font-size: 19px;
  font-weight: 600;
  padding: 15px;
  color: #070606;
  margin-bottom: 12px;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  display: flex;
  align-items: center;
}

.bullet-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e42428;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 16px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industries-img {
    width: 100%;
  }

  .industries-title {
    font-size: 30px;
  }

  .industries-text {
    font-size: 15px;
  }

  .industries-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .industries-list li {
    font-size: 14px;
  }

  .bullet-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 10px;
  }

  .industries-title {
    font-size: 28px;
  }
}

/* global */
.support-pro {
  background: #f4f4f4;
}

/* Title Style */
.pro-title {
  font-size: 37px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pro-subtitle {
  font-size: 19px;
  color: #666;
  margin-top: 3px;
}

/* Card */
.pro-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  text-align: center;
  height: 200px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* Hover Elevation */
.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #e42428;
}

/* Icon Style */
.pro-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #e42428;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.pro-icon i {
  font-size: 38px;
  color: #e42428;
}

/* Card Heading */
.pro-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .pro-title {
    font-size: 30px;
  }

  .pro-card {
    padding: 25px;
  }
}

/* global */
.global-section {
  background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  padding: 90px 0;
  position: relative;
}

/* FIXED OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Put content above overlay */
.global-section .container,
.global-section .global-title,
.global-section .global-box {
  position: relative;
  z-index: 2;
}

.global-para {
  font-size: 20px;
}

.global-title {
  color: #fff;
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 800;
}

.global-box {
  background: rgba(255, 255, 255, 0.09);
  padding: 30px 25px;
  height: 210px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: 0.3s ease;
}

.global-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.counter {
  font-size: 52px;
  font-weight: 900;
  color: #e42428;
}

.info-text {
  font-size: 17px;
  color: #f9f9f9;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .global-title {
    font-size: 28px;
  }

  .counter {
    font-size: 32px;
  }
}

/* ================= SIDEBAR VARIABLES ================= */
:root {
  --brand-red: #e42928;
  --brand-red-dark: #e42928;
  --muted-gray: #f4f4f4;
  --border: #f3f3f3;
  --dark: #000;
}

/* ================= SIDEBAR CONTAINER ================= */
.page-container {
  padding: 24px;
}

.left-col {
  max-width: 400px;
  margin-left: 81px;
}

.sidebars {
  background: var(--muted-gray);
  border: 1px solid var(--border);
  padding: 0;
}

/* ================= RIBBON HEADER ================= */
.sidebars .ribbon-head {
  position: relative;
  background: var(--brand-red);
  color: #fff;
  padding: 25px 26px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid var(--brand-red-dark);
}

.sidebars .ribbon-head::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 1px;
  border-top: 40px solid transparent;
  border-bottom: 89px solid transparent;
  border-right: 28px solid var(--brand-red);
}

/* ================= CATEGORY LIST ================= */
.category-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.category-items {
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
}

.category-items .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.category-items .d-flex a.category-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.category-items .d-flex a.category-link:hover {
  color: var(--brand-red);
}

/* ================= CHEVRON BUTTON ================= */
.category-items .chev-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.category-items .chev-btn .chev {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 15px;
  font-weight: 900;
  color: var(--brand-red);
}

/* Rotate chevron when submenu is open */
.category-items .chev-btn[aria-expanded="true"] .chev {
  transform: rotate(90deg);
}

/* ================= SUBCATEGORY ================= */
.subcategory {
  padding-left: 10px;
  background: #fff;
}

.subcategory a {
  display: block;
  padding: 8px 18px;
  color: #080707;
  text-decoration: none;
  font-size: 13px;
  border-left: 3px solid transparent;
}

.subcategory a:hover {
  color: var(--brand-red);
  background: #fafafa;
  border-left-color: var(--brand-red);
}

/* ================= CONTACT BOX ================= */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  max-width: 347px;
  object-fit: cover;
  height: 100%;
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-info h5 {
  color: #c00;
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-info p {
  margin: 6px 0;
  font-size: 15px;
}

.contact-info a {
  color: #c00;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.address {
  font-size: 13px;
  margin-top: 6px;
}

/* Single link categories */
.category-items .category-link {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.category-items .category-link:hover {
  color: #000;
  background: #fafafa;
  border-left-color: var(--brand-red);
}

/* ================= RESPONSIVE ================= */

/* Tablets & below */
@media (max-width: 992px) {
  .left-col {
    max-width: 357px;
    min-width: 249px;
    position: relative;
    top: auto;
    margin-left: 0;
  }
}

/* Mobile & small tablets */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    height: auto;
  }

  .contact-info {
    padding: 15px;
  }
}

/* Small devices */
@media (max-width: 767.98px) {
  .sidebars .ribbon-head::before {
    left: -16px;
    border-right-width: 16px;
    border-top-width: 16px;
    border-bottom-width: 16px;
  }

  .contact-box {
    margin: 14px;
  }

  .sidebars {
    margin-bottom: 18px;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .subcategory a {
    font-size: 12px;
    padding: 6px 14px;
  }

  .category-items .d-flex a.category-link {
    font-size: 13px;
  }
}
/* prodcuts pages */
:root {
  --brand-red: #b10000;
  --brand-red-dark: #a21d1d;
  --muted-gray: #f4f4f4;
  --border: #e3e3e3;
}

.page-container {
  padding: 24px;
}

.my-product-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-product-list li {
  width: 50%;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.my-product-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--brand-red-dark);
  font-size: 12px;
}

.my-product-list li a {
  text-decoration: none;
  color: var(--brand-red-dark);
}

.my-product-list li a:hover {
  text-decoration: underline;
}

.heading {
  float: left;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  border-bottom: solid 1px rgba(153, 153, 153, 0.6);
  width: 100%;
}

.page-titles {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.text-muted {
  color: #0c0b0b !important;
  line-height: 1.7;
}

.card-grid .card {
  border: 1px solid var(--border);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.custom-list {
  padding-left: 20px;
  list-style-type: disc;
}

.custom-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.mains {
  background: #fff;
  padding: 24px 12px;
  width: 63%;
}

.fp-product-wrap {
  display: flex;
  gap: 30px;
  border-top: 1px solid #ccc;
}

.page-titles .heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Unique underline */
.page-titles .heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c40000, #ff6666);
  border-radius: 2px;
}

.fp-product-box {
  display: flex;
}

.fp-left {
  width: 39%;
  margin: 13px;
}

.fp-image-box {
  border: 3px double #999;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  width: fit-content;
  display: inline-block;
  padding: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fp-image-box img {
  max-width: 100%;
  height: auto;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.fp-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.fp-image-box:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.fp-thumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.fp-thumb {
  width: 100px;
  height: 80px;
  border: 1px solid #ccc;
  padding: 4px;
  cursor: pointer;
}

.fp-thumb img {
  width: 100%;
  height: 100%;
}

.fp-thumb.active {
  border: 2px solid #999;
}

.fp-arrow {
  font-size: 22px;
  cursor: pointer;
  color: #e45f5f;
}

.fp-right {
  width: 61%;
  margin: 13px;
}
.fp-product-title {
  font-size: 22px;
  margin-bottom: 10px;
}
.fp-description {
  color: #0b0909;
  margin-bottom: 0px;
}
.fp-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
}

.fp-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ed2d2d;
  font-size: 24px;
}

.fp-link-item img {
  width: 34px;
  height: 34px;
}
.fp-popup-img {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.fp-popup-img img {
  width: 40vw;
  height: auto;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .fp-product-box {
    flex-direction: column;
  }

  .fp-left,
  .fp-right {
    width: 100%;
  }

  .fp-links {
    grid-template-columns: 1fr;
  }

  .fp-thumb {
    width: 50px;
    height: 50px;
  }
}
/* iPad Mini & small tablets */
@media only screen and (min-width: 768px) and (max-width: 820px) {
  .sidebars .ribbon-head::before {
    left: -10px;
    top: -14px;
    border-top: 31px solid transparent;
    border-bottom: 33px solid transparent;
    border-right: 16px solid var(--brand-red);
  }
  .sidebars {
    background: var(--muted-gray);
    border: 1px solid var(--border);
    padding: 0;
    width: 715px;
  }
  .contact-info {
    padding: 103px;
  }
}

.custom-h2 {
  font-size: 24px;
  color: #c40000;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 6px;
}

.custom-h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c40000, #ff6666);
  border-radius: 2px;
}

.custom-h3 {
  font-size: 20px;
  color: #c40000;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 4px;
}

.custom-h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #c40000;
  border-radius: 2px;
}

.custom-h4 {
  font-size: 16px;
  color: #c40000;
  margin-bottom: 10px;
  font-weight: bold;
}
.tab-bar {
  display: flex;
  gap: 25px;
  max-width: 800px;
  padding: 20px 20px;
}

.tab-bar div {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #ed2d2d;
  background: #fff;
  color: #ed2d2d;
  transition: all 0.3s;
}

.tab-bar div.active {
  background: #ed2d2d;
  color: #fff;
}

.tab-bar div:not(.active):hover {
  background: #ffe6e6;
}

@media (max-width: 576px) {
  .tab-bar {
    flex-direction: column;
    gap: 8px;
  }
}


/* ===== CONTENT AREA ===== */
.content-area {
  margin-top: 20px;
}

#details,
#quoteForm {
  display: none;
}

#details.active,
#quoteForm.active {
  display: block;
}

.srpm-table-wrapper {
  margin-bottom: 25px;
}

.srpm-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.srpm-spec-table th,
.srpm-spec-table td {
  border: 1px solid #ddd;
  padding: 10px;

  text-align: left;
}

.srpm-spec-table th {
  background: #f5f5f5;
  width: 35%;
}

.srpm-feature-list {
  padding-left: 20px;
  list-style: none;
}

.srpm-feature-list li {
  margin-bottom: 6px;
}
/* ================= RESPONSIVE ================= */

/* Tablet & Mobile layout */
@media (max-width: 768px) {
  .mains {
    width: 100%;
    padding: 16px 10px;
  }
  .sidebars .ribbon-head {
    position: relative;
    background: var(--brand-red);
    color: #fff;
    padding: 3px 26px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--brand-red-dark);
  }
  .fp-product-box {
    flex-direction: column;
  }

  .fp-left,
  .fp-right {
    width: 100%;
  }

  .fp-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fp-thumb {
    width: 50px;
    height: 50px;
  }

  .tab-bar {
    gap: 12px;
    justify-content: center;
  }

  .tab-left,
  .tab-right {
    width: 100%;
    text-align: center;
  }
}

/* Medium screens */
@media (max-width: 900px) {
  .custom-h2 {
    font-size: 20px;
  }

  .custom-h3 {
    font-size: 18px;
  }

  .custom-h4 {
    font-size: 16px;
  }
}

/* Home page selected sections refresh */
.home-product-section,
.home-why-section,
.home-featured-section {
  padding: 64px 20px !important;
}

.home-product-section {
  background: #f6f7f9;
}

.home-product-section h2,
.home-why-section .kingsun-title,
.home-featured-section .featured-heading {
  margin-bottom: 12px;
  color: #151515;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-section .heading-line,
.home-why-section .heading-line,
.home-featured-section .heading-line {
  width: 76px;
  height: 4px;
  background: #1f2933;
  margin-bottom: 22px;
}

.home-product-section .heading-line::before,
.home-why-section .heading-line::before,
.home-featured-section .heading-line::before {
  width: 12px;
  height: 12px;
  background: #df2229;
}

.home-product-section .product-para,
.home-why-section .k-desc {
  max-width: 980px;
  margin: 18px auto 38px;
  color: #3f454b;
  font-size: 16px !important;
  line-height: 1.7;
  font-weight: 500;
}

.home-product-section .slider-wrapper {
  width: min(1180px, 100%);
  padding: 0 48px;
}

.home-product-section .slider-container {
  padding: 8px 0 14px;
}

.home-product-section .product-card {
  display: flex;
  flex: 0 0 calc(25% - 20px);
  flex-direction: column;
  min-height: 425px;
  height: auto;
  margin: 10px;
  border: 1px solid #e3e6ea;
  border-radius: 8px;
  background: #ffffff;
  color: #151515;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(27, 31, 35, 0.08);
}

.home-product-section .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 34, 41, 0.28);
  box-shadow: 0 18px 38px rgba(27, 31, 35, 0.13);
}

.home-product-section .product-card img {
  height: 190px;
  padding: 16px;
  object-fit: contain;
  background: #f9fafb;
  border-bottom: 1px solid #eceff2;
}

.home-product-section .product-card h5 {
  display: block;
  min-height: 46px;
  margin: 18px 0 8px;
  padding: 0 18px;
  border-radius: 0;
  background: transparent;
  color: #151515;
  font-size: 17px !important;
  line-height: 1.35;
  font-weight: 800;
}

.home-product-section .product-card h5::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: #df2229;
}

.home-product-section .product-card p {
  flex: 1;
  margin: 0;
  padding: 0 18px 22px;
  color: #58616b;
  font-size: 13px;
  line-height: 1.6;
}

.home-product-section .btn-danger {
  border: 0;
  border-radius: 6px;
  background: #df2229;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(223, 34, 41, 0.22);
}

.home-product-section .btn-danger:hover,
.home-product-section .btn-danger:focus {
  background: #151515;
}

.home-product-section .slider-btn {
  top: 42%;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #151515;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.home-product-section .slider-btn:hover:not(:disabled) {
  background: #df2229;
}

.home-product-section .slider-btn:disabled {
  background: #bfc5cc;
  opacity: 0.7;
}

.home-product-section .prev-btn {
  left: 0;
}

.home-product-section .next-btn {
  right: 0;
}

.home-about-section {
  background: #171a1f;
  color: #ffffff;
}

.home-about-section .container-fluid {
  max-width: 1240px;
}

.home-about-section .about-main {
  max-width: 620px;
  margin-bottom: 18px !important;
  font-size: 42px;
  line-height: 1.2;
}

.home-about-section .about-para,
.home-about-section .about-2para {
  width: 100%;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.home-about-section .home-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 6px;
  background: #df2229;
  color: #ffffff;
  font-weight: 700;
}

.home-about-section .home-link:hover,
.home-about-section .home-link:focus {
  background: #ffffff;
  color: #151515;
}

.home-about-section .image-wrapper {
  clip-path: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.home-about-section .image-wrapper .main-image {
  height: 500px;
  border-radius: 8px;
  object-fit: cover;
}

.home-about-section .play-button {
  left: 50%;
  background: rgba(223, 34, 41, 0.88);
  color: #ffffff;
}

.home-about-section .pulse,
.home-about-section .pulse.delay {
  background: rgba(223, 34, 41, 0.32);
}

.home-why-section {
  background: #ffffff;
}

.home-why-section .why-choose {
  row-gap: 20px;
}

.home-why-section .why-choose > [class*="col-"] {
  display: flex;
}

.home-why-section .k-box {
  width: 100%;
  min-height: 178px;
  padding: 24px;
  border: 1px solid #e3e6ea;
  border-left: 4px solid #df2229;
  border-radius: 8px;
  background: #f8f9fb;
  box-shadow: 0 12px 28px rgba(27, 31, 35, 0.06);
}

.home-why-section .k-box:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(27, 31, 35, 0.12);
}

.home-why-section .k-icon {
  min-width: 62px;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: #151515;
}

.home-why-section .k-icon i {
  font-size: 28px;
}

.home-why-section .k-head {
  margin-bottom: 8px;
  color: #151515;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.home-why-section .k-text {
  margin: 0;
  color: #59626d;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.home-featured-section {
  background: #f6f7f9;
}

.home-featured-section .container {
  max-width: 1180px;
}

.home-featured-section .row.g-4.mt-4 {
  margin-top: 16px !important;
}

.home-featured-section .fp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e3e6ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(27, 31, 35, 0.08);
}

.home-featured-section .fp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 34, 41, 0.28);
  box-shadow: 0 18px 38px rgba(27, 31, 35, 0.13);
}

.home-featured-section .fp-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  background: #ffffff;
}

.home-featured-section .fp-img-box img {
  width: 100%;
  height: 210px;
  padding: 12px;
  object-fit: contain;
}

.home-featured-section .fp-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 14px 12px;
  background: #f73b3b;
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 991px) {
  .home-product-section,
  .home-why-section,
  .home-featured-section {
    padding: 48px 18px !important;
  }

  .home-product-section h2,
  .home-why-section .kingsun-title,
  .home-featured-section .featured-heading {
    font-size: 32px;
  }

  .home-product-section .product-card {
    flex: 0 0 calc(50% - 20px);
    min-height: 405px;
  }

  .home-product-section .slider-wrapper {
    padding: 0 38px;
  }

  .home-about-section {
    text-align: left;
  }

  .home-about-section .about-main {
    font-size: 34px;
  }

  .home-about-section .about-para,
  .home-about-section .about-2para {
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }

  .home-about-section .image-wrapper {
    margin-top: 28px;
  }

  .home-about-section .image-wrapper .main-image {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .home-product-section,
  .home-why-section,
  .home-featured-section {
    padding: 38px 14px !important;
  }

  .home-product-section h2,
  .home-why-section .kingsun-title,
  .home-featured-section .featured-heading {
    font-size: 27px;
  }

  .home-product-section .product-para,
  .home-why-section .k-desc {
    margin-bottom: 28px;
    font-size: 14px !important;
    text-align: left;
  }

  .home-product-section .slider-wrapper {
    padding: 0 28px;
  }

  .home-product-section .product-card {
    flex: 0 0 100%;
    min-height: 392px;
  }

  .home-product-section .product-card img {
    height: 170px;
  }

  .home-product-section .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .home-product-section .prev-btn {
    left: -4px;
  }

  .home-product-section .next-btn {
    right: -4px;
  }

  .home-about-section .about-main {
    font-size: 28px;
    line-height: 1.25;
  }

  .home-about-section .about-para,
  .home-about-section .about-2para {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-about-section .home-link {
    width: 100%;
    justify-content: center;
  }

  .home-about-section .image-wrapper .main-image {
    height: 280px;
  }

  .home-about-section .play-button {
    width: 64px;
    height: 64px;
    margin-left: 0;
  }

  .home-about-section .pulse,
  .home-about-section .pulse.delay {
    width: 64px;
    height: 64px;
  }

  .home-why-section .k-box {
    flex-direction: column;
    min-height: 0;
    padding: 20px;
    text-align: left;
  }

  .home-why-section .k-text-wrap {
    margin-left: 0 !important;
    margin-top: 14px;
  }

  .home-why-section .k-icon {
    margin: 0;
  }

  .home-why-section .k-text {
    text-align: left;
  }

  .home-featured-section .fp-img-box,
  .home-featured-section .fp-img-box img {
    height: 190px;
  }
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.machine-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
}

.machine-card:hover {
  border: 1px solid var(--brand-red-dark);
  transform: translateY(-4px);
}

.machine-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f8f8f8;
  padding: 10px;
}

.machine-card h4 {
  font-size: 15px;
  padding: 12px;
  margin: 0;
  color: #222;
}

.machine-card h4:hover {
  color: #a21d1d;
}

.machine-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  color: #fff;
}

.search-page-wrap {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 16px;
}

.search-page-product-search-box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 28px;
}

.search-page-product-search-box .product-search-suggestions {
  left: 0;
  right: 0;
  width: 100%;
}

.search-page-form {
  display: flex;
  width: 100%;
  max-width: 720px;
  min-height: 52px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.search-page-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  font-size: 16px;
}

.search-page-form button {
  flex: 0 0 145px;
  border: 0;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s ease;
}

.search-page-form button:hover,
.search-page-form button:focus {
  background: #111;
}

.search-summary,
.search-empty-state {
  text-align: center;
  margin-bottom: 24px;
}

.search-summary h2,
.search-empty-state h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.search-summary p,
.search-empty-state p {
  color: #555;
  margin: 0;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.search-result-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.search-result-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.search-result-image {
  display: block;
  height: 190px;
  background: #f7f7f7;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.search-result-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.search-result-content h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.search-result-content h3 a:hover {
  color: var(--brand-red);
}

.search-result-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.search-result-link {
  margin-top: auto;
  color: var(--brand-red);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.search-result-link:hover {
  color: #111;
}

@media (max-width: 576px) {
  .search-page-form {
    flex-direction: column;
  }

  .search-page-form input {
    height: 52px;
  }

  .search-page-form button {
    flex: 0 0 48px;
    width: 100%;
  }
}

/* related images machines */
.prod-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* ===== Track ===== */
.prod-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* ===== Card ===== */
.prod-slide {
  flex: 0 0 25%;
  padding: 10px;
  box-sizing: border-box;
}

.prod-card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  text-align: center;
  padding: 15px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.prod-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.prod-card h4 {
  font-size: 14px;
  margin-top: 10px;
}

/* Hover */
.prod-card:hover {
  border-color: #e60023;
  transform: translateY(-6px);
}

/* ===== Buttons ===== */
.prod-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e60023;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
}

.prod-prev {
  left: 7px;
}
.prod-next {
  right: 7px;
}

.prod-btn:hover {
  background: #000;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .prod-slide {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 768px) {
  .prod-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 480px) {
  .prod-slide {
    flex: 0 0 100%;
  }
}

.machine-hero-section {
  position: relative;
  background: url("../img/our-products-banner.png") center/cover no-repeat;
  padding: 150px 20px;
  overflow: hidden;
}

.machine-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
}

.machine-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.machine-hero-content h1 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.machine-hero-content p {
  margin-top: 15px;
  color: #ddd;
}

/* ===== BREADCRUMB ===== */
.machine-breadcrumb-wrap {
  background: #0f0f0f;
  padding: 14px 20px;
}

.machine-breadcrumb-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.machine-breadcrumb-inner a {
  color: #ff2d2d;
  text-decoration: none;
  font-weight: 600;
}

.machine-breadcrumb-inner span {
  color: #aaa;
}

/* ===== PAGE WRAP ===== */
.machine-page-wrap {
  max-width: 1320px;
  margin: 50px auto;
  padding: 0 15px;
}

/* ===== MAIN BOX ===== */
.machine-main-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.machine-image-side {
  background: #111;
  padding: 20px;
  border-radius: 18px;
}

.machine-image-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.machine-image-card img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  transition: 0.5s ease;
}

.machine-image-card img:hover {
  transform: scale(1.01) ;
}

/* CONTENT */
.machine-content-side {
  padding: 20px;
}

.machine-product-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  position: relative;
}

.machine-product-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff2d2d;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* ===== IMPROVED DESCRIPTION ===== */
.machine-product-text {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
  margin-top: 15px;
}

/* ===== BUTTONS ===== */
.machine-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.machine-btn {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

/* QUOTE */
.machine-quote-btn {
  background: linear-gradient(135deg, #ff2d2d, #c40000);
  color: #fff;
}

.machine-quote-btn:hover {
  background: #111;
  transform: translateY(-4px);
}

/* VIDEO */
.machine-video-btn {
  background: #111;
  color: #fff;
  border: 2px solid #ff2d2d;
}

.machine-video-btn:hover {
  background: #ff2d2d;
  transform: translateY(-4px);
}

/* ===== TECHNICAL BOX ===== */
.machine-box {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  margin-top: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.machine-box h2 {
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, #111, #2c2c2c);
  padding: 15px 18px;
  border-left: 6px solid #ff2d2d;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* TABLE */
.machine-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
}

.machine-table th {
  width: 35%;
  background: linear-gradient(135deg, #ff2d2d, #c40000);
  color: #fff;
  padding: 16px;
  text-align: left;
}

.machine-table td {
  padding: 16px;
  color: #444;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.machine-table tr:nth-child(even) td {
  background: #fafafa;
}

.machine-table tr:hover td {
  background: #fff2f2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .machine-hero-content h1 {
    font-size: 42px;
  }

  .machine-main-box {
    grid-template-columns: 1fr;
  }

  .machine-image-card img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .machine-hero-content h1 {
    font-size: 32px;
  }

  .machine-action-buttons {
    flex-direction: column;
  }

  .machine-btn {
    width: 100%;
  }

  .machine-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .machine-hero-content h1 {
    font-size: 26px;
  }

  .machine-image-card img {
    height: 240px;
  }
}

/* ===============================
   ABOUT PAGE REFRESH
================================ */
.about-main {
  background: #ffffff;
  color: #1d1d1f;
}

.about-main section {
  padding: 74px 0;
}

.about-main img {
  display: block;
  max-width: 100%;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #e42428;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-intro-section {
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.about-intro-copy h1,
.about-section-heading h2 {
  margin: 0;
  color: #151515;
  font-weight: 800;
  letter-spacing: 0;
}

.about-intro-copy h1 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.12;
}

.about-lead {
  margin: 18px 0 16px;
  color: #c21c1e;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
}

.about-intro-copy p:not(.about-lead),
.about-section-heading p,
.about-value-card p {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.75;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-stat-item {
  min-height: 112px;
  padding: 20px 16px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #f8f9fb;
}

.about-stat-item strong {
  display: block;
  color: #e42428;
  font-size: 34px;
  line-height: 1;
}

.about-stat-item span {
  display: block;
  margin-top: 9px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
}

.about-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
}

.about-btn-primary {
  border: 1px solid #e42428;
  background: #e42428;
  color: #ffffff;
}

.about-btn-primary:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.about-btn-outline {
  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #171717;
}

.about-btn-outline:hover {
  border-color: #e42428;
  color: #e42428;
}

.about-intro-media {
  position: relative;
}

.about-intro-media img,
.about-video-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.about-media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.about-media-badge i,
.about-value-icon,
.about-support-item i {
  flex: 0 0 auto;
  color: #e42428;
}

.about-media-badge i {
  font-size: 34px;
}

.about-media-badge strong,
.about-media-badge span {
  display: block;
}

.about-media-badge strong {
  color: #111111;
  font-size: 17px;
}

.about-media-badge span {
  margin-top: 3px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.45;
}

.about-machinery-section,
.about-values-section {
  background: #f6f7f9;
}

.about-video-panel {
  position: relative;
}

.about-video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e42428;
  color: #ffffff;
  text-decoration: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(228, 36, 40, 0.18);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-video-link:hover {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 0 0 13px rgba(17, 17, 17, 0.16);
}

.about-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-section-heading.text-start {
  max-width: 100%;
  margin: 0 0 26px;
}

.about-section-heading h2 {
  font-size: 36px;
  line-height: 1.2;
}

.about-section-heading p {
  margin: 14px 0 0;
}

.about-machine-grid,
.about-industry-grid,
.about-support-grid {
  display: grid;
  gap: 16px;
}

.about-machine-grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-machine-item,
.about-industry-item,
.about-support-item,
.about-value-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-machine-item,
.about-industry-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
}

.about-machine-item i,
.about-industry-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff1f1;
  color: #e42428;
  font-size: 18px;
}

.about-machine-item span,
.about-industry-item span {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.about-industries-section {
  background: #ffffff;
}

.about-industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value-card {
  min-height: 430px;
  padding: 28px;
}

.about-value-card-dark {
  background: #202020;
  border-color: #202020;
}

.about-value-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #fff1f1;
  font-size: 27px;
}

.about-value-card h3 {
  margin: 0 0 12px;
  color: #171717;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-value-card-dark h3,
.about-value-card-dark p,
.about-value-card-dark li {
  color: #ffffff;
}

.about-value-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-value-card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 11px;
  color: #333333;
  font-size: 15px;
  line-height: 1.45;
}

.about-value-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e42428;
}

.about-main .about-global-section {
  background: url("../img/welcome.jpg") center center / cover no-repeat;
  padding: 78px 0;
}

.about-main .about-global-section .overlay {
  background: rgba(0, 0, 0, 0.68);
}

.about-global-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.about-global-heading h2,
.about-global-heading p {
  color: #ffffff;
}

.about-global-heading .about-kicker {
  color: #ffffff;
}

.about-global-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about-main .about-global-section .global-box {
  height: auto;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  border-radius: 8px;
  text-align: left;
}

.about-main .about-global-section .counter {
  font-size: 48px;
  line-height: 1;
}

.about-main .about-global-section .global-para,
.about-main .about-global-section .info-text {
  margin: 12px 0 0;
  line-height: 1.55;
}

.about-main .about-global-section .global-box i {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 40px;
}

.about-support-section {
  background: #ffffff;
}

.about-support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-support-item {
  min-height: 174px;
  padding: 26px 22px;
  text-align: center;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-support-item:hover {
  border-color: #e42428;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.11);
}

.about-support-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff1f1;
  font-size: 30px;
}

.about-support-item h3 {
  margin: 0;
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 1199px) {
  .about-intro-copy h1 {
    font-size: 38px;
  }

  .about-section-heading h2 {
    font-size: 32px;
  }

  .about-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .about-main section {
    padding: 58px 0;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-values-grid,
  .about-global-grid,
  .about-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .about-intro-copy h1 {
    font-size: 32px;
  }

  .about-section-heading h2 {
    font-size: 28px;
  }

  .about-lead {
    font-size: 18px;
  }

  .about-stat-grid,
  .about-machine-grid,
  .about-industry-grid,
  .about-values-grid,
  .about-global-grid,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-media-badge {
    position: static;
    margin-top: 12px;
  }

  .about-intro-media img,
  .about-video-panel img {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 575px) {
  .about-main section {
    padding: 44px 0;
  }

  .about-intro-copy h1 {
    font-size: 29px;
  }

  .about-section-heading h2 {
    font-size: 25px;
  }

  .about-action-row {
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }

  .about-value-card {
    padding: 24px;
  }

  .about-main .about-global-section .counter {
    font-size: 40px;
  }
}

/* ===============================
   CONTACT PAGE REFRESH
================================ */
.contact-main {
  background: #ffffff;
  color: #1d1d1f;
}

.contact-main section {
  padding: 72px 0;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #e42428;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-intro-section {
  background: #ffffff;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.contact-intro-copy h1,
.contact-section-heading h2,
.contact-map-copy h2 {
  margin: 0;
  color: #151515;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-intro-copy h1 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.12;
}

.contact-intro-copy p,
.contact-section-heading p,
.contact-map-copy p,
.contact-help-item p,
.contact-office-card p {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.75;
}

.contact-intro-copy p {
  max-width: 680px;
  margin: 18px 0 0;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-page-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-page-btn:hover {
  transform: translateY(-2px);
}

.contact-page-btn-primary {
  border: 1px solid #e42428;
  background: #e42428;
  color: #ffffff;
}

.contact-page-btn-primary:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.contact-page-btn-outline {
  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #171717;
}

.contact-page-btn-outline:hover {
  border-color: #e42428;
  color: #e42428;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-quick-card,
.contact-form-panel,
.contact-help-panel,
.contact-help-item,
.contact-map-copy,
.contact-map-frame,
.contact-office-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-quick-card {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  color: #1d1d1f;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-quick-card:hover {
  border-color: #e42428;
  color: #1d1d1f;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.11);
}

.contact-quick-card i,
.contact-help-item i,
.contact-office-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff1f1;
  color: #e42428;
  font-size: 25px;
}

.contact-quick-card span {
  margin-top: 18px;
  color: #e42428;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-quick-card strong {
  margin-top: 7px;
  color: #171717;
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}

.contact-quick-card small {
  margin-top: 8px;
  color: #5f5f5f;
  font-size: 14px;
}

.contact-form-section,
.contact-offices-section {
  background: #f6f7f9;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.contact-form-panel {
  padding: 34px;
}

.contact-section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.contact-section-heading h2,
.contact-map-copy h2 {
  font-size: 36px;
  line-height: 1.2;
}

.contact-section-heading p,
.contact-map-copy p {
  margin: 14px 0 0;
}

.contact-page-form .form-control,
.contact-page-form .form-select {
  min-height: 58px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #151515;
  box-shadow: none;
}

.contact-page-form textarea.form-control {
  min-height: 160px;
}

.contact-page-form .form-control:focus,
.contact-page-form .form-select:focus {
  border-color: #e42428;
  box-shadow: 0 0 0 0.18rem rgba(228, 36, 40, 0.12);
}

.contact-page-form .form-floating > label {
  color: #6c6c6c;
}

.contact-submit-btn {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #e42428;
  border-radius: 6px;
  background: #e42428;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
  border-color: #111111;
  background: #111111;
  transform: translateY(-2px);
}

.contact-help-panel {
  padding: 18px;
}

.contact-help-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #ececec;
}

.contact-help-item:first-child {
  padding-top: 8px;
}

.contact-help-item:last-child {
  padding-bottom: 8px;
  border-bottom: 0;
}

.contact-help-item h3 {
  margin: 0 0 6px;
  color: #171717;
  font-size: 18px;
  font-weight: 800;
}

.contact-help-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-map-section {
  background: #ffffff;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

.contact-map-copy .contact-page-btn {
  margin-top: 24px;
}

.contact-map-frame {
  min-height: 430px;
  overflow: hidden;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
}

.contact-offices-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-office-card {
  min-height: 260px;
  padding: 24px;
}

.contact-office-card-featured {
  background: #202020;
  border-color: #202020;
}

.contact-office-card h3 {
  margin: 20px 0 10px;
  color: #171717;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.contact-office-card-featured h3,
.contact-office-card-featured p {
  color: #ffffff;
}

.contact-office-card p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .contact-intro-grid,
  .contact-form-layout,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-help-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-help-item {
    display: block;
    padding: 20px;
    border: 1px solid #ececec;
    border-radius: 8px;
  }

  .contact-help-item i {
    margin-bottom: 16px;
  }

  .contact-office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .contact-main section {
    padding: 58px 0;
  }

  .contact-intro-copy h1 {
    font-size: 38px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 32px;
  }

  .contact-quick-grid,
  .contact-help-panel {
    grid-template-columns: 1fr;
  }

  .contact-quick-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .contact-intro-copy h1 {
    font-size: 32px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 28px;
  }

  .contact-form-panel,
  .contact-map-copy {
    padding: 24px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 340px;
  }

  .contact-office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-main section {
    padding: 44px 0;
  }

  .contact-intro-copy h1 {
    font-size: 29px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 25px;
  }

  .contact-action-row {
    flex-direction: column;
  }

  .contact-page-btn {
    width: 100%;
  }

  .contact-form-panel,
  .contact-map-copy,
  .contact-office-card {
    padding: 22px;
  }
}
