* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #222;
}

/* TOP BAR */
.topbar {
  width: 100%;
  border-radius: 0 0 10px 10px;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.top-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-left span, .top-left a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.top-left a:hover {
  color: #ff3c00;
}

.top-left i {
  margin-right: 6px;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-right a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.top-right a:hover {
  color: red;
}

/* HEADER */
.main-header {
  width: 100%;
  border-radius: 0 0 30px 30px;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 999;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 90px;
  transform-origin: left center;
}

.navbar {
  display: flex;
  justify-content: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.menu a:hover {
  color: red;
}
/* --- SUBMENU DROPDOWN STYLES --- */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.has-dropdown > a i {
  font-size: 12px;
  transition: 0.3s;
}
.has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px); /* Centers the wide menu */
  width: max-content; /* Adapts to horizontal width */
  background: #fff;
  list-style: none;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  
  /* Horizontal Grid Layout (4 columns) */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 25px;
}
.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li {
  width: 100%;
}
.submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 5px;
  white-space: nowrap; /* Keeps items strictly on one line */
}
.submenu a:hover {
  background: #fff3f3;
  color: red;
  padding-left: 18px; /* Subtle horizontal slide effect */
}


.header-btn {
  display: flex;
  align-items: center;
}

.btn {
  background: red;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #c40000;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

/* SLIDER */
.slider-section {
  width: 100%;
  position: relative;
}

.slider {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100vh; /* Takes up the full height of the screen */
  min-height: 850px; /* Forces a massive minimum height */
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; 
}

/* FEATURE SECTION */
.feature-section {
  width: 100%;
  margin-top: -30px; /* If you previously set this to 0 to fix the banner, keep it 0 */
  position: relative;
  z-index: 5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 75%; /* Increased from 60% to fit the longer text beautifully */
  margin: 0 auto;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 42px 34px;
  color: #fff;
  min-height: 205px;
}

.feature-box:first-child {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

.feature-box:last-child {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

.feature-box:nth-child(2) {
  border-radius: 0;
}

.feature-icon i {
  font-size: 45px;
  color: #fff;
  line-height: 1;
}

.feature-content {
  max-width: 320px; /* Increased to allow the new text to fit nicely */
}

.feature-content h3 {
  font-size: 32px; 
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify; /* This makes the paragraph neat on both the left and right sides */
}
.red-box {
  background: #ff120a;
}

.dark-box {
  background: linear-gradient(90deg, #1d1d1d, #2a2a2a);
}

/* COMPANY ALT SECTION */
.company-alt-section {
  width: 100%;
  padding: 100px 0;
  background: #f7f7f7;
}

.company-alt-container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- TOP HEADING --- */
.company-alt-top {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.company-alt-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ed2024;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.company-alt-top h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0;
  color: #111;
}

/* --- MAIN TEXT & IMAGE LAYOUT --- */
.company-alt-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; 
  align-items: center;
  margin-bottom: 80px; /* Returned to normal spacing */
}

.company-alt-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #292929;
  margin-bottom: 22px;
  text-align: justify;
}

.quality-box {
  background-color: #fcebeb;
  border-left: 5px solid #ed2024;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quality-box h4 {
  margin: 0;
  color: #ed2024;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* --- IMAGE --- */
.company-alt-image {
  width: 100%;
}

.company-alt-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); /* Keeps the beautiful soft shadow */
}

.company-alt-overlap-images {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 10px;
}

.overlap-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.overlap-sub-img {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 55%;
  height: 310px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: -10px 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* --- BOTTOM CARDS --- */
.company-alt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-alt-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid #eaeaec; 
  border-top: 4px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
  transition: all 0.3s ease;
}

.company-alt-card:hover {
  transform: translateY(-8px);
  border-top-color: #ed2024;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.company-alt-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff5f5;
  color: #ed2024;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.company-alt-card:hover .company-alt-icon {
  background: #ed2024;
  color: #ffffff;
}

.company-alt-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.company-alt-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #292929;
  margin-bottom: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
  .company-alt-main {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-bottom: 60px; 
  }
  
  .company-alt-image img {
    height: 400px;
  }
  
  .company-alt-overlap-images {
    min-height: 400px;
  }
  
  .overlap-main-img {
    height: 350px;
  }
  
  .overlap-sub-img {
    height: 250px;
  }
  
  .company-alt-cards {
    grid-template-columns: 1fr;
  }
}

