body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

/* ------------------------------
   GLOBAL RESET
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   TOP BAR
================================ */
.brand-topbar {
  background: #222;
  color: #fff;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 991px) {
  .brand-topbar {
    display: none;
  }
}

.btn-quote {
  background-color: #ea303a;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #d11a2a;
  color: #ffffff;
  box-shadow: 0 0 0 0.3rem rgba(209, 26, 42, 0.3);
  transform: translateY(-2px);
}


/* ===============================
   SOCIAL ICONS
================================ */
.top-social-icons {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  background: #e80b0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: 0.3s;
  text-decoration: none;
}

.social-circle i {
  color: #fff;
  font-size: 15px;
}

.social-circle:hover {
  background: var(--brand-red);
}

.social-circle:hover i {
  color: #fff;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.brand-navbar .nav-link {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin: 8px;
  transition: 0.3s;
}

.brand-navbar .nav-link:hover,
.brand-navbar .nav-link.active {
  color: var(--brand-red);
}

/* ===============================
   DESKTOP DROPDOWN
================================ */
.product-dropdown {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.dropdown-item:hover {
  background-color: var(--brand-red-dark);
  color: #fff;
}

/* ===============================
   TOGGLER ICON
================================ */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(177,0,0,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===============================
   OFFCANVAS
================================ */
.brand-offcanvas {
  background: var(--muted-gray);
}

.brand-offcanvas .nav-link {
  font-weight: 600;
  color: #000;
  padding: 8px 0;
}

.brand-offcanvas .nav-link:hover,
.brand-offcanvas .nav-link.active {
  color: var(--brand-red);
}

/* ===============================
   MOBILE PRODUCTS DROPDOWN
================================ */
.mobile-products .mobile-product-list {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.mobile-products.open .mobile-product-list {
  display: block;
}

.mobile-product-list li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-product-list li a:hover {
  color: var(--brand-red);
}

.mobile-products i {
  transition: transform 0.3s;
}

.mobile-products.open i {
  transform: rotate(180deg);
}

/* page header */
.about-banner {
  width: 100%;
  min-height: 350px;
  background: url("../img/company-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.contact-banner {
  width: 100%;
  min-height: 350px;
  background: url("../img/contact-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.product-banner {
  width: 100%;
  min-height: 221px;
  background: url("../img/our-products-banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.exact-content {
  max-width: 1300px;
  padding: 0 20px;
  text-align: center;
}

.exact-content h2 {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #050404;
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: #ffffff;
  border-top: 1px solid #eee;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.breadcrumb-inner {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  text-align: right;
  font-size: 14px;
}

.breadcrumb-inner a {
  color: #333;
  text-decoration: none;
}

.breadcrumb-inner span {
  margin: 0 6px;
  color: #0a0909;
}

.breadcrumb-inner strong {
  color: #e62928;
  font-weight: 600;
}

@media(max-width: 992px) {
  .exact-content h2 {
    font-size: 28px;
  }

  .breadcrumb-inner {
    text-align: center;
  }

}


/* ----------- Carousel ----------- */
#heroCarousel {
  overflow: visible !important;
  z-index: auto !important;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.10); */
}

.carousel-caption {
  position: absolute;
  top: 35%;
  left: 10%;
  text-align: left;
  z-index: 5;
}

.carousel-caption h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 18px;
  color: #f1f1f1;
  margin-top: 15px;
  max-width: 550px;
}

@media (max-width: 991px) {
  .carousel-item {
    height: 200px !important;
  }
}

/* counter */
.stats-section {
  position: relative;
  margin-top: -100px;
  z-index: 20;
}

.stats-box {
  background: #f7f7f7;
  text-align: center;
  padding: 35px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-box:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.stats-icon {
  height: 90px;
  width: auto;
  margin-bottom: 10px;
  margin-top: -15px;
}

.stats-box h3 {
  font-size: 42px;
  /* font-weight: bold; */
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
  margin-top: -10px;
}

.stats-box p {
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  margin-top: -13px;
  /* margin: 0; */
}

@media (max-width: 768px) {
  .stats-section {
    margin-top: -32px;
  }

  .stats-box {
    height: 223px;
  }

  .stats-box h3 {
    font-size: 35px;
  }

  .stats-container {
    margin-left: 2px;
  }
}

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 36px;
  }

}

/* our prodcuts */
.product-section {
  text-align: center;
  padding: 20px 20px !important;
  background: #fff;
}

.product-para {
  font-size: 18px !important;
}

.product-section h2 {
  font-weight: 700;
  font-size: 2.9rem;
  color: #222;
  margin-bottom: 20px;
}

.heading-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.heading-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #df2229;
  border-radius: 50%;
}

.product-section p {
  max-width: 900px;
  margin: 20px auto 50px;
  color: #555;
  font-size: 15px;
}

/* --- SLIDER --- */
.slider-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* --- CARD --- */
.product-card {
  flex: 0 0 calc(25% - 20px);
  margin: 10px;
  border-radius: 10px;
  height: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card h5 {
  background: #df2229;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 15px;
  margin: 15px 0;
}

.product-card p {
  font-size: 13px;
  color: #666;
  padding: 0 10px 20px;
  /* text-align: justify; */
  margin-top: -4px;
}

/* --- BUTTONS OUTSIDE --- */
.slider-btn {
  position: absolute;
  top: 45%;
  background: transparent;
  padding: 0px 5px;
  border: none;
  color: white;
  /* font-size: 15px; */
  font-size: 28px;
  background-color: #df2229;
  cursor: pointer;
  z-index: 10;

  border-radius: 50%;
  transition: color 0.3s ease;
}

.slider-btn i {
  color: white;
}

.slider-btn:hover {
  color: #084298;
}

.slider-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* --- PAGINATION DOTS --- */
.pagination-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 5px;
  transition: all 0.3s;
}

.dot.active {
  background: #df2229;
  width: 12px;
  height: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .product-card {
    flex: 0 0 calc(50% - 20px);
  }

  .prev-btn {
    left: -50px;
  }

  .next-btn {
    right: -50px;
  }
}

@media (max-width: 767px) {
  .product-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    font-size: 36px;
  }

  .prev-btn {
    left: -22px;
  }

  .next-btn {
    right: -30px;
  }

  .product-section h2 {
    font-size: 2.5rem;
  }
}

