body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

/* ------------------------------
   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 {
  padding: 8px 12px;
  border-color: rgba(177, 0, 0, 0.45);
  background: #b10000;
}

.mobile-menu-symbol {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1;
  visibility: visible;
}

/* ===============================
   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: clamp(220px, 28vw, 350px);
  background: url("../img/company-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner {
  width: 100%;
  min-height: clamp(220px, 28vw, 350px);
  background: url("../img/contact-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  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: 32px;
  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: 24px;
  }

  .breadcrumb-inner {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .about-banner,
  .contact-banner {
    min-height: 125px;
    background-color: #ffffff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .exact-content h2 {
    font-size: 21px;
  }
}

/* counter */

.stats-section{
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f8, #ffffff);
    position: relative;
    overflow: hidden;
}

.stats-section::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(177,0,0,0.06);
    border-radius: 50%;
    top: -150px;
    left: -120px;
}

.stats-section::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(177,0,0,0.04);
    border-radius: 50%;
    bottom: -120px;
    right: -100px;
}

.stats-container{
    position: relative;
    z-index: 2;
}

.stats-box{
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(177,0,0,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.stats-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: #B10000;
    transition: all 0.5s ease;
}

.stats-box:hover::before{
    left: 0;
}

.stats-box:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(177,0,0,0.18);
}

.stats-icon{
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 10px rgba(177,0,0,0.15));
}

.stats-box:hover .stats-icon{
    transform: rotate(10deg) scale(1.1);
}

.stats-box h3{
    font-size: 42px;
    font-weight: 800;
    color: #B10000;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-box p{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    line-height: 1.5;
}

/* Floating Glow Effect */
.stats-box::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(177,0,0,0.05);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    transition: all 0.5s ease;
}

.stats-box:hover::after{
    transform: scale(1.3);
}

