body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #040404;
  background: #fff;
  padding-top: 100px;
}
/* Prevent horizontal scrollbar */
body,
html {
  overflow-x: hidden;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}
/* top bar */
.top-bar {
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  border-bottom: 1px solid #ddd;
}
.btn-quote {
  background-color: #ea303a;
  color: #ffffff;
  border: none;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #ea303a;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(209, 26, 42, 0.25);
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #040404;
  background: #fff;
  padding-top: 100px;
}
/* Prevent horizontal scrollbar */
body,
html {
  overflow-x: hidden;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}
/* top bar */
.top-bar {
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  border-bottom: 1px solid #ddd;
}
.btn-quote {
  background-color: #ea303a;
  color: #ffffff;
  border: none;
}

.btn-quote:hover,
.btn-quote:focus {
  background-color: #ea303a;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(209, 26, 42, 0.25);
}

.top-bar .social-icon {
  color: #ea303a;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.top-bar .social-icon:hover {
  color: #555;
}

.top-bar .contact-info {
  color: #333;
  margin-left: 15px;
  font-size: 14px;
}
.topbar-right {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
}
.top-bar .contact-info i {
  color: #ea303a;
  margin-right: 6px;
}

/* nabbar logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}
.fixed-top {
  position: fixed;
  top: 34px !important;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-brand img {
  max-height: 60px;
  width: auto;
  height: auto;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  margin-left: 27px;
  color: #000;
}

.nav-link.active,
.nav-link.show {
  color: #fff;
  background-color: #d32f2f;
  border-radius: 8px solid;
}

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-brand img {
    max-height: 50px;
  }
}

.long-dropdown {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.long-dropdown::-webkit-scrollbar {
  width: 6px;
}

.long-dropdown::-webkit-scrollbar-thumb {
  background-color: #131212;
  border-radius: 3px;
}

.long-dropdown::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.nav-item:active {
  color: #070606;
}
/* ===== MULTI-LEVEL DROPDOWN ===== */
.dropdown-submenu {
  position: relative;
  font-size: 14px;
  font-weight: bold;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  margin-top: -1px;
  display: none;
  font-size: 13px;
  font-weight: bold;
}

.dropdown-submenu > .dropdown-menu.show {
  display: block;
}

/* Desktop: show submenu on hover */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    display: none;
  }
  .top-bar {
    display: none !important;
  }
  .fixed-top {
    position: fixed;
    top: -5px !important;
    right: 0;
    left: 0;
    z-index: 1030;
  }
}

/* ===== CAROUSEL CONTROLS ===== */
#mainCarousel .carousel-item img {
  width: 100%;
  height: 90vh;
  /* object-fit: cover;  */
}

/* Controls styling */
#mainCarousel .carousel-control-prev,
#mainCarousel .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  z-index: 5;
}

#mainCarousel .carousel-control-prev {
  left: 1rem;
}

#mainCarousel .carousel-control-next {
  right: 1rem;
}

#mainCarousel .carousel-control-prev-icon,
#mainCarousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
  filter: invert(1) grayscale(1);
}

/* ===== Responsive Fix for iPhone / Small Devices ===== */
@media (max-width: 768px) {
  #mainCarousel .carousel-item img {
    object-fit: contain !important;
    height: 30vh !important;
  }

  .top-bar {
    display: none !important;
  }
  .fixed-top {
    position: fixed;
    top: -5px !important;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  #mainCarousel .carousel-control-prev,
  #mainCarousel .carousel-control-next {
    width: 2rem;
    height: 2rem;
  }

  #mainCarousel .carousel-control-prev-icon,
  #mainCarousel .carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .dropdown-submenu > .dropdown-menu {
    font-size: 11px;
    font-weight: bold;
  }
  .navbar-brand {
    font-size: 0.9rem;
  }
}

/*** Single Page Hero Header Start ***/
.pm-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  background: #f3f3f3;
  color: #333;
  padding: 12px 5%;
  flex-wrap: wrap;
}

.pm-breadcrumb a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.pm-breadcrumb a:hover {
  color: #ea303a;
}

.pm-breadcrumb span {
  margin: 0 5px;
  color: #999;
}

/* ======= Hero Section ======= */
.pm-about-header {
  position: relative;
  background: url("../images/pageheader.avif") center/cover no-repeat;
  height: 40vh; /* ↓ reduced from 60vh */
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.pm-about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.pm-about-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.pm-about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.pm-about-content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: #ea303a;
  border-radius: 3px;
}

.pm-about-content p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ======= Breadcrumb ======= */
.pm-breadcrumb {
  margin-top: 21px;
  background: #f6eded;
  padding: 12px 5%;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.pm-breadcrumb a {
  text-decoration: none;
  color: #ea303a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pm-breadcrumb a:hover {
  color: #000;
}

.pm-breadcrumb span {
  margin: 0 6px;
  color: #888;
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
  .pm-about-header {
    height: 35vh;
  }

  .pm-about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pm-about-header {
    height: 30vh;
  }

  .pm-about-content h2 {
    font-size: 1.7rem;
  }

  .pm-about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pm-about-header {
    height: 28vh;
  }

  .pm-about-content h2 {
    font-size: 1.4rem;
  }

  .pm-about-content p {
    font-size: 0.95rem;
  }
}

/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** About End ***/

/*** Packages Start ***/
:root {
  --main-red: #dc3545;
}

.product-carousel .product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-carousel .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-carousel .product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
}

.product-carousel .product-card h5 {
  color: var(--main-red);
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 48px;
}

.product-carousel .product-card p {
  font-size: 15px;
  color: #555;
  flex-grow: 1;
}

/* Dots */
.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dots .owl-dot span {
  background: #ddd;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.owl-dots .owl-dot.active span {
  background: var(--main-red);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* let clicks pass except buttons */
  z-index: 10;
}

.carousel-nav button {
  background: rgba(0, 0, 0, 0.6); /* semi-transparent */
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.carousel-nav button:hover {
  background: #e30613; /* red hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-nav button {
    font-size: 22px;
    width: 36px;
    height: 36px;
  }
  .index-section1-r {
    display: none;
  }
}