.about-main {
  font-size: 3.2rem;
  line-height: 52px;
}

.about-section {
  background-color: #df2229;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.about-section .highlight {
  color: #fff;
  font-weight: 700;
}

.k-icon i {
  font-size: 45px;
  color: white;
  /* replace with your brand color */
}

.k-box:hover i {
  transform: scale(1.15);
  transition: 0.3s ease-in-out;
  color: white;
}

.about-section button {
  border: none;
  background-color: white;
  color: black;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 15px;
}

.about-para {
  font-size: 15px;
  line-height: 20px;
  width: 80%;
}

.about-para span {
  font-size: 36px;
  font-weight: 600;
}

.about-2para {
  font-size: 16px;
  width: 95%;
  text-align: justify;
}

.image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* background-color: #204c84; */
  clip-path: ellipse(80% 60% at 70% 50%);
  /* overflow: hidden; */
}

.image-wrapper .main-image {
  width: 100%;
  height: 500px;
  display: block;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.product-div-ul {
  display: flex;
  gap: 10px;
  margin-top: -7px;
}

.home-link {
  color: black;
  text-decoration: none;
  background-color: white;
  padding: 15px 30px;
  /* margin-top: 10px; */
  border-radius: 50px;
}

.product-div-ul li i {
  color: #b31e19;
  font-size: 800;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f00;
  font-size: 26px;
  z-index: 2;
}

.pulse,
.pulse.delay {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.3);
  width: 80px;
  height: 80px;
  animation: pulseAnim 2.5s infinite;
}

.pulse.delay {
  animation-delay: 1.25s;
}

@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(2.3);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.logo {
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991px) {
  .image-wrapper {
    width: 100%;
    clip-path: ellipse(100% 60% at 50% 50%);
    clip-path: ellipse(100%);

    margin-top: 2rem;
  }

  .play-button {
    margin-left: 176px;
  }

  .image-wrapper .main-image {
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    height: 379px;
  }

  .about-section {
    text-align: center;
  }

  .logo-row {
    justify-content: center;
  }

  .about-main {
    font-size: 31px;
    line-height: 30px;
  }

  .about-para {
    line-height: 1.1;
    margin-left: 30px;
  }

  .about-2para {
    padding-left: 15px;
  }
}