/* ===== Tablet ===== */
@media (max-width: 991px){

    .stats-section{
        padding: 60px 0;
    }

    .stats-box{
        padding: 30px 15px;
    }

    .stats-box h3{
        font-size: 34px;
    }

    .stats-icon{
        width: 65px;
        height: 65px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 767px){

    .stats-section{
        padding: 50px 0;
    }

    .stats-box{
        padding: 25px 12px;
        border-radius: 20px;
    }

    .stats-icon{
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .stats-box h3{
        font-size: 28px;
    }

    .stats-box p{
        font-size: 14px;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px){

    .stats-box{
        padding: 20px 10px;
    }

    .stats-box h3{
        font-size: 24px;
    }

    .stats-box p{
        font-size: 13px;
    }

    .stats-icon{
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 767px) {
    .stats-section .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .carousel-control-prev, .carousel-control-next{
      display: none;
    }
}
@media (max-width: 767px) {
    .stats-section .row > [class*="col-"] {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
.logo {
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* about us */
.about-section {
  background: linear-gradient(135deg, #000, #122b7a);
  position: relative;
  overflow: hidden;
}

.about-section .row {
  min-height: 620px;
}

/* Content */
.home-about-title {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.home-about-title::after {
  content: "";
  width: 85px;
  height: 4px;
  background: #cb0909;
  display: block;
  margin-top: 16px;
  border-radius: 30px;
}

.about-para,
.about-2para {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Button */
.home-link {
  display: inline-block;
  background: #f70606;
  color: #000;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: 0.4s ease;
}

.home-link:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-4px);
}

/* Image */
.right-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  max-width: 650px;
  width: 100%;
  position: relative;
}
.image-wrapper img{
height: 500px;
}
.main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: 0.5s ease;
}

.image-wrapper:hover .main-image {
  transform: scale(1.0);
}


@keyframes aboutPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }

  .about-section .row {
    min-height: auto;
    gap: 40px;
  }

  .home-about-title {
    font-size: 20px;
  }

  .home-about-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .image-wrapper {
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 55px 0 !important;
  }

  .home-about-title {
    font-size: 20px;
  }

  .about-para,
  .about-2para {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-link {
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .home-about-title {
    font-size: 20px;
  }

  .about-para,
  .about-2para {
    font-size: 14px;
  }

  .home-link {
    width: 100%;
    text-align: center;
  }
}

/* ===== UNIQUE RED HEADING ===== */

.mmw-unique-heading {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    color: #c1121f;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 40px;
    padding-bottom: 25px;
    text-transform: capitalize;
}

.mmw-unique-heading::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    background: #c1121f;
    transform: translateX(-50%);
    border-radius: 50px;
}

.mmw-unique-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #c1121f;
    transform: translateX(-50%) rotate(45deg);
    border: 3px solid #fff;
}

/* Responsive */

@media (max-width: 991px) {
    .mmw-unique-heading {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .mmw-unique-heading {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .mmw-unique-heading::before {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .mmw-unique-heading {
        font-size: 24px;
        line-height: 1.4;
    }

    .mmw-unique-heading::before {
        width: 70px;
    }

    .mmw-unique-heading::after {
        width: 14px;
        height: 14px;
    }
}


/* partners */
.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: 34px;
  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;

}

.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: 24px;
  }

  .testi-next {
    right: -25px;
  }

  .testi-top h5 {
    font-size: 15px;
  }
}
.mmw-process-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fff 0%, #fff3f3 100%);
    overflow: hidden;
}

.mmw-process-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
}

.mmw-process-box {
    background: #fff;
    padding: 35px 28px;
    border-radius: 10px 45px 10px 45px;
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(193, 18, 31, 0.15);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    overflow: hidden;
}

.mmw-process-box:hover {
    transform: translateY(-12px);
    border-color: #c1121f;
}

.mmw-process-no {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 58px;
    font-weight: 900;
    color: rgba(193, 18, 31, 0.08);
    line-height: 1;
}

.mmw-process-icon {
    width: 76px;
    height: 76px;
    background: #c1121f;
    color: #fff;
    border-radius: 10px 28px 10px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.mmw-process-icon i {
    font-size: 30px;
}

.mmw-process-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mmw-process-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.mmw-process-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(193, 18, 31, 0.08);
    border-radius: 50%;
    right: -45px;
    bottom: -45px;
    transition: 0.4s ease;
}

.mmw-process-box:hover::after {
    width: 180px;
    height: 180px;
}

/* Responsive */
@media (max-width: 991px) {
    .mmw-process-wrap {
        grid-template-columns: 1fr;
    }

    .mmw-process-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .mmw-process-section {
        padding: 55px 0;
    }

    .mmw-process-box {
        padding: 30px 22px;
        border-radius: 10px 32px 10px 32px;
    }

    .mmw-process-box h3 {
        font-size: 21px;
    }

    .mmw-process-box p {
        font-size: 14px;
    }

    .mmw-process-no {
        font-size: 46px;
    }
}

/* 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));
  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;
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a {
    overflow-wrap: anywhere;
  }

  .contact-intro-copy,
  .contact-quick-grid {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-right: auto;
  }

  .legal-content {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    margin-right: auto;
  }

  .legal-banner {
    min-height: 190px;
    padding: 40px 16px;
  }

  .legal-banner-content {
    width: 100%;
    min-width: 0;
  }

  .legal-banner-content h1 {
    padding: 0 12px;
    font-size: clamp(25px, 7.5vw, 28px);
    overflow-wrap: anywhere;
  }
}
.legal-page-section{
  padding:80px 0;
  background:#f7f7f7;
  font-family:Arial, sans-serif;
}

.legal-page-section .container{
  width:1180px;
  max-width:92%;
  margin:auto;
}

.legal-page-heading{
  text-align:center;
  margin-bottom:45px;
}

.legal-page-heading span{
  display:inline-block;
  color:#F02B2C;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}

.legal-page-heading h2{
  font-size:42px;
  color:#111;
  margin:0 0 15px;
  font-weight:800;
}

.legal-page-heading p{
  color:#666;
  font-size:16px;
  max-width:650px;
  margin:auto;
  line-height:1.7;
}

.legal-layout{
  max-width:1000px;
  margin:auto;
}

.legal-content{
  background:#fff;
  padding:45px;
  border-radius:16px;
  box-shadow:0 15px 45px rgba(0,0,0,0.08);
  border-top:6px solid #F02B2C;
}

.legal-block{
  padding:28px 0;
  border-bottom:1px solid #eee;
}

.legal-block:first-child{
  padding-top:0;
}

.legal-block:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.legal-block h3{
  font-size:24px;
  color:#111;
  margin:0 0 15px;
  font-weight:700;
  position:relative;
  padding-left:18px;
}

.legal-block h3::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:5px;
  height:22px;
  background:#F02B2C;
  border-radius:10px;
}

.legal-block p{
  color:#555;
  font-size:16px;
  line-height:1.8;
  margin:0 0 12px;
}

.legal-list{
  margin:0;
  padding:0;
  list-style:none;
}

.legal-list li{
  color:#555;
  font-size:16px;
  line-height:1.8;
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
}

.legal-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#F02B2C;
  font-weight:800;
}

.legal-contact-block{
  background:#fff5f5;
  padding:30px !important;
  border-radius:14px;
  border:1px solid rgba(240,43,44,0.2);
}

.legal-contact-block a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:8px 12px 0 0;
  padding:12px 18px;
  background:#F02B2C;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  transition:0.3s;
}

.legal-contact-block a:hover{
  background:#c91f20;
  transform:translateY(-3px);
  color:#fff;
}

@media(max-width:768px){
  .legal-page-section{
    padding:55px 0;
  }

  .legal-page-heading h2{
    font-size:32px;
  }

  .legal-content{
    padding:30px 22px;
    border-radius:12px;
  }

  .legal-block h3{
    font-size:21px;
  }

  .legal-block p,
  .legal-list li{
    font-size:15px;
  }

  .legal-contact-block a{
    width:100%;
    justify-content:center;
    margin-right:0;
  }
}

@media(max-width:480px){
  .legal-page-heading h2{
    font-size:27px;
  }

  .legal-page-heading p{
    font-size:14px;
  }

  .legal-content{
    padding:25px 18px;
  }
}

/* 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: 34px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 767px) {
  .featured-heading,
  .blog-heading {
    font-size: 24px;
  }
}

.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%;
    margin-left: 0;
    margin-right: 0;
  }

  .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: 100%;
  }
  .contact-info {
    padding: 24px;
  }
}

.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;
  }
}

/* our products range */
/* ===============================
   INDUSTRIAL PRODUCTS SECTION
================================== */

.industrial-products-section{
    padding:100px 5%;
    background:linear-gradient(180deg,#ffffff,#fff5f5);
    position:relative;
    overflow:hidden;
}

.industrial-products-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(177,0,0,0.04);
    border-radius:50%;
    top:-150px;
    left:-100px;
}

.industrial-products-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(177,0,0,0.04);
    border-radius:50%;
    right:-120px;
    bottom:-100px;
}

.industrial-heading{
    max-width:1000px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.industrial-heading span{
    display:inline-block;
    color:#B10000;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:10px;
}

.industrial-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
    text-transform:uppercase;
}

.industrial-heading p{
    color:#666;
    font-size:17px;
    line-height:1.9;
}

/* ===============================
   GRID
================================== */

.industrial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* ===============================
   CARD
================================== */

.industrial-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    transition:all .5s ease;
    border:1px solid rgba(177,0,0,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.industrial-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(177,0,0,.15);
}

.industrial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#B10000;
    z-index:5;
}

