body {
  font-family: Arial, Helvetica, sans-serif;
  background-color:#f8f9fa ;
  overflow-x: hidden;

}
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}

.navbar {
  background: rgba(255, 255, 255, 0.6);
  background: transparent !important;
}

.navbar-brand {
  font-size: 20px;
  letter-spacing: 1px;
}

.background-image {
  background-image: url("./source/01.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.nav-link {
  margin-right: 20px;
  font-weight: 500;
  color: #333 !important;
}

/* Enquire Button */
.enquire-btn {
  background: #9c2d2d;
  color: white;
  padding: 10px 40px;
  border-radius: 6px;
}

.enquire-btn:hover {
  background: #7c2222;
  color: white;
}

.hero-section {
  height: 90vh;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  background: transparent !important;
}

.hero-content {
  height: 100%;
}

.hero-title {
  font-size: 60px;
  font-weight: 300;
  color: #333;
}

.hero-title span {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Text */
.hero-text {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
  max-width: 500px;
}

/* Request Button */
.quote-btn {
  margin-top: 25px;
  background: #9c2d2d;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
}


.quote-btn:hover {
  background: #7c2222;
  color: white;
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.about-section .container {
  display: flex;
  align-items: stretch;
}

.about-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section .col-lg-6 img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .col-lg-6 img {
    display: block;
    margin: 0 auto;   /* centers the image */
  }
}

.about-section .col-lg-6:nth-child(2) {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 170px;
  height: 3px;
  background-color: #9c2d2d;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .section-title {
    display: block;        /* allow centering */
    text-align: center;    /* center text */
    margin-left: auto;
    margin-right: auto;
  }

  .section-title::after {
    left: 50%;             /* move underline to center */
      transform: translateX(-50%);
  }
}
.long-line::after {
  width: 590px; /* your desired length */
  height: 3px;
}
/* Media query to hide the line on mobile */
@media (max-width: 768px) {
  .long-line::after {
    display: none; /* Hide the line on mobile devices */
  }
}

.section-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.section-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.learn-btn {
  background-color: #9c2d2d;
  color: white;
  padding: 10px 40px;
  border-radius: 6px;
}

.learn-btn:hover {
  background-color: #7c2222;
  color: white;
}

/* Services Section */

h1 {
  font-size: 48px;
}

.width {
  font-size: 70px;
}
.service-box {
   
  background: #fff;
  margin-top: 20px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 2px solid #ccc;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.service-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.custom-red {
  color: #9c2d2d;
}

/* 🔴 Small line */
.service-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px; /* small line */
  height: 100%;
  background: #9c2d2d;
  transition: width 0.2s ease;
  z-index: -1;
}

/* 🔥 Fill on hover */
.service-item:hover::before {
  width: 100%;
  height: 100%;
}

/* Text color on hover */
.service-item:hover {
  color: #fff;
}

/* Make inner text white */
.service-item:hover span {
  color: #fff;
}

/* Icon + arrow white effect */
.service-item:hover img {
  filter: brightness(0) invert(1);
}

/* 🔥 Description white on hover */
.service-item:hover + .service-description {
  color: #000000;
  background: #ffffff;
}
.left {
  display: flex;
  align-items: center;
}

.icon {
  width: 18px;
  margin-right: 10px;
}

/* Arrow */
.arrow {
  width: 14px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .arrow {
    margin-left: auto; /* pushes arrow to right */
    display: block;
  }
}

/* Rotate when active */
.service-item.active .arrow {
  transform: rotate(90deg); /* right → down */
}

/* Description hidden by default */
.service-description {
  display: block; /* important for animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease 0.2s; /* delay here */
}

/* When active */
.service-description.show {
  max-height: 300px; /* enough height */
  opacity: 1;
}

.service-item:last-child {
  border-bottom: none;
}

.icon {
  width: 18px;
  margin-right: 10px;
}

.service-description {
  padding: 8px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #ccc;
  line-height: 1.6;
}

.image-box {
  position: relative;
  width: 100%;
  height: 450px;
  margin-top: 25px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.image-box img,
.image-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.active-media {
  opacity: 1 !important;
  z-index: 2;
}

#serviceVideo {
  z-index: 3;
}