/* why choose */

.kingsun-section {
  background: #fff;
}

.kingsun-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.k-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.k-underline .line {
  width: 90px;
  height: 3px;
  background: #154890;
}

.k-underline .dot {
  width: 16px;
  height: 16px;
  background: #154890;
  border-radius: 50%;
  margin: 0 12px;
}

.k-desc {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #333333bb;
}

.k-box {
  display: flex;
  padding: 10px;
}

.k-icon {
  min-width: 100px;
  height: 100px;
  background: #df2229;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.k-icon img {
  width: 45px;
}

.k-head {
  font-size: 23px;
  font-weight: 600;
  color: #313131d3;
}

.k-text {
  font-size: 16px;
  color: #33333396;
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .k-box {
    flex-direction: flex;
    text-align: center;
  }

  .k-text {
    text-align: justify;
  }

  .k-head {
    font-size: 18px;
  }

  .why-choose {
    margin-top: -30px !important;
  }

  .k-icon {
    margin: 0 auto 12px;
    min-width: 80px;
    height: 80px;
  }

  .k-desc {
    text-align: justify;
  }

  .kingsun-title {
    font-size: 2.1rem;
  }
}

/* partners */

/* CSS FILE (partners.css) */

.partners-title {
  font-size: 2.9rem;
  font-weight: 700;
}

.p-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.p-line {
  width: 90px;
  height: 3px;
  background: #154890;
}

.p-dot {
  width: 16px;
  height: 16px;
  background: #154890;
  border-radius: 50%;
  margin: 0 12px;
}

.partners-desc {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.partner-logo {
  width: 200px;
  height: auto;
  transition: 0.3s;
}

.partner-logo:hover {
  transform: scale(1.02);
}

/* BUTTON ANIMATION */
.quote-btn {
  position: relative;
  background: #0e57a0;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 30px;
}

/* NEW DOOR ANIMATION FROM TOP-RIGHT & BOTTOM-LEFT */
.quote-btn .overlay-left,
.quote-btn .overlay-right {
  position: absolute;
  width: 0;
  height: 0;
  background: #000;
  transition: 0.45s ease;
  z-index: 0;
  /* LOWER so text stays on top */
}

/* Comes from bottom-left */
.overlay-left {
  left: 0;
  bottom: 0;
  border-top-right-radius: 120px;
}

/* Comes from top-right */
.overlay-right {
  right: 0;
  top: 0;
  border-bottom-left-radius: 120px;
}

/* On hover expand diagonally */
.quote-btn:hover .overlay-left {
  width: 60%;
  height: 100%;
}

.quote-btn .btn-text {
  position: relative;
  z-index: 5;
}

.quote-btn i {
  position: relative;
  font-size: 17px !important;
  z-index: 5;
  /* same as text so icon stays visible */
}

.quote-btn:hover .overlay-right {
  width: 60%;
  height: 100%;
}

/* Text stays visible */
.quote-btn span {
  position: relative;
  z-index: 5;
  /* TEXT ALWAYS ABOVE */
}

@media (max-width: 576px) {
  .partner-logo {
    width: 120px;
  }

  .quote-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .partners-desc {
    text-align: justify;
  }

  .partners-section {
    margin-top: -50px;
  }
}

/*  */
.testimonial-section {
  text-align: center;
  padding: 20px 20px;
}

.testi-heading {
  font-size: 2.9rem;
  font-weight: 700;
}

.testi-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 10px auto 30px;
  position: relative;
  border-radius: 4px;
}

.testi-line::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #df2229;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.test-para {
  font-size: 17px;
  color: #333333a8;
}

.testi-slider-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testi-slider-container {
  overflow: hidden;
  margin-top: 50px;
}

.testi-top h5 {
  font-size: 18px;
}