/* ===============================
   IMAGE
================================== */

.industrial-image{
    height:260px;
    overflow:hidden;
    position:relative;
}

.industrial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .8s ease;
}

.industrial-card:hover .industrial-image img{
    transform:scale(1.1);
}

/* ===============================
   CONTENT
================================== */

.industrial-content{
    padding:30px;
    position:relative;
}

.product-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:70px;
    font-weight:900;
    color:rgba(177,0,0,.08);
    line-height:1;
}

.industrial-content h3{
    font-size:20px;
    font-weight:700;
    color:#B10000;
    margin-bottom:15px;
    line-height:1.4;
    padding-right:60px;
}

.industrial-content p{
    color:#555;
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
}

/* ===============================
   BUTTON
================================== */

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#B10000;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.4s;
}

.product-btn:hover{
    background:#870000;
    color:#fff;
    transform:translateY(-3px);
}

.product-btn::after{
    content:"→";
    font-size:18px;
}

/* ===============================
   TABLET
================================== */

@media(max-width:1199px){

    .industrial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .industrial-heading h2{
        font-size:42px;
    }

    .industrial-image{
        height:240px;
    }
}

/* ===============================
   MOBILE
================================== */

@media(max-width:767px){

    .industrial-products-section{
        padding:70px 15px;
    }

    .industrial-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .industrial-heading{
        margin-bottom:50px;
    }

    .industrial-heading span{
        font-size:13px;
        letter-spacing:2px;
    }

    .industrial-heading h2{
        font-size:30px;
        line-height:1.3;
    }

    .industrial-heading p{
        font-size:15px;
        line-height:1.8;
    }

    .industrial-image{
        height:220px;
    }

    .industrial-content{
        padding:22px;
    }

    .industrial-content h3{
        font-size:20px;
        padding-right:40px;
    }

    .industrial-content p{
        font-size:14px;
    }

    .product-number{
        font-size:50px;
        right:15px;
    }

    .product-btn{
        width:100%;
        justify-content:center;
        padding:13px 20px;
    }
}