@media (max-width: 480px) {
  .carousel-nav button {
    font-size: 18px;
    width: 32px;
    height: 32px;
  }
}

/*** Packages End ***/

/* our core values */
.core-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 20px;
  background: #fff;
}

/* Left Image */
.core-left {
  flex: 1;
  min-width: 300px;
}

.core-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content */
.core-right {
  flex: 1;
  background: #e75c5c;
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.core-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
}

.core-right h2 strong {
  font-weight: 700;
}

.core-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.core-right a {
  font-style: italic;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .core-section {
    flex-direction: column;
  }

  .core-right {
    padding: 30px 20px;
  }

  .core-right h2 {
    font-size: 22px;
  }

  .core-right p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .core-right {
    padding: 20px 15px;
  }

  .core-right h2 {
    font-size: 20px;
  }

  .core-right p,
  .core-right a {
    font-size: 14px;
  }
}
/* strength */
.strength-section {
  padding: 60px 20px;
  background: #fff;
}

.strength-section h2 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.strength-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.strength-box {
  text-align: center;
}

.strength-box img {
  height: 168px;
  border-radius: 4px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.strength-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.strength-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .strength-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strength-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .strength-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-box h5 {
    font-size: 16px;
  }

  .strength-box p {
    font-size: 14px;
  }
}
/* Top Feature Section */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding: 40px 20px;
}

.feature-item img {
  width: 70px;
  margin-bottom: 10px;
}

.feature-item p {
  margin: 0;
  font-size: 16px;
}

/* Dealership Section */
.dealership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dealership-text {
  background: #444;
  color: #fff;
  padding: 40px;
}

.dealership-text h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dealership-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.dealership-text ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.dealership-text ul li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #fff;
}

.dealership-text .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.dealership-text .btn:hover {
  background: #fff;
  color: #444;
}

.dealership-image {
  background: url("../images/why-chooseus.png") center center / cover no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .dealership {
    grid-template-columns: 1fr;
  }

  .dealership-image {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.partners-section {
  text-align: center;
  padding: 40px 20px;
}

.partners-section h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

.partners-section h2 strong {
  font-weight: 700;
}

/* Swiper Slider */
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 70px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #d32f2f;
  /* red */
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide img {
    max-width: 100px;
    max-height: 50px;
  }
}
/* faq */
.accordion-body {
  padding: 20px;
}

.accordion-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.accordion-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #d32f2f;
  background-color: #f5f7fa;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #d32f2f;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 767px) {
  .accordion-text {
    text-align: center;
    margin-bottom: 15px;
  }
}

/*** Footer Start ***/
.footer {
  background: #0b0b0b url("../images/footerbg.avif") no-repeat center/cover;
  position: relative;
  color: #ddd;
  padding: 60px 0 30px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.95)
  );
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 2px solid #ea303a;
  display: inline-block;
  padding-bottom: 4px;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.footer a i {
  color: #ea303a;
  margin-right: 8px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.footer a:hover i {
  transform: rotate(15deg) scale(1.2);
}

.footer a:hover {
  color: #ea303a;
  transform: translateX(5px);
}

/* Hover underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #ea303a;
  transition: width 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}

/* Footer social section */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ea303a;
  color: #ea303a;
  border-radius: 50%;
  font-size: 16px;
  background: transparent;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #ea303a;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(234, 48, 58, 0.4);
}

/* Contact icons */
.footer .contact-info i {
  color: #ea303a;
  margin-right: 10px;
}

/* Social media icon group */
.social-media-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-media-icons .social-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ea303a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ea303a;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-media-icons .social-icon:hover {
  background: #ea303a;
  color: #fff;
  transform: translateY(-3px);
}

/* =============================
   RESPONSIVE DESIGN (JUSTIFIED)
   ============================= */
@media (max-width: 991px) {
  .footer {
    padding: 40px 15px;
    text-align: left;
  }

  .footer .container {
    text-align: left;
  }

  .footer h5 {
    display: block;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer p,
  .footer a {
    display: block;
    margin: 5px 0;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .footer-social a {
    margin: 5px 5px 0 0;
  }

  .social-media-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 30px 10px 20px;
  }

  .footer h5 {
    font-size: 14px;
  }

  .footer p,
  .footer a {
    font-size: 13px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
  text-align: left;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer .col {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.footer .col:nth-child(1) {
  animation-delay: 0.2s;
}
.footer .col:nth-child(2) {
  animation-delay: 0.4s;
}
.footer .col:nth-child(3) {
  animation-delay: 0.6s;
}
.footer .col:nth-child(4) {
  animation-delay: 0.8s;
}
.footer .col:nth-child(5) {
  animation-delay: 1s;
}



/* counter */
.mobile-counter {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
  .mobile-counter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    gap: 10px;
  }

  .mobile-counter .counter-box {
    flex: 1;
  }

  .mobile-counter h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #222;
  }

  .mobile-counter p {
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0 0;
    color: #222;
  }
}

.machine-section {
  margin-top: 80px;
}

/* Machine list */
#machine-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#machine-list > ul > li {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
}

/* Bottom color bars */
#machine-list > ul > li:before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  content: "";
  transition: height 0.4s ease;
}

#machine-list > ul > li:nth-child(1):before {
  background: #ee3037;
}

#machine-list > ul > li:nth-child(2):before {
  background: #000;
}

#machine-list > ul > li:nth-child(3):before {
  background: #01aef0;
}

.machine-img img {
  width: 100%;
  display: block;
}

.machine-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 90%
  );
  transition: all 0.4s ease;
}

.machine-title {
  font-size: 30px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.machine-title b {
  font-size: 36px;
}

.machine-links {
  display: none;
  margin-top: 10px;
}

.machine-links a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 4px 0;
}

/* Hover effects */
#machine-list > ul > li:hover:before {
  height: 100%;
  opacity: 0.9;
}

#machine-list > ul > li:hover .machine-info {
  background: transparent;
  color: #fff;
}

#machine-list > ul > li:hover .machine-links {
  display: block;
}

/* Events */
#event-list {
  margin-top: 60px;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Responsive */
@media (max-width: 991px) {
  #machine-list > ul > li {
    flex: 1 1 100%;
  }

  #event-list li {
    width: 100%;
  }
}