.testi-card {
  flex: 0 0 calc(33.33% - 20px);
  margin: 10px;
  padding: 20px;
  width: 400px;
  height: 280px;
  background: #fff;
  /* border-radius:10px;  */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.testi-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-quote {
  margin-left: auto;
  background: #df2229;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.testi-content {
  margin-top: 12px;
  font-size: 17px;
  color: #555555ce;
  text-align: left;
}

.testi-btn {
  position: absolute;
  top: 45%;
  background: #df2229;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.testi-prev {
  left: -50px;
}

.testi-next {
  right: -50px;
}

.testi-dots {
  text-align: center;
  margin-top: 20px;
}

.testi-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 4px;
  border-radius: 50%;
  transition: 0.3s;
}

.testi-dots .active {
  background: #df2229;
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 100%;
    height: 333px;
  }

  .testimonial-section {
    padding: 10px 20px;
  }

  .testi-prev {
    left: -30px;
  }

  .testi-heading {
    font-size: 2rem;
  }

  .testi-next {
    right: -25px;
  }

  .testi-top h5 {
    font-size: 15px;
  }
}

/* products */
.featured-products-section {
  padding: 30px 20px;
  background: #fff;
}

.featured-heading {
  font-size: 2.9rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.heading-line {
  width: 90px;
  height: 5px;
  background: #afc4e7;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

/* .heading-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #238b8c;
  border-radius: 50%;
} */

.featured-description {
  max-width: 900px;
  margin: 25px auto 50px;
  color: #555;
  font-size: 15px;
}

.fp-card {
  /* background: #fff; */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  text-align: center;
}

.fp-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.fp-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fp-card:hover img {
  transform: scale(1.03);
}

.fp-title {
  background: #df2229;
  margin: 0;
  padding: 15px 8px;
  color: white !important;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  min-height: 70px;
}

.quote-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 12px 35px;
  background: #c40000;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #084298;
}

/* Responsive */
@media (max-width: 991px) {
  .fp-img-box {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .fp-img-box {
    height: 180px;
  }

  .fp-title {
    font-size: 13px;
    min-height: auto;
  }

  .featured-products-section {
    padding: 29px 20px;
  }

  .featured-description {
    text-align: justify;
  }

  .section-desc {
    margin-left: 2px !important;
    text-align: justify;
  }

  .fp-img-box img {
    height: 180px;
  }
}

/* news */
.news-events-section {
  background-color: #df2229;
  /* Same BG color as screenshot */
}

.section-title {
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 15px;
  max-width: 900px;
  /* text-align: center; */
  margin-left: 130px;
}

.event-card {
  height: 300px;
}

.event-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.event-date {
  font-size: 14px;
  color: #777;
}

.card-title {
  font-weight: 600;
  color: #000;
}

.card-text {
  font-size: 14px;
  color: #444;
}

.btn-outline-primary {
  border-radius: 30px;
}

.news-line {
  width: 90px;
  height: 5px;
  background: #aec6ef;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.event-card button {
  border: 2px solid #238b8c;
  color: #238b8c;
  border-radius: 50px;
}

.event-card button:hover {
  background-color: #238b8c;
  color: white;
}

.news-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .event-card img {
    height: 200px;
  }

  .card-title {
    font-size: 16px;
  }
}

/* footer */
.footer-section {
  background: #ffffff;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  font-size: 14px !important;
}

.footer-para {
  width: 80%;
  margin-top: 5px;
  color: #000;
}

.footer-heading {
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e42428;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 17px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #b31e19;
  font-size: 20px;
  margin-right: 12px;
}

.footer-form input {
  width: 200px;
  font-size: 13px;
}

.footer-form button {
  background-color: #b31e19;
  font-size: 13px;
  color: white;
}

.product-div ul li {
  font-size: 14px;
}

.product-div {
  padding-left: 50px;
}

.about-div ul li {
  font-size: 14px;
}

.about-div {
  padding-left: 50px;
}

.footer-info li i {
  margin-right: 5px;
  font-size: 20px;
}

.footer-info {
  margin-left: -30px;
}

.contact-div p {
  margin-bottom: 6px;
}

.social-icons a:hover {
  opacity: 0.8;
}

.cert-logos img {
  width: 45px;
  height: auto;
  margin-right: 10px;
}

.footer-bottom {
  background: #000;
  color: #fff;
  width: 100%;
  text-align: center;
}

/* Responsive fixes */
@media (max-width: 767px) {
  .footer-section {
    text-align: left;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .about-div {
    padding-left: 18px;
  }

  .product-div {
    padding-left: 20px;
  }

  .footer-bottom p {
    margin-left: 18px;
  }

  .news p {
    width: 60%;
  }

  .footer-container {
    padding-left: 20px;
  }
}

/*--------------------------------------------------------------
# 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;
}

/* blog section */

.mmw-blog-section {
  padding: 60px 0;
}

.mmw-blog-card {
  background: #ffffff;
  border-radius: 12px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.blog-heading {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}

.mmw-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.mmw-blog-img-wrapper {
  width: 100%;
  height: 220px;
  /* IMG SIZE */
  overflow: hidden;
}

.mmw-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mmw-blog-title {
  font-size: 1.3rem;
  font-weight: 700;

  margin-top: 15px;
  color: #e42428;
}

.mmw-blog-desc {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}

:root {
  --primary: #e22327;
  --bg: #f7f7f7;
  --card-bg: #ffffff;
  --text-dark: #111;
}

.mission-vission-section {
  padding: 60px;
}

.section-box {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 370px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.section-img {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.section-box h3 {
  color: var(--primary);
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.section-box p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {

  .section-box,
  .section-img {
    height: 374px;
  }

  .mission-vission-section {
    padding: 20px;
  }

  .our-core {
    height: 270px;
  }

  .section-img {
    height: 250px;
  }
}

/* industires we serve */
.industries-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.industries-img-wrapper {
  position: relative;
  display: inline-block;
}

.industries-img {
  width: 500px;
  height: 500px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.industries-img-wrapper:hover .industries-img {
  transform: scale(1.05);
}

.industries-overlay-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  z-index: -1;
}

/* CONTENT */
.industries-title {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 700;
  color: #222;
}

.industries-text {
  font-size: 18px;
  color: #070606;
}

.industries-list li {
  font-size: 19px;
  font-weight: 600;
  padding: 15px;
  color: #070606;
  margin-bottom: 12px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  display: flex;
  align-items: center;
}

.bullet-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e42428;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 16px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industries-img {
    width: 100%;
  }

  .industries-title {
    font-size: 30px;
  }

  .industries-text {
    font-size: 15px;
  }

  .industries-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .industries-list li {
    font-size: 14px;
  }

  .bullet-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 10px;
  }

  .industries-title {
    font-size: 28px;
  }
}

/* global */
.support-pro {
  background: #f4f4f4;
}

/* Title Style */
.pro-title {
  font-size: 37px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pro-subtitle {
  font-size: 19px;
  color: #666;
  margin-top: 3px;
}

/* Card */
.pro-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  text-align: center;
  height: 200px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

/* Hover Elevation */
.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #e42428;
}

/* Icon Style */
.pro-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #e42428;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.pro-icon i {
  font-size: 38px;
  color: #e42428;
}

/* Card Heading */
.pro-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .pro-title {
    font-size: 30px;
  }

  .pro-card {
    padding: 25px;
  }
}

/* global */
.global-section {
  background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1950&q=80") no-repeat center center/cover;
  padding: 90px 0;
  position: relative;
}

/* FIXED OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Put content above overlay */
.global-section .container,
.global-section .global-title,
.global-section .global-box {
  position: relative;
  z-index: 2;
}

.global-para {
  font-size: 20px;
}

.global-title {
  color: #fff;
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 800;
}

.global-box {
  background: rgba(255, 255, 255, 0.09);
  padding: 30px 25px;
  height: 210px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: 0.3s ease;
}

.global-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.counter {
  font-size: 52px;
  font-weight: 900;
  color: #e42428;
}

.info-text {
  font-size: 17px;
  color: #f9f9f9;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .global-title {
    font-size: 28px;
  }

  .counter {
    font-size: 32px;
  }
}

/* ================= SIDEBAR VARIABLES ================= */
:root {
  --brand-red: #e42928;
  --brand-red-dark: #e42928;
  --muted-gray: #f4f4f4;
  --border: #f3f3f3;
  --dark: #000;
}

/* ================= SIDEBAR CONTAINER ================= */
.page-container {
  padding: 24px;
}

.left-col {
  max-width: 400px;
  margin-left: 81px;
}

.sidebars {
  background: var(--muted-gray);
  border: 1px solid var(--border);
  padding: 0;
}

/* ================= RIBBON HEADER ================= */
.sidebars .ribbon-head {
  position: relative;
  background: var(--brand-red);
  color: #fff;
  padding: 25px 26px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid var(--brand-red-dark);
}

.sidebars .ribbon-head::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 1px;
  border-top: 40px solid transparent;
  border-bottom: 89px solid transparent;
  border-right: 28px solid var(--brand-red);
}