/* ===============================
   SMALL MOBILE
================================== */

@media(max-width:480px){

    .industrial-heading h2{
        font-size:26px;
    }

    .industrial-image{
        height:200px;
    }

    .industrial-content{
        padding:20px;
    }

    .industrial-content h3{
        font-size:18px;
    }

    .product-number{
        font-size:42px;
    }
}

/* why choose us */
/* ==========================
   WHY CHOOSE US SECTION
========================== */

.kingsun-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.kingsun-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.heading-line {
    width: 90px;
    height: 4px;
    background: #E32928;
    margin: 0 auto;
    border-radius: 50px;
}

.k-desc {
    max-width: 950px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* Card */
.k-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid #edf0f5;
    position: relative;
    overflow: hidden;
}

.k-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #E32928;
    transition: all 0.4s ease;
}

.k-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.k-box:hover::before {
    width: 100%;
    opacity: 0.06;
}

/* Icon */
.k-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#000,#E32928);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: .4s ease;
}

.k-icon i {
    color: #fff;
    font-size: 30px;
}

.k-box:hover .k-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg,#E32928,#E32928);
}

.k-box:hover .k-icon i {
    color: #000;
}

/* Text */
.k-head {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.k-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==========================
   LARGE SCREEN
========================== */

@media (max-width: 1199px) {
    .kingsun-title {
        font-size: 36px;
    }

    .k-head {
        font-size: 20px;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .kingsun-title {
        font-size: 32px;
    }

    .k-desc {
        font-size: 15px;
    }

    .k-box {
        padding: 25px;
    }

    .k-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .k-icon i {
        font-size: 24px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .kingsun-section {
        padding: 60px 0 !important;
    }

    .kingsun-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .k-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .k-box {
        padding: 22px;
        text-align: center;
        flex-direction: column;
        align-items: center !important;
    }

    .k-text-wrap {
        margin-left: 0 !important;
        margin-top: 18px;
        text-align: center !important;
    }

    .k-head {
        font-size: 20px;
    }

    .k-text {
        font-size: 14px;
    }

    .k-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .kingsun-title {
        font-size: 24px;
    }

    .heading-line {
        width: 70px;
    }

    .k-box {
        padding: 20px;
        border-radius: 16px;
    }

    .k-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .k-icon i {
        font-size: 22px;
    }

    .k-head {
        font-size: 18px;
    }

    .k-text {
        font-size: 13px;
    }
}

.home-featured-section {
  background: #f6f7f9;
}

.home-featured-section .container {
  max-width: 1180px;
}

.home-featured-section .featured-products-grid {
  row-gap: 24px;
}

.home-featured-section .fp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  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-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: 196px;
  background: #f8f9fb;
  border-bottom: 1px solid #eceff2;
}

.home-featured-section .fp-img-box img {
  width: 100%;
  height: 196px;
  padding: 16px;
  object-fit: contain;
}

.home-featured-section .fp-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.home-featured-section .fp-category {
  color: #df2229;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-featured-section .fp-title {
  min-height: 52px;
  padding: 0;
  background: transparent;
  color: #151515 !important;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.home-featured-section .fp-link {
 display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #f3f1f1;
    background-color: #df2229;
    padding: 7px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.25s ease;
}

.home-featured-section .fp-card:hover .fp-link,
.home-featured-section .fp-card:focus .fp-link {
  color: #df2229;
}

@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: 20px;
  }

  .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 .home-about-title {
    font-size: 30px;
  }

  .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: 20px;
  }

  .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 .home-about-title {
    font-size: 20px;
    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: 176px;
  }

  .home-featured-section .fp-title {
    min-height: auto;
    font-size: 16px;
  }
}