.video-media {
  z-index: 1;
}

.rounded-custom {
  border-radius: 20px;
  width: 80%;
  height: 80%;
}

/* why trust section */
.why-trust-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.trust-card {
  border: 3px solid #ddd;
  border-radius: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
  padding-top: 20px;
  
}

.trust-card:hover {
  background-color: #9c2d2d;
  transform: translateY(-5px);
}

.trust-card .card-body {
  padding: 15px;
}

.trust-card .card-title {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.trust-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: block;
  background: transparent;
  
  
}

.trust-card:hover .card-title {
  color: white;
}

.trust-card:hover img {
  filter: brightness(0) invert(1); 
}

/* Section */
.feedback-section {
  background: #f5f5f5;
}

/* Cards */
.feedback-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  color: #333;
}
/* Hover Effect */
.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Active (middle) card */
.active-card {
  background: linear-gradient(135deg, #8b1c2d, #c0392b);
  color: #fff;
  transform: scale(1.05);
}

.active-card .feedback-text,
.active-card small {
  color: #f1f1f1;
}

/* Stars */
.stars {
  color: #9c2d2d;
  margin-bottom: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.active-card .stars {
  color: #fff;
}

/* Text */
.feedback-text {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
  transition: 0.3s;
}

/* Client */
.client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* Button */
.request-btn {
  background: #9c2d2d;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  transition: 0.3s;
  text-decoration: none;

}

.request-btn:hover {
  background: #9c2d2d;
  color:#ffff
}
.active-card .feedback-text,
.active-card small {
  color: #f1f1f1;
}

.active-card .stars {
  color: #fff;
}

/* ========================= */
/* 🔥 HOVER COLOR SHIFT EFFECT */
/* ========================= */

/* White → Red */
.feedback-card:hover {
  background: #9c2d2d;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feedback-card:hover .feedback-text,
.feedback-card:hover small {
  color: #f1f1f1;
}

.feedback-card:hover .stars {
  color: #fff;
}

/* Red → White (reverse effect) */
.active-card:hover {
  background: #fff;
  color: #333;
}

.active-card:hover .feedback-text,
.active-card:hover small {
  color: #555;
}

.active-card:hover .stars {
  color: #9c2d2d;
}

.feedback-card {
  transition:
    all 0.4s ease,
    background 0.5s ease,
    color 0.3s ease;
}

section {
  /* padding: 60px 0; */
  background: #f8f9fa;
}

/* Contact Box */
.contact-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  /* Zoom animation on load */
  transform: scale(0.9);
  opacity: 0;
  animation: zoomIn 0.6s ease forwards;
}

/* Keyframes */
@keyframes zoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Left + Right hover zoom */
.col-md-6 {
  transition: transform 0.3s ease;
}

.col-md-6:hover {
  transform: scale(1.03);
}

/* Input fields */
.form-control {
  border-radius: 25px;
  padding: 12px 18px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* Input focus animation */
.form-control:focus {
  border-color: #000;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

/* Textarea */
textarea.form-control {
  border-radius: 15px;
  resize: none;
}

/* Button */
.btn-send {
  background-color: #000;
  color: #fff;
  border-radius: 25px;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
}

/* Button hover animation */
.btn-send:hover {
  background-color: #9c2d2d;
  color: #fff;
  transform: scale(1.05);

}

.client-feedback {
font-size: 32px;
color: #9c2d2d !important;
}

/* Right Section */
.right-section h5 {
  /* font-weight: bold; */
  margin-bottom: 15px;
}

.right-section p {
  margin: 25px 0;
  color: #555;
  font-size: large;
}

/* Container width */
.container-box {
  max-width: 1000px;
  margin: auto;
}

/* Section */
.industries-section {
  padding: 80px 0;
}

/* Title */
.title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.subtitle {
  max-width: 700px;
  margin: 15px auto;
  color: #666;
}

/* Button */
.custom-btn {
  background: #9c2d2d;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  margin-top: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.custom-btn:hover {
  background: #7a2222;
  transform: scale(1.05);
}

/* CARD STYLE */
.industry-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;

  /* 3D effect */
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;

  /* Shadow for depth */
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* Image */
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Bottom shadow illusion */
.industry-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(0,0,0,0.25);
  filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 1; /* always visible */

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    transparent 80%
  );

  transition: background 0.4s ease; /* only color changes */

  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
}

.industry-card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(156, 45, 45, 0.85) 0%,
    rgba(156, 45, 45, 0.5) 40%,
    transparent 80%
  );
}
.industry-card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(156, 45, 45, 0.95) 0%,
    rgba(156, 45, 45, 0.6) 40%,
    transparent 80%
  );
}