/* Event + Map Wrapper */
.event-map-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 60px;
}

/* Events (left side) */
#event-list {
  flex: 1 1 55%;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Map (right side) */
#index-map {
  flex: 1 1 45%;
}

#index-map img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .event-map-wrap {
    flex-direction: column;
  }
  #event-list li {
    width: 100%;
  }
  #index-map {
    margin-top: 20px;
  }
}
/* Event + Map Wrapper */
.event-map-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 60px;
}

/* Events (left side) */
#event-list {
  flex: 1 1 55%;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Map (right side) */
#index-map {
  flex: 1 1 45%;
}

#index-map img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .event-map-wrap {
    flex-direction: column;
  }
  #event-list li {
    width: 100%;
  }
  #index-map {
    margin-top: 20px;
  }
}
/* Machine images */
.machine-img img {
  width: 100%;
  height: 250px; /* Fixed height */
  object-fit: cover; /* Crop image to fit */
  display: block;
}

/* Event images */
.event-img img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Keeps uniform size */
  display: block;
}

/* Machine images */
.machine-img img {
  width: 100%;
  height: 250px; /* Fixed height */
  object-fit: cover; /* Crop image to fit */
  display: block;
}

/* Event images */
.event-img img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Keeps uniform size */
  display: block;
}

.installation-section {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  max-width: 1322px;
  margin: auto;
}

.installation-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ee3037;
}

/* Slider wrapper */
.installation-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each product */
.installation-box {
  flex: 0 0 calc(33.333% - 20px);
  margin: 10px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  text-align: left;
  transition: transform 0.3s ease;
}

.installation-box:hover {
  transform: translateY(-5px);
}

.installation-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.installation-content {
  padding: 15px 20px;
}

.installation-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #000;
}

.installation-content p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
  line-height: 1.4;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ee3037;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  z-index: 5;
}

.slider-btn:hover {
  background: #ee3037;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .installation-box {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .installation-box {
    flex: 0 0 100%;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }
}

/* about us */
.experience-badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #ee3037;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 15px 10px;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.intro-box {
  background: #ee3037;
  padding: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: beige;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro-box i {
  font-size: 1.5rem;
  color: white;
}

.intro-heading {
  color: #ee3037;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .experience-badge {
    writing-mode: horizontal-tb;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }
}

/* mission and vision */
.mission-vision-section {
  overflow: hidden;
}

.mission-vision-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mission-vision-card .card-icon {
  transition: transform 0.3s ease-out;
}

.mission-vision-card .card-title {
  font-weight: 600;
  color: #090a0b;
}

.mission-vision-card .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.mission-card {
  border-top: 5px solid #ee3037;
}