.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;
}

@media (max-width: 767px) {
  .machine-hero-section {
    padding: 90px 16px;
  }

  .machine-hero-content {
    width: 100%;
    min-width: 0;
  }

  .machine-hero-content h1 {
    padding-right: 8px;
    font-size: clamp(25px, 7.5vw, 28px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .machine-breadcrumb-wrap {
    padding: 14px 16px;
  }
}

/* ===== 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;
}

/* ===========================
   UNIQUE MACHINE PAGE DESIGN
=========================== */

.machine-page-wrap{
    max-width:1400px;
    margin:50px auto;
    padding:20px;
}

/* MAIN SECTION */
.machine-main-box{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
    background:#f8fafc;
    border-radius:40px;
    padding:40px;
    position:relative;
    overflow:hidden;
}

/* Decorative Shape */
.machine-main-box::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#dc2626;
    border-radius:50%;
    top:-250px;
    right:-150px;
    opacity:.08;
}

/* IMAGE SIDE */
.machine-image-side{
    flex:1;
    min-width:350px;
    position:relative;
}

.machine-image-card{
    background:#fff;
    border-radius:30px;
    padding:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.machine-image-card img{
    width:100%;
    height:450px;
    object-fit:contain;
    transition:.5s;
}

.machine-image-card:hover img{
    transform: scale(1.05);
}

/* CONTENT SIDE */
.machine-content-side{
    flex:1.2;
    min-width:350px;
}

.machine-product-title{
    font-size:35px;
    font-weight:900;
    color:#111827;
    line-height:1.1;
    margin-bottom:25px;
}

.machine-product-text{
    font-size:17px;
    line-height:2;
    color:#475569;
}

/* BUTTONS */
.machine-action-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.machine-btn{
    padding:16px 28px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.machine-quote-btn{
    background:#dc2626;
    color:#fff;
}

.machine-video-btn{
    background:#111827;
    color:#fff;
}

.machine-btn:hover{
    transform:translateY(-5px);
}

/* SPECIFICATION SECTION */
.machine-box{
    margin-top:50px;
    background:#fff;
    border-radius:40px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.machine-box h2{
    text-align:center;
    font-size:34px;
    font-weight:900;
    margin-bottom:35px;
    color:#111827;
    position:relative;
}

.machine-box h2::after{
    content:"";
    width:100px;
    height:5px;
    background:#dc2626;
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}

/* TABLE */
.machine-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 15px;
}

.machine-table th{
    background:#111827;
    color:#fff;
    padding:18px;
    width:35%;
    border-radius:15px 0 0 15px;
}

.machine-table td{
    background:#f8fafc;
    padding:18px;
    border-radius:0 15px 15px 0;
}

.carousel-control-prev,
.carousel-control-next{
    width:50px;
    height:50px;
    background:#dc2626;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

.carousel-control-prev{
    left:15px;
}

.carousel-control-next{
    right:15px;
}

/* MOBILE */
@media(max-width:991px){

    .machine-main-box{
        padding:25px;
    }

    .machine-product-title{
        font-size:34px;
    }

    .machine-image-card{
        transform:none;
    }

    .machine-image-card img{
        transform:none;
        height:300px;
    }
}

@media(max-width:768px){

    .machine-main-box{
        flex-direction:column;
        align-items:stretch;
        gap:24px;
    }

    .machine-image-side,
    .machine-content-side{
        flex:1 1 100%;
        width:100%;
        min-width:0;
    }

    .machine-action-buttons{
        flex-direction:column;
    }

    .machine-btn{
        width:100%;
        text-align:center;
    }

    .machine-product-title{
        font-size:28px;
    }

    .machine-box{
        padding:20px;
        overflow-x:auto;
    }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
}

/* about us page */
/* ===========================
   ABOUT SECTION UNIQUE STYLE
=========================== */

.about-intro-section {
    padding: 100px 0;
    background: #f8f9fc;
    overflow: hidden;
    position: relative;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */

.about-kicker {
    display: inline-block;
    background: #c1121f;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-intro-copy h2 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 20px;
    color: #c1121f;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro-copy p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* STATS */

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.about-stat-item {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .4s;
    border-top: 4px solid #c1121f;
}

.about-stat-item:hover {
    transform: translateY(-8px);
}

.about-stat-item strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #c1121f;
    margin-bottom: 8px;
}

.about-stat-item span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* BUTTON */

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #c1121f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
}

.about-btn-primary:hover {
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}

/* RIGHT IMAGE */

.about-intro-media {
    position: relative;
}

.about-intro-media::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #c1121f;
    border-radius: 30px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.about-intro-media img {
    width: 100%;
    position: relative;
    height: 456px;
    z-index: 2;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1199px){

    .about-intro-copy h2{
        font-size:20px;
    }

}

@media(max-width:991px){

    .about-intro-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-intro-copy{
        text-align:center;
    }

    .about-action-row{
        justify-content:center;
    }

    .about-stat-grid{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

    .about-intro-media{
        max-width:700px;
        margin:auto;
    }

}

@media(max-width:767px){

    .about-intro-section{
        padding:70px 0;
    }

    .about-intro-copy h2{
        font-size:20px;
    }

    .about-lead{
        font-size:17px;
    }

    .about-intro-copy p{
        font-size:15px;
        line-height:1.8;
    }

    .about-stat-grid{
        grid-template-columns:1fr;
    }

    .about-intro-media::before{
        top:12px;
        left:12px;
    }

}

@media(max-width:480px){

    .about-intro-copy h2{
        font-size:20px;
    }

    .about-kicker{
        font-size:11px;
        padding:8px 18px;
    }

    .about-btn-primary{
        width:100%;
        justify-content:center;
    }

    .about-stat-item strong{
        font-size:30px;
    }

}

.buildflow-section {
    padding: 60px 0;
    overflow: hidden;
}

.buildflow-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 45px;
    align-items: center;
}

.buildflow-image-card {
    position: relative;
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0,0,0,.10);
    overflow: hidden;
}

.buildflow-image-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: #e42428;
    border-radius: 50%;
    left: -55px;
    top: -55px;
    opacity: .15;
}

.buildflow-image-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
    height: 456px;
    position: relative;
    z-index: 1;
}

.buildflow-tag {
    display: inline-block;
    color: #e42428;
    background: rgba(228,36,40,.12);
    padding: 9px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.buildflow-content-area h2 {
    font-size: 25px;
    line-height: 1.25;
    color: #171717;
    font-weight: 800;
    margin-bottom: 20px;
}

.buildflow-content-area p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 720px;
    margin-bottom: 35px;
}

.buildflow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.buildflow-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(228,36,40,.15);
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: .35s ease;
}