/* QVP TIMELINE */
.qvp-timeline-section {
  width: 100%;
  padding: 80px 0;
  background: #f7f7f7;
}

.qvp-timeline-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

.qvp-timeline-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.qvp-timeline-heading span {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.qvp-timeline-heading h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 14px;
}

.qvp-timeline-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.qvp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.qvp-timeline-card {
  position: relative;
  border-radius: 18px;
  padding: 40px 24px;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.quality-card { background: url("../images/websitequality.webp") center/cover no-repeat; }

.vision-card { background: url("../images/homeimg-2.webp") center/cover no-repeat; }

.social-card { background: url("../images/homeimg-3.webp") center/cover no-repeat; }

.qvp-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.qvp-timeline-card h3,
.qvp-timeline-card p {
  position: relative;
  z-index: 2;
}

.qvp-timeline-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}

.qvp-timeline-card p {
  font-size: 18px;
  line-height: 1.9;
  color: #f2f2f2;
  text-align: justify;
}

.qvp-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* ABOUT CLEAN SECTION */
.about-clean-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.about-clean-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-clean-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.about-clean-tag {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-clean-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}

.about-clean-content h2 span {
  color: red;
}

.about-clean-content h4 {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-clean-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}

.about-clean-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-clean-stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.about-clean-stat:hover {
  transform: translateY(-5px);
}

.about-clean-stat h3 {
  font-size: 34px;
  color: red;
  margin-bottom: 8px;
}

.about-clean-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

/* APPLICATION ALT SECTION */
.application-alt-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.application-alt-container {
  width: 94%;
  max-width: 1300px;
  margin: 0 auto;
}

.application-alt-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.application-alt-heading span {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.application-alt-heading h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.application-alt-heading p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

.application-image-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .application-image-cards-grid { grid-template-columns: 1fr; gap: 20px; }
}
/* removed old grid */
.application-image-cards-grid-OLD {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.app-img-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.app-img-card:hover {
  transform: translateY(-8px);
}

.app-img-card-top {
  position: relative;
  width: 100%;
  height: 250px;
}

.app-img-card-top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: appCardFade 16s infinite;
}

.app-img-card-top img:nth-of-type(1) { animation-delay: 0s; }
.app-img-card-top img:nth-of-type(2) { animation-delay: 4s; }
.app-img-card-top img:nth-of-type(3) { animation-delay: 8s; }
.app-img-card-top img:nth-of-type(4) { animation-delay: 12s; }

@keyframes appCardFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

.app-img-card-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.app-img-card-overlay {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  opacity: 0;
  animation: appCardFade 16s infinite;
}

.app-img-card-overlay:nth-of-type(1) { animation-delay: 0s; }
.app-img-card-overlay:nth-of-type(2) { animation-delay: 4s; }
.app-img-card-overlay:nth-of-type(3) { animation-delay: 8s; }
.app-img-card-overlay:nth-of-type(4) { animation-delay: 12s; }

.app-img-card-top.fade-5 img,
.app-img-card-top.fade-5 .app-img-card-overlay {
  animation-name: appCardFade5;
  animation-duration: 20s;
}

.app-img-card-top.fade-5 img:nth-of-type(5),
.app-img-card-top.fade-5 .app-img-card-overlay:nth-of-type(5) { animation-delay: 16s; }

@keyframes appCardFade5 {
  0% { opacity: 0; }
  4% { opacity: 1; }
  20% { opacity: 1; }
  24% { opacity: 0; }
  100% { opacity: 0; }
}

.app-img-card-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.app-img-card-dots span {
  display: block;
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
}
.app-img-card-dots span.active {
  background: #ff4500;
}

.app-img-card-body {
  padding: 25px 20px;
  text-align: center;
}

.app-img-card-body h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.app-img-card-body p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0;
}

/* TESTIMONIAL ALT SECTION */
.testimonial-alt-section {
  width: 100%;
  padding: 80px 0;
  background: #f7f7f7;
}

.testimonial-alt-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-alt-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 45px;
}

.testimonial-alt-heading span:first-child {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-alt-heading h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 14px;
}

.testimonial-alt-heading h2 span {
  color: red;
}

.testimonial-alt-heading p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

.testimonial-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-alt-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-top: 4px solid transparent;
}