.vision-card {
  border-top: 5px solid #ee3037;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px var(--card-hover-shadow);
  border-color: var(--primary-color);
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 991.98px) {
  .mission-vision-card {
    padding: 1.5rem !important;
    text-align: left;
  }
  .mission-vision-section .display-6 {
    font-size: 2rem;
  }
  .mission-vision-card .card-icon {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .mission-vision-section .display-6 {
    font-size: 1.8rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.3rem;
  }
  .mission-vision-card .card-icon i {
    font-size: 2.5em;
  }
  .mission-vision-card {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .mission-vision-card {
    padding: 1.25rem !important;
  }
  .mission-vision-section .display-6 {
    font-size: 1.6rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.2rem;
  }
}

/* privacy terms and condition and discalimer */
.privacy-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: #fffaf5;
  border: 1px solid #ffe4cc;
  border-radius: 12px;
  line-height: 1.8;
  color: #222;
  font-family: "Segoe UI", sans-serif;
}
.privacy-section h2,
.privacy-section h3,
.privacy-section h4,
.privacy-section h5,
.privacy-section h6 {
  color: #ea303a;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 25px 0 15px;
  padding-bottom: 6px;
  /* border-bottom: 2px solid #ff7f00; */
}

.privacy-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.privacy-section a {
  color: #ea303a;
  text-decoration: none;
}
.privacy-section a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .privacy-section {
    padding: 25px 20px;
    margin: 20px;
  }
  .privacy-section h2,
  .privacy-section h3,
  .privacy-section h4,
  .privacy-section h5,
  .privacy-section h6 {
    font-size: 1.2rem;
  }
}
   /* ===== INFO BOXES ===== */
      .info-section {
        background: #f8f8f8;
        padding: 120px 50px 60px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
      }

      .info-box {
        background: #fff;
        width: 220px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        transition: 0.3s;
      }

      .info-box:hover {
        transform: translateY(-5px);
      }

      .info-icon {
        width: 60px;
        height: 60px;
        background: #e31837;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 22px;
        margin: 0 auto 15px;
      }

      .info-box h4 {
        margin-bottom: 8px;
        color: #e31837;
        font-size: 18px;
      }

      .info-box p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
      }

      /* ===== MAP ===== */
      .map-section iframe {
        width: 100%;
        height: 400px;
        border: none;
        display: block;
      }

      /* ===== CONTACT + NEWSLETTER ===== */
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 60px 50px;
      }

      .contact-form {
        flex: 1;
        min-width: 350px;
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      }

      .contact-form h3 {
        font-size: 22px;
        color: #111;
        margin-bottom: 10px;
      }

      .contact-form p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
      }

      .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .contact-form input,
      .contact-form select,
      .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
      }

      .contact-form textarea {
        resize: none;
        height: 80px;
      }

      .contact-form button {
        background: #e31837;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
        text-transform: uppercase;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: white;
        padding: 10px 20px;
        border-radius: 8px;
      }

      .social-icons a {
        color: #e31837;
        font-size: 24px;
        transition: transform 0.3s;
      }

      .social-icons a:hover {
        transform: scale(1.2);
      }

      .contact-form button:hover {
        background: #e31837;
      }

      /* ===== NEWSLETTER BOX ===== */
      .newsletter-box {
        flex: 1;
        min-width: 350px;
        background: #0a0f1b;
        color: #fff;
        border-radius: 10px;
        padding: 40px;
        text-align: center;
      }

      .newsletter-box .newsletter-img {
        width: 319px;
        margin-bottom: 20px;
      }

      .newsletter-box h4 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .newsletter-box p {
        font-size: 13px;
        color: #ccc;
        margin-bottom: 20px;
      }

      .newsletter-box input {
        width: 80%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        outline: none;
        margin-bottom: 10px;
      }

      .newsletter-box button {
        background: #e31837;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
      }

      .newsletter-box button:hover {
        background: #b5122b;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 768px) {
        .info-section {
          padding: 100px 20px 40px;
        }

        .contact-container {
          flex-direction: column;
          padding: 40px 20px;
        }

        .newsletter-box input {
          width: 100%;
        }
      }

      /* ===== Profile Section ===== */
      .about-section {
        background: linear-gradient(180deg, #fff, #f6f8fc);
        padding: 60px 0;
      }

      .profile-card img {
        border-radius: 10px;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        height: 449px;
      }

      .profile-text {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
      }

      .profile-text h5 {
        font-weight: 700;
        font-size: 15px;
        color: #e31837;
        margin-bottom: 8px;
        text-transform: uppercase;
      }

      .profile-text strong {
        color: #000;
      }

      /* ===== Feature Badges ===== */
      .features-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 40px 20px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
      }

      .feature-card {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #222;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: default;
        min-width: 220px;
        text-align: center;
      }

      /* ✅ Green Cards */
      .feature-card.positive .icon {
        color: #2e7d32;
        background: #e8f5e9;
        border-radius: 50%;
        padding: 4px 6px;
      }

      /* ❌ Red Cards */
      .feature-card.negative .icon {
        color: #e31837;
        background: #fdecea;
        border-radius: 50%;
        padding: 4px 6px;
      }

      /* 🔥 Hover Animation */
      .feature-card:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
      }

      /* 📱 Responsive Design */
      @media (max-width: 768px) {
        .feature-card {
          width: 100%;
          justify-content: center;
        }
      }

      /* ===== Content & Testimonial Boxes ===== */
      .content-section {
        padding-bottom: 50px;
      }

      .content-box,
      .testimonial-box {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        height: 100%;
      }

      .content-box h5 {
        color: #000;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
      }

      .content-box span {
        color: #e31837;
      }

      .testimonial-box h5 {
        font-weight: 700;
        color: #000;
        margin-bottom: 10px;
      }

      .testimonial-quote {
        font-style: italic;
        font-size: 14px;
        color: #444;
        line-height: 1.6;
      }

      .testimonial-author {
        font-weight: 600;
        color: #e31837;
        margin-top: 10px;
        font-size: 14px;
      }

      /* ===== Testimonial Arrows ===== */
      .testimonial-controls {
        text-align: center;
        margin-top: 15px;
      }

      .testimonial-controls button {
        background: #e31837;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        margin: 0 5px;
        font-size: 16px;
        transition: 0.3s ease;
      }

      .testimonial-controls button:hover {
        background: #003e9c;
        transform: scale(1.1);
      }

      /* ===== Global Presence ===== */
      .global-map-img {
        width: 100%;
        max-width: 1211px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 3;
      }

      /* ===== Responsive ===== */
      @media (max-width: 992px) {
        .testimonial-box,
        .content-box {
          margin-bottom: 20px;
        }
      }

      @media (max-width: 576px) {
        .flag-item {
          width: 60px;
        }

        .testimonial-controls button {
          width: 32px;
          height: 32px;
          font-size: 14px;
        }
      }

      /* gallery page */
        .pg-gallery-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #1e1e1e;
    position: relative;
  }

  .pg-gallery-heading {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
  }

  .pg-gallery-heading span {
    color: #ea303a;
  }

  .pg-gallery-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
  }

  .pg-gallery-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .pg-card {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 10px;
  }

  .pg-card-inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .pg-card-inner:hover {
    transform: scale(1.05);
  }

  .pg-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .pg-card-title {
    background: #ea303a;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
  }

  .pg-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ea303a;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .pg-gallery-btn:hover {
    background: #c82029;
  }

  .pg-gallery-prev {
    left: 10px;
  }

  .pg-gallery-next {
    right: 10px;
  }

  .pg-gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .pg-gallery-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .pg-gallery-dot.active {
    background: #ea303a;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .pg-card {
      flex: 0 0 33.33%;
    }
  }

  @media (max-width: 768px) {
    .pg-card {
      flex: 0 0 50%;
    }
  }

  @media (max-width: 480px) {
    .pg-card {
      flex: 0 0 100%;
    }
  }
     /* products pages */

.product-section h2 {
  color: #110e0e; /* red color */
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.product-header img {
  height: 400px;
}

.product-header img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Table Style */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 35px;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  text-align: left;
}

.product-table th {
  background: #f2f2f2;
  width: 250px;
  color: #222;
  font-weight: 600;
}

/* Specs */
.product-specs {
  font-size: 20px;
  margin: 25px 0 15px;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
  padding-left: 10px;
  border-radius: 8px;
}

.product-specs ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.product-specs li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: #0a0909;
}

.product-specs li::before {
  content: "≫";
  position: absolute;
  left: 0;
  color: #b71c1c;
  font-size: 16px;
  line-height: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-header img {
    height: 250px;
  }

  .product-body {
    padding: 20px;
  }

  .product-body h2 {
    font-size: 24px;
  }

  .product-table th {
    width: 150px;
  }
}
section.products {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}

section.products h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

section.products p.section-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Flickity carousel styling */
.carousel {
  margin: 0 -10px;
}