.buildflow-box:hover {
    background: #e42428;
    transform: translateY(-6px);
}

.buildflow-box i {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: #e42428;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: .35s ease;
}

.buildflow-box:hover i {
    background: #fff;
    color: #e42428;
}

.buildflow-box span {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.buildflow-box:hover span {
    color: #fff;
}

@media (max-width: 1199px) {
    .buildflow-content-area h2 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .buildflow-section {
        padding: 75px 0;
    }

    .buildflow-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .buildflow-content-area {
        text-align: center;
    }

    .buildflow-content-area p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .buildflow-section {
        padding: 60px 0;
    }

    .buildflow-content-area h2 {
        font-size: 20px;
    }

    .buildflow-list {
        grid-template-columns: 1fr;
    }

    .buildflow-box {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .buildflow-content-area h2 {
        font-size: 20px;
    }

    .buildflow-content-area p {
        font-size: 15px;
    }

    .buildflow-box i {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }

    .buildflow-box span {
        font-size: 14px;
    }
}
/* ==========================
   ABOUT VALUES SECTION
========================== */

.about-values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #fff1f1 100%);
    overflow: hidden;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.about-value-card {
    background: #ffffff;
    padding: 42px 32px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(193, 18, 31, 0.12);
    transition: 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(193, 18, 31, 0.18);
}

/* Dark Middle Card */
.about-value-card-dark {
    background: linear-gradient(135deg, #c1121f, #7f0b13);
    color: #ffffff;
}

.about-value-card::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 150px;
    height: 150px;
    background: rgba(193, 18, 31, 0.08);
    border-radius: 50%;
}

.about-value-card-dark::before {
    background: rgba(255, 255, 255, 0.12);
}

/* Icon */
.about-value-icon {
    width: 82px;
    height: 82px;
    background: #c1121f;
    color: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.about-value-icon i {
    font-size: 36px;
}

.about-value-card-dark .about-value-icon {
    background: #ffffff;
    color: #c1121f;
}

/* Text */
.about-value-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.about-value-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.about-value-card-dark h3,
.about-value-card-dark p {
    color: #ffffff;
}

/* List */
.about-value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-value-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.about-value-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #c1121f;
    font-size: 14px;
}

.about-value-card-dark ul li {
    color: #ffffff;
}

.about-value-card-dark ul li::before {
    color: #ffffff;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1199px) {
    .about-value-card {
        padding: 36px 26px;
    }

    .about-value-card h3 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .about-values-section {
        padding: 80px 0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .about-values-section {
        padding: 60px 0;
    }

    .about-value-card {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .about-value-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .about-value-icon i {
        font-size: 30px;
    }

    .about-value-card h3 {
        font-size: 23px;
    }

    .about-value-card p {
        font-size: 14.5px;
    }

    .about-value-card ul li {
        font-size: 14px;
    }
}


/* ===============================
   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: 25px;
  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: 20px;
  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: 20px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 28px;
  }

  .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: 20px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 24px;
  }

  .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: 20px;
  }

  .contact-section-heading h2,
  .contact-map-copy h2 {
    font-size: 22px;
  }

  .contact-action-row {
    flex-direction: column;
  }

  .contact-page-btn {
    width: 100%;
  }

  .contact-form-panel,
  .contact-map-copy,
  .contact-office-card {
    padding: 22px;
  }
}