.testimonial-alt-card:hover {
  transform: translateY(-6px);
  border-top-color: red;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.testimonial-alt-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-alt-stars {
  color: #ffb400;
  font-size: 15px;
}

.testimonial-alt-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

.testimonial-alt-card h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
}

.testimonial-alt-card span {
  font-size: 14px;
  color: #777;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
  
  display: block;
  margin: -30px auto -90px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  background: #222;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: #000;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

.footer-box:first-child {
  text-align: center;
}

.footer-logo {
  display: block;
  margin: -30px auto -90px;
}

.footer-text {
  text-align: justify;
  max-width: 350px;
  margin: 0 auto;
}

/* ---------- LARGE SYSTEM ---------- */
@media (min-width: 1400px) {
  .company-alt-container,
  .qvp-timeline-container,
  .about-clean-container,
  .application-alt-container,
  .testimonial-alt-container,
  .footer-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .feature-grid {
    width: 65%;
  }
}

/* ---------- LAPTOP ---------- */
@media (max-width: 1199px) {
  .topbar-flex {
    padding: 0 15px;
  }
  .feature-content h3 {
    font-size: 20px;
  }

  .feature-content p,
  .company-alt-card p,
  .about-clean-content p,
  .application-alt-content p,
  .testimonial-alt-text {
    font-size: 13px;
  }

  .company-alt-top h2,
  .qvp-timeline-heading h2,
  .about-clean-content h2,
  .application-alt-heading h2,
  .testimonial-alt-heading h2 {
    font-size: 24px;
  }
}






.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: red;
}

.footer-websites {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
}
@media (max-width: 767px) {
  .footer-websites {
    flex-direction: column;
    gap: 8px;
  }
  .footer-websites .sep {
    display: none;
  }
}

@media (max-width: 991px) {
  .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-left: 15px;
    margin-top: 10px;
    display: block;
    background: #f9f9f9;
    border-radius: 8px;
  }
  .has-dropdown:hover .submenu {
    transform: none;
  }
  .submenu a {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  .submenu a:last-child {
    border-bottom: none;
  }
}




@media (max-width: 991px) {
  .detail-banner {
    min-height: 250px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }
}









@media (max-width: 991px) {
  .slides { height: auto !important; min-height: 0 !important; aspect-ratio: 4 / 5 !important; }
}




@media (max-width: 991px) {
  .header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
}



@media (max-width: 991px) {
  .main-header { position: relative; }
  .navbar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
  }
}









/* QUICK LINKS */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  margin-bottom: 10px;
}
.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.quick-links a:hover {
  color: #ff3c00;
}