.carousel-cell {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel-cell {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .carousel-cell {
    width: 33.33%;
  }
}

@media (min-width: 1200px) {
  .carousel-cell {
    width: 25%;
  }
}
a {
  text-decoration: none;
}
/* Card design */
.product-card {
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card-content {
  padding: 15px;
  flex-grow: 1;
}

.product-card-content h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: 600;
  color: #000;
}

.product-card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Flickity button styling */
.flickity-button {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flickity-button:hover {
  background: #b71c1c;
  color: #fff;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 89, 151, 0.3);
}
/* Popup Overlay */
#popup {
  backdrop-filter: blur(3px);
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Container */
.popup-container {
  position: relative;
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Close Icon */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Left Side (Image) */
.popup-left img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

/* Right Side (Text) */
.popup-right h1 {
  margin-bottom: 10px;
  color: #900404;
}

.popup-right p {
  margin: 6px 0;
  font-size: 15px;
  color: #444;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column;
    padding: 15px;
  }

  .popup-left img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .popup-right h1 {
    text-align: center;
  }

  .popup-right p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .popup-container {
    padding: 10px;
    gap: 10px;
  }

  .popup-left img {
    max-width: 100%;
  }

  .popup-right h1 {
    font-size: 18px;
  }

  .popup-right p {
    font-size: 14px;
  }

  .close-icon {
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}


.top-bar .contact-info {
  color: #333;
  margin-left: 15px;
  font-size: 14px;
}
.topbar-right {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
}
.top-bar .contact-info i {
  color: #ea303a;
  margin-right: 6px;
}

/* nabbar logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}
.fixed-top {
  position: fixed;
  top: 34px !important;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-brand img {
  max-height: 60px;
  width: auto;
  height: auto;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  margin-left: 27px;
  color: #000;
}

.nav-link.active,
.nav-link.show {
  color: #fff;
  background-color: #d32f2f;
  border-radius: 8px solid;
}

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-brand img {
    max-height: 50px;
  }
}

.long-dropdown {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.long-dropdown::-webkit-scrollbar {
  width: 6px;
}

.long-dropdown::-webkit-scrollbar-thumb {
  background-color: #131212;
  border-radius: 3px;
}

.long-dropdown::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.nav-item:active {
  color: #070606;
}
/* ===== MULTI-LEVEL DROPDOWN ===== */
.dropdown-submenu {
  position: relative;
  font-size: 14px;
  font-weight: bold;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  margin-top: -1px;
  display: none;
  font-size: 13px;
  font-weight: bold;
}

.dropdown-submenu > .dropdown-menu.show {
  display: block;
}

/* Desktop: show submenu on hover */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    display: none;
  }
  .top-bar {
    display: none !important;
  }
  .fixed-top {
    position: fixed;
    top: -5px !important;
    right: 0;
    left: 0;
    z-index: 1030;
  }
}

/* ===== CAROUSEL CONTROLS ===== */
#mainCarousel .carousel-item img {
  width: 100%;
  height: 90vh;
  /* object-fit: cover;  */
}

/* Controls styling */
#mainCarousel .carousel-control-prev,
#mainCarousel .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  z-index: 5;
}

#mainCarousel .carousel-control-prev {
  left: 1rem;
}

#mainCarousel .carousel-control-next {
  right: 1rem;
}

#mainCarousel .carousel-control-prev-icon,
#mainCarousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
  filter: invert(1) grayscale(1);
}

/* ===== Responsive Fix for iPhone / Small Devices ===== */
@media (max-width: 768px) {
  #mainCarousel .carousel-item img {
    object-fit: contain !important;
    height: 30vh !important;
  }

  .top-bar {
    display: none !important;
  }
  .fixed-top {
    position: fixed;
    top: -5px !important;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  #mainCarousel .carousel-control-prev,
  #mainCarousel .carousel-control-next {
    width: 2rem;
    height: 2rem;
  }

  #mainCarousel .carousel-control-prev-icon,
  #mainCarousel .carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .dropdown-submenu > .dropdown-menu {
    font-size: 11px;
    font-weight: bold;
  }
  .navbar-brand {
    font-size: 0.9rem;
  }
}

/*** Single Page Hero Header Start ***/
.pm-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  background: #f3f3f3;
  color: #333;
  padding: 12px 5%;
  flex-wrap: wrap;
}

.pm-breadcrumb a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.pm-breadcrumb a:hover {
  color: #ea303a;
}

.pm-breadcrumb span {
  margin: 0 5px;
  color: #999;
}

/* ======= Hero Section ======= */
.pm-about-header {
  position: relative;
  background: url("../images/pageheader.avif") center/cover no-repeat;
  height: 40vh; /* ↓ reduced from 60vh */
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.pm-about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.pm-about-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.pm-about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.pm-about-content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: #ea303a;
  border-radius: 3px;
}

.pm-about-content p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ======= Breadcrumb ======= */
.pm-breadcrumb {
  margin-top: 21px;
  background: #f6eded;
  padding: 12px 5%;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.pm-breadcrumb a {
  text-decoration: none;
  color: #ea303a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pm-breadcrumb a:hover {
  color: #000;
}

.pm-breadcrumb span {
  margin: 0 6px;
  color: #888;
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
  .pm-about-header {
    height: 35vh;
  }

  .pm-about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pm-about-header {
    height: 30vh;
  }

  .pm-about-content h2 {
    font-size: 1.7rem;
  }

  .pm-about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pm-about-header {
    height: 28vh;
  }

  .pm-about-content h2 {
    font-size: 1.4rem;
  }

  .pm-about-content p {
    font-size: 0.95rem;
  }
}

/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** About End ***/

/*** Packages Start ***/
:root {
  --main-red: #dc3545;
}

.product-carousel .product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-carousel .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-carousel .product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
}

.product-carousel .product-card h5 {
  color: var(--main-red);
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 48px;
}

.product-carousel .product-card p {
  font-size: 15px;
  color: #555;
  flex-grow: 1;
}

/* Dots */
.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dots .owl-dot span {
  background: #ddd;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.owl-dots .owl-dot.active span {
  background: var(--main-red);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* let clicks pass except buttons */
  z-index: 10;
}

.carousel-nav button {
  background: rgba(0, 0, 0, 0.6); /* semi-transparent */
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.carousel-nav button:hover {
  background: #e30613; /* red hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-nav button {
    font-size: 22px;
    width: 36px;
    height: 36px;
  }
  .index-section1-r {
    display: none;
  }
}

@media (max-width: 480px) {
  .carousel-nav button {
    font-size: 18px;
    width: 32px;
    height: 32px;
  }
}

/*** Packages End ***/

/* our core values */
.core-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 20px;
  background: #fff;
}

/* Left Image */
.core-left {
  flex: 1;
  min-width: 300px;
}

.core-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content */
.core-right {
  flex: 1;
  background: #e75c5c;
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.core-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
}