/* ================= CATEGORY LIST ================= */
.category-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.category-items {
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
}

.category-items .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.category-items .d-flex a.category-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.category-items .d-flex a.category-link:hover {
  color: var(--brand-red);
}

/* ================= CHEVRON BUTTON ================= */
.category-items .chev-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.category-items .chev-btn .chev {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 15px;
  font-weight: 900;
  color: var(--brand-red);
}

/* Rotate chevron when submenu is open */
.category-items .chev-btn[aria-expanded="true"] .chev {
  transform: rotate(90deg);
}

/* ================= SUBCATEGORY ================= */
.subcategory {
  padding-left: 10px;
  background: #fff;
}

.subcategory a {
  display: block;
  padding: 8px 18px;
  color: #080707;
  text-decoration: none;
  font-size: 13px;
  border-left: 3px solid transparent;
}

.subcategory a:hover {
  color: var(--brand-red);
  background: #fafafa;
  border-left-color: var(--brand-red);
}

/* ================= CONTACT BOX ================= */
.contact-box {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  max-width: 347px;
  object-fit: cover;
  height: 100%;
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-info h5 {
  color: #c00;
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-info p {
  margin: 6px 0;
  font-size: 15px;

}

.contact-info a {
  color: #c00;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.address {
  font-size: 13px;
  margin-top: 6px;
}

/* Single link categories */
.category-items .category-link {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.category-items .category-link:hover {
  color: #000;
  background: #fafafa;
  border-left-color: var(--brand-red);
}

/* ================= RESPONSIVE ================= */

/* Tablets & below */
@media (max-width: 992px) {
  .left-col {
    max-width: 357px;
    min-width: 249px;
    position: relative;
    top: auto;
    margin-left: 0;
  }
}

/* Mobile & small tablets */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    height: auto;
  }

  .contact-info {
    padding: 15px;
  }
}

/* Small devices */
@media (max-width: 767.98px) {
  .sidebars .ribbon-head::before {
    left: -16px;
    border-right-width: 16px;
    border-top-width: 16px;
    border-bottom-width: 16px;
  }

  .contact-box {
    margin: 14px;
  }

  .sidebars {
    margin-bottom: 18px;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .subcategory a {
    font-size: 12px;
    padding: 6px 14px;
  }

  .category-items .d-flex a.category-link {
    font-size: 13px;
  }
}
/* prodcuts pages */
:root {
  --brand-red: #b10000;
  --brand-red-dark: #a21d1d;
  --muted-gray: #f4f4f4;
  --border: #e3e3e3;
}

.page-container {
  padding: 24px;
}

.my-product-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-product-list li {
  width: 50%;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.my-product-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--brand-red-dark);
  font-size: 12px;
}

.my-product-list li a {
  text-decoration: none;
  color: var(--brand-red-dark);
}

.my-product-list li a:hover {
  text-decoration: underline;
}

.heading {
  float: left;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  border-bottom: solid 1px rgba(153, 153, 153, 0.6);
  width: 100%;
}

.page-titles {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.text-muted {
  color: #0c0b0b !important;
  line-height: 1.7;
}

.card-grid .card {
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.custom-list {
  padding-left: 20px;
  list-style-type: disc;
}

.custom-list li {
  margin-bottom: 6px;
  font-size: 15px;
}


a {
  text-decoration: none;
  color: inherit;
}

.mains {
  background: #fff;
  padding: 24px 12px;
  width: 63%;
}

.fp-product-wrap {
  display: flex;
  gap: 30px;
  border-top: 1px solid #ccc;
 
}

.page-titles .heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Unique underline */
.page-titles .heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;          
  height: 4px;          
  background: linear-gradient(90deg, #c40000, #ff6666);
  border-radius: 2px;
}

.fp-product-box{
  display:flex;
}

.fp-left{
  width:39%;
}

.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%;
}
.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: 20px;
}

.fp-link-item{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#ed2d2d;
  font-size:24px;
}

.fp-link-item img{
  width:34px;
  height:34px;
}
.fp-popup-img {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.fp-popup-img img {
  width: 40vw;       
  height: auto;
  max-height: 70vh;  
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

@media(max-width:768px){
  .fp-product-box{
    flex-direction:column;
  }

  .fp-left,
  .fp-right{
    width:100%;
  }

  .fp-links{
    grid-template-columns:1fr;
  }

  .fp-thumb{
    width:50px;
    height:50px;
  }
}
/* iPad Mini & small tablets */
@media only screen and (min-width: 768px) and (max-width: 820px) {
       .sidebars .ribbon-head::before {
        left: -10px;
        top: -14px;
        border-top: 31px solid transparent;
        border-bottom: 33px solid transparent;
        border-right: 16px solid var(--brand-red);
    }
    .sidebars {
    background: var(--muted-gray);
    border: 1px solid var(--border);
    padding: 0;
    width: 715px;
}
    .contact-info {
        padding: 103px;
    }
}

.custom-h2 {
  font-size: 24px;
  color: #c40000;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 6px;
}

.custom-h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c40000, #ff6666);
  border-radius: 2px;
}

.custom-h3 {
  font-size: 20px;
  color: #c40000;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 4px;
}

.custom-h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #c40000;
  border-radius: 2px;
}

.custom-h4 {
  font-size: 16px;
  color: #c40000;
  margin-bottom: 10px;
  font-weight: bold;
}
.tab-bar {
  display: flex;
  gap: 25px;
  max-width: 800px;
  padding: 20px 20px;
}

.tab-bar div {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #ed2d2d;
  background: #fff;
  color: #ed2d2d;
  transition: all 0.3s;
}

.tab-bar div.active {
  background: #ed2d2d;
  color: #fff;
}

.tab-bar div:not(.active):hover {
  background: #ffe6e6;
}

@media (max-width: 576px) {
  .tab-bar {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== CONTENT AREA ===== */
.content-area {
  margin-top: 20px;
}

#details,
#quoteForm {
  display: none;
}

#details.active,
#quoteForm.active {
  display: block;
}

.srpm-table-wrapper {
  margin-bottom: 25px;
}

.srpm-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.srpm-spec-table th,
.srpm-spec-table td {
  border: 1px solid #ddd;
  padding: 10px;
 
  text-align: left;
}

.srpm-spec-table th {
  background: #f5f5f5;
  width: 35%;
}

.srpm-feature-list {
  padding-left: 20px;
  list-style: none;
}

.srpm-feature-list li {
  margin-bottom: 6px;
}
/* ================= RESPONSIVE ================= */

/* Tablet & Mobile layout */
@media (max-width: 768px) {
  .mains {
    width: 100%;
    padding: 16px 10px;
  }
.sidebars .ribbon-head {
    position: relative;
    background: var(--brand-red);
    color: #fff;
    padding: 3px 26px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid var(--brand-red-dark);
}
  .fp-product-box {
    flex-direction: column;
  }

  .fp-left,
  .fp-right {
    width: 100%;
  }

  .fp-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fp-thumb {
    width: 50px;
    height: 50px;
  }

  .tab-bar {
    gap: 12px;
    justify-content: center;
  }

  .tab-left,
  .tab-right {
    width: 100%;
    text-align: center;
  }
}

/* Medium screens */
@media (max-width: 900px) {
  .custom-h2 {
    font-size: 20px;
  }

  .custom-h3 {
    font-size: 18px;
  }

  .custom-h4 {
    font-size: 16px;
  }
}

.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;
}


/* 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%; }
}