/* Hover Effects */
.industry-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.08);
}

.industry-card:hover img {
  transform: scale(1.1);
}


/* Text */
.overlay h6 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  
}

/* Responsive */
@media(max-width: 768px) {
  .industry-card {
    height: 200px;
  }
.cards-wrapper {
  position: relative;
  height: 420px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;

  perspective: 1200px;
}

/* Base Card */
.industry-card {
  position: absolute;
  width: 200px;
  height: 340px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;

  transition: all 0.6s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Image */
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label */
.industry-card span {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

/* Dark gradient */
.industry-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Red overlay (hover) */
.industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(156, 45, 45, 0.85);
  transition: 0.4s;
}

.industry-card:hover::after {
  height: 40%;
}

/* ===== STACK POSITIONS ===== */

/* Center */
.industry-card:nth-child(3) {
  transform: translateX(0) scale(1.2);
  z-index: 5;
}

/* Left side */
.industry-card:nth-child(2) {
  transform: translateX(-160px) rotateY(25deg) scale(1);
  z-index: 4;
}

.industry-card:nth-child(1) {
  transform: translateX(-300px) rotateY(35deg) scale(0.9);
  z-index: 3;
}

/* Right side */
.industry-card:nth-child(4) {
  transform: translateX(160px) rotateY(-25deg) scale(1);
  z-index: 4;
}

.industry-card:nth-child(5) {
  transform: translateX(300px) rotateY(-35deg) scale(0.9);
  z-index: 3;
}

.industry-card:nth-child(6) {
  transform: translateX(420px) rotateY(-40deg) scale(0.8);
  z-index: 2;
}

/* Hover bring forward */
.industry-card:hover {
  transform: translateX(0) scale(1.25) !important;
  z-index: 10;
}

/* Responsive */
@media(max-width: 768px) {
  .cards-wrapper {
    height: auto;
    flex-wrap: wrap;
  }

  .industry-card {
    position: relative;
    transform: none !important;
    margin: 10px;
  }
}
}
.row.g-4 {
  --bs-gutter-x: 0.5rem;  /* reduced horizontal gap */
  --bs-gutter-y: 0.5rem;  /* reduced vertical gap */
}

.card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

.card-body {
    padding: 20px;
}

.card-img-top {
    width: 100%;
    height: auto;
}

/* Hover effect for the cards */
.card:hover {
    background: linear-gradient(to bottom, rgba(113, 23, 23, 0.8), rgba(156, 45, 45, 0.9));
    color: #fff;
    transform: scale(1.05);
}

.card:hover .card-title,
.card:hover .card-text {
    color: #fff;
}


/* HERO BACKGROUND */
.secwave-hero-wrapper {
  height: 100vh;
  background: url("./source/25.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.secwave-hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.secwave-inner-box {
  position: absolute;
  top: 60px;   /* adjust spacing from top */
  left: 60px;  /* adjust from left */
  z-index: 2;
  max-width: 600px;
}

.secwave-main-heading {
  font-size: 80px;
  font-weight:700;
  color: #fff; /* pure white */
}

@keyframes secwave-flow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.secwave-sub-description {
  font-size: 18px;
  max-width: 520px;
  color: #e0e0e0;
}

secwave-cta-strip.secwave-cta-strip {
  padding: 30px 0;
  position: relative;
  margin-top: -80px;
  z-index: 5;
}

.secwave-cta-strip .container {
  background: rgba(156, 45, 45, 0.75); /* transparency */
  border-radius: 10px;
  padding: 25px 30px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.secwave-cta-text {
  color: #fff;
  font-weight: 600;
}

.secwave-cta-button {
  background: #1f1f1f;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
    text-decoration: none;
}

.secwave-cta-button:hover {
  background: #ffffff;
  color: #9c2d2d;
}

@media (max-width: 768px) {
  .secwave-floating-cta {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    bottom: 20px;
  }
}
.secwave-floating-cta {
  position: absolute;
  bottom: 40px; /* controls vertical position */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  padding: 25px 30px;
  border-radius: 12px;

  /* GLASS EFFECT */
  background: rgba(156, 45, 45, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  width: 90%;
  max-width: 1500px;
}

.secwave-footer-wrapper {
  background: linear-gradient(180deg, #f9f9f9, #f1f1f1);
  color: #060606;
  padding-top: 100px;
  padding-bottom: 40px;
}

/* TOP BAR */
.secwave-footer-top {
  padding-bottom: 20px;
}

/* LOGO */
.secwave-footer-logo img {
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.secwave-footer-logo img:hover {
  transform: scale(1.05);
}

/* SOCIAL ICONS */
.secwave-footer-social a {
  color: #928e8e;
  margin: 0 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.secwave-footer-social a:hover {
  color: #9c2d2d;
  transform: translateY(-3px) scale(1.1);
}

/* CONTACT BOX */
.secwave-footer-contact {
  text-align: right;
}

/* RED LABEL */
.secwave-contact-label {
  background: linear-gradient(135deg, #9c2d2d, #c94a4a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 6px;
  margin-right: -200px;
  box-shadow: 0 4px 10px rgba(156, 45, 45, 0.3);
}

@media (max-width: 768px) {
  .secwave-contact-label{
    margin: auto;
  }
}
/* NUMBER */
.secwave-contact-number {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* DIVIDER */
.secwave-footer-divider {
  height: 2px;
  width: 90%;
  margin: 20px auto 40px;
  background: linear-gradient(to right, transparent, #9c2d2d, transparent);
}

/* BOTTOM CARD */
.secwave-footer-bottom {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* MAP */
.secwave-map-box iframe {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* DETAILS */
.secwave-footer-details p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  transition: 0.3s;
}

.secwave-footer-details p:hover {
  color: #9c2d2d;
  transform: translateX(5px);
}

.secwave-footer-details strong {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .secwave-footer-top {
    text-align: center;
    gap: 20px;
  }

  .secwave-footer-contact {
    text-align: center;
  }

  .secwave-footer-bottom {
    padding: 20px;
  }
}
.secwave-footer-copyright {
  background: #e0e0e0;
  text-align: center;
  padding: 18px 20px;
  margin-top: 28px;
  border-top: 1px solid rgba(156, 45, 45, 0.22);
}

.secwave-footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: #000;
  letter-spacing: 0.3px;
}
.whatsapp-link {
  color: inherit;              /* keeps same text color */
  text-decoration: none;       /* removes underline */
  display: inline-flex;        /* aligns icon + text nicely */
  align-items: center;
  gap: 6px;
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
}

html {
  scroll-behavior: smooth;
}

.secwave-footer-wrapper a {
  color: #000;
  text-decoration: none;
}

.secwave-footer-wrapper a:hover {
  color: #ad1d1d;
  text-decoration: none;
}

.right-section a {
  color: #4d4c4c;              /* black text */
  text-decoration: none;   /* remove underline */
}

@media (max-width: 767px) {
  .secwave-sub-description {
    display: none;
  }

  .secwave-main-heading{
    font-size: 50px;
    text-align: left;

  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 10px; /* reduced for mobile */
  z-index: 1000;
}

.whatsapp-float img {
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 60px; /* make it slightly smaller for mobile */
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 10px; /* fully visible on small screens */
    bottom: 15px;
  }

  .whatsapp-float img {
    width: 50px;
  }
}

/* Global fix — prevents ANY element from causing horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix hero title on mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-title span {
    font-size: 48px; /* was 80px — way too big */
  }
}

/* Fix industry cards on mobile — disable 3D stack layout */
@media (max-width: 768px) {
  .cards-wrapper {
    height: auto;
    flex-wrap: wrap;
    overflow: hidden; /* add this */
  }

  .industry-card {
    position: relative;
    transform: none !important; /* disable all translateX */
    margin: 10px;
  }
}