.core-right h2 strong {
  font-weight: 700;
}

.core-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.core-right a {
  font-style: italic;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .core-section {
    flex-direction: column;
  }

  .core-right {
    padding: 30px 20px;
  }

  .core-right h2 {
    font-size: 22px;
  }

  .core-right p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .core-right {
    padding: 20px 15px;
  }

  .core-right h2 {
    font-size: 20px;
  }

  .core-right p,
  .core-right a {
    font-size: 14px;
  }
}
/* strength */
.strength-section {
  padding: 60px 20px;
  background: #fff;
}

.strength-section h2 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.strength-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.strength-box {
  text-align: center;
}

.strength-box img {
  height: 168px;
  border-radius: 4px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.strength-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.strength-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .strength-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strength-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .strength-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-box h5 {
    font-size: 16px;
  }

  .strength-box p {
    font-size: 14px;
  }
}
/* Top Feature Section */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding: 40px 20px;
}

.feature-item img {
  width: 70px;
  margin-bottom: 10px;
}

.feature-item p {
  margin: 0;
  font-size: 16px;
}

/* Dealership Section */
.dealership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dealership-text {
  background: #444;
  color: #fff;
  padding: 40px;
}

.dealership-text h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dealership-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.dealership-text ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.dealership-text ul li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #fff;
}

.dealership-text .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.dealership-text .btn:hover {
  background: #fff;
  color: #444;
}

.dealership-image {
  background: url("../images/why-chooseus.png") center center / cover no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .dealership {
    grid-template-columns: 1fr;
  }

  .dealership-image {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.partners-section {
  text-align: center;
  padding: 40px 20px;
}

.partners-section h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

.partners-section h2 strong {
  font-weight: 700;
}

/* Swiper Slider */
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-height: 70px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #d32f2f;
  /* red */
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-slide img {
    max-width: 100px;
    max-height: 50px;
  }
}
/* faq */
.accordion-body {
  padding: 20px;
}

.accordion-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.accordion-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #d32f2f;
  background-color: #f5f7fa;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #d32f2f;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 767px) {
  .accordion-text {
    text-align: center;
    margin-bottom: 15px;
  }
}

/*** Footer Start ***/
.footer {
  background: #0b0b0b url("../images/footerbg.avif") no-repeat center/cover;
  position: relative;
  color: #ddd;
  padding: 60px 0 30px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.95)
  );
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 2px solid #ea303a;
  display: inline-block;
  padding-bottom: 4px;
}
.footer p,
.footer a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.footer a i {
  color: #ea303a;
  margin-right: 8px;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.footer a:hover i {
  transform: rotate(15deg) scale(1.2);
}
.footer a:hover {
  color: #ea303a;
  transform: translateX(5px);
}

/* Hover underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #ea303a;
  transition: width 0.3s ease;
}
.footer a:hover::after {
  width: 100%;
}
.footer a:hover {
  color: #ea303a;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ea303a;
  color: #ea303a;
  border-radius: 50%;
  font-size: 16px;
  background: transparent;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(234, 48, 58, 0.4);
}

/* Contact icons */
.footer .contact-info i {
  color: #ea303a;
  margin-right: 10px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer .col {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.footer .col:nth-child(1) {
  animation-delay: 0.2s;
}
.footer .col:nth-child(2) {
  animation-delay: 0.4s;
}
.footer .col:nth-child(3) {
  animation-delay: 0.6s;
}
.footer .col:nth-child(4) {
  animation-delay: 0.8s;
}
.footer .col:nth-child(5) {
  animation-delay: 1s;
}

@media (max-width: 992px) {
  .footer .row {
    text-align: center;
  }
  .footer h5 {
    margin-top: 30px;
  }
}

/* counter */
.mobile-counter {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
  .mobile-counter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    gap: 10px;
  }

  .mobile-counter .counter-box {
    flex: 1;
  }

  .mobile-counter h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #222;
  }

  .mobile-counter p {
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0 0;
    color: #222;
  }
}

.machine-section {
  margin-top: 80px;
}

/* Machine list */
#machine-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#machine-list > ul > li {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
}

/* Bottom color bars */
#machine-list > ul > li:before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  content: "";
  transition: height 0.4s ease;
}

#machine-list > ul > li:nth-child(1):before {
  background: #ee3037;
}

#machine-list > ul > li:nth-child(2):before {
  background: #000;
}

#machine-list > ul > li:nth-child(3):before {
  background: #01aef0;
}

.machine-img img {
  width: 100%;
  display: block;
}

.machine-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 90%
  );
  transition: all 0.4s ease;
}

.machine-title {
  font-size: 30px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.machine-title b {
  font-size: 36px;
}

.machine-links {
  display: none;
  margin-top: 10px;
}

.machine-links a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 4px 0;
}

/* Hover effects */
#machine-list > ul > li:hover:before {
  height: 100%;
  opacity: 0.9;
}

#machine-list > ul > li:hover .machine-info {
  background: transparent;
  color: #fff;
}

#machine-list > ul > li:hover .machine-links {
  display: block;
}

/* Events */
#event-list {
  margin-top: 60px;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Responsive */
@media (max-width: 991px) {
  #machine-list > ul > li {
    flex: 1 1 100%;
  }

  #event-list li {
    width: 100%;
  }
}

/* Event + Map Wrapper */
.event-map-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 60px;
}

/* Events (left side) */
#event-list {
  flex: 1 1 55%;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Map (right side) */
#index-map {
  flex: 1 1 45%;
}

#index-map img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .event-map-wrap {
    flex-direction: column;
  }
  #event-list li {
    width: 100%;
  }
  #index-map {
    margin-top: 20px;
  }
}
/* Event + Map Wrapper */
.event-map-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 60px;
}

/* Events (left side) */
#event-list {
  flex: 1 1 55%;
}

#event-list ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#event-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.event-heading {
  font-size: 26px;
  margin-bottom: 20px;
}

.event-title a {
  font-size: 18px;
  font-weight: 600;
  color: #363636;
}

.event-details {
  font-size: 15px;
  color: #363636;
}

/* Map (right side) */
#index-map {
  flex: 1 1 45%;
}