@media (max-width: 1199px) {
  .header-flex {
    grid-template-columns: 180px 1fr 160px;
    gap: 15px;
  }

  .logo img {
    height: 55px;
  
    
  }

  .menu {
    gap: 18px;
  }

  .menu a {
    font-size: 16px;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* TABLET */
@media (max-width: 991px) {
  .header-flex {
    grid-template-columns: 1fr auto;
    height: 78px;
    gap: 12px;
  }

  .logo,
  .logo a {
    height: 78px;
  }

  .logo img {
    height: 52px;
  
    
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  .detail-banner {
    height: 320px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 20px 20px 20px 80px;
  }

  .timeline-step {
    left: 0 !important;
    right: auto !important;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* MOBILE */
@media (max-width: 767px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 15px;
  }

  .logo,
  .logo a {
    height: 72px;
  }

  .logo img {
    height: 46px;
    
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
  }

  .menu a {
    padding: 0;
    border: none;
  }

  .detail-banner {
    height: 220px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header span {
    font-size: 14px;
  }

  .story-section,
  .timeline-section,
  .leaders-section,
  .values-section {
    padding: 45px 0;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p {
    font-size: 14px;
  }

  .timeline-item {
    padding: 15px 15px 15px 75px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .timeline-step {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .leaders-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .value-card {
    padding: 24px 18px;
  }

  .leader-card h3,
  .value-content h3 {
    font-size: 18px;
  }

  .value-card {
    gap: 14px;
  }

  .value-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

  .footer-logo {
    margin: -30px auto -90px;
  }

  .footer-text {
    max-width: 100%;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img {
    height: 42px;
  
    
  }

  .detail-banner {
    height: 180px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p,
  .footer-box p {
    font-size: 13px;
  }

  .leader-icon {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}


/* FINAL BANNER FIX */
.detail-banner {
  width: 100%;
  height: 920px !important;
  background: url("../images/aboutpagebanner.webp") center center/cover no-repeat;
}

@media (max-width: 991px) {
  .detail-banner {
    height: 420px !important;
    background-position: center center !important;
  }
}

@media (max-width: 767px) {
  .detail-banner {
    height: 320px !important;
    background-position: center center !important;
  }
}

@media (max-width: 480px) {
  .detail-banner {
    height: 260px !important;
    background-position: center center !important;
  }
}/* ABOUT CLEAN SECTION FROM HOMEPAGE */
.about-clean-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.about-clean-container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about-clean-image {
  height: 100%;
}
.about-clean-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.about-clean-tag {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-clean-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}
.about-clean-content h2 span {
  color: red;
}
.about-clean-content h4 {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}
.about-clean-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}
.about-clean-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.about-clean-stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.about-clean-stat:hover {
  transform: translateY(-5px);
}
.about-clean-stat h3 {
  font-size: 34px;
  color: red;
  margin-bottom: 8px;
}
.about-clean-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}
@media (max-width: 991px) {
  .about-clean-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about-clean-stats {
    grid-template-columns: 1fr;
  }
}
/* QVP TIMELINE SECTION FROM HOMEPAGE */
.qvp-timeline-section {
  width: 100%;
  padding: 80px 0;
  background: #f7f7f7;
}
.qvp-timeline-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
.qvp-timeline-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}
.qvp-timeline-heading span {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.qvp-timeline-heading h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 14px;
}
.qvp-timeline-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.qvp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.qvp-timeline-card {
  position: relative;
  border-radius: 18px;
  padding: 40px 24px;
  min-height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qvp-timeline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.qvp-timeline-card h3,
.qvp-timeline-card p {
  position: relative;
  z-index: 2;
}
.qvp-timeline-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}
.qvp-timeline-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #f2f2f2;
  text-align: justify;
}
.qvp-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
@media (max-width: 991px) {
  .qvp-timeline-grid {
    grid-template-columns: 1fr;
  }
}








.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: red;
}

.footer-websites {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
}
@media (max-width: 767px) {
  .footer-websites {
    flex-direction: column;
    gap: 8px;
  }
  .footer-websites .sep {
    display: none;
  }
}

@media (max-width: 991px) {
  .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-left: 15px;
    margin-top: 10px;
    display: block;
    background: #f9f9f9;
    border-radius: 8px;
  }
  .has-dropdown:hover .submenu {
    transform: none;
  }
  .submenu a {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  .submenu a:last-child {
    border-bottom: none;
  }
}




@media (max-width: 991px) {
  .detail-banner {
    min-height: 250px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }
}









@media (max-width: 991px) {
  .header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
}



@media (max-width: 991px) {
  .main-header { position: relative; }
  .navbar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .header-flex {
    grid-template-columns: 180px 1fr 160px;
    gap: 15px;
  }

  .logo img {
    height: 55px;
  
    
  }

  .menu {
    gap: 18px;
  }

  .menu a {
    font-size: 16px;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* TABLET */
@media (max-width: 991px) {
  .header-flex {
    grid-template-columns: 1fr auto;
    height: 78px;
    gap: 12px;
  }

  .logo,
  .logo a {
    height: 78px;
  }

  .logo img {
    height: 52px;
  
    
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  .detail-banner {
    height: 320px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 20px 20px 20px 80px;
  }

  .timeline-step {
    left: 0 !important;
    right: auto !important;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* MOBILE */
@media (max-width: 767px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 15px;
  }

  .logo,
  .logo a {
    height: 72px;
  }

  .logo img {
    height: 46px;
    
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
  }

  .menu a {
    padding: 0;
    border: none;
  }

  .detail-banner {
    height: 220px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header span {
    font-size: 14px;
  }

  .story-section,
  .timeline-section,
  .leaders-section,
  .values-section {
    padding: 45px 0;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p {
    font-size: 14px;
  }

  .timeline-item {
    padding: 15px 15px 15px 75px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .timeline-step {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .leaders-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .value-card {
    padding: 24px 18px;
  }

  .leader-card h3,
  .value-content h3 {
    font-size: 18px;
  }

  .value-card {
    gap: 14px;
  }

  .value-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

  .footer-logo {
    margin: -30px auto -90px;
  }

  .footer-text {
    max-width: 100%;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img {
    height: 42px;
  
    
  }

  .detail-banner {
    height: 180px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p,
  .footer-box p {
    font-size: 13px;
  }

  .leader-icon {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}


/* FINAL BANNER FIX */
.detail-banner {
  width: 100%;
  height: 920px !important;
  background: url("../images/aboutpagebanner.webp") center center/cover no-repeat;
}

@media (max-width: 991px) {
  .detail-banner {
    height: 420px !important;
    background-position: center center !important;
  }
}

@media (max-width: 767px) {
  .detail-banner {
    height: 320px !important;
    background-position: center center !important;
  }
}

@media (max-width: 480px) {
  .detail-banner {
    height: 260px !important;
    background-position: center center !important;
  }
}/* ABOUT CLEAN SECTION FROM HOMEPAGE */
.about-clean-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.about-clean-container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about-clean-image {
  height: 100%;
}
.about-clean-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.about-clean-tag {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-clean-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}
.about-clean-content h2 span {
  color: red;
}
.about-clean-content h4 {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}
.about-clean-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}
.about-clean-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.about-clean-stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.about-clean-stat:hover {
  transform: translateY(-5px);
}
.about-clean-stat h3 {
  font-size: 34px;
  color: red;
  margin-bottom: 8px;
}
.about-clean-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}
@media (max-width: 991px) {
  .about-clean-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about-clean-stats {
    grid-template-columns: 1fr;
  }
}
/* QVP TIMELINE SECTION FROM HOMEPAGE */
.qvp-timeline-section {
  width: 100%;
  padding: 80px 0;
  background: #f7f7f7;
}
.qvp-timeline-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
.qvp-timeline-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}
.qvp-timeline-heading span {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.qvp-timeline-heading h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 14px;
}
.qvp-timeline-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.qvp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.qvp-timeline-card {
  position: relative;
  border-radius: 18px;
  padding: 40px 24px;
  min-height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qvp-timeline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.qvp-timeline-card h3,
.qvp-timeline-card p {
  position: relative;
  z-index: 2;
}
.qvp-timeline-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}
.qvp-timeline-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #f2f2f2;
  text-align: justify;
}
.qvp-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
@media (max-width: 991px) {
  .qvp-timeline-grid {
    grid-template-columns: 1fr;
  }
}








.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: red;
}

.footer-websites {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
}
@media (max-width: 767px) {
  .footer-websites {
    flex-direction: column;
    gap: 8px;
  }
  .footer-websites .sep {
    display: none;
  }
}

@media (max-width: 991px) {
  .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-left: 15px;
    margin-top: 10px;
    display: block;
    background: #f9f9f9;
    border-radius: 8px;
  }
  .has-dropdown:hover .submenu {
    transform: none;
  }
  .submenu a {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  .submenu a:last-child {
    border-bottom: none;
  }
}




@media (max-width: 991px) {
  .detail-banner {
    min-height: 250px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }
}









@media (max-width: 991px) {
  .header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
}



@media (max-width: 991px) {
  .main-header { position: relative; }
  .navbar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
  }
}



@media (max-width: 991px) {
  .logo img {
    transform: scale(2.5) !important;
    transform-origin: left center !important;
  }
}


@media (min-width: 992px) {
  .logo img {
    transform: scale(3.5) !important;
    transform-origin: left center !important;
  }
}
@media (max-width: 991px) {
  .topbar-flex { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 767px) {
  .topbar { font-size: 12px; padding: 10px 0; }
  .top-left { flex-direction: column; gap: 8px; }
  .top-left a { justify-content: center; text-align: center; }
  .top-right { justify-content: center; margin-top: 5px; }
  .top-right a { margin: 0 8px; font-size: 16px; padding: 5px; }
}
@media (max-width: 991px) {
  .feature-grid { grid-template-columns: 1fr; width: 94%; gap: 20px; }
  .feature-box { flex-direction: column; gap: 14px; padding: 24px 18px; }
  .application-image-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .company-alt-cards { grid-template-columns: 1fr; gap: 20px; }
}
.company-stats-section {
  padding: clamp(50px, 10vw, 100px) 0;
  background: linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.90)), url('../images/homeimg-4.webp') center/cover no-repeat;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
@media (max-width: 767px) {
  .company-stats-section {
    background: linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.90)), url('../images/homeimg-4.webp') center/100% 100% no-repeat;
  }
}