#index-map img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .event-map-wrap {
    flex-direction: column;
  }
  #event-list li {
    width: 100%;
  }
  #index-map {
    margin-top: 20px;
  }
}
/* Machine images */
.machine-img img {
  width: 100%;
  height: 250px; /* Fixed height */
  object-fit: cover; /* Crop image to fit */
  display: block;
}

/* Event images */
.event-img img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Keeps uniform size */
  display: block;
}

/* Machine images */
.machine-img img {
  width: 100%;
  height: 250px; /* Fixed height */
  object-fit: cover; /* Crop image to fit */
  display: block;
}

/* Event images */
.event-img img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Keeps uniform size */
  display: block;
}

.installation-section {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  max-width: 1322px;
  margin: auto;
}

.installation-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ee3037;
}

/* Slider wrapper */
.installation-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each product */
.installation-box {
  flex: 0 0 calc(33.333% - 20px);
  margin: 10px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  text-align: left;
  transition: transform 0.3s ease;
}

.installation-box:hover {
  transform: translateY(-5px);
}

.installation-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.installation-content {
  padding: 15px 20px;
}

.installation-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #000;
}

.installation-content p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
  line-height: 1.4;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ee3037;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  z-index: 5;
}

.slider-btn:hover {
  background: #ee3037;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .installation-box {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .installation-box {
    flex: 0 0 100%;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }
}

/* about us */
.experience-badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #ee3037;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 15px 10px;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.intro-box {
  background: #ee3037;
  padding: 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: beige;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro-box i {
  font-size: 1.5rem;
  color: white;
}

.intro-heading {
  color: #ee3037;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .experience-badge {
    writing-mode: horizontal-tb;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }
}

/* mission and vision */
.mission-vision-section {
  overflow: hidden;
}

.mission-vision-card {
  background-color: var(--card-bg);
  border-radius: var(--card-border-radius);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mission-vision-card .card-icon {
  transition: transform 0.3s ease-out;
}

.mission-vision-card .card-title {
  font-weight: 600;
  color: #090a0b;
}

.mission-vision-card .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.mission-card {
  border-top: 5px solid #ee3037;
}

.vision-card {
  border-top: 5px solid #ee3037;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px var(--card-hover-shadow);
  border-color: var(--primary-color);
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 991.98px) {
  .mission-vision-card {
    padding: 1.5rem !important;
    text-align: left;
  }
  .mission-vision-section .display-6 {
    font-size: 2rem;
  }
  .mission-vision-card .card-icon {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .mission-vision-section .display-6 {
    font-size: 1.8rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.3rem;
  }
  .mission-vision-card .card-icon i {
    font-size: 2.5em;
  }
  .mission-vision-card {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .mission-vision-card {
    padding: 1.25rem !important;
  }
  .mission-vision-section .display-6 {
    font-size: 1.6rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.2rem;
  }
}

/* privacy terms and condition and discalimer */
.privacy-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: #fffaf5;
  border: 1px solid #ffe4cc;
  border-radius: 12px;
  line-height: 1.8;
  color: #222;
  font-family: "Segoe UI", sans-serif;
}
.privacy-section h2,
.privacy-section h3,
.privacy-section h4,
.privacy-section h5,
.privacy-section h6 {
  color: #ea303a;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 25px 0 15px;
  padding-bottom: 6px;
  /* border-bottom: 2px solid #ff7f00; */
}

.privacy-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.privacy-section a {
  color: #ea303a;
  text-decoration: none;
}
.privacy-section a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .privacy-section {
    padding: 25px 20px;
    margin: 20px;
  }
  .privacy-section h2,
  .privacy-section h3,
  .privacy-section h4,
  .privacy-section h5,
  .privacy-section h6 {
    font-size: 1.2rem;
  }
}
   /* ===== INFO BOXES ===== */
      .info-section {
        background: #f8f8f8;
        padding: 120px 50px 60px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
      }

      .info-box {
        background: #fff;
        width: 220px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        transition: 0.3s;
      }

      .info-box:hover {
        transform: translateY(-5px);
      }

      .info-icon {
        width: 60px;
        height: 60px;
        background: #e31837;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 22px;
        margin: 0 auto 15px;
      }

      .info-box h4 {
        margin-bottom: 8px;
        color: #e31837;
        font-size: 18px;
      }

      .info-box p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
      }

      /* ===== MAP ===== */
      .map-section iframe {
        width: 100%;
        height: 400px;
        border: none;
        display: block;
      }

      /* ===== CONTACT + NEWSLETTER ===== */
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 60px 50px;
      }

      .contact-form {
        flex: 1;
        min-width: 350px;
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      }

      .contact-form h3 {
        font-size: 22px;
        color: #111;
        margin-bottom: 10px;
      }

      .contact-form p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
      }

      .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .contact-form input,
      .contact-form select,
      .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
      }

      .contact-form textarea {
        resize: none;
        height: 80px;
      }

      .contact-form button {
        background: #e31837;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
        text-transform: uppercase;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: white;
        padding: 10px 20px;
        border-radius: 8px;
      }

      .social-icons a {
        color: #e31837;
        font-size: 24px;
        transition: transform 0.3s;
      }

      .social-icons a:hover {
        transform: scale(1.2);
      }

      .contact-form button:hover {
        background: #e31837;
      }

      /* ===== NEWSLETTER BOX ===== */
      .newsletter-box {
        flex: 1;
        min-width: 350px;
        background: #0a0f1b;
        color: #fff;
        border-radius: 10px;
        padding: 40px;
        text-align: center;
      }

      .newsletter-box .newsletter-img {
        width: 319px;
        margin-bottom: 20px;
      }

      .newsletter-box h4 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .newsletter-box p {
        font-size: 13px;
        color: #ccc;
        margin-bottom: 20px;
      }

      .newsletter-box input {
        width: 80%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        outline: none;
        margin-bottom: 10px;
      }

      .newsletter-box button {
        background: #e31837;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
      }

      .newsletter-box button:hover {
        background: #b5122b;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 768px) {
        .info-section {
          padding: 100px 20px 40px;
        }

        .contact-container {
          flex-direction: column;
          padding: 40px 20px;
        }

        .newsletter-box input {
          width: 100%;
        }
      }

      /* ===== Profile Section ===== */
      .about-section {
        background: linear-gradient(180deg, #fff, #f6f8fc);
        padding: 60px 0;
      }

      .profile-card img {
        border-radius: 10px;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        height: 449px;
      }

      .profile-text {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
      }

      .profile-text h5 {
        font-weight: 700;
        font-size: 15px;
        color: #e31837;
        margin-bottom: 8px;
        text-transform: uppercase;
      }

      .profile-text strong {
        color: #000;
      }

      /* ===== Feature Badges ===== */
      .features-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 40px 20px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
      }

      .feature-card {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #222;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: default;
        min-width: 220px;
        text-align: center;
      }

      /* ✅ Green Cards */
      .feature-card.positive .icon {
        color: #2e7d32;
        background: #e8f5e9;
        border-radius: 50%;
        padding: 4px 6px;
      }

      /* ❌ Red Cards */
      .feature-card.negative .icon {
        color: #e31837;
        background: #fdecea;
        border-radius: 50%;
        padding: 4px 6px;
      }

      /* 🔥 Hover Animation */
      .feature-card:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
      }

      /* 📱 Responsive Design */
      @media (max-width: 768px) {
        .feature-card {
          width: 100%;
          justify-content: center;
        }
      }

      /* ===== Content & Testimonial Boxes ===== */
      .content-section {
        padding-bottom: 50px;
      }

      .content-box,
      .testimonial-box {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        height: 100%;
      }

      .content-box h5 {
        color: #000;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
      }

      .content-box span {
        color: #e31837;
      }

      .testimonial-box h5 {
        font-weight: 700;
        color: #000;
        margin-bottom: 10px;
      }

      .testimonial-quote {
        font-style: italic;
        font-size: 14px;
        color: #444;
        line-height: 1.6;
      }

      .testimonial-author {
        font-weight: 600;
        color: #e31837;
        margin-top: 10px;
        font-size: 14px;
      }

      /* ===== Testimonial Arrows ===== */
      .testimonial-controls {
        text-align: center;
        margin-top: 15px;
      }

      .testimonial-controls button {
        background: #e31837;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        margin: 0 5px;
        font-size: 16px;
        transition: 0.3s ease;
      }

      .testimonial-controls button:hover {
        background: #003e9c;
        transform: scale(1.1);
      }

      /* ===== Global Presence ===== */
      .global-map-img {
        width: 100%;
        max-width: 1211px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 3;
      }

      /* ===== Responsive ===== */
      @media (max-width: 992px) {
        .testimonial-box,
        .content-box {
          margin-bottom: 20px;
        }
      }

      @media (max-width: 576px) {
        .flag-item {
          width: 60px;
        }

        .testimonial-controls button {
          width: 32px;
          height: 32px;
          font-size: 14px;
        }
      }

      /* gallery page */
        .pg-gallery-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #1e1e1e;
    position: relative;
  }

  .pg-gallery-heading {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
  }

  .pg-gallery-heading span {
    color: #ea303a;
  }

  .pg-gallery-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
  }

  .pg-gallery-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .pg-card {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 10px;
  }

  .pg-card-inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .pg-card-inner:hover {
    transform: scale(1.05);
  }

  .pg-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .pg-card-title {
    background: #ea303a;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
  }

  .pg-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ea303a;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .pg-gallery-btn:hover {
    background: #c82029;
  }

  .pg-gallery-prev {
    left: 10px;
  }

  .pg-gallery-next {
    right: 10px;
  }

  .pg-gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .pg-gallery-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .pg-gallery-dot.active {
    background: #ea303a;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .pg-card {
      flex: 0 0 33.33%;
    }
  }

  @media (max-width: 768px) {
    .pg-card {
      flex: 0 0 50%;
    }
  }

  @media (max-width: 480px) {
    .pg-card {
      flex: 0 0 100%;
    }
  }
     /* products pages */

.product-section h2 {
  color: #110e0e; /* red color */
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.product-header img {
  height: 400px;
}

.product-header img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Table Style */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 35px;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  text-align: left;
}

.product-table th {
  background: #f2f2f2;
  width: 250px;
  color: #222;
  font-weight: 600;
}

/* Specs */
.product-specs {
  font-size: 20px;
  margin: 25px 0 15px;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
  padding-left: 10px;
  border-radius: 8px;
}

.product-specs ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.product-specs li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: #0a0909;
}

.product-specs li::before {
  content: "≫";
  position: absolute;
  left: 0;
  color: #b71c1c;
  font-size: 16px;
  line-height: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-header img {
    height: 250px;
  }

  .product-body {
    padding: 20px;
  }

  .product-body h2 {
    font-size: 24px;
  }

  .product-table th {
    width: 150px;
  }
}
section.products {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}

section.products h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

section.products p.section-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Flickity carousel styling */
.carousel {
  margin: 0 -10px;
}

.carousel-cell {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel-cell {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .carousel-cell {
    width: 33.33%;
  }
}

@media (min-width: 1200px) {
  .carousel-cell {
    width: 25%;
  }
}
a {
  text-decoration: none;
}
/* Card design */
.product-card {
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card-content {
  padding: 15px;
  flex-grow: 1;
}

.product-card-content h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: 600;
  color: #000;
}

.product-card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Flickity button styling */
.flickity-button {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flickity-button:hover {
  background: #b71c1c;
  color: #fff;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 89, 151, 0.3);
}
/* Popup Overlay */
#popup {
  backdrop-filter: blur(3px);
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Container */
.popup-container {
  position: relative;
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Close Icon */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Left Side (Image) */
.popup-left img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

/* Right Side (Text) */
.popup-right h1 {
  margin-bottom: 10px;
  color: #900404;
}

.popup-right p {
  margin: 6px 0;
  font-size: 15px;
  color: #444;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column;
    padding: 15px;
  }

  .popup-left img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .popup-right h1 {
    text-align: center;
  }

  .popup-right p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .popup-container {
    padding: 10px;
    gap: 10px;
  }

  .popup-left img {
    max-width: 100%;
  }

  .popup-right h1 {
    font-size: 18px;
  }

  .popup-right p {
    font-size: 14px;
  }

  .close-icon {
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}
