﻿﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

a:focus {
  outline: thin dotted #333;
  outline: none;
  outline-offset: -2px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 90px 20px 90px;
  background: #800000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 202;

}

.header-logo {
  font-size: 24px;
  font-weight: 700;
  color: #2e1f47;
  padding-bottom: 10px;
}


.header-logo img {
  height: 65px;
}

.header-nav {
  display: flex;
  gap: 40px;
  position: relative;
}

.header-item {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s ease;
}

.header-icon {
  position: absolute;
  top: -39px;
  left: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid #ffffff7d;
  transition: 0.3s ease;
  transform: translateX(-50%) scale(1);
}

.header-item:hover .header-icon {
  position: absolute;
  top: -39px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #871313;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid #ffffff7d;
  transition: 0.3s ease;
  transform: translateX(-50%) scale(1);
  border-radius: 5px;
}

.header-item:hover {
  color: #d6d6d6;
}

.header-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.header-text {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-63%);
  display: none;
  width: fit-content;
  max-width: 90vw;
  background: rgba(128, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  list-style: none;
  padding: 2rem;
  margin: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: 1fr;
  height: 616px;
  overflow-y: auto;
}

.products-dropdown::-webkit-scrollbar {
  width: 8px;
}

.products-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.products-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.products-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.header-item.has-dropdown:hover .products-dropdown {
  display: grid;
}

.products-right-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem 0px;
  height: 100%;
}

.dropdown-college-left-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-college-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.all-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.all-products a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}


.product-item {
  height: fit-content;
  border-radius: 12px;
  padding: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(5px);
  margin-bottom: 0;
  text-align: center;
}

.flange-bearing-group {
  position: relative;
  grid-column: span 2;
}

.marge-2-products {
  display: flex;
  margin-bottom: 0px;
}

.shared-title {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  background: rgba(128, 0, 0, 0.92);
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}



.product-item img {
  width: 110px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.product-item span {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  max-height: 3.5rem;
  overflow: hidden;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Host Grotesk", sans-serif;
  text-transform: capitalize;
}

.product-item a {
  font-size: 11px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

@media(max-width:1200px) {
  .product-item img {
    width: 100px;
    height: 100px;
  }

  .products-dropdown {
    gap: 0px;
    transform: translateX(-57%);
  }

  .products-right-grid {
    gap: 0rem 0px;
  }

  .dropdown-college-left-img {
    width: fit-content !important;
  }
}

@media(max-width:1100px) {
  .products-dropdown {
    transform: translateX(-55%);
  }
}


@media(max-width:900px) {
  .dropdown-college-left-img {
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .products-dropdown {
    display: none !important;
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0;
  }

  .header-item.has-dropdown.products-active .products-dropdown {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    background: rgba(128, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 1rem;
    margin: 0.5rem 0 0 0;
    z-index: 1002;
    max-height: 400px;
    overflow-y: auto;
    flex-direction: column;
  }

  .header-item.has-dropdown.products-active .products-dropdown::-webkit-scrollbar {
    width: 6px;
  }

  .header-item.has-dropdown.products-active .products-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }

  .header-item.has-dropdown.products-active .products-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
  }

  .header-item.has-dropdown.products-active .product-item {
    display: flex !important;
    align-items: center;
    height: auto !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    text-align: left;
  }

  .header-item.has-dropdown.products-active .product-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
  }

  .header-item.has-dropdown.products-active .product-item img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-left: 0px;
  }

  .header-item.has-dropdown.products-active .product-item span {
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    line-height: 1.4;
    flex: 1;
    text-align: left;
    margin: 0;
    display: block;
  }

  .header-nav.active .header-item.has-dropdown.products-active .products-dropdown {
    position: static;
    margin-top: 0.5rem;
  }

}

@media (max-width: 768px) {

  .header-container {
    padding: 18px 25px;
  }

  .header-nav {
    position: absolute;
    top: 67px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: 0.4s ease;
  }

  .header-nav.active {
    transform: translateX(0);
    background: #800000;
  }

  .header-toggle {
    display: block;
    color: #fff;
    margin-top: -9px;
  }

  .header-icon {
    top: 6%;
    left: 10%;
  }

}

#slider {
  margin-bottom: 0px !important;
}


.slider-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.slider-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.336);
  z-index: 2;
}

@media (max-width: 768px) {
  .slider-container {
    width: 100%;
    height: 400px;
  }

  .slider-video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
  }

  #slideSubtitle {
    font-size: 13px;
  }
}

.slider-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  width: 100%;
  opacity: 0;
  text-align: center;
}

.slider-text.show {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.slider-text h1 {
  font-size: 135px;
  font-family: "Orbitron", sans-serif;
  color: #990000;
  text-shadow: 1px 1px 0 #b1b1b1, 2px 2px 0 #b7b7b7, 3px 3px 0 #700606, 4px 4px 0 #b67d7d, 5px 5px 0 #4a1111, 6px 6px 0 #740000;
  font-weight: 900;
  text-align: center;
}

.slider-para h3 {
  border-radius: 0 20px 20px 0;
  padding: 20px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}


.about-container {
  padding: 100px 200px;
}

.home-about-section {
  position: relative;
  padding: 120px 8%;
  background: #ffffff;
  color: #fff;
  overflow: hidden;
}

.home-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 250px 100%;
}

.home-about-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, #8000002f, transparent 70%);
  filter: blur(100px);
}

.home-about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-about-badge {
  display: inline-block;
  background: #d7d7d7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #000;
  font-family: 'Host Grotesk';
}

.home-about-badge span {
  width: 8px;
  height: 8px;
  background: #800000;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}

.home-about-left p {
  color: #515151;
  width: 86%;
  margin-top: 4%;
  font-size: 20px;
  line-height: 28px;
  text-align: justify;
  color: #515151;
  width: 86%;
  margin-top: 4%;
  font-size: 20px;
  line-height: 28px;
  font-family: math;
  text-align: justify;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}

.home-about-heading {
  font-size: 91px;
  line-height: 1.2;
  max-width: 90%;
  color: #800000;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.home-about-highlight {
  color: #7a7a7a;
}

.about-image-slider {
  width: 680px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots span.active {
  background: #800000;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .about-image-slider {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .about-image-slider {
    width: 100%;
    max-width: 300px;
  }
}

.home-about-image-box {
  width: 680px;
  border-radius: 20px;
  overflow: hidden;
  animation: home-about-floating 4s ease-in-out infinite;
}

.home-about-image-box img {
  width: 100%;
  display: block;
}

@keyframes home-about-floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.home-about-stats {
  margin-top: 21%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.home-about-stat {
  width: 23%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
  position: relative;/
}

.home-about-stat h3 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #800000;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
}

.home-about-stat p {
  color: #7a7a7a;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  margin-top: 6%;
}

.home-about-stat::before {
  content: "";
  position: absolute;
  top: -87px;
  left: -8%;
  transform: translateX(-50%);
  width: 2px;
  height: 120%;
  background: #0000004d;
}

.home-about-stat::after {
  content: "";
  position: absolute;
  top: -88px;
  left: -8%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #800000;
  border-radius: 10%;
}

.home-about-curve {
  position: absolute;
  top: 59%;
  left: 0;
  width: 98%;
  height: 312px;
  z-index: 1;
}

.home-about-curve path {
  fill: none;
  stroke: #6a6a6a38;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: 2s ease;
}

.home-about-section.active .home-about-stat {
  opacity: 1;
  transform: translateY(0);
}

.home-about-section.active .home-about-curve path {
  stroke-dashoffset: 0;
}

.home-about-stat:nth-child(1) {
  transition-delay: 0.2s;
}

.home-about-stat:nth-child(2) {
  transition-delay: 0.4s;
}

.home-about-stat:nth-child(3) {
  transition-delay: 0.6s;
}

.home-about-stat:nth-child(4) {
  transition-delay: 0.8s;
}


.has1 {
  margin-top: -4%;
}

.has2 {
  margin-top: -1%;

}

.has2::before {
  content: "";
  position: absolute;
  top: -71px;
  left: -8%;
  transform: translateX(-50%);
  width: 2px;
  height: 156%;
  background: #0000004d;
}

.has2::after {
  content: "";
  position: absolute;
  top: -88px;
  left: -8%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #800000;
  border-radius: 10%;
}

.has2 h3 {
  padding-top: 41px;
}


.has3 {
  margin-top: 1%;

}


.has3::before {
  content: "";
  position: absolute;
  top: -73px;
  left: -8%;
  transform: translateX(-50%);
  width: 2px;
  height: 220%;
  background: #0000004d;
}


.has4 {
  margin-top: -3%;

}


.has3::before {
  content: "";
  position: absolute;
  top: -83px;
  left: -8%;
  transform: translateX(-50%);
  width: 2px;
  height: 220%;
  background: #0000004d;
}

.home-about-section {
  position: relative;
  padding: 0px 200px 230px 200px;
  color: #fff;
  overflow: hidden;

  background: url('../Images/home/about-bg.jpg') center/cover no-repeat;
}

.home-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}


.home-about-container,
.home-about-stats,
.home-about-curve {
  z-index: 2;
}

.home-about-stat {
  position: relative;
  z-index: 3;
}

.home-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 250px 100%;
  z-index: 0;
}


.has3::after {
  content: "";
  position: absolute;
  top: -97px;
  left: -8%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #800000;
  border-radius: 10%;
}

.has4::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -8%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #800000;
  border-radius: 10%;
}

.home-about-left {
  width: 100%;
}

.home-why-section {
  position: relative;
  background: #f4f4f4;
  padding: 50px 0px;
}

.home-why-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

.home-why-left {
  width: 350px;
  position: relative;
}

.home-why-content {
  position: relative;
  height: 200px;
}

.home-why-item {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.home-why-item.active {
  opacity: 1;
  transform: translateY(0);
}

.home-why-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid #ddd;
  overflow: hidden;
  position: relative;
}

.home-why-rotator {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-why-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home-why-image.active {
  opacity: 1;
}

.home-why-section {
  background: #f4f4f4;
  padding: 50px 0px;

}

.home-why-container {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

.home-why-left {
  width: 350px;
  position: relative;
}

.home-why-content {
  position: relative;
  height: 200px;
}

.home-why-item {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.home-why-item.active {
  opacity: 1;
  transform: translateY(0);
}

.home-why-right {
  width: 350px;
  position: relative;
}

.home-why-circle-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
}

.home-why-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
}

.home-why-rotator {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-why-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: 0.4s ease;
}

.home-why-image.active {
  opacity: 1;
}

.home-why-numbers {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.home-why-number {
  position: absolute;
  font-weight: 600;
  color: #999;
  transition: 0.3s ease;
}

.home-why-number.active {
  color: #ff5a1f;
  font-size: 18px;
  background-color: #000;
  padding: 10px;
  border-radius: 50%;
}

.home-why-number:nth-child(1) {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.home-why-number:nth-child(2) {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.home-why-number:nth-child(3) {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.home-why-number:nth-child(4) {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.why-us-heading-box {
  text-align: center;
}

.home-why-item h3 {
  color: #800000;
  font-weight: bold;
  font-size: 30px;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.home-why-item p {
  color: #515151;
  width: 86%;
  margin-top: 4%;
  font-size: 20px;
  line-height: 28px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}

.home-product-section {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 0 5%;
  box-sizing: border-box;
  overflow: visible;
}

.home-product-left {
  width: 40%;
  position: sticky;
  top: 0;
  height: fit-content;
  padding-top: 80px;
}

.home-product-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.home-product-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

.home-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #eaeaea;
  padding: 10px 50px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.home-product-content {
  width: 50%;
}

.home-product-content h3 {
  font-size: 29px;
  margin-bottom: 15px;
  color: #800000;
  font-family: 'Roboto Slab';
}

.home-product-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #515151;
  width: 86%;
  margin-top: 4%;
  line-height: 28px;
  font-family: math;
  text-align: justify;
}

.home-product-image {
  width: 50%;
  height: 340px;
}

.home-product-image img {
  height: 100%;
  display: block;
  border-radius: 12px;
  float: right;
}

.home-product-right {
  -ms-overflow-style: none;

  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.wheel {
  -webkit-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
  margin-top: 10%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#wheel {
  text-align: center;
  height: 350px;
  padding-top: 20px;
  margin-left: -109%;
  opacity: 0.4;
}


.acs {
  padding: 100px 400px;
  position: relative;
}

.acs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.acs::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, #8000002f, transparent 70%);
  filter: blur(100px);
  top: -25%;
}


.left-box {
  text-align: left;
  background: #ffffff;
  margin-right: 3%;
  padding: 94px;
  color: #fff;
  border-radius: 12px;
}

.right-box {
  text-align: left;
  background: #ffffff;
  margin-right: 3%;
  padding: 94px;
  color: #fff;
  border-radius: 12px;
}

.acs-content-box h1 {
  font-weight: bold;
  font-size: 35px;
  padding-bottom: 12px;
  font-weight: bold;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.acs-content-box p {
  font-size: 17px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}

.clients-section {
  padding: 50px 0px 50px;
  background: #f5f5f5;
  text-align: center;
  overflow: hidden;
}

.clients-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.clients-subtitle {
  color: #777;
  margin-bottom: 80px;
}

.clients-marquee {
  position: relative;
  width: 100%;
  margin-top: 5%;
  overflow: hidden;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
}

.clients-marquee::after {
  right: 0;
}

.clients-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.clients-item {
  position: relative;
  display: flex;
  flex-shrink: 0;
}

.clients-circle {
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.clients-circle:hover {
  transform: scale(1.05);
}

.clients-dark {}

.clients-circle img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes clientFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .clients-marquee-track {
    gap: 30px;
  }

  .clients-circle {
    width: 120px;
    height: 100px;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 480px) {
  .clients-marquee-track {
    gap: 20px;
  }

  .clients-circle {
    width: 100px;
    height: 80px;
  }
}

.acs-content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acs-text-box {
  width: 70%;
}

.cta-icon span {
  background: #800000;
  margin-left: 11px;
  color: #fff;
  padding: 5px 10px 5px 5px;
  border-radius: 5px;
}

.footer-container {
  padding: 100px 200px 70px 200px;
  background-color: #000;
  position: relative;
}

.footer-container::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 112%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, #560d0dde, #6b0000ab 70%);
  filter: blur(100px);
  top: -18%;
}

.footer-title {
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  font-optical-sizing: auto;
  font-style: normal;
}

.footer-ul li a {
  padding-bottom: 17px;
  color: #ffffff;
  font-size: 22px;
  line-height: 45px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.footer-ul {
  padding-top: 5%;
}

.footer-img {
  position: relative;
  opacity: 0.8;
  width: 57vw;
  margin-bottom: -26%;
  text-align: center;
  justify-content: center;
  align-items: center;
  left: -7%;
  margin-top: -13%;
}



.footer-bottom {
  margin-top: 7%;
  width: 100%;
  text-align: center;
  left: 41%;
  padding-bottom: 20px;
}



.cta-icon {
  background: #fff;
  padding: 10px 20px;
  color: #000;
  font-weight: bold;
  width: fit-content;
  border-radius: 5px;
}

.home-cta {
  padding: 100px 300px 100px 300px;
  text-align: left;
}


.home-cta-container {
  object-fit: cover;
  height: fit-content;
  border-radius: 35px;
  align-items: center;
  justify-content: space-evenly;
}

.home-cta-text {
  padding: 80px 100px 100px 100px;
}

.home-cta-text h1 {
  color: #fff;
  font-size: 55px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
}

.home-cta-text p {
  color: #fff;
  font-size: 21px;
  margin-bottom: 30px;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.cta-brochure {
  margin-bottom: 5%;
}

.home-testi-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.home-testi-overlay {
  position: absolute;
  inset: 0;
}

.home-testi-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 70px 60px 50px;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 5%;
  background-color: #fff;
}

.home-testi-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.home-testi-subtitle {
  color: #777;
  margin-bottom: 40px;
}

.home-testi-slider {
  position: relative;
}

.home-testi-slide {
  display: none;
}

.home-testi-slide.active {
  display: block;
}

.home-testi-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.home-testi-image-wrap {
  position: relative;
}

.home-testi-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #800000;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  z-index: 1;
}

.home-testi-image-wrap img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid #fff;
  position: relative;
  z-index: 2;
}

.home-testi-text {
  max-width: 500px;
  text-align: left;
}

.home-testi-quote-icon {
  font-size: 40px;
  color: #ccc;
}

.home-testi-text p {
  color: #555;
  line-height: 1.6;
  font-family: math;
  font-size: 17px;
}

.home-testi-text h3 {
  margin-top: 20px;
  font-size: 22px;
  font-family: 'Roboto Slab';
  color: #800000;
}

.home-testi-text span {
  color: #800000;
  font-weight: 500;
}

.home-testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #800000;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.home-testi-prev {
  left: -60px;
}

.home-testi-next {
  right: -60px;
}

.home-testi-dots {
  margin-top: 30px;
  text-align: center;
}

.home-testi-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.home-testi-dots span.active {
  width: 25px;
  background: #800000;
}

.ind-para {
  color: #515151;
  width: 86%;
  margin-top: 4%;
  font-size: 20px;
  line-height: 28px;
  text-align: justify;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}

.ind-about-left {
  margin-top: 9%;
  margin-left: 2%;
}

.home-ind-box-inside {
  text-align: center;
}

.homr-products-box {
  padding: clamp(40px, 8vw, 100px) clamp(20px, 10vw, 200px);
}

.home-pro-grid {
  padding: 70px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: clamp(20px, 5vw, 60px);
  justify-content: center;
  align-items: start;
}


.home-pro-box {
  background: linear-gradient(to bottom, #800000, #800000), url(../Images/home/about-bg.jpg);
  padding: 30px;
  text-align: left;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.home-pro-box h1 {
  font-size: 29px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 20px;
}

.home-pro-box p {
  width: 100%;
  margin-top: 2%;
  font-size: 22px;
  line-height: 28px;
  text-align: justify;
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
  margin-bottom: 3%;
}


.home-pro-img-box {
  text-align: center;
  background: #f8f8f8;
  padding: 30px 0px;
  border-radius: 10px;
  height: 490px;
  height: 420px;

  width: 100%;
  padding: 30px;
}

.home-pro-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-ind-box {
  padding: 100px 200px;
  background: #000;
  border-radius: 200px 0px 0px 200px;
  margin-left: 7%;
}

.home-ind-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(30 30 30) 1px, #000000 1px), rgba(255, 255, 255, 0.85);
  background-size: 250px 100%;
  z-index: 0;
}

.ind-logo-slider-1,
.ind-logo-slider-2 {
  display: flex;
  animation: ind-slide 90s linear infinite;
}

.ind-about-right {
  margin-top: 0px;
  overflow: hidden;
}

.ind-logo-img-box {
  margin-right: 9px;
  height: 362px;
}

#applications-logo-carousel {
  overflow: hidden;
}

#applications-logo-carousel .ind-logo-img-box {
  margin-right: 0 !important;
  height: 362px;
}

#applications-logo-carousel .ind-logo-img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#applications-logo-carousel .slick-slide {
  height: 362px;
}

#applications-logo-carousel .slick-track {
  display: flex !important;
}

#applications-logo-carousel .slick-slide>div {
  height: 100%;
}

.ind-logo-img-box img {
  height: 100%;
  width: 431px;
  object-fit: cover;
}


.ind-logo-slider-1 {
  position: relative;
  justify-content: center;
  gap: 40px;

}

.home-ind-icon-box img {
  height: 60px;
}


.ind-logo-img-box-left-right {
  margin-top: 95px;
  height: 300px;
  width: 315px;
}


@media (max-width: 480px) {

  .header-container {
    padding: 20px 0px 10px 0px;
  }

  .header-nav {
    width: 180px;
    padding: 10px;
    gap: 15px;
  }

  .header-item {
    font-size: 14px;
  }

  .header-text {
    font-size: 14px;
    color: #ffffff;
    padding-left: 22px;
    margin-left: 11%;
  }

  .header-logo img {
    width: auto;
    height: 45px;
  }

  .slider-text {
    left: 5%;
  }

  .slider-text h1 {
    font-size: 40px;
    letter-spacing: 3px;
  }

  .slider-para {
    width: 90%;
    padding: 10px;
  }

  .home-about-section {
    padding: 60px 5%;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-left {
    width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .wheel {
    display: none;
  }

  .home-about-heading {
    font-size: 28px;
  }

  .home-about-left p {
    font-size: 14px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 300px;
  }

  .home-about-stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 5%;
  }

  .home-about-stat {
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: none;
  }

  .home-about-stat h3 {
    font-size: 24px;
  }

  .home-about-stat p {
    font-size: 14px;
  }

  .home-about-stat::before,
  .home-about-stat::after {
    display: none;
  }

  .has1,
  .has2,
  .has3,
  .has4 {
    margin-top: 0;
  }

  .home-why-section {
    height: auto;
    padding: 40px 5%;
  }

  .home-why-container {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .home-why-left,
  .home-why-right {
    width: 100%;
  }

  .home-why-circle-wrapper {
    width: 250px;
    height: 250px;
  }

  .home-why-circle {
    width: 230px;
    height: 230px;
    margin-top: -21%;
  }

  .home-why-item h3 {
    font-size: 20px;
  }

  .home-why-item p {
    font-size: 14px;
  }

  .why-us-heading-box {
    margin-top: 2%;
  }

  .home-product-section {
    flex-direction: column;
    padding: 0 5%;
  }

  .home-product-left {
    width: 100%;
    position: static;
    padding-top: 30px;
  }

  .home-product-right {
    width: 100%;
    padding: 30px 0;
  }

  .home-product-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .home-product-content {
    width: 100%;
  }

  .home-product-content h3 {
    font-size: 20px;
  }

  .home-product-content p {
    font-size: 14px;
  }

  .home-product-image {
    width: 100%;
    height: 200px;
  }

  #wheel {
    margin-left: 0;
    width: 150px;
    height: 150px;
  }

  .acs {
    padding: 40px 5%;
  }

  .row {
    flex-direction: column;
    gap: 15px;
  }

  .left-box {
    margin-right: 0;
    padding: 30px;
  }

  .acs-content-box {
    flex-direction: column;
    gap: 20px;
  }

  .acs-text-box {
    width: 100%;
  }

  .acs-content-box h1 {
    font-size: 24px;
  }

  .acs-content-box p {
    font-size: 14px;
  }

  .clients-section {
    padding: 40px 5%;
  }

  .clients-track {
    gap: 40px;
  }

  .clients-circle {
    width: 80px;
    height: 80px;
  }

  .clients-vertical-line {
    height: 60px;
  }

  .clients-top {
    transform: translateY(-50px);
  }

  .clients-bottom {
    transform: translateY(50px);
  }

  .home-cta {
    padding: 170px 5% 100px 5%;
  }

  .home-cta-text {
    padding: 40px 30px 50px 30px;
    margin-top: -25%;
  }

  .home-cta-text h1 {
    font-size: 36px;
  }

  .home-cta-text p {
    font-size: 14px;
  }

  .home-ind-box {
    padding: 20px 5%;
    margin-left: 0;
    border-radius: 0px;
  }

  .home-ind-container {
    flex-direction: column;
    gap: 30px;
  }

  .ind-about-left,
  .ind-about-right {
    width: 100%;
  }

  .ind-about-left {
    margin-top: 0;
  }

  .ind-para {
    font-size: 16px;
  }

  .ind-logo-slider-1 {
    animation-duration: 200s;
  }

  .ind-logo-img-box {
    height: 200px;
    margin-right: 3%;
  }

  .home-testi-section {
    padding: 60px 5%;
  }

  .home-testi-container {
    padding: 40px 20px 30px;
    margin-top: 2%;
  }

  .home-testi-content {
    flex-direction: column;
    gap: 20px;
  }

  .home-testi-image-wrap img {
    width: 120px;
    height: 120px;
  }

  .home-testi-blob {
    width: 140px;
    height: 140px;
  }

  .home-testi-text p {
    font-size: 14px;
  }

  .home-testi-text h3 {
    font-size: 18px;
  }

  .home-testi-prev {
    left: -40px;
  }

  .home-testi-next {
    right: -40px;
  }

  .footer-container {
    padding: 40px 5% 30px;
  }

  .row {
    flex-direction: column;
    gap: 20px;
  }

  .col-md-3,
  .col-md-4,
  .col-md-5,
  .footer-bottom {
    width: 100%;
  }

  .footer-ul li {
    font-size: 14px;
  }

  .footer-img {
    width: 100%;
    margin-bottom: -3%;
  }

  .footer-title {
    font-size: 18px;
  }

  .home-ind-box {
    padding: 42px 0%;
    margin-left: 8% !important;
    border-radius: 50px 0 0 50px !important;
  }

}

@media (min-width: 481px) and (max-width: 768px) {

  .header-container {
    padding: 15px 20px;
  }

  .header-nav {
    width: 200px;
    padding: 15px;
    gap: 20px;
  }

  .header-item {
    font-size: 16px;
  }

  .header-text {
    font-size: 16px;
    margin-left: 27%;
  }

  .slider-text h1 {
    font-size: 60px;
    letter-spacing: 5px;
  }

  .slider-para {
    width: 80%;
    padding: 15px;
  }

  .home-about-section {
    padding: 80px 5%;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-left {
    width: 100%;
    margin-top: 0;
  }

  .home-about-heading {
    font-size: 36px;
  }

  .home-about-left p {
    font-size: 16px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 400px;
  }

  .home-about-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 10%;
  }

  .home-about-stat {
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: none;
  }

  .home-about-stat h3 {
    font-size: 32px;
  }

  .home-about-stat p {
    font-size: 18px;
  }

  .home-about-stat::before,
  .home-about-stat::after {
    display: none;
  }

  .has1,
  .has2,
  .has3,
  .has4 {
    margin-top: 0;
  }

  .home-why-section {
    height: auto;
    padding: 50px 5%;
  }

  .home-why-container {
    flex-direction: column;
    gap: 60px;
    height: auto;
  }

  .home-why-left,
  .home-why-right {
    width: 100%;
  }

  .home-why-circle-wrapper {
    width: 300px;
    height: 300px;
  }

  .home-why-circle {
    width: 280px;
    height: 280px;
  }

  .home-why-item h3 {
    font-size: 24px;
  }

  .home-why-item p {
    font-size: 16px;
  }

  .home-product-section {
    flex-direction: column;
    padding: 0 5%;
  }

  .home-product-left {
    width: 100%;
    position: static;
    padding-top: 40px;
  }

  .home-product-right {
    width: 100%;
    padding: 40px 0;
  }

  .home-product-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .home-product-content {
    width: 100%;
  }

  .home-product-content h3 {
    font-size: 24px;
  }

  .home-product-content p {
    font-size: 16px;
  }

  .home-product-image {
    width: 100%;
    height: 250px;
  }

  #wheel {
    margin-left: 0;
    width: 200px;
    height: 200px;
  }

  .acs {
    padding: 50px 5%;
  }

  .row {
    flex-direction: column;
    gap: 20px;
  }

  .left-box {
    margin-right: 0;
    padding: 40px;
  }

  .acs-content-box h1 {
    font-size: 28px;
  }

  .clients-section {
    padding: 50px 5%;
  }

  .clients-track {
    gap: 60px;
  }

  .clients-circle {
    width: 100px;
    height: 100px;
  }

  .clients-vertical-line {
    height: 80px;
  }

  .home-cta {
    padding: 12px 5% 50px 5%;
  }

  .home-cta-text {
    padding: 60px 50px 80px 50px;
  }

  .home-cta-text h1 {
    font-size: 42px;
  }

  .home-ind-box {
    padding: 80px 5%;
    margin-left: 3%;
    border-radius: 150px 0px 0px 150px;
  }

  .home-ind-container {
    flex-direction: column;
    gap: 40px;
  }

  .ind-about-left,
  .ind-about-right {
    width: 100%;
  }

  .ind-about-left {
    margin-top: 2%;
  }

  .home-testi-section {
    padding: 80px 5%;
  }

  .home-testi-container {
    padding: 50px 40px 40px;
  }

  .home-testi-content {
    gap: 30px;
  }

  .home-testi-text p {
    font-size: 16px;
  }

  .footer-container {
    padding: 50px 5% 40px;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .col-md-3,
  .col-md-4,
  .col-md-5,
  .footer-bottom {
    width: 100%;
  }

  .footer-ul li {
    font-size: 16px;
  }

  .footer-img {
    width: 100%;
    margin-bottom: -5%;
    margin-left: 10%;
  }


}

@media (min-width: 769px) and (max-width: 1024px) {

  .header-container {
    padding: 25px 50px;
  }

  .header-nav {
    gap: 30px;
  }

  .header-item {
    font-size: 17px;
  }

  .slider-text h1 {
    font-size: 90px;
    letter-spacing: 8px;
  }

  .slider-para {
    width: 70%;
  }

  .home-about-section {
    padding: 100px 6%;
  }

  .home-about-heading {
    font-size: 48px;
  }

  .home-about-left p {
    font-size: 18px;
  }

  .home-about-image-box {
    width: 400px;
  }

  .home-about-stats {
    margin-top: 15%;
  }

  .home-about-stat h3 {
    font-size: 38px;
  }

  .home-about-stat p {
    font-size: 20px;
  }

  .home-why-section {
    height: 300vh;
  }

  .home-why-container {
    gap: 80px;
  }

  .home-why-circle-wrapper {
    width: 450px;
    height: 450px;
  }

  .home-why-circle {
    width: 430px;
    height: 430px;
  }

  .home-product-section {
    padding: 0 6%;
  }

  .home-product-left {
    width: 45%;
  }

  .home-product-right {
    width: 55%;
  }

  .home-product-item {
    padding: 15px 40px;
  }

  .home-product-content h3 {
    font-size: 26px;
  }

  .home-product-image {
    height: 300px;
  }

  .acs {
    padding: 80px 6%;
  }

  .left-box {
    padding: 60px;
  }

  .clients-section {
    padding: 80px 6%;
  }

  .clients-track {
    gap: 100px;
  }

  .home-cta {
    padding: 0px 6% 200px 6%;
  }

  .home-cta-text {
    padding: 70px 80px 90px 80px;
  }

  .home-ind-box {
    padding: 100px 6%;
    margin-left: 5%;
  }

  .home-testi-section {
    padding: 100px 6%;
  }

  .home-testi-container {
    padding: 60px 50px 40px;
  }

  .footer-container {
    padding: 80px 6% 50px;
  }

  .row {
    gap: 40px;
  }

  .footer-img-box {
    margin-top: 1%;
    margin-left: -44% !important;
  }

  .certi-container {
    display: block;
    gap: 50px;
    justify-content: center;
  }

  .product-slider-1 {
    margin-right: 8% !important;
    margin-left: 8% !important;
  }

  .product-slider-2 {
    margin-right: 8% !important;
    margin-left: 8% !important;
  }


  .f2-footer-img-box {
    margin-left: 0% !important;
  }

  .home-ind-icon-box img {
    height: 45px;
  }

  .home-ind {
    gap: 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {

  .header-container {
    padding: 30px 70px;
  }

  .slider-text h1 {
    font-size: 110px;
  }

  .home-about-section {
    padding: 120px 7%;
  }


  .home-about-heading {
    font-size: 52px;
  }

  .home-about-image-box {
    width: 450px;
  }

  .home-why-section {
    height: 350vh;
  }

  .home-why-container {
    gap: 100px;
  }

  .home-why-circle-wrapper {
    width: 480px;
    height: 480px;
  }

  .home-why-circle {
    width: 460px;
    height: 460px;
  }

  .home-product-section {
    padding: 0 6%;
  }

  .acs {
    padding: 100px 150px;
  }

  .clients-section {
    padding: 100px 7%;
  }

  .home-cta {
    padding: 0px 150px 200px 150px;
  }

  .home-ind-box {
    padding: 100px 150px;
    margin-left: 6%;
  }

  .home-testi-section {
    padding: 100px 7%;
  }

  .footer-container {
    padding: 100px 150px 70px 150px;
  }
}

@media (min-width: 1201px) {

  .home-about-section {
    padding: 120px 8%;
  }

  .home-product-section {
    padding: 0 5%;
  }

  .acs {
    padding: 100px 200px;
  }

  .footer-container {
    padding: 100px 200px 0px 200px;
  }

  .home-ind-box {
    padding: 50px;
    margin-left: 13%;
  }
}


@media(max-width:767px) {
  .home-about-curve {
    display: none;
  }

  .home-why-numbers {
    display: none;
  }

  .home-why-right {
    margin-top: -12%;
  }

  .footer-container::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: 106%;
    transform: translateX(-50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(circle, #560d0dde, #6b0000ab 70%);
    filter: blur(100px);
    top: -18%;
  }

  .header-item {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 5px 0;
    transition: 0.3s ease;
  }

  .why-about-media {
    background: #000;
  }
}

.ind-title {
  color: #fff;
  background: #00000096;
  position: relative;
  z-index: 20;
  margin-top: -19%;
  padding: 10px 10px 10px 40px;
  font-size: 18px;
  font-family: "Host Grotesk", sans-serif;
}

.products-section-box {
  padding: 100px 200px;
}

.product-box-details-box {
  background: linear-gradient(to bottom, #800000, #800000), url('../Images/home/about-bg.jpg');
  padding: 30px;
  text-align: left;
  border-radius: 10px;
}

.products-box-image {
  text-align: center;
  background: #ececec;
  padding: 30px 0px;
  border-radius: 10px;
  height: 324px;
}

.products-box-image img {
  height: 100%;
}

.products-box-content {
  padding: 20px 0px 0px 0px;
}

.products-box-content h1 {
  font-size: 25px;
  line-height: 1.2;
  max-width: 600px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.products-box-content p {
  width: 86%;
  margin-top: 4%;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 34px;
}

.products-box-content a .cta-icon {
  background: #dddddd !important;
  color: #000;
  font-weight: bold;
  width: fit-content;
  border-radius: 5px;
}

.product-box-details-box {
  margin-bottom: 10%;
}

.text-heading-products {
  padding: 50px 0px 70px 0px;
}

.home-ind-name h2 {
  font-size: 15px;
  line-height: 1.2;
  color: #ffffff;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 0px;
}

.home-ind {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 0px;
  padding-top: 4%;
  width: 90%;
  margin: 0 auto;
}

.counter-section {
  position: relative;
  text-align: center;
}

.home-about-counter {
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 81px;
}

.counter-1 p {
  font-size: 22px;
  padding-top: 15px;
  color: #800000;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.counter-section {
  display: flex;
  gap: 86px;
  color: #7a7a7a;
  justify-content: center;
  padding-top: 119px;
}

.certi-box {
  padding: 200px;
}

.certi-container {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.certi-details {
  background: #dcdcdc;
  padding: 50px;
  border-radius: 10px;
}

.certi-details h2 {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-size: 37px;
}

.certi-details img {
  margin-top: -26%;
  background: #891717;
  padding: 20px;
  margin-bottom: 10%;
  border-radius: 10px;
  box-shadow: 0px 8px 32px -8px rgb(0 0 0 / 80%);
}

.footer-img-box {
  height: 600px;
  position: relative;
  margin-left: -10%;
  margin-top: -9%;
}


.footer-img-box img {
  height: 100%;
}

.footer-container .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: absolute;
  right: -1px;
  top: 38%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
}

.footer-container .icon i {
  font-size: 24px !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1) !important;
}

.footer-container .icon i:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3) !important;
}

.footer-container .icon i.fa-youtube:hover {
  background: #ff0000 !important;
  color: #ffffff !important;
}

.footer-container .icon i.fa-facebook-f:hover {
  background: #1877f2 !important;
  color: #ffffff !important;
}

.footer-container .icon i.fa-linkedin-in:hover {
  background: #0077b5 !important;
  color: #ffffff !important;
}

.footer-container .icon i.fa-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: #ffffff !important;
}

.map-pin {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}

.map-pin i {
  font-size: 32px;
  color: #800000;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.green-dot {
  color: green !important;
}

.red-dot {
  color: #bb1010 !important;
}

.yellow-dot {
  color: #e7b216 !important;
}

.map-pin:hover i {
  font-size: 40px;
  color: #ff0000;
  transform: scale(1.1);
}

.pin-north {
  top: 27%;
  left: 31%;
}

.pin-udaipur {
  top: 38%;
  left: 24%;
}

.pin-head {
  top: 30%;
  left: 24%;
}

.pin-south {
  top: 43%;
  left: 57%;
}

.pin-ahm {
  top: 44%;
  left: 21%;
}



.pin-che {
  top: 77%;
  left: 36%;
}

.pin-ludhiana {
  top: 21%;
  left: 24%;
}

.pin-jaipur {
  top: 32%;
  left: 28%;
}

.pin-jodhpur {
  top: 34%;
  left: 23%;
}

.pin-ajmer {
  top: 38%;
  left: 26%;
}

.pin-bhiwadi {
  top: 27%;
  left: 27%;
}

.pin-rajkot {
  top: 47%;
  left: 18%;
}

.pin-surat {
  top: 44%;
  left: 24%;

}

.pin-vapi {
  top: 47%;
  left: 26%;

}

.pin-daman {
  top: 49%;
  left: 24%;

}

.pin-mumbai {
  top: 56%;
  left: 26%;
}

.pin-latur {
  top: 56%;
  left: 31%;
}

.pin-pune {
  top: 58%;
  left: 28%;
}

.pin-goa {
  top: 65%;
  left: 28%;
}

.pin-chennai {
  top: 80%;
  left: 36%;
}

.pin-coimbatore {
  top: 80%;
  left: 37%;
}

.pin-bangalore {
  top: 71%;
  left: 32%;

}

.pin-vadodara {
  top: 47%;
  left: 20%;
}

.pin-coimbatore {
  top: 76%;
  left: 34%;
}

.pin-ludhiana-y {
  top: 23%;
  left: 25%;
}

.pin-kolkata-y {
  top: 43%;
  left: 58%;
}

.pin-jaipur-y {
  top: 32%;
  left: 29%;
}

.pin-delhi-y {
  top: 29%;
  left: 27%;
}

.pin-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}


.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #ffffff;
}

.map-pin:hover .pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-15px);
}

.pin-tooltip h4 {
  color: #800000;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px 0;
  font-family: 'Roboto Slab', serif;
}

.pin-tooltip p {
  color: #333;
  font-size: 13px;
  margin: 3px 0;
  font-family: 'Host Grotesk', sans-serif;
  line-height: 1.4;
}

.map-pin {
  animation: pin-pulse 2s ease-in-out infinite;
}

.map-icon {
  font-size: 25px;
  color: #fff;
}

@keyframes pin-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.map-pin:hover {
  animation: none;
}

@media (max-width: 768px) {
  .map-pin i {
    font-size: 24px;
  }

  .map-pin:hover i {
    font-size: 30px;
  }

  .pin-north {
    top: 26%;
    left: 28%;
  }

  .pin-west {
    top: 40%;
    left: 30%;
  }

  .pin-south {
    top: 44%;
    left: 51%;
  }

  .pin-tooltip {
    min-width: 150px;
    padding: 10px 15px;
  }

  .pin-tooltip h4 {
    font-size: 14px;
  }

  .pin-tooltip p {
    font-size: 12px;
  }
}


.why-us-box {
  text-align: center;
}

.why-us-box img {
  width: 990px;
  padding: 50px 0px 0px 0px;
}


.bold-heading-text {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 218px;
  color: #a7a7a7;
  text-align: right;
}


@media (max-width: 320px) {

  .header-container {
    padding: 15px 10px;
  }

  .header-logo {
    font-size: 18px;
  }

  .header-nav {
    width: 160px;
    padding: 8px;
    gap: 10px;
  }

  .header-item {
    font-size: 12px;
  }

  .header-text {
    font-size: 11px;
  }

  .slider-text h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .slider-para h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .home-about-section {
    padding: 40px 3%;
  }

  .home-about-heading {
    font-size: 22px;
  }

  .home-about-left p {
    font-size: 12px;
    line-height: 20px;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 200px;
  }

  .home-about-stat h3 {
    font-size: 18px;
  }

  .home-about-stat p {
    font-size: 12px;
  }

  .home-why-container {
    gap: 30px;
  }

  .home-why-circle-wrapper {
    width: 200px;
    height: 200px;
  }

  .home-why-circle {
    width: 180px;
    height: 180px;
  }

  .home-why-item h3 {
    font-size: 16px;
  }

  .home-why-item p {
    font-size: 12px;
  }

  .home-product-item {
    padding: 10px;
    gap: 10px;
  }

  .home-product-content h3 {
    font-size: 16px;
  }

  .home-product-content p {
    font-size: 12px;
  }

  .home-product-image {
    height: 150px;
  }

  .acs {
    padding: 30px 3%;
  }

  .left-box,
  .right-box {
    padding: 20px;
  }

  .acs-content-box h1 {
    font-size: 18px;
  }

  .acs-content-box p {
    font-size: 12px;
  }

  .home-cta {
    padding: 100px 3% 80px;
  }

  .home-cta-text {
    padding: 30px 20px 40px;
  }

  .home-cta-text h1 {
    font-size: 24px;
  }

  .home-cta-text p {
    font-size: 12px;
  }

  .footer-container {
    padding: 30px 3% 20px;
  }

  .footer-ul li a {
    font-size: 14px;
    line-height: 30px;
  }

  .footer-title {
    font-size: 16px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {

  .header-container {
    padding: 15px 12px;
  }

  .header-logo {
    font-size: 20px;
  }

  .header-nav {
    width: 170px;
    padding: 10px;
    gap: 12px;
  }

  .header-item {
    font-size: 13px;
  }

  .header-text {
    font-size: 12px;
    color: #fff;
    margin-left: 13%;
  }

  .slider-text h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .slider-para h3 {
    font-size: 14px;
    line-height: 22px;
  }

  .home-about-section {
    padding: 50px 4%;
  }

  .home-about-heading {
    font-size: 24px;
  }

  .home-about-left p {
    font-size: 13px;
    line-height: 22px;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 250px;
  }

  .home-about-stat h3 {
    font-size: 20px;
  }

  .home-about-stat p {
    font-size: 13px;
  }

  .home-why-container {
    gap: 35px;
  }

  .home-why-circle-wrapper {
    width: 220px;
    height: 220px;
  }

  .home-why-circle {
    width: 200px;
    height: 200px;
  }

  .home-why-item h3 {
    font-size: 18px;
  }

  .home-why-item p {
    font-size: 13px;
  }

  .home-product-item {
    padding: 12px;
    gap: 12px;
  }

  .home-product-content h3 {
    font-size: 18px;
  }

  .home-product-content p {
    font-size: 13px;
  }

  .home-product-image {
    height: 180px;
  }

  .acs {
    padding: 35px 4%;
  }

  .left-box,
  .right-box {
    padding: 25px;
  }

  .acs-content-box h1 {
    font-size: 20px;
  }

  .acs-content-box p {
    font-size: 13px;
  }

  .home-cta {
    padding: 120px 4% 90px;
  }

  .home-cta-text {
    padding: 35px 25px 45px;
  }

  .home-cta-text h1 {
    font-size: 28px;
  }

  .home-cta-text p {
    font-size: 13px;
  }

  .footer-container {
    padding: 35px 4% 25px;
  }

  .footer-ul li a {
    font-size: 16px;
    line-height: 35px;
  }

  .footer-title {
    font-size: 17px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {

  .header-container {
    padding: 18px 15px;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-nav {
    width: 180px;
    padding: 12px;
    gap: 15px;
  }

  .header-item {
    font-size: 14px;
  }

  .header-text {
    font-size: 13px;
    color: #fff;
    margin-left: 13%;
  }

  .slider-text h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .slider-para h3 {
    font-size: 15px;
    line-height: 24px;
  }

  .home-about-section {
    padding: 55px 4%;
  }

  .home-about-heading {
    font-size: 26px;
  }

  .home-about-left p {
    font-size: 14px;
    line-height: 24px;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 280px;
  }

  .home-about-stat h3 {
    font-size: 22px;
  }

  .home-about-stat p {
    font-size: 14px;
  }

  .home-why-container {
    gap: 40px;
  }

  .home-why-circle-wrapper {
    width: 240px;
    height: 240px;
  }

  .home-why-circle {
    width: 220px;
    height: 220px;
  }

  .home-why-item h3 {
    font-size: 19px;
  }

  .home-why-item p {
    font-size: 14px;
  }

  .home-product-item {
    padding: 15px;
    gap: 15px;
  }

  .home-product-content h3 {
    font-size: 19px;
  }

  .home-product-content p {
    font-size: 14px;
  }

  .home-product-image {
    height: 200px;
  }

  .acs {
    padding: 40px 4%;
  }

  .left-box,
  .right-box {
    padding: 30px;
  }

  .acs-content-box h1 {
    font-size: 22px;
  }

  .acs-content-box p {
    font-size: 14px;
  }

  .home-cta {
    padding: 140px 4% 100px;
  }

  .home-cta-text {
    padding: 40px 30px 50px;
  }

  .home-cta-text h1 {
    font-size: 32px;
  }

  .home-cta-text p {
    font-size: 14px;
  }

  .footer-container {
    padding: 40px 4% 30px;
  }

  .footer-ul li a {
    font-size: 18px;
    line-height: 40px;
  }

  .footer-title {
    font-size: 18px;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {

  .header-container {
    padding: 25px 60px;
  }

  .header-nav {
    gap: 35px;
  }

  .header-item {
    font-size: 16px;
  }

  .slider-text h1 {
    font-size: 80px;
    letter-spacing: 7px;
  }

  .slider-para {
    width: 75%;
  }

  .home-about-section {
    padding: 100px 5%;
  }


  .home-about-heading {
    font-size: 44px;
  }

  .home-about-left p {
    font-size: 17px;
    line-height: 26px;
  }

  .home-about-image-box {
    width: 380px;
  }

  .home-about-stats {
    margin-top: 12%;
  }

  .home-about-stat h3 {
    font-size: 36px;
  }

  .home-about-stat p {
    font-size: 18px;
  }

  .home-why-container {
    gap: 80px;
  }

  .home-why-circle-wrapper {
    width: 420px;
    height: 420px;
  }

  .home-why-circle {
    width: 400px;
    height: 400px;
  }

  .home-why-item h3 {
    font-size: 26px;
  }

  .home-why-item p {
    font-size: 16px;
    line-height: 26px;
  }

  .home-product-section {
    padding: 0 5%;
  }

  .home-product-left {
    width: 42%;
  }

  .home-product-right {
    width: 58%;
  }

  .home-product-item {
    padding: 15px 35px;
  }

  .home-product-content h3 {
    font-size: 24px;
  }

  .home-product-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .home-product-image {
    height: 280px;
  }

  .acs {
    padding: 80px 5%;
  }

  .left-box {
    padding: 70px;
  }

  .acs-content-box h1 {
    font-size: 30px;
  }

  .acs-content-box p {
    font-size: 16px;
    line-height: 26px;
  }

  .clients-section {
    padding: 80px 5%;
  }

  .clients-marquee-track {
    gap: 50px;
  }

  .clients-circle {
    width: 150px;
    height: 120px;
  }

  .home-cta {
    padding: 0px 5% 180px;
  }

  .home-cta-text {
    padding: 60px 70px 80px;
  }

  .home-cta-text h1 {
    font-size: 45px;
  }

  .home-cta-text p {
    font-size: 18px;
    line-height: 28px;
  }

  .home-ind-box {
    padding: 80px 5%;
    margin-left: 5%;
  }

  .ind-para {
    font-size: 16px;
    line-height: 26px;
  }

  .home-testi-section {
    padding: 80px 5%;
  }

  .home-testi-container {
    padding: 50px 40px 40px;
  }

  .home-testi-text p {
    font-size: 16px;
  }

  .footer-container {
    padding: 80px 5% 50px;
  }

  .row {
    gap: 30px;
  }

  .footer-ul li a {
    font-size: 18px;
    line-height: 38px;
  }

  .footer-title {
    font-size: 22px;
  }
}

@media (min-width: 1281px) and (max-width: 1366px) {

  .header-container {
    padding: 28px 70px;
  }

  .header-nav {
    gap: 38px;
  }

  .header-item {
    font-size: 17px;
  }

  .slider-text h1 {
    font-size: 90px;
    letter-spacing: 8px;
  }

  .slider-para {
    width: 70%;
  }

  .home-about-section {
    padding: 110px 6%;
  }

  .home-about-heading {
    font-size: 72px;
  }

  .home-about-left p {
    font-size: 18px;
    line-height: 28px;
  }

  .home-about-image-box {
    width: 420px;
  }

  .home-about-stats {
    margin-top: 15%;
  }

  .home-about-stat h3 {
    font-size: 38px;
  }

  .home-about-stat p {
    font-size: 19px;
  }


  .home-why-container {
    gap: 90px;
  }

  .home-why-circle-wrapper {
    width: 460px;
    height: 460px;
  }

  .home-why-circle {
    width: 440px;
    height: 440px;
  }

  .home-why-item h3 {
    font-size: 28px;
  }

  .home-why-item p {
    font-size: 17px;
    line-height: 28px;
  }

  .home-product-section {
    padding: 0 5%;
  }

  .home-product-left {
    width: 42%;
  }

  .home-product-right {
    width: 58%;
  }

  .home-product-item {
    padding: 15px 40px;
  }

  .home-product-content h3 {
    font-size: 26px;
  }

  .home-product-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .home-product-image {
    height: 300px;
  }

  .acs {
    padding: 90px 8%;
  }

  .left-box {
    padding: 80px;
  }

  .acs-content-box h1 {
    font-size: 32px;
  }

  .acs-content-box p {
    font-size: 17px;
    line-height: 28px;
  }

  .clients-section {
    padding: 90px 5%;
  }

  .clients-marquee-track {
    gap: 55px;
  }

  .clients-circle {
    width: 160px;
    height: 130px;
  }

  .home-cta {
    padding: 0px 8% 190px;
  }

  .home-cta-text {
    padding: 70px 80px 90px;
  }

  .home-cta-text h1 {
    font-size: 50px;
  }

  .home-cta-text p {
    font-size: 19px;
    line-height: 30px;
  }

  .home-ind-box {
    padding: 90px 8%;
    margin-left: 6%;
  }

  .ind-para {
    font-size: 17px;
    line-height: 28px;
  }

  .home-testi-section {
    padding: 90px 5%;
  }

  .home-testi-container {
    padding: 60px 50px 45px;
  }

  .home-testi-text p {
    font-size: 17px;
    line-height: 28px;
  }

  .footer-container {
    padding: 90px 8% 55px;
  }

  .row {
    gap: 35px;
  }

  .footer-ul li a {
    font-size: 19px;
    line-height: 40px;
  }

  .footer-title {
    font-size: 24px;
  }
}

@media (min-width: 1367px) and (max-width: 1440px) {

  .header-container {
    padding: 30px 80px;
  }

  .header-nav {
    gap: 40px;
  }

  .slider-text h1 {
    font-size: 100px;
    letter-spacing: 10px;
  }

  .home-about-section {
    padding: 120px 7%;
  }

  .home-about-heading {
    font-size: 52px;
  }

  .home-about-image-box {
    width: 480px;
  }

  .pin-ajmer {
    top: 36% !important;
    left: 24% !important;
  }

  .pin-jodhpur {
    top: 34% !important;
    left: 22% !important;
  }

  .pin-delhi-y {
    top: 28% !important;
    left: 29% !important;
  }

  .pin-bhiwadi {
    top: 27% !important;
    left: 27% !important;
  }


  .pin-ludhiana-y {
    top: 23% !important;
    left: 24% !important;
  }

  .pin-ludhiana {
    top: 21% !important;
    left: 23% !important;
  }

  .home-why-circle-wrapper {
    width: 500px;
    height: 500px;
  }

  .home-why-circle {
    width: 480px;
    height: 480px;
  }

  .home-product-image {
    height: 320px;
  }

  .acs {
    padding: 100px 10%;
  }

  .left-box {
    padding: 90px;
  }

  .home-cta {
    padding: 0px 10% 200px;
  }

  .home-cta-text {
    padding: 80px 90px 100px;
  }

  .home-cta-text h1 {
    font-size: 52px;
  }

  .footer-container {
    padding: 100px 10% 60px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .slider-container {
    height: 100vh;
    min-height: auto;
  }

  .slider-text h1 {
    font-size: 40px;
  }

  .slider-para h3 {
    font-size: 14px;
    line-height: 18px;
  }

  .home-about-section {
    padding: 60px 5%;
  }

  .home-about-container {
    flex-direction: row;
  }

  .home-about-left {
    width: 50%;
    margin-top: 0;
  }

  .home-about-image-box {
    width: 40%;
    max-width: 250px;
  }

  .home-about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 5%;
  }

  .home-about-stat {
    width: 45%;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .home-about-section {
    background-image: url('../Images/home/about-bg.jpg');
    background-size: cover;
  }
}

@media print {
  .header-container {
    position: static;
    box-shadow: none;
  }

  .slider-container {
    display: none;
  }

  .home-about-section,
  .home-why-section,
  .home-product-section,
  .clients-section,
  .home-cta,
  .home-testi-section,
  .footer-container {
    padding: 20px;
  }

  .home-about-image-box img,
  .home-product-image img,
  .home-why-image {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}


@media(max-width:767px) {
  .counter-section {
    display: block;
    gap: 86px;
    justify-content: end;
    padding-top: 119px;
  }

  .why-us-box img {
    width: 100%;
  }

  .bold-heading-text {
    font-size: 72px;
  }

  .ind-para {
    line-height: 23px;
  }

  .certi-box {
    padding: 20px 20px 10px 20px !important;
  }

  .certi-container {
    display: block;
    gap: 50px;
    justify-content: center;
  }

  .certi-details {
    margin-bottom: 40px;
  }

  .footer-img-box {
    height: 500px;
    position: relative;
    margin-left: -26%;
    margin-top: -1%;
    padding: 29px;
  }

  .footer-bottom {
    margin-top: 8%;
    width: 100%;
    text-align: center;
    padding-top: 25px;
    left: 0%;
    padding-bottom: 20px;
  }

  .pin-north {
    top: 27%;
    left: 42%;
  }

  .pin-udaipur {
    top: 38%;
    left: 35%;
  }

  .pin-head {
    top: 30%;
    left: 35%;
  }

  .pin-south {
    top: 43%;
    left: 72%;
  }

  .footer-container .icon {
    display: block;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: absolute;
    right: 10%;
    top: 85%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 17px;
  }

  .footer-img {
    width: 100%;
    left: 1%;
    margin-bottom: -3%;
  }


  .slider-text {
    top: 64%;
  }
}

.why-us-h {
  font-weight: 900;
  font-style: normal;
  font-size: 150px;
  font-family: "Orbitron", sans-serif;
}

@media(max-width:767px) {
  .why-us-h {
    font-weight: 900;
    font-style: normal;
    font-size: 33px;
    text-align: left;
  }

  .clients-h {
    text-align: right;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .why-us-h {
    font-size: 138px;
  }

  .footer-bottom {
    left: 42%;
  }

  .footer-container .icon {
    top: 72%;
  }

  .pin-udaipur {
    top: 38%;
    left: 34%;
  }

  .pin-head {
    left: 34%;
  }

  .pin-north {
    top: 26%;
    left: 43%;
  }

  .pin-south {
    top: 43%;
    left: 78%;
  }
}


.home-ind-box::after {
  content: "";
  position: absolute;
  left: 14%;
  transform: translateX(-50%);
  width: 253px;
  height: 321px;
  background: radial-gradient(circle, #560d0d54, #6b0000ab 70%);
  filter: blur(71px);
  top: 42%;
  z-index: 100;
  display: none;
}

@media(max-width:767px) {
  .home-ind-box::after {
    display: none;
  }
}

@media(max-width:1700px) {
  .footer-container .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: absolute;
    right: -1px;
    top: 55%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
  }

  .pin-udaipur {
    top: 38%;
    left: 35%;
  }

  .pin-head {
    left: 35%;
  }

  .pin-north {
    top: 26%;
    left: 43%;
  }

  .pin-south {
    top: 43%;
    left: 78%;
  }

  .why-us-h {
    font-weight: 900;
    font-style: normal;
    font-size: 140px;
    font-family: "Orbitron", sans-serif;
  }
}

.home-ind-box::after {
  content: "";
  position: absolute;
  left: 7%;
  transform: translateX(-50%);
  width: 169px;
  height: 140px;
  background: radial-gradient(circle, #560d0d, #6b0000 70%);
  filter: blur(79px);
  top: 65%;
  z-index: 100;
}

.home-ind-box {
  position: relative;
}

.certi-subtitle {
  font-size: 24px;
  color: rgb(81, 81, 81);
  font-family: "Host Grotesk", sans-serif;
  margin-top: 2%;
  margin-bottom: 3%;
  font-style: italic;
}

.home-certi-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 83px;
  padding-top: 40px;
}

.home-certi-logo-container {
  width: 240px;
}

.home-certi-logo-container img {
  width: 100%;
}

.center-title {
  text-align: center;
  margin: 0% 4% 3% 4%;
}

.center-title div {
  background: #800000;
  padding: 50px;
  border-radius: 20px;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}

.center-title h1 {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 35px;
  padding-bottom: 10px;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 4px;
}

.center-title h2 {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 18px;
  font-size: 20px;
}

.colour-dot-info {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding-left: 61%;

  height: 35px;
}

.colour-dot-info h1 {
  color: #fff;
  font-size: 16px;
  font-family: "Host Grotesk", sans-serif;
}


.colour-dot-info .map-icon {
  font-size: 20px;
}

.dots-info {
  margin-top: -28%;
}

.footer-li-new {
  padding-bottom: 16px;
  width: 95%;
  line-height: 34px;
}

.sas {
  position: absolute;
  margin-top: 20%;
  color: #fff;
}

.sas h6 {
  font-size: 18px;

  padding-bottom: 9px;
}

.sas h1 {
  font-family: "Host Grotesk", sans-serif;
}


.main-home-pointer {
  padding-top: 80px;
}

@media(max-width:1400px) {
  .home-ind-box {
    padding: 20px 0% 30px 0%;
    margin-left: 10%;
    border-radius: 95px 0 0 95px;
  }

  .home-ind-box {
    padding: 20px 0% 30px 0%;
    margin-left: 10%;
    border-radius: 95px 0 0 95px;
  }

  .home-ind {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 0px;
  }

  .home-ind-icon-box img {
    height: 45px;
  }

  .home-ind-name h2 {
    font-size: 12px;
  }

  .home-ind {
    gap: 20px 0px !important;
  }

  .home-ind-box {
    padding: 42px 0%;
    margin-left: 13% !important;
  }
}

.contact-page-header {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-page-header img {
  width: 100%;
  height: 100%;

}

.contact-page-header h1 {
  position: absolute;
  top: 60%;
  transform: translate(15%, -50%);
  z-index: 2;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 55px;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  text-align: left;
  max-width: 53%;

}

@media (max-width: 768px) {
  .contact-page-header h1 {
    font-size: 42px;
    letter-spacing: 2px;
  }
}


@media (max-width: 480px) {
  .contact-page-header h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

.contact-office-container {
  display: flex;
  gap: 70px;
  padding: 100px 170px;
}

.contact-office-box {
  background: #f5f5f5;
  padding: 20px 40px 40px;
  border-radius: 10px;
  color: #800000;
  border: 1px solid #8b1c1c;
  width: 530px;
}

.contact-office-box h1 {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-size: 37px;
  padding-bottom: 17px;
}

.contact-office-box a {
  font-family: "Host Grotesk", sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 34px;
}


.slider-products-container {
  display: flex;
  gap: 30px;
  text-align: center;

}

.slider-product-content-img {
  height: 199px;
  text-align: center;

}

.slider-product-content-img img {
  height: 100%;
}

.slider-product-content h1 {
  color: #fff;
  font-family: "Host Grotesk", sans-serif;
  font-size: 19px;
  border-top: 2px solid #b1b1b1;
  padding-top: 25px;
  text-align: center;
}

.home-product-section-new {
  padding: 50px 100px;
}

.product-slider-1 {
  margin-bottom: 2%;
  margin-top: 5%;
  overflow: hidden;
  position: relative;
}

.product-slider-2 {
  overflow: hidden;
  position: relative;
  margin-right: 10%;
  margin-left: 10%;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #800000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn:hover {
  background: #a52a2a;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
  left: 20px;
}

.slider-nav-btn.next {
  right: 20px;
}

.slider-nav-btn i {
  font-size: 20px;
}



.slider-product-content .cta-icon {
  width: 66%;
  margin: 15px auto;
  background: transparent;
  color: #800000;
}

.slider-products-box {
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #b1b1b1;
}

.product-slider-1 {
  margin-bottom: 2%;
  margin-top: 5%;
  overflow: hidden;
  position: relative;
}

.product-slider-track {
  display: flex;
  width: max-content;
}

.slider-products-box {
  flex: 0 0 auto;
  width: 311px;
  margin-right: 30px;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #b1b1b1;
  background: transparent;
}

@keyframes slideLeftToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.product-slider-animate {
  animation: slideLeftToRight 150s linear infinite;
}

.product-slider-1:hover .product-slider-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .slider-products-box {
    width: 280px;
    margin-right: 20px;
  }

  .product-slider-1 {
    margin-right: 2%;
    margin-left: 2%;
  }
}

@media (max-width: 480px) {
  .slider-products-box {
    width: 250px;
    margin-right: 15px;
  }
}

.product-slider-1 .slider-products-box {
  flex: 0 0 auto;
  width: 311px;
  margin-right: 30px;
  height: 390px;
}

.product-slider-2 .slider-products-box {
  flex: 0 0 auto;
  width: 311px;
  margin-right: 30px;
}

.js-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 6%;
  margin-top: 5%;
}

.js-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.js-carousel .slider-products-box {
  flex: 0 0 calc(20% - 24px);
  margin-right: 30px;
  min-width: 0;
}

@media (min-width: 1200px) {
  .js-carousel .slider-products-box {
    flex: 0 0 calc(20% - 24px);
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .js-carousel .slider-products-box {
    flex: 0 0 calc(33.33% - 20px);
    margin-right: 30px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .js-carousel .slider-products-box {
    flex: 0 0 calc(50% - 15px);
    margin-right: 30px;
  }
}

@media (max-width: 480px) {
  .js-carousel .slider-products-box {
    flex: 0 0 calc(100% - 20px);
    margin-right: 20px;
  }
}

.product-slider-1:hover .js-carousel-track,
.product-slider-2:hover .js-carousel-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {

  .product-slider-1 .slider-products-box,
  .product-slider-2 .slider-products-box {
    width: 270px;
    margin-right: 20px;
    padding: 20px;
    height: 330px;
  }

  .product-slider-1 .slider-products-container,
  .product-slider-2 .slider-products-container {
    width: 300% !important;
  }

  .home-about-left-2 p {
    font-size: 30px !important;
  }

  @keyframes slideLeftToRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-33.33%);
    }
  }

  @keyframes slideRightToLeft {
    0% {
      transform: translateX(-33.33%);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media(max-width:500px) {
  .home-about-left-2 p {
    font-size: 20px !important;
  }
}

@media (max-width: 320px) {

  .header-container {
    padding: 12px 8px;
  }

  .header-logo {
    font-size: 16px;
  }

  .header-nav {
    width: 218px;
    padding: 8px;
    gap: 8px;
  }

  .header-item {
    font-size: 11px;
  }

  .slider-text h1 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .slider-para h3 {
    font-size: 12px;
    line-height: 18px;
    padding: 10px;
  }

  .home-about-section {
    padding: 0px 3%;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-heading {
    font-size: 20px;
  }

  .home-about-left {
    width: 100%;
    margin-top: 0;
  }

  .home-about-left p {
    font-size: 11px;
    line-height: 18px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 180px;
  }

  .home-about-stats {
    flex-direction: column;
    gap: 10px;
    margin-top: 5%;
  }

  .home-about-stat {
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: none;
  }

  .home-about-stat h3 {
    font-size: 16px;
  }

  .home-about-stat p {
    font-size: 11px;
  }

  .home-about-stat::before,
  .home-about-stat::after {
    display: none;
  }

  .home-why-section {
    padding: 30px 3%;
  }

  .home-why-container {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  .home-why-left,
  .home-why-right {
    width: 100%;
  }

  .home-why-circle-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .home-why-circle {
    width: 160px;
    height: 160px;
    top: 10px;
    left: 10px;
  }

  .home-why-item h3 {
    font-size: 14px;
    text-align: center;
  }

  .home-why-item p {
    font-size: 11px;
    width: 100%;
  }

  .home-product-section {
    flex-direction: column;
    padding: 0 3%;
  }

  .home-product-left {
    width: 100%;
    position: static;
    padding-top: 20px;
  }

  .home-product-heading {
    font-size: 24px;
    text-align: center;
  }

  .home-product-right {
    width: 100%;
    padding: 20px 0;
    gap: 20px;
  }

  .home-product-item {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
  }

  .home-product-content {
    width: 100%;
    text-align: center;
  }

  .home-product-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .home-product-content p {
    font-size: 11px;
    width: 100%;
  }

  .home-product-image {
    width: 100%;
    height: 120px;
  }

  .acs {
    padding: 30px 3%;
  }

  .acs-content-box {
    flex-direction: column;
    gap: 15px;
  }

  .acs-text-box {
    width: 100%;
  }

  .left-box {
    margin-right: 0;
    padding: 20px;
    border-radius: 8px;
  }

  .acs-content-box h1 {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .acs-content-box p {
    font-size: 11px;
    line-height: 18px;
  }

  .clients-section {
    padding: 30px 3%;
  }

  .clients-title {
    font-size: 20px;
  }

  .clients-subtitle {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .clients-marquee-track {
    gap: 20px;
  }

  .clients-circle {
    width: 60px;
    height: 50px;
  }

  .home-cta {
    padding: 100px 3% 50px
  }

  .home-cta-text {
    padding: 30px 15px 40px;
    border-radius: 20px;
  }

  .home-cta-text h1 {
    font-size: 20px;
  }

  .home-cta-text p {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .home-ind-box {
    padding: 40px 3%;
    margin-left: 0;
    border-radius: 0;
  }

  .home-ind-container {
    flex-direction: column;
    gap: 20px;
  }

  .ind-about-left,
  .ind-about-right {
    width: 100%;
  }

  .ind-about-left {
    margin-top: 0;
  }

  .ind-para {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
  }

  .ind-logo-img-box {
    height: 120px;
    margin-right: 3%;
  }

  .home-testi-section {
    padding: 40px 3%;
  }

  .home-testi-title {
    font-size: 20px;
  }

  .home-testi-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .home-testi-container {
    padding: 30px 15px 20px;
    margin-top: 2%;
  }


  .home-testi-image-wrap img {
    width: 100px;
    height: 100px;
  }

  .home-testi-blob {
    width: 120px;
    height: 120px;
    top: -15px;
    left: -15px;
  }

  .home-testi-text {
    max-width: 100%;
    text-align: center;
  }

  .home-testi-text p {
    font-size: 12px;
  }

  .home-testi-text h3 {
    font-size: 14px;
    margin-top: 10px;
  }

  .home-testi-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .home-testi-prev {
    left: -20px;
  }

  .home-testi-next {
    right: -20px;
  }

  .footer-container {
    padding: 30px 3% 20px;
  }

  .row {
    flex-direction: column;
    gap: 15px;
  }

  .col-md-3,
  .col-md-4,
  .col-md-5,
  .footer-bottom {
    width: 100%;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-ul li a {
    font-size: 12px;
    line-height: 28px;
  }

  .footer-img {
    width: 100%;
    margin-bottom: -3%;
    left: 0;
  }

  .footer-bottom {
    margin-top: 5%;
    padding-bottom: 15px;
  }

  .counter-section {
    display: block;
    gap: 20px;
    padding-top: 50px;
    text-align: center;
  }

  .home-about-counter {
    font-size: 40px;
  }

  .counter-1 p {
    font-size: 14px;
    padding-top: 10px;
  }

  .certi-box {
    padding: 20px;
  }

  .certi-container {
    flex-direction: column;
    gap: 20px;
  }

  .certi-details {
    padding: 20px;
  }

  .certi-details h2 {
    font-size: 18px;
  }

  .slider-products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .slider-products-box {
    padding: 10px;
  }

  .slider-product-content-img {
    height: 150px;
  }

  .slider-product-content h1 {
    font-size: 14px;
    padding-top: 15px;
  }

  .homr-products-box {
    padding: 30px 3%;
  }

  .home-pro-grid {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 30px;
    display: block !important;
  }

  .home-pro-box {
    width: 100%;
    padding: 20px;
  }

  .home-pro-box h1 {
    font-size: 18px !important;
  }

  .home-pro-box p {
    font-size: 12px !important;
    line-height: 20px !important;
  }

  .home-pro-img-box {
    height: 200px !important;
    padding: 15px 0;
  }

  .products-section-box {
    padding: 30px 3%;
  }

  .product-box-details-box {
    padding: 20px;
    margin-bottom: 20%;
  }

  .products-box-image {
    height: 180px;
    padding: 15px 0;
  }

  .products-box-content h1 {
    font-size: 16px;
  }

  .products-box-content p {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-page-header {
    height: 250px;
  }

  .contact-office-container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .contact-office-box {
    width: 100%;
    padding: 15px 20px 25px;
  }

  .contact-office-box h1 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .contact-office-box a {
    font-size: 14px;
    line-height: 24px;
  }

  .map-pin i {
    font-size: 18px;
  }

  .map-pin:hover i {
    font-size: 22px;
  }

  .pin-tooltip {
    min-width: 120px;
    padding: 8px 10px;
  }

  .pin-tooltip h4 {
    font-size: 12px;
  }

  .pin-tooltip p {
    font-size: 10px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 24px;
    text-align: center;
  }

  .why-us-box img {
    padding: 20px;
  }

  .home-ind {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 30px;
  }

  .home-ind-name h2 {
    font-size: 16px;
  }

  .center-title {
    margin: 5% 3%;
  }

  .center-title div {
    padding: 25px;
  }

  .center-title h1 {
    font-size: 22px;
  }

  .center-title h2 {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-container .icon {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-container .icon i {
    width: 35px;
    height: 35px;
    font-size: 18px !important;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .header-container {
    padding: 14px 10px;
  }

  .header-logo {
    padding-bottom: 0px;
  }

  .header-nav {
    width: 239px;
    padding: 8px;
  }

  .header-item {
    font-size: 12px;
    margin-top: 0px;
  }

  .slider-text h1 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-left: -10%;
  }

  .slider-para h3 {
    font-size: 13px;
    line-height: 20px;
    padding: 12px;
  }

  .home-about-section {
    padding: 40px 4%;
  }

  .home-about-heading {
    font-size: 31px;
  }

  .home-about-left p {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 220px;
  }

  .home-about-stat h3 {
    font-size: 18px;
  }

  .home-about-stat p {
    font-size: 12px;
  }

  .home-why-container {
    gap: 25px;
  }

  .home-why-circle-wrapper {
    width: 200px;
    height: 200px;
  }

  .home-why-circle {
    width: 180px;
    height: 180px;
  }

  .home-why-item h3 {
    font-size: 16px;
  }

  .home-why-item p {
    font-size: 12px;
  }

  .home-product-content h3 {
    font-size: 16px;
  }

  .home-product-content p {
    font-size: 12px;
  }

  .home-product-image {
    height: 140px;
  }

  .acs {
    padding: 35px 4%;
  }

  .left-box {
    padding: 25px;
  }

  .acs-content-box h1 {
    font-size: 18px;
  }

  .acs-content-box p {
    font-size: 12px;
  }

  .home-cta {
    padding: 110px 4% 40px;
  }

  .home-cta-text {
    padding: 35px 20px 45px;
  }

  .home-cta-text h1 {
    font-size: 24px;
  }

  .home-cta-text p {
    font-size: 12px;
  }

  .footer-container {
    padding: 35px 4% 25px;
  }

  .footer-ul li a {
    font-size: 14px;
    line-height: 32px;
  }

  .footer-title {
    font-size: 23px;
  }

  .home-about-counter {
    font-size: 50px;
  }

  .counter-1 p {
    font-size: 16px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 33px;
    text-align: center;
  }

  .why-us-box img {
    padding: 20px 0px 0px 0px;
  }

  .product-slider-1 {
    margin-bottom: 2%;
    margin-top: 5%;
    overflow: hidden;
    position: relative;
    margin-right: 1%;
    margin-left: 1%;
  }

  .product-slider-2 {
    margin-bottom: 2%;
    margin-top: 5%;
    overflow: hidden;
    position: relative;
    margin-right: 1%;
    margin-left: 1%;
  }

  .slider-products-box {
    padding: 0px;
  }

  .slider-products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .slider-product-content-img {
    height: 150px;
  }

  .slider-product-content h1 {
    font-size: 16px;
  }

  .home-pro-box h1 {
    font-size: 20px !important;
  }

  .home-pro-box p {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .home-pro-img-box {
    height: 250px !important;
  }

  .contact-office-box h1 {
    font-size: 24px;
  }

  .contact-office-box a {
    font-size: 16px;
  }

  .slider-product-content .cta-icon {
    width: 70%;
    margin: 15px auto;
  }

  .home-ind-icon-box img {
    height: 40px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .header-container {
    padding: 16px 12px;
  }

  .header-logo {
    font-size: 20px;
  }

  .header-nav {
    width: 170px;
    padding: 10px;
    gap: 12px;
  }

  .header-item {
    font-size: 13px;
  }

  .slider-text h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .slider-para h3 {
    font-size: 14px;
    line-height: 22px;
    padding: 15px;
  }

  .home-about-section {
    padding: 45px 4%;
  }

  .home-about-heading {
    font-size: 24px;
  }

  .home-about-left p {
    font-size: 13px;
    line-height: 22px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 260px;
  }

  .home-about-stat h3 {
    font-size: 20px;
  }

  .home-about-stat p {
    font-size: 13px;
  }

  .home-why-container {
    gap: 30px;
  }

  .home-why-circle-wrapper {
    width: 220px;
    height: 220px;
  }

  .home-why-circle {
    width: 200px;
    height: 200px;
  }

  .home-why-item h3 {
    font-size: 18px;
  }

  .home-why-item p {
    font-size: 13px;
  }

  .home-product-content h3 {
    font-size: 18px;
  }

  .home-product-content p {
    font-size: 13px;
  }

  .home-product-image {
    height: 160px;
  }

  .acs {
    padding: 40px 4%;
  }

  .left-box {
    padding: 30px;
  }

  .acs-content-box h1 {
    font-size: 20px;
  }

  .acs-content-box p {
    font-size: 13px;
  }

  .home-cta {
    padding: 120px 4% 80px;
  }

  .home-cta-text {
    padding: 40px 25px 50px;
  }

  .home-cta-text h1 {
    font-size: 28px;
  }

  .home-cta-text p {
    font-size: 13px;
  }

  .footer-container {
    padding: 40px 4% 30px;
  }

  .footer-ul li a {
    font-size: 16px;
    line-height: 36px;
  }

  .footer-title {
    font-size: 17px;
  }

  .home-about-counter {
    font-size: 55px;
  }

  .counter-1 p {
    font-size: 18px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 60px;
  }

  .slider-products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .slider-product-content-img {
    height: 200px;
  }

  .slider-product-content h1 {
    font-size: 18px;
  }

  .home-pro-box h1 {
    font-size: 22px;
  }

  .home-pro-box p {
    font-size: 15px;
    line-height: 24px;
  }

  .home-pro-img-box {
    height: 280px !important;
  }

  .contact-office-box h1 {
    font-size: 28px;
  }

  .contact-office-box a {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .header-container {
    padding: 8px 15px;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-nav {
    width: 180px;
    padding: 12px;
    gap: 15px;
  }

  .slider-text h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .slider-para h3 {
    font-size: 15px;
    line-height: 24px;
  }

  .home-about-section {
    padding: 50px 5%;
  }

  .home-about-heading {
    font-size: 26px;
  }

  .home-about-left p {
    font-size: 14px;
    line-height: 24px;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 300px;
  }

  .home-about-stat h3 {
    font-size: 22px;
  }

  .home-about-stat p {
    font-size: 14px;
  }

  .home-why-circle-wrapper {
    width: 240px;
    height: 240px;
  }

  .home-why-circle {
    width: 220px;
    height: 220px;
  }

  .home-why-item h3 {
    font-size: 19px;
  }

  .home-why-item p {
    font-size: 14px;
  }

  .home-product-content h3 {
    font-size: 19px;
  }

  .home-product-content p {
    font-size: 14px;
  }

  .home-product-image {
    height: 180px;
  }

  .acs {
    padding: 45px 5%;
  }

  .left-box {
    padding: 35px;
  }

  .acs-content-box h1 {
    font-size: 22px;
  }

  .acs-content-box p {
    font-size: 14px;
  }

  .home-cta {
    padding: 140px 5% 90px;
  }

  .home-cta-text {
    padding: 45px 30px 55px;
  }

  .home-cta-text h1 {
    font-size: 32px;
  }

  .home-cta-text p {
    font-size: 14px;
  }

  .footer-container {
    padding: 45px 5% 35px;
  }

  .footer-ul li a {
    font-size: 18px;
    line-height: 40px;
  }

  .footer-title {
    font-size: 18px;
  }

  .home-about-counter {
    font-size: 60px;
  }

  .counter-1 p {
    font-size: 20px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 26px;
    text-align: center;
  }

  .slider-products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .slider-product-content-img {
    height: 165px;
  }

  .slider-product-content h1 {
    font-size: 20px;
  }

  .home-pro-box h1 {
    font-size: 24px;
  }

  .home-pro-box p {
    font-size: 16px;
    line-height: 26px;
  }

  .home-pro-img-box {
    height: 320px !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .header-container {
    padding: 10px 20px;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-logo img {
    height: 50px;
  }

  .header-nav {
    position: absolute;
    top: 60px;
    right: -2px;
    background: #800000;
    flex-direction: column;
    width: 220px;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 201;
  }

  .header-nav.active {
    transform: translateX(0);

  }

  .header-item {
    font-size: 15px;
    color: #ffffff;
  }

  .header-toggle {
    display: block;
    color: #fff;
    font-size: 24px;
  }

  .slider-container {
    height: 450px;
  }

  .slider-text h1 {
    font-size: 50px;
    letter-spacing: 4px;
  }

  .slider-para {
    width: 85%;
    padding: 15px;
  }

  .slider-para h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .home-about-section {
    padding: 0px 5%;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-left {
    width: 100%;
    margin-top: 0;
  }

  .home-about-heading {
    font-size: 32px;
  }

  .home-about-left p {
    font-size: 15px;
    line-height: 26px;
    width: 100%;
  }

  .home-about-image-box {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .home-about-stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 8%;
  }

  .home-about-stat {
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: none;
  }

  .home-about-stat h3 {
    font-size: 28px;
  }

  .home-about-stat p {
    font-size: 16px;
  }

  .home-about-stat::before,
  .home-about-stat::after {
    display: none;
  }

  .has1,
  .has2,
  .has3,
  .has4 {
    margin-top: 0;
  }

  .home-why-section {
    padding: 50px 5%;
  }

  .home-why-container {
    flex-direction: column;
    gap: 50px;
    height: auto;
  }

  .home-why-left,
  .home-why-right {
    width: 100%;
  }

  .home-why-circle-wrapper {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .home-why-circle {
    width: 260px;
    height: 260px;
    top: 10px;
    left: 10px;
  }

  .home-why-item h3 {
    font-size: 22px;
  }

  .home-why-item p {
    font-size: 15px;
    line-height: 26px;
  }

  .why-us-heading-box {
    margin-top: 3%;
  }

  .home-product-section {
    flex-direction: column;
    padding: 0 5%;
  }

  .home-product-left {
    width: 100%;
    position: static;
    padding-top: 30px;
  }

  .home-product-heading {
    font-size: 32px;
    text-align: center;
  }

  .home-product-right {
    width: 100%;
    padding: 30px 0;
    gap: 30px;
  }

  .home-product-item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
  }

  .home-product-content {
    width: 100%;
    text-align: center;
  }

  .home-product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .home-product-content p {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
  }

  .home-product-image {
    width: 100%;
    height: 200px;
  }

  .acs {
    padding: 50px 5%;
  }

  .row {
    flex-direction: column;
    gap: 20px;
  }

  .left-box {
    margin-right: 0;
    padding: 40px;
  }

  .acs-content-box {
    flex-direction: column;
    gap: 20px;
  }

  .acs-text-box {
    width: 100%;
  }

  .acs-content-box h1 {
    font-size: 24px;
  }

  .acs-content-box p {
    font-size: 14px;
    line-height: 24px;
  }

  .clients-section {
    padding: 50px 5%;
  }

  .clients-title {
    font-size: 28px;
  }

  .clients-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .clients-marquee-track {
    gap: 40px;
  }

  .clients-circle {
    width: 100px;
    height: 80px;
  }

  .home-cta-text {
    padding: 50px 50px 60px;
    border-radius: 25px;
  }

  .home-cta-text h1 {
    font-size: 36px;
  }

  .home-cta-text p {
    font-size: 15px;
    line-height: 26px;
  }

  .home-ind-box {
    padding: 50px 5%;
    margin-left: 0;
    border-radius: 100px 0 0 100px;
  }

  .home-ind-container {
    flex-direction: column;
    gap: 30px;
  }

  .ind-about-left,
  .ind-about-right {
    width: 100%;
  }

  .ind-about-left {
    margin-top: 0;
  }

  .ind-para {
    font-size: 15px;
    line-height: 26px;
  }

  .ind-logo-slider-1 {
    animation-duration: 200s;
  }

  .ind-logo-img-box {
    height: 180px;
    margin-right: 4%;
  }

  .home-testi-section {
    padding: 60px 5%;
  }

  .home-testi-title {
    font-size: 26px;
  }

  .home-testi-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .home-testi-container {
    padding: 40px 30px 30px;
    margin-top: 3%;
  }

  .home-testi-content {
    flex-direction: column;
    gap: 25px;
  }

  .home-testi-image-wrap img {
    width: 130px;
    height: 130px;
  }

  .home-testi-blob {
    width: 150px;
    height: 150px;
    top: -15px;
    left: -15px;
  }

  .home-testi-text {
    max-width: 100%;
    text-align: center;
  }

  .home-testi-text p {
    font-size: 14px;
    line-height: 24px;
  }

  .home-testi-text h3 {
    font-size: 18px;
  }

  .home-testi-arrow {
    width: 40px;
    height: 40px;
  }

  .home-testi-prev {
    left: -30px;
  }

  .home-testi-next {
    right: -30px;
  }

  .footer-container {
    padding: 50px 5% 40px;
  }

  .row {
    flex-direction: column;
    gap: 25px;
  }

  .col-md-3,
  .col-md-4,
  .col-md-5,
  .footer-bottom {
    width: 100%;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-ul li a {
    font-size: 16px;
    line-height: 40px;
  }

  .footer-img {
    width: 100%;
    margin-bottom: -5%;
    left: -57px;
  }

  .footer-bottom {
    margin-top: 6%;
  }

  .counter-section {
    display: block;
    gap: 40px;
    padding-top: 80px;
    text-align: center;
  }

  .home-about-counter {
    font-size: 60px;
  }

  .counter-1 p {
    font-size: 18px;
    padding-top: 12px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 32px;
    text-align: center;
  }

  .certi-box {
    padding: 50px 5% 50px !important;
  }

  .certi-container {
    flex-direction: column;
    gap: 30px;
  }

  .certi-details {
    padding: 30px;
  }

  .certi-details h2 {
    font-size: 24px;
  }

  .slider-products-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .slider-products-box {
    padding: 15px;
  }

  .slider-product-content-img {
    height: 150px;
  }

  .slider-product-content h1 {
    font-size: 16px;
    padding-top: 18px;
  }

  .homr-products-box {
    padding: 50px 5%;
  }

  .home-pro-grid {
    padding: 40px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .home-pro-box {
    width: 100%;
    padding: 25px;
  }

  .home-pro-box h1 {
    font-size: 20px;
  }

  .home-pro-box p {
    font-size: 14px;
    line-height: 24px;
  }

  .home-pro-img-box {
    height: 400px !important;
    padding: 20px 0;
  }

  .home-ind {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 40px;
  }

  .home-ind-name h2 {
    font-size: 15px;
  }

  .products-section-box {
    padding: 50px 5%;
  }

  .product-box-details-box {
    padding: 25px;
    margin-bottom: 15%;
  }

  .products-box-image {
    height: 220px;
    padding: 20px 0;
  }

  .products-box-content h1 {
    font-size: 18px;
  }

  .products-box-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .center-title {
    margin: 5% 5%;
  }

  .center-title div {
    padding: 35px;
  }

  .center-title h1 {
    font-size: 28px;
  }

  .center-title h2 {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-page-header {
    height: 350px;
  }

  .contact-office-container {
    flex-direction: column;
    gap: 30px;
    padding: 50px 20px;
  }

  .contact-office-box {
    width: 100%;
    padding: 30px;
  }

  .contact-office-box h1 {
    font-size: 28px;
    padding-bottom: 12px;
  }

  .contact-office-box a {
    font-size: 18px;
    line-height: 30px;
  }

  .map-pin i {
    font-size: 22px;
  }

  .home-product-section-new {
    padding: 50px 50px;
  }

  .map-pin:hover i {
    font-size: 28px;
  }

  .pin-north {
    top: 25%;
    left: 30%;
  }

  .pin-south {
    top: 42%;
    left: 55%;
  }

  .pin-tooltip {
    min-width: 140px;
    padding: 10px 12px;
  }

  .pin-tooltip h4 {
    font-size: 13px;
  }

  .pin-tooltip p {
    font-size: 11px;
  }

  .footer-container .icon {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
  }

  .about-container {
    padding: 50px 5%;
  }

  .header-item:hover .header-icon {
    top: 1px;
    left: 9%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-container {
    padding: 10px 40px;
  }

  .header-nav {
    gap: 25px;
  }

  .header-item {
    font-size: 10px;
  }

  .slider-container {
    height: 80vh;
  }

  .slider-text h1 {
    font-size: 72px;
    letter-spacing: 6px;
  }

  .slider-para {
    width: 75%;
  }

  .slider-para h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .home-about-section {
    padding: 50px 6%;
  }



  .home-about-heading {
    font-size: 42px;
  }

  .home-about-left p {
    font-size: 16px;
    line-height: 28px;
  }

  .home-about-image-box {
    width: 350px;
  }

  .home-about-stats {
    margin-top: 12%;
  }

  .home-about-stat h3 {
    font-size: 34px;
  }

  .home-about-stat p {
    font-size: 18px;
  }

  .home-why-section {
    height: auto;
    padding: 50px 6%;
  }

  .home-why-container {
    gap: 60px;
  }

  .home-why-circle-wrapper {
    width: 400px;
    height: 400px;
  }

  .home-product-section-new {
    padding: 50px 10px;
  }

  .home-why-circle {
    width: 380px;
    height: 380px;
  }

  .home-why-item h3 {
    font-size: 24px;
  }

  .home-why-item p {
    font-size: 16px;
    line-height: 28px;
  }

  .home-product-section {
    padding: 0 6%;
  }

  .home-product-left {
    width: 42%;
  }

  .home-product-right {
    width: 58%;
  }

  .home-product-heading {
    font-size: 36px;
  }

  .home-product-item {
    padding: 15px 30px;
  }

  .home-product-content h3 {
    font-size: 22px;
  }

  .home-product-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .home-product-image {
    height: 250px;
  }

  .acs {
    padding: 70px 6%;
  }

  .left-box {
    padding: 60px;
  }

  .acs-content-box h1 {
    font-size: 28px;
  }

  .acs-content-box p {
    font-size: 15px;
    line-height: 26px;
  }

  .clients-section {
    padding: 50px 6%;
  }

  .clients-title {
    font-size: 32px;
  }

  .clients-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .clients-marquee-track {
    gap: 50px;
  }

  .clients-circle {
    width: 140px;
    height: 110px;
  }

  .home-cta {
    padding: 50px 6% 50px;
  }

  .home-cta-text {
    padding: 60px 70px 80px;
  }

  .home-cta-text-right {
    padding: 0px;
  }

  .home-cta-text h1 {
    font-size: 40px;
  }

  .home-cta-text p {
    font-size: 17px;
    line-height: 28px;
  }

  .home-ind-box {
    padding: 20px 0% 30px 0%;
    margin-left: 10%;
    border-radius: 95px 0 0 95px;
  }

  .home-ind-box::after {
    display: none;
  }

  .ind-para {
    font-size: 16px;
    line-height: 28px;
  }

  .ind-logo-img-box {
    height: 220px;
  }

  .home-testi-section {
    padding: 80px 6%;
  }

  .home-testi-title {
    font-size: 28px;
  }

  .home-testi-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .home-testi-container {
    padding: 50px 40px 40px;
  }

  .home-testi-text p {
    font-size: 15px;
    line-height: 26px;
  }

  .footer-container {
    padding: 70px 6% 50px;
  }

  .row {
    gap: 30px;
  }

  .footer-title {
    font-size: 22px;
  }

  .footer-ul li a {
    font-size: 18px;
    line-height: 42px;
  }

  .footer-img {
    width: 80%;
    left: 0;
    margin-bottom: -15%;
  }

  .counter-section {
    gap: 60px;
    padding-top: 80px;
  }

  .home-about-counter {
    font-size: 65px;
  }

  .counter-1 p {
    font-size: 20px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 100px;
  }

  .certi-box {
    padding: 80px 6%;
  }

  .certi-container {
    gap: 40px;
  }

  .certi-details {
    padding: 40px;
  }

  .certi-details h2 {
    font-size: 30px;
  }

  .slider-products-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .slider-products-box {
    padding: 18px;
  }

  .slider-product-content-img {
    height: 200px;
  }

  .slider-product-content h1 {
    font-size: 18px;
  }

  .homr-products-box {
    padding: 70px 2% !important;
  }

  .home-pro-grid {
    padding: 50px 0;
    gap: 10px !important;

  }

  .home-pro-box {
    width: 410px;
  }

  .home-pro-box h1 {
    font-size: 24px !important;
  }

  .home-pro-box p {
    font-size: 16px !important;
    line-height: 26px;
  }

  .home-pro-img-box {
    height: 380px !important;
  }

  .home-ind {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 0px;
  }

  .home-ind-name h2 {
    font-size: 12px;
  }

  .products-section-box {
    padding: 70px 6%;
  }

  .products-box-image {
    height: 260px;
  }

  .products-box-content h1 {
    font-size: 20px;
  }

  .products-box-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .contact-page-header {
    height: 400px;
  }

  .contact-office-container {
    gap: 40px;
    padding: 70px 40px;
  }

  .contact-office-box {
    width: 48%;
    padding: 30px;
  }

  .contact-office-box h1 {
    font-size: 32px;
  }

  .contact-office-box a {
    font-size: 18px;
  }

  .pin-north {
    top: 26%;
    left: 35%;
  }

  .pin-south {
    top: 43%;
    left: 65%;
  }

  .about-container {
    padding: 70px 6%;
  }

  .header-text {
    font-size: 17px;

  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .header-container {
    padding: 15px 50px;
  }

  .header-nav {
    gap: 30px;
  }

  .header-item {
    font-size: 16px;
  }

  .slider-text h1 {
    font-size: 85px;
    letter-spacing: 8px;
  }

  .slider-para {
    width: 70%;
  }

  .home-about-section {
    padding: 100px 5%;
  }


  .home-about-heading {
    font-size: 48px;
  }

  .home-about-left p {
    font-size: 17px;
    line-height: 28px;
    width: 95%;
  }

  .home-about-image-box {
    width: 400px;
  }

  .home-about-stats {
    margin-top: 15%;
  }

  .home-about-stat h3 {
    font-size: 38px;
  }

  .home-about-stat p {
    font-size: 20px;
  }

  .home-why-section {
    height: auto;
    padding: 50px 5%;
  }

  .home-why-container {
    gap: 80px;
  }



  .home-why-circle-wrapper {
    width: 450px;
    height: 450px;
  }

  .home-why-circle {
    width: 430px;
    height: 430px;
  }

  .home-why-item h3 {
    font-size: 26px;
  }

  .home-why-item p {
    font-size: 17px;
    line-height: 28px;
  }

  .home-product-section {
    padding: 0 5%;
  }

  .home-product-left {
    width: 40%;
  }

  .home-product-right {
    width: 60%;
  }

  .home-product-heading {
    font-size: 38px;
  }

  .home-product-item {
    padding: 15px 35px;
  }

  .home-product-content h3 {
    font-size: 24px;
  }

  .home-product-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .home-product-image {
    height: 280px;
  }

  .acs {
    padding: 80px 5%;
  }

  .left-box {
    padding: 70px;
  }

  .acs-content-box h1 {
    font-size: 30px;
  }

  .acs-content-box p {
    font-size: 16px;
    line-height: 28px;
  }

  .clients-section {
    padding: 50px 5%
  }

  .clients-marquee-track {
    gap: 55px;
  }

  .clients-circle {
    width: 160px;
    height: 120px;
  }

  .home-cta {
    padding: 50px 5% 50px;
  }

  .home-cta-text {
    padding: 65px 75px 85px;
  }

  .home-cta-text-right {
    padding: 0px;
  }

  .home-cta-text h1 {
    font-size: 44px;
  }

  .home-cta-text p {
    font-size: 18px;
    line-height: 30px;
  }

  .home-ind-box {
    padding: 50px 5%;
    margin-left: 5%;
  }

  .ind-para {
    font-size: 17px;
    line-height: 28px;
  }

  .home-testi-section {
    padding: 90px 5%;
  }

  .home-testi-container {
    padding: 55px 45px 45px;
  }

  .home-testi-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-container {
    padding: 80px 5% 50px;
  }

  .row {
    gap: 35px;
  }

  .footer-ul li a {
    font-size: 20px;
    line-height: 44px;
  }

  .footer-title {
    font-size: 24px;
  }

  .home-about-counter {
    font-size: 72px;
  }

  .counter-1 p {
    font-size: 22px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 55px;
  }

  .certi-box {
    padding: 100px 5%;
  }

  .certi-details {
    padding: 45px;
  }

  .certi-details h2 {
    font-size: 34px;
  }

  .why-us-box img {
    width: 800px;
    padding: 50px 0px 0px 0px;
  }

  .slider-products-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .homr-products-box {
    padding: 49px 2% !important;
  }

  .home-pro-grid {
    gap: 22px !important;
  }

  .home-pro-box h1 {
    font-size: 26px;
  }

  .home-pro-box p {
    font-size: 18px;
    line-height: 28px;
  }

  .home-pro-img-box {
    height: 420px !important;
  }

  .home-ind {
    gap: 50px;
  }

  .products-section-box {
    padding: 80px 5%;
  }

  .products-box-image {
    height: 280px;
  }

  .contact-office-container {
    padding: 80px 50px;
    gap: 50px;
  }

  .contact-office-box {
    padding: 35px;
  }

  .contact-office-box h1 {
    font-size: 34px;
  }

  .about-container {
    padding: 80px 5%;
  }

  .center-title h1 {
    font-size: 32px;
  }

  .center-title h2 {
    line-height: 11px;
    font-size: 15px;
  }

  .product-slider-1 {
    margin-right: 5%;
    margin-left: 5%;
  }

  .product-slider-2 {
    margin-right: 5%;
    margin-left: 5%;
  }

  .product-slider-1 .slider-products-box {
    flex: 0 0 auto;
    width: 265px;
    margin-right: 15px;
  }

  .product-slider-2 .slider-products-box {
    flex: 0 0 auto;
    width: 265px;
    margin-right: 15px;
  }

  .product-slider-2 .slider-products-box {
    flex: 0 0 auto;
    width: 265px;
    margin-right: 15px;
  }

  .slider-product-content .cta-icon {
    width: 80%;
    margin: 5px auto;
  }

  .slider-product-content h1 {
    font-size: 16px;
  }

  .slider-product-content .cta-icon {
    padding: 5px 20px;
    width: 73%;
    margin: 5px auto;
    font-size: 12px
  }

  .slider-product-content-img {
    height: 160px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .header-container {
    padding: 7px 60px;
  }

  .header-nav {
    gap: 35px;
  }

  .header-item {
    font-size: 17px;
  }

  .slider-text h1 {
    font-size: 100px;
    letter-spacing: 10px;
  }

  .slider-para {
    width: 65%;
  }

  .home-about-section {
    padding: 0px 6%;
  }

  .home-about-heading {
    font-size: 50px;
  }

  .home-about-left p {
    font-size: 18px;
    line-height: 30px;
    width: 99%;
  }

  .home-about-image-box {
    width: 500px;
  }

  .home-about-stats {
    margin-top: 18%;
  }

  .home-about-stat h3 {
    font-size: 42px;
  }

  .home-about-stat p {
    font-size: 22px;
  }

  .home-why-container {
    gap: 100px;
  }

  .home-why-circle-wrapper {
    width: 500px;
    height: 500px;
  }

  .home-why-circle {
    width: 480px;
    height: 480px;
  }

  .home-why-item h3 {
    font-size: 28px;
  }

  .home-why-item p {
    font-size: 18px;
    line-height: 30px;
  }

  .home-product-left {
    width: 38%;
  }

  .home-product-right {
    width: 62%;
  }

  .home-product-heading {
    font-size: 40px;
  }

  .home-product-item {
    padding: 15px 40px;
  }

  .home-product-content h3 {
    font-size: 26px;
  }

  .home-product-content p {
    font-size: 16px;
    line-height: 28px;
  }

  .home-product-image {
    height: 300px;
  }

  .acs {
    padding: 100px 8%;
  }

  .left-box {
    padding: 80px;
  }

  .acs-content-box h1 {
    font-size: 34px;
  }

  .acs-content-box p {
    font-size: 17px;
    line-height: 30px;
  }

  .clients-section {
    padding: 50px 6%;
  }

  .clients-marquee-track {
    gap: 60px;
    margin-top: 3%;
  }

  .clients-circle {
    width: 170px;
    height: 130px;
  }

  .home-cta {
    padding: 50px 8% 50px;
  }

  .home-cta-text {
    padding: 75px 85px 95px;
  }

  .home-cta-text h1 {
    font-size: 50px;
  }

  .home-cta-text p {
    font-size: 20px;
    line-height: 32px;
  }

  .home-ind-box {
    padding: 50px 70px 60px 90px;

    margin-left: 6%;
  }

  .ind-para {
    font-size: 19px;
    line-height: 30px;
  }

  .home-testi-section {
    padding: 100px 6%;
  }

  .home-testi-container {
    padding: 65px 55px 50px;
  }

  .home-testi-text p {
    font-size: 17px;
    line-height: 30px;
  }

  .footer-container {
    padding: 100px 8% 60px;
  }

  .row {
    gap: 40px;
  }

  .footer-ul li a {
    font-size: 22px;
    line-height: 48px;
  }

  .footer-title {
    font-size: 26px;
  }

  .home-about-counter {
    font-size: 78px;
  }

  .counter-1 p {
    font-size: 24px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 60px;
  }

  .why-us-box img {
    width: 900px;
    padding: 50px;
  }

  .product-slider-1 {
    margin-right: 10%;
    margin-left: 10%;
  }

  .home-product-section-new {
    padding: 50px 25px;
  }

  .clients-marquee {
    position: relative;
    width: 100%;
    margin-top: 3%;
    margin-bottom: 1%;
    overflow: hidden;
  }

  .home-ind {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 17px;
    padding-top: 6%;
  }

  .home-ind-name h2 {
    font-size: 16px;
  }
}


.certi-box {
  padding: 50px 8%;
}

.certi-details {
  padding: 50px;
}

.certi-details h2 {
  font-size: 36px;
}

.homr-products-box {
  padding: 0px 8%;
}

.home-pro-grid {
  gap: 30px;
}

.home-pro-box h1 {
  font-size: 28px;
}

.home-pro-box p {
  font-size: 15px;
  line-height: 22px;
  padding-top: 1%;
}

.home-pro-img-box {
  object-fit: cover;
  height: 368px;
}

.contact-office-container {
  padding: 100px 80px;
  gap: 60px;
}

.contact-office-box {
  width: 48%;
  padding: 40px;
}

.contact-office-box h1 {
  font-size: 36px;
}

.about-container {
  padding: 100px 8%;
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .header-container {
    padding: 10px 80px;

  }

  .header-nav {
    gap: 40px;
  }

  .header-item {
    font-size: 18px;
  }

  .slider-text h1 {
    font-size: 120px;
    letter-spacing: 12px;
  }

  .slider-para {
    width: 60%;
  }

  .home-about-section {
    padding: 0px 8%;
  }

  .home-about-container {
    gap: 80px;
  }

  .home-about-heading {
    font-size: 60px;
  }

  .home-about-left p {
    font-size: 16px;
    line-height: 32px;
  }

  .home-about-image-box {
    width: 600px;
  }

  .home-about-stats {
    margin-top: 20%;
  }

  .home-about-stat h3 {
    font-size: 48px;
  }

  .home-about-stat p {
    font-size: 24px;
  }

  .home-why-container {
    gap: 120px;
  }

  .home-why-circle-wrapper {
    width: 550px;
    height: 550px;
  }

  .home-why-circle {
    width: 520px;
    height: 520px;
  }

  .home-why-item h3 {
    font-size: 32px;
  }

  .home-why-item p {
    font-size: 20px;
    line-height: 34px;
  }

  .home-product-heading {
    font-size: 45px;
  }

  .home-product-content h3 {
    font-size: 30px;
  }

  .home-product-content p {
    font-size: 18px;
    line-height: 30px;
  }

  .home-product-image {
    height: 350px;
  }

  .acs {
    padding: 120px 10%;
  }

  .left-box {
    padding: 100px;
  }

  .acs-content-box h1 {
    font-size: 40px;
  }

  .acs-content-box p {
    font-size: 19px;
    line-height: 34px;
  }

  .clients-circle {
    width: 200px;
    height: 150px;
  }

  .home-cta-text {
    padding: 90px 100px 120px;
  }

  .home-cta-text-right {
    padding: 0px;
  }

  .home-cta-text h1 {
    font-size: 60px;
  }

  .home-cta-text p {
    font-size: 22px;
    line-height: 36px;
  }

  .footer-container {
    padding: 120px 10% 80px;
  }


  .footer-title {
    font-size: 28px;
  }

  .home-about-counter {
    font-size: 80px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 60px;
  }
}


@media (min-width: 1921px) {
  .header-container {
    padding: 21px 100px;
  }

  .header-nav {
    gap: 50px;
  }

  .header-item {
    font-size: 19px;
  }

  .slider-text h1 {
    font-size: 140px;
    letter-spacing: 15px;
  }

  .slider-para {
    width: 55%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .home-about-section {
    padding: 150px 10%;
  }

  .home-about-heading {
    font-size: 80px;
  }

  .home-about-left p {
    font-size: 22px;
    line-height: 36px;
  }

  .home-about-image-box {
    width: 700px;
  }

  .home-about-stat h3 {
    font-size: 56px;
  }

  .home-about-stat p {
    font-size: 28px;
  }

  .home-why-circle-wrapper {
    width: 600px;
    height: 600px;
  }

  .home-why-circle {
    width: 570px;
    height: 570px;
  }

  .home-why-item h3 {
    font-size: 36px;
  }

  .home-why-item p {
    font-size: 22px;
    line-height: 38px;
  }

  .home-product-heading {
    font-size: 52px;
  }

  .home-product-content h3 {
    font-size: 34px;
  }

  .home-product-content p {
    font-size: 20px;
    line-height: 34px;
  }

  .home-product-image {
    height: 400px;
  }

  .acs {
    padding: 150px 15%;
  }

  .left-box {
    padding: 120px;
  }

  .acs-content-box h1 {
    font-size: 48px;
  }

  .home-cta {
    padding: 0px 15% 250px;
  }

  .home-cta-text {
    padding: 100px 120px 140px;
  }

  .home-cta-text h1 {
    font-size: 72px;
  }

  .footer-container {
    padding: 150px 15% 100px;
  }

  .home-about-counter {
    font-size: 100px;
  }

  .counter-1 p {
    font-size: 30px;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 80px;
  }


}

@media (orientation: landscape) and (max-height: 500px) {
  .slider-container {
    height: 100vh;
    min-height: auto;
  }

  .slider-text {
    top: 50%;
  }

  .slider-text h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .slider-para h3 {
    font-size: 12px;
    line-height: 16px;
    padding: 8px;
  }

  .home-about-section {
    padding: 70px 5%;
  }

  .home-about-container {
    flex-direction: row;
  }

  .home-about-left {
    width: 120%;
    margin-top: 0;
  }

  .home-about-image-box {
    width: 40%;
    max-width: 200px;
  }

  .home-about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 5%;
    gap: 15px;
  }

  .home-about-stat {
    width: 45%;
  }

  .home-why-container {
    flex-direction: row;
  }

  .home-why-circle-wrapper {
    width: 180px;
    height: 180px;
  }

  .home-why-circle {
    width: 160px;
    height: 160px;
  }

  .footer-container {
    padding: 30px 5% 20px;
  }

  .footer-img {
    margin-bottom: -10%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-about-container {
    flex-direction: row;
  }

  .home-about-left,
  .home-about-image-box {
    width: 170%;
  }

  .home-about-image-box {
    max-width: 400px;
    margin: 0 auto;
  }

  .home-about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .home-about-stat {
    width: 40%;
    text-align: center;
  }

  .home-why-container {
    flex-direction: column;
  }

  .home-why-left,
  .home-why-right {
    width: 100%;
  }

  .home-product-section {
    flex-direction: column;
  }

  .home-product-left,
  .home-product-right {
    width: 100%;
  }

  .bold-heading-text,
  .why-us-h {
    font-size: 38px;
  }

  .why-us-box img {
    width: 700px;
    padding: 50px 0px 0px 0px;
  }

  .wu-process {
    padding: 40px 0px;
  }

  .wu-step-icon {
    width: 70px;
    height: 70px;
  }
}


@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .home-about-section {
    background-image: url('../Images/home/about-bg.jpg');
    background-size: cover;
  }

  .slider-text h1 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .home-about-heading {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .home-certi-box {
    gap: 50px;
  }

}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .home-about-image-box {
    animation: none;
  }

  .clients-marquee-track {
    animation: none;
  }

  .wheel {
    animation: none;
  }

  .slider-text.show {
    animation: none;
    opacity: 1;
  }
}


@media print {
  .header-container {
    position: static;
    box-shadow: none;
    background: #fff;
  }

  .header-toggle,
  .slider-container,
  .home-why-image,
  .clients-marquee {
    display: none;
  }

  .home-about-section,
  .home-why-section,
  .home-product-section,
  .clients-section,
  .home-cta,
  .home-testi-section,
  .footer-container {
    padding: 20px;
  }

  .home-about-image-box img,
  .home-product-image img {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .home-about-section::before,
  .home-about-section::after {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}

@media (prefers-color-scheme: dark) {
  .home-about-section {
    background-color: #ffffff;
  }

  .home-about-section::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  }
}


@media (hover: none) and (pointer: coarse) {
  .home-product-item {
    padding: 20px;
  }

  .clients-circle {
    cursor: pointer;
  }

  .home-testi-arrow {
    width: 50px;
    height: 50px;
  }

  .map-pin i {
    font-size: 28px;
  }
}

@media (hover: fine) {
  .home-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .clients-circle:hover {
    transform: scale(1.05);
  }

  .header-item:hover {
    color: #d6d6d6;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .ind-about-left {
    margin-top: 11%;
    margin-right: 5%;
    margin-left: -5%;
  }

  .footer-img {
    left: 0%;
    margin-top: -17%;
  }
}

@media (max-width: 1700px) {
  .pin-south {
    top: 43%;
    left: 80%;
  }


  .pin-kolkata-y {
    top: 45%;
    left: 80%;
  }

  .pin-surat {
    top: 44%;
    left: 30%;
  }

  .pin-rajkot {
    top: 47%;
    left: 28%;
  }

  .pin-vapi {
    top: 48%;
    left: 32%;
  }

  .pin-vadodara {
    top: 44%;
    left: 25%;
  }

  .pin-latur {
    top: 55%;
    left: 40%;
  }

  .pin-pune {
    top: 58%;
    left: 36%;
  }

  .pin-mumbai {
    top: 54%;
    left: 35%;
  }

  .pin-goa {
    top: 65%;
    left: 38%;
  }

  .pin-bangalore {
    top: 70%;
    left: 40%;
  }

  .pin-chennai {
    top: 80%;
    left: 49%;
  }

  .pin-coimbatore {
    top: 76%;
    left: 48%;
  }

  .pin-che {
    top: 77%;
    left: 52%
  }

  .pin-ajmer {
    top: 38%;
    left: 34%;
  }

  .pin-jodhpur {
    top: 34%;
    left: 36%;
  }

  .pin-jaipur-y {
    top: 36%;
    left: 29%;
  }

  .pin-delhi-y {
    top: 28%;
    left: 41%;
  }

  .pin-bhiwadi {
    top: 27%;
    left: 41%;
  }

  .pin-ludhiana {
    top: 21%;
    left: 38%;
  }

  .pin-ludhiana-y {
    top: 23%;
    left: 38%;
  }

  .colour-dot-info {
    padding-left: 54%;
    width: 150%;
  }

  .sas {
    position: absolute;
    margin-top: 29%;
    color: #fff;
  }
}


@media(max-width:567px) {
  .center-title div {
    padding: 10px;
    border-radius: 20px;
    color: #fff;
  }

  .center-title {
    margin: 4% 4%;
  }

  .center-title h1 {
    font-size: 14px;
  }

  .center-title h2 {
    line-height: 17px;
    font-size: 11px;
  }

  .slider-product-content .cta-icon {
    padding: 5px;
  }

  .home-product-section-new {
    padding: 30px 20px 40px 20px;
  }

  .home-ind {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-ind-name h2 {
    font-size: 8px;
    padding-top: 0px;
  }

  .pin-ahm {
    top: 44%;
    left: 34%;
  }

  .map-icon {
    font-size: 20px;
    color: #fff;
  }

  .home-ind {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 0px;
    padding-top: 5%;
  }


  .pin-daman {
    top: 49%;
    left: 28%;
  }

  .pin-jaipur {
    top: 32%;
    left: 33%;
  }

  .pin-delhi-y {
    top: 31%;
    left: 41%;
  }

  .pin-ludhiana-y {
    top: 25%;
    left: 40%;
  }

  .pin-ludhiana {
    top: 24%;
    left: 40%;
  }

  .footer-container .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: absolute;
    right: 14px;
    top: 0%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 17px;
  }

  .dots-info {
    margin-top: -50%;
  }

  .colour-dot-info h1 {
    font-size: 10px;
    line-height: 3px;
  }

  .footer-img {
    width: 100%;
    left: 1%;
    margin-bottom: -9%;
    margin-top: 6%;
  }

  .sas {
    position: relative;
    margin-top: 42%;
    color: #fff;
    height: fit-content;
  }

  .sas h1 {
    font-size: 23px;
  }

  .f2-footer-img-box {
    height: 500px;
    position: relative;
    margin-left: -7%;
    margin-top: -1%;
    padding: 29px;

  }

  .sas h6 {
    font-size: 14px;
    padding-bottom: 9px;
    padding-top: 5px;
  }

  .pin-kolkata-y {
    top: 45%;
    left: 73%;
  }

  .pin-south {
    top: 43%;
    left: 71%;
  }

  .pin-chennai {
    top: 71%;
    left: 49%;
  }

  .pin-che {
    top: 72%;
    left: 46%;
  }

  .home-certi-logo-container {
    width: 60px !important;
  }

  .home-certi-box {
    padding-left: 10px !important;
  }

  .cta-icon {
    padding: 5px;
    font-size: 10px;
  }

  .header-item:hover .header-icon {
    top: 1px;
    left: 9%;
  }
}

.cboc {
  padding: 70px 150px;
}

.branch-office-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.branch-office-detail-box {
  background: #f5f5f5;
  border-left: 1px solid #800000;
  padding: 30px 30px 30px 30px;
}

.branch-office-detail-box h2 {
  font-family: "Host Grotesk", sans-serif;
  font-weight: bold;
  font-size: 35px;
  padding-bottom: 20px;
  color: #800000;
  margin-top: 0px;
}

.branch-office-detail-box a {
  color: #000;
  font-size: 18px;
  font-family: "Host Grotesk", sans-serif;
}

.branch-office-detail-box a:hover {
  text-decoration: none;
  color: #800000;
}

.branch-office-detail-box p {
  padding-bottom: 1px;
  line-height: 29px;
}

.branch-office-detail-box img {
  height: 320px;
  padding-top: 30px;
  text-align: center;
}


.contact-from-box {
  padding: 50px 170px;
}

.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #800000, #a52a2a, #800000);
}


.contact-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-title h2 {
  font-size: 91px;
  line-height: 1.2;
  color: #800000;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.contact-form-title p {
  color: #666;
  font-size: 16px;
  font-family: "Host Grotesk", sans-serif;
}

.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 60%;
  margin: 0 auto;
}

.contact-input-group {
  position: relative;
}

.contact-input-group.contact-textarea-group {
  grid-column: span 2;
}

.contact-floating-input {
  position: relative;
}

.contact-floating-input input,
.contact-floating-input textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-family: "Host Grotesk", sans-serif;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.contact-floating-input textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-floating-input input:focus,
.contact-floating-input textarea:focus {
  border-color: #800000;
  box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.contact-floating-input label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: "Host Grotesk", sans-serif;
  background: transparent;
  padding: 0 5px;
}

.contact-floating-input textarea~label {
  top: 20px;
  transform: translateY(0);
}

.contact-floating-input input:focus~label,
.contact-floating-input input:not(:placeholder-shown)~label,
.contact-floating-input textarea:focus~label,
.contact-floating-input textarea:not(:placeholder-shown)~label {
  top: 0;
  font-size: 12px;
  color: #800000;
  background: #fff;
  font-weight: 600;
}

.contact-input-highlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #800000;
  transition: all 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.contact-floating-input input:focus~.contact-input-highlight,
.contact-floating-input textarea:focus~.contact-input-highlight {
  left: 0;
  width: 100%;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Host Grotesk", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #800000 0%, #a52a2a 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 60%;
  margin: 0 auto;
  margin-top: 3%;
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 0, 0, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.contact-btn-icon {
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover .contact-btn-icon {
  transform: translateX(5px);
}

.contact-btn-loading {
  display: none;
}

.contact-submit-btn.loading .contact-btn-text,
.contact-submit-btn.loading .contact-btn-icon {
  opacity: 0;
}

.contact-submit-btn.loading .contact-btn-loading {
  display: inline-block;
  position: absolute;
}

.contact-alert {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-alert::before {
  font-size: 20px;
}

.contact-alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-alert-success::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.contact-alert-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-alert-error::before {
  content: '\f06a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.branch-office-detail-box-top {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-from-box {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form-title h2 {
    font-size: 24px;
  }

  .contact-form-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-input-group.contact-textarea-group {
    grid-column: span 1;
  }

  .contact-submit-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form-title h2 {
    font-size: 20px;
  }

  .contact-form-title p {
    font-size: 14px;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
}


.map-box {
  margin-top: -12%;
}

@media(max-width:767px) {
  .contact-office-container {
    display: block;
    gap: 70px;
    padding: 20px;
  }

  .contact-office-box {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
  }

  .branch-office-detail-box {
    padding: 30px 30px 0px 30px;
    margin-bottom: 12px;
  }

  .branch-office-container {
    display: block;
  }

  .cboc {
    padding: 10px;
  }

  .branch-office-detail-box img {
    height: 200px;
  }


}

@media(max-width:767px) {
  .homr-products-box {
    padding: 20px;
  }

  .home-pro-grid {
    display: block !important;
  }

  .home-pro-box {
    width: 100%;
    margin-bottom: 15px;
  }

  .home-pro-box {
    padding: 20px;
  }

  .contact-page-header {
    width: 100%;
    height: 200px;
    position: relative;
  }

  .contact-page-header img {
    height: 100%;
    object-position: 73% 50%;
    object-fit: cover;
  }

  .contact-page-header h1 {
    top: 60%;
    left: 33%;
  }

  .contact-form-fields {
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .contact-page-header {
    height: 150px;
  }

  .contact-page-header h1 {
    font-size: 20px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 1px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contact-page-header {
    height: 180px;
  }

  .contact-page-header h1 {
    font-size: 24px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .contact-page-header {
    height: 200px;
  }

  .contact-page-header h1 {
    font-size: 28px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .contact-page-header {
    height: 220px;
  }

  .contact-page-header h1 {
    font-size: 32px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-page-header {
    height: 280px;
  }

  .contact-page-header h1 {
    font-size: 40px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-page-header {
    height: 350px;
  }

  .contact-page-header h1 {
    font-size: 52px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-page-header {
    height: 400px;
  }

  .contact-page-header h1 {
    font-size: 60px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 320px) {
  .contact-office-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }

  .contact-office-box {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
  }

  .contact-office-box img {
    width: 30px;
    height: auto;
  }

  .contact-office-box h1 {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .contact-office-box a {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contact-office-container {
    flex-direction: column;
    gap: 18px;
    padding: 25px 12px;
  }

  .contact-office-box {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
  }

  .contact-office-box h1 {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .contact-office-box a {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .contact-office-container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .contact-office-box {
    width: 100%;
    padding: 20px;
  }

  .contact-office-box h1 {
    font-size: 20px;
    padding-bottom: 12px;
  }

  .contact-office-box a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .contact-office-container {
    flex-direction: column;
    gap: 22px;
    padding: 35px 18px;
  }

  .contact-office-box {
    width: 100%;
    padding: 22px;
  }

  .contact-office-box h1 {
    font-size: 22px;
  }

  .contact-office-box a {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-office-container {
    flex-direction: column;
    gap: 25px;
    padding: 40px 20px;
  }

  .contact-office-box {
    width: 100%;
    padding: 25px;
  }

  .contact-office-box h1 {
    font-size: 26px;
  }

  .contact-office-box a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-office-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 30px;
  }

  .contact-office-box {
    width: calc(50% - 15px);
    padding: 25px;
  }

  .contact-office-box h1 {
    font-size: 28px;
  }

  .contact-office-box a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-office-container {
    gap: 40px;
    padding: 60px 40px;
  }

  .contact-office-box {
    width: calc(33.33% - 27px);
    padding: 25px;
  }

  .contact-office-box h1 {
    font-size: 30px;
  }

  .contact-office-box a {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .contact-office-container {
    gap: 50px;
    padding: 80px 60px;
  }

  .contact-office-box {
    width: calc(33.33% - 34px);
    padding: 30px;
  }

  .contact-office-box h1 {
    font-size: 32px;
  }

  .contact-office-box a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {

  .contact-office-box {
    width: calc(33.33% - 40px);
    padding: 35px 40px;
  }

  .contact-office-box h1 {
    font-size: 35px;
  }

  .contact-office-box a {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (min-width: 1921px) {
  .contact-office-container {
    gap: 70px;
    padding: 120px 100px;
    max-width: 1800px;
    margin: 0 auto;
  }

  .contact-office-box {
    flex: 1;
    padding: 40px 50px;
  }

  .contact-office-box h1 {
    font-size: 38px;
  }

  .contact-office-box a {
    font-size: 20px;
    line-height: 34px;
  }
}

@media (max-width: 320px) {
  .cboc {
    padding: 15px 10px;
  }

  .branch-office-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .branch-office-detail-box {
    padding: 15px;
    border-left: 2px solid #800000;
  }

  .branch-office-detail-box h2 {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .branch-office-detail-box a {
    font-size: 11px;
    line-height: 18px;
  }

  .branch-office-detail-box p {
    line-height: 20px;
    padding-bottom: 5px;
  }

  .branch-office-detail-box img {
    height: 120px;
    padding-top: 15px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .cboc {
    padding: 20px 12px;
  }

  .branch-office-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branch-office-detail-box {
    padding: 18px;
  }

  .branch-office-detail-box h2 {
    font-size: 18px;
    padding-bottom: 12px;
  }

  .branch-office-detail-box a {
    font-size: 12px;
    line-height: 20px;
  }

  .branch-office-detail-box p {
    line-height: 22px;
  }

  .branch-office-detail-box img {
    height: 140px;
    padding-top: 18px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .cboc {
    padding: 25px 15px;
  }

  .branch-office-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch-office-detail-box {
    padding: 20px;
  }

  .branch-office-detail-box h2 {
    font-size: 20px;
    padding-bottom: 14px;
  }

  .branch-office-detail-box a {
    font-size: 13px;
    line-height: 22px;
  }

  .branch-office-detail-box p {
    line-height: 24px;
  }

  .branch-office-detail-box img {
    height: 160px;
    padding-top: 20px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .cboc {
    padding: 30px 18px;
  }

  .branch-office-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .branch-office-detail-box {
    padding: 22px;
  }

  .branch-office-detail-box h2 {
    font-size: 22px;
    padding-bottom: 15px;
  }

  .branch-office-detail-box a {
    font-size: 14px;
    line-height: 24px;
  }

  .branch-office-detail-box p {
    line-height: 26px;
  }

  .branch-office-detail-box img {
    height: 180px;
    padding-top: 22px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .cboc {
    padding: 35px 20px;
  }

  .branch-office-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .branch-office-detail-box {
    padding: 25px;
  }

  .branch-office-detail-box h2 {
    font-size: 24px;
    padding-bottom: 16px;
  }

  .branch-office-detail-box a {
    font-size: 15px;
    line-height: 26px;
  }

  .branch-office-detail-box p {
    line-height: 28px;
  }

  .branch-office-detail-box img {
    height: 200px;
    padding-top: 25px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cboc {
    padding: 40px 5px;
  }

  .branch-office-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .branch-office-detail-box {
    padding: 25px;
  }

  .branch-office-detail-box h2 {
    font-size: 26px;
    padding-bottom: 16px;
  }

  .branch-office-detail-box a {
    font-size: 15px;
    line-height: 26px;
  }

  .branch-office-detail-box img {
    height: 220px;
    padding-top: 25px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .cboc {
    padding: 50px 40px;
  }

  .branch-office-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .branch-office-detail-box {
    padding: 28px;
  }

  .branch-office-detail-box h2 {
    font-size: 28px;
    padding-bottom: 18px;
  }

  .branch-office-detail-box a {
    font-size: 15px;
    line-height: 26px;
  }

  .branch-office-detail-box img {
    height: 240px;
    padding-top: 28px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .cboc {
    padding: 60px 50px;
  }

  .branch-office-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .branch-office-detail-box {
    padding: 30px;
  }

  .branch-office-detail-box h2 {
    font-size: 30px;
    padding-bottom: 18px;
  }

  .branch-office-detail-box a {
    font-size: 16px;
    line-height: 28px;
  }

  .branch-office-detail-box p {
    line-height: 30px;
  }

  .branch-office-detail-box img {
    height: 250px;
    padding-top: 30px;
  }
}

@media (min-width: 1921px) {
  .cboc {
    padding: 80px 80px;
    max-width: 1800px;
    margin: 0 auto;
  }

  .branch-office-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .branch-office-detail-box {
    padding: 40px;
  }

  .branch-office-detail-box h2 {
    font-size: 35px;
    padding-bottom: 22px;
  }

  .branch-office-detail-box a {
    font-size: 18px;
    line-height: 32px;
  }

  .branch-office-detail-box img {
    height: 300px;
    padding-top: 40px;
  }
}

@media (max-width: 320px) {
  .contact-from-box {
    padding: 15px 10px;
  }

  .contact-form {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .contact-form-title {
    margin-bottom: 20px;
  }

  .contact-form-title h2 {
    font-size: 18px;
  }

  .contact-form-title p {
    font-size: 12px;
  }

  .contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .contact-input-group {
    width: 100%;
  }

  .contact-input-group.contact-textarea-group {
    grid-column: span 1;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 14px 12px;
    font-size: 13px;
    border-radius: 8px;
  }

  .contact-floating-input label {
    font-size: 12px;
    left: 12px;
  }

  .contact-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
    width: 100% !important;
    margin-top: 10px;
    border-radius: 8px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contact-from-box {
    padding: 20px 12px;
  }

  .contact-form {
    padding: 25px 18px;
    border-radius: 14px;
  }

  .contact-form-title h2 {
    font-size: 20px;
  }

  .contact-form-title p {
    font-size: 13px;
  }

  .contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100% !important;
    margin-bottom: 25px;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 15px 14px;
    font-size: 14px;
  }

  .contact-submit-btn {
    padding: 15px 25px;
    font-size: 15px;
    width: 100% !important;
    margin-top: 12px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .contact-from-box {
    padding: 25px 15px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 15px;
  }

  .contact-form-title h2 {
    font-size: 22px;
  }

  .contact-form-title p {
    font-size: 14px;
  }

  .contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100% !important;
    margin-bottom: 28px;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 16px 15px;
    font-size: 14px;
  }

  .contact-submit-btn {
    padding: 16px 28px;
    font-size: 15px;
    width: 100% !important;
    margin-top: 15px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .contact-from-box {
    padding: 30px 18px;
  }

  .contact-form {
    padding: 32px 22px;
    border-radius: 16px;
  }

  .contact-form-title h2 {
    font-size: 24px;
  }

  .contact-form-title p {
    font-size: 14px;
  }

  .contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 100% !important;
    margin-bottom: 30px;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 16px 16px;
    font-size: 15px;
  }

  .contact-submit-btn {
    padding: 16px 30px;
    font-size: 16px;
    width: 100% !important;
    margin-top: 18px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-from-box {
    padding: 35px 20px;
  }

  .contact-form {
    padding: 35px 25px;
    border-radius: 18px;
  }

  .contact-form-title {
    margin-bottom: 30px;
  }

  .contact-form-title h2 {
    font-size: 28px;
  }

  .contact-form-title p {
    font-size: 15px;
  }

  .contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100% !important;
    margin-bottom: 35px;
  }

  .contact-input-group {
    width: 100%;
  }

  .contact-input-group.contact-textarea-group {
    grid-column: span 1;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 16px 18px;
    font-size: 15px;
  }

  .contact-submit-btn {
    padding: 18px 35px;
    font-size: 16px;
    width: 80% !important;
    margin: 20px auto 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-from-box {
    padding: 45px 30px;
  }

  .contact-form {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .contact-form-title {
    margin-bottom: 35px;
  }

  .contact-form-title h2 {
    font-size: 36px;
  }

  .contact-form-title p {
    font-size: 16px;
  }

  .contact-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 85% !important;
    margin: 0 auto 35px;
  }

  .contact-input-group.contact-textarea-group {
    grid-column: span 2;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 16px 18px;
    font-size: 15px;
  }

  .contact-submit-btn {
    padding: 18px 40px;
    font-size: 17px;
    width: 70% !important;
    margin: 25px auto 0;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-from-box {
    padding: 50px 40px;
  }

  .contact-form {
    padding: 45px 35px;
  }

  .contact-form-title h2 {
    font-size: 48px;
  }

  .contact-form-title p {
    font-size: 16px;
  }

  .contact-form-fields {
    gap: 28px;
    max-width: 75% !important;
    margin-bottom: 40px;
  }

  .contact-floating-input input,
  .contact-floating-input textarea {
    padding: 17px 20px;
  }

  .contact-submit-btn {
    padding: 18px 45px;
    font-size: 18px;
    width: 60% !important;
    margin-top: 30px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .contact-from-box {
    padding: 60px 50px;
  }

  .contact-form {
    padding: 50px 40px;
  }

  .contact-form-title h2 {
    font-size: 56px;
  }

  .contact-form-fields {
    gap: 30px;
    max-width: 70% !important;
    margin-bottom: 45px;
  }

  .contact-submit-btn {
    padding: 20px 50px;
    font-size: 18px;
    width: 55% !important;
    margin-top: 35px;
  }
}


@media (min-width: 1921px) {
  .contact-from-box {
    padding: 80px 80px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .contact-form {
    padding: 60px 50px;
    border-radius: 30px;
  }

  .contact-form-title h2 {
    font-size: 72px;
  }

  .contact-form-fields {
    gap: 40px;
    max-width: 900px !important;
    margin: 0 auto 60px;
  }

  .contact-submit-btn {
    padding: 24px 60px;
    font-size: 22px;
    width: 45% !important;
    margin-top: 45px;
  }
}

@media (max-width: 320px) {
  .map-box {
    margin-top: -15%;
    padding: 0 10px 15px;
  }

  .map-box iframe {
    height: 200px !important;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .map-box {
    margin-top: -12%;
    padding: 0 12px 18px;
  }

  .map-box iframe {
    height: 220px !important;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .map-box {
    margin-top: -10%;
    padding: 0 15px 20px;
  }

  .map-box iframe {
    height: 250px !important;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .map-box {
    margin-top: -8%;
    padding: 0 18px 25px;
  }

  .map-box iframe {
    height: 280px !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .map-box {
    margin-top: -6%;
    padding: 0 20px 30px;
  }

  .map-box iframe {
    height: 320px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .map-box {
    margin-top: -5%;
    padding: 0 30px 40px;
  }

  .map-box iframe {
    height: 380px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .map-box {
    margin-top: -4%;
    padding: 0 40px 50px;
  }

  .map-box iframe {
    height: 420px !important;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .map-box {
    margin-top: -3%;
    padding: 0 50px 60px;
  }

  .map-box iframe {
    height: 450px !important;
  }
}

@media (min-width: 1921px) {
  .map-box {
    margin-top: -2%;
    padding: 0 80px 80px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-box iframe {
    height: 550px !important;
  }
}

@media (max-width: 320px) {
  .contact-alert {
    padding: 12px 15px;
    font-size: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .contact-alert::before {
    font-size: 16px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contact-alert {
    padding: 13px 18px;
    font-size: 13px;
    border-radius: 10px;
    margin-bottom: 18px;
  }
}

@media (min-width: 376px) and (max-width: 480px) {
  .contact-alert {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-alert {
    padding: 15px 22px;
    font-size: 14px;
    border-radius: 12px;
    margin-bottom: 25px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .contact-page-header {
    height: 150px;
  }

  .contact-office-container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    gap: 15px;
  }

  .contact-office-box {
    width: calc(33.33% - 10px);
  }

  .contact-form-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .contact-input-group.contact-textarea-group {
    grid-column: span 3;
  }

  .map-box iframe {
    height: 200px !important;
  }
}

@media (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  .contact-office-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-office-box {
    width: calc(50% - 20px);
    max-width: 400px;
  }

  .branch-office-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-alert {
    animation: none;
  }

  .contact-submit-btn::before {
    display: none;
  }

  .contact-submit-btn:hover {
    transform: none;
  }
}


@media print {
  .contact-page-header::before {
    display: none;
  }

  .contact-page-header h1 {
    color: #000 !important;
    text-shadow: none;
    position: static;
    transform: none;
    padding: 20px;
  }

  .contact-office-container,
  .contact-from-box,
  .map-box {
    display: none;
  }

  .branch-office-container {
    display: block;
  }

  .branch-office-detail-box {
    break-inside: avoid;
    margin-bottom: 20px;
  }
}


@media(max-width:768px) {
  .home-certi-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: fit-content;
    gap: 20px;
    padding-top: 40px;
    padding-left: 40px;
  }


  .home-certi-logo-container {
    width: 87px;
  }

  .home-certi-logo-container img {
    width: 100%;
  }

  .home-ind-icon-box img {
    height: 35px;
  }
}


.home-about-left-2 p {
  font-size: 40px;
  line-height: 1.2;
  max-width: 100%;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #800000;
  margin-bottom: 2%;
}

.sub-title {
  font-size: 40px;
  line-height: 1.2;
  max-width: 90%;
  color: rgb(122 122 122);
  font-family: Orbitron, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

@media(max-width:1200px) {
  .home-about-left-2 p {
    font-size: 34px;
    line-height: 1.2;
    max-width: 100%;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    color: #800000;
    margin-bottom: 2%;
  }

  .sub-title {
    font-size: 30px;
  }

  .sub-title {
    font-size: 36px;
    font-family: Orbitron, sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .home-certi-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: fit-content;
    gap: 20px;
    padding-top: 40px;
  }

  .product-slider-1 {
    margin-right: 0%;
    margin-left: 0%;
  }

  .product-slider-2 {
    margin-right: 0%;
    margin-left: 0%;
  }



  .footer-img-box {
    height: 700px;
    position: relative;
    margin-left: -18%;
    margin-top: -1%;
    padding: 29px;
  }

  .pin-north {
    top: 29%;
    left: 39%;
  }

  .pin-kolkata-y {
    top: 45%;
    left: 68%;
  }

  .pin-south {
    top: 43%;
    left: 66%;
  }

  .pin-chennai {
    top: 77%;
    left: 42%;
  }

  .pin-coimbatore {
    top: 76%;
    left: 45%;
  }

  .pin-che {
    top: 74%;
    left: 43%;
  }

  .footer-container .icon {
    position: relative;
    right: 22%;
    top: 0%;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 5px;
  }

  .dots-info {
    margin-bottom: 21%;
    margin-top: -25% !important;
  }

  .footer-img-box {
    height: 700px;
    position: relative;
    margin-left: -5%;
    margin-top: -1%;
    padding: 29px;
  }

  .hero-product-content h2 {
    line-height: 40px !important;
    font-size: 36px !important;
  }

  .hero-product-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transform: scale(0.85);
    transform-origin: center center;
  }

  .hero-product-content .cta-icon {
    margin: 0px auto;
  }
}


@media(min-width:750px) and (max-width:1002px) {
  .footer-img-box {
    margin-left: 46% !important;
    margin-top: -67%;
  }

  .dots-info {
    margin-top: -7%;
    margin-left: 24%;
    margin-bottom: 10%;
  }

  .footer-container .icon {
    top: 61%;
  }

  .footer-bottom {
    margin-top: 11%;
    left: 30%;
  }

}

@media (min-width: 1410px) and (max-width: 1688px) {
  .pin-north {
    top: 27%;
    left: 32%;
  }

  .pin-udaipur {
    top: 38%;
    left: 25%;
  }

  .pin-head {
    top: 30%;
    left: 25%;
  }

  .pin-south {
    top: 43%;
    left: 58%;
  }

  .pin-ahm {
    top: 44%;
    left: 22%;
  }

  .pin-che {
    top: 77%;
    left: 37%;
  }

  .pin-ludhiana {
    top: 21%;
    left: 25%;
  }

  .pin-jaipur {
    top: 32%;
    left: 29%;
  }

  .pin-jodhpur {
    top: 34%;
    left: 24%;
  }

  .pin-ajmer {
    top: 38%;
    left: 27%;
  }

  .pin-bhiwadi {
    top: 27%;
    left: 28%;
  }

  .pin-rajkot {
    top: 47%;
    left: 19%;
  }

  .pin-surat {
    top: 44%;
    left: 25%;
  }

  .pin-vapi {
    top: 47%;
    left: 27%;
  }

  .pin-daman {
    top: 49%;
    left: 25%;
  }

  .pin-mumbai {
    top: 56%;
    left: 27%;
  }

  .pin-latur {
    top: 56%;
    left: 32%;
  }

  .pin-pune {
    top: 58%;
    left: 29%;
  }

  .pin-goa {
    top: 65%;
    left: 29%;
  }

  .pin-chennai {
    top: 80%;
    left: 37%;
  }

  .pin-coimbatore {
    top: 80%;
    left: 38%;
  }

  .pin-bangalore {
    top: 71%;
    left: 33%;
  }

  .pin-vadodara {
    top: 47%;
    left: 21%;
  }

  .pin-ludhiana-y {
    top: 23%;
    left: 26%;
  }

  .pin-kolkata-y {
    top: 43%;
    left: 59%;
  }

  .pin-jaipur-y {
    top: 32%;
    left: 30%;
  }

  .pin-delhi-y {
    top: 29%;
    left: 28%;
  }
}

.new-footer {
  background: #000;
  padding: 100px 100px 0px 100px;
}

.nf-ql-title {
  font-family: "Host Grotesk", sans-serif;
  color: #fff;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 27px;
  padding-bottom: 15px;
  margin-bottom: 0px;
}

.nf-ul {
  font-size: 20px;
  line-height: 40px;
}

.nf-ul li a {
  color: #fff;
}

.nf-ql-cb h6 {
  color: #fff;
  font-size: 17px;
}

.nf-ql-c {
  display: flex;
}

.nf-ql-cb {
  flex: 1;
}

.nf-ql-cb.one {
  width: 30%;
}

.nf-ql-cb.two {
  width: 35%;
}

.nf-ql-cb.three {
  width: 35%;
}

.new-footer-img {
  width: 60%;
  opacity: 0.8;
  margin-top: -18%;
}

.nf-img-container {
  width: 580px;
  position: relative;
}

.nf-img-container img {
  width: 100%;
}

.nf-map-box {
  position: relative;
}

.new-icon {
  display: flex;
  padding: 50px 50px 50px 0px;
  justify-content: space-evenly;
}

.new-icon a {
  font-size: 35px;
  color: #fff;
}

.new-icon a:hover {
  color: #800000;
}

.new-footer .pin-delhi {
  top: 26%;
  left: 29%;
}

.new-footer .pin-vadodara {
  top: 51%;
  left: 13%;
}

.new-footer .pin-rajkot {
  top: 47%;
  left: 12%;
}

.new-footer .pin-ahm {
  top: 46%;
  left: 15%;
}

.new-footer .pin-daman {
  top: 51%;
  left: 20%;
}

.new-footer .pin-vapi {
  top: 49%;
  left: 16%;
}

.new-footer .pin-surat {
  top: 46%;
  left: 18%;
}

.new-footer .pin-jaipur-y {
  top: 37%;
  left: 20%;
}

.new-footer .pin-jaipur {
  top: 41%;
  left: 17%;
}

.new-footer .pin-chennai {
  top: 90%;
  left: 36%;
}

.new-footer .pin-coimbatore {
  top: 85%;
  left: 33%;

}

.new-footer .pin-che {
  top: 83%;
  left: 38%;
}

.new-footer .pin-goa {
  top: 73%;
  left: 28%;
}

.new-footer .pin-bangalore {
  top: 76%;
  left: 25%;
}

.new-footer .pin-pune {
  top: 61%;
  left: 21%;
}

.new-footer .pin-latur {
  top: 63%;
  left: 25%;
}

.new-footer .pin-mumbai {
  top: 58%;
  left: 26%;
}

.new-footer .pin-kolkata-y {
  top: 49%;
  left: 68%;
}

.new-footer .pin-south {
  top: 47%;
  left: 65%;
}

.new-footer .dots-info {
  margin-top: -34%;
}

.new-footer-bottom {
  margin-top: 0%;
  width: 100%;
  text-align: center;
  left: 41%;
  padding-bottom: 20px;
  color: #fff;
}

.new-footer-bottom a:hover {
  color: #fff;
}


@media (max-width: 320px) {
  .new-footer {
    padding: 30px 15px 0px !important;
  }

  .nf-ql-c {
    flex-direction: column;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .nf-ql-title {
    font-size: 18px !important;
    padding-bottom: 10px !important;
  }

  .nf-ul {
    font-size: 14px !important;
    line-height: 30px !important;
  }

  .nf-ql-cb h6 {
    font-size: 14px !important;
  }

  .nf-img-container {
    width: 280px !important;
  }

  .new-icon {
    padding: 20px 0 !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  .new-icon a {
    font-size: 24px !important;
  }

  .new-footer-img {
    width: 100% !important;
    margin-top: 10px !important;
  }

  .new-footer-bottom {
    left: 0 !important;
    font-size: 7px !important;
    line-height: 10px;
  }

  .new-footer .dots-info {
    margin-top: -11% !important;
    width: 116%;
    margin-left: -14%;
  }

  .map-icon {
    font-size: 12px;
    color: #fff;
  }

  .colour-dot-info .map-icon {
    font-size: 10px;
  }

  .colour-dot-info {
    gap: 8px;
    width: 150%;
  }

  .pin-ajmer {
    top: 34% !important;
    left: 24% !important;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .new-footer {
    padding: 20px !important;
  }

  .nf-ql-c {
    flex-direction: column;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 100%;
    margin-bottom: 25px;
  }

  .nf-ql-title {
    font-size: 20px !important;
    padding-bottom: 12px;
  }

  .nf-ul {
    font-size: 15px !important;
    line-height: 32px;
  }

  .nf-img-container {
    width: 374px !important;
  }

  .new-icon {
    padding: 25px 0;
    gap: 18px;
    justify-content: center;
  }

  .new-icon a {
    font-size: 23px !important;
    margin-bottom: 15px !important;
  }

  .new-footer-img {
    width: 100% !important;
    margin-top: 15px;
  }

  .new-footer-bottom {
    width: 200% !important;
    text-align: center !important;
    left: -48% !important;
    padding-bottom: 1% !important;
    font-size: 7px;
    line-height: 11px;
  }

  .new-footer .dots-info {
    margin-top: -31%;
    width: 200%;
    margin-left: -50%;
    margin-bottom: 17%;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .new-footer {
    padding: 40px 25px 0px !important;
  }

  .nf-ql-c {
    flex-direction: column !important;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 100% !important;
    margin-bottom: 30px !important;
  }

  .nf-ql-title {
    font-size: 22px;
    padding-bottom: 12px;
  }

  .nf-ul {
    font-size: 16px;
    line-height: 34px;
  }

  .nf-img-container {
    width: 350px !important;
  }

  .new-icon {
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
  }

  .new-icon a {
    font-size: 28px;
  }

  .new-footer-img {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .new-footer-bottom {
    font-size: 7px !important;
    left: 0 !important;
    line-height: 11px;
  }

  .new-footer .dots-info {
    margin-top: -23% !important;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .new-footer {
    padding: 50px 30px 0px !important;
  }

  .nf-ql-c {
    flex-direction: column !important;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 100% !important;
    margin-bottom: 35px !important;
  }

  .nf-ql-title {
    font-size: 24px !important;
    padding-bottom: 14px !important;
  }

  .nf-ul {
    font-size: 17px !important;
    line-height: 36px !important;
  }

  .nf-img-container {
    width: 100% !important;
  }

  .new-icon {
    padding: 35px 0 !important;
    flex-wrap: wrap !important;
    gap: 22px !important;
    justify-content: left;
  }

  .new-icon a {
    font-size: 21px !important;
  }

  .new-footer-img {
    width: 100% !important;
    margin-top: 25px !important;
    margin-bottom: -10%;
  }

  .new-footer-bottom {
    left: 0 !important;
    font-size: 14px !important;
  }

  .new-footer-bottom {
    margin-top: 14% !important;
  }

}

@media (min-width: 481px) and (max-width: 768px) {
  .new-footer {
    padding: 60px 40px 0px;
  }

  .nf-ql-c {
    flex-direction: column;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 100%;
    margin-bottom: 40px;
  }

  .map-icon {
    font-size: 14px;
  }

  .nf-ql-title {
    font-size: 26px;
    padding-bottom: 15px;
  }

  .nf-ul {
    font-size: 18px;
    line-height: 38px;
  }

  .nf-img-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .new-icon {
    padding: 40px 0;
    flex-wrap: wrap;
    justify-content: left;
    gap: 25px;
  }

  .new-icon a {
    font-size: 32px;
  }

  .new-footer-img {
    width: 86% !important;
    margin-top: 30px;
    display: block;
    margin-left: -13%;
  }

  .new-footer-bottom {
    font-size: 15px;
  }

  .new-footer-bottom {
    font-size: 8px;
    line-height: 12px;
    left: 50% !important;
    margin-top: -7% !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .new-footer {
    padding: 80px 60px 0px;
  }

  .nf-ql-c {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nf-ql-cb.one {
    width: 30%;
  }

  .nf-ql-cb.two {
    width: 35%;
  }

  .nf-ql-cb.three {
    width: 35%;
  }

  .nf-ql-title {
    font-size: 24px;
    padding-bottom: 12px;
  }

  .nf-ul {
    font-size: 16px;
    line-height: 32px;
  }

  .nf-img-container {
    width: 100%;
    max-width: 450px;
  }

  .new-icon {
    padding: 30px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }

  .new-icon a {
    font-size: 28px;
  }

  .new-footer-img {
    width: 60%;
    margin-top: 20px;
  }

  .new-footer-bottom {
    left: 0;
    font-size: 14px;
  }

  .new-footer .dots-info {
    margin-top: 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .new-footer {
    padding: 90px 80px 0px !important;
  }

  .nf-ql-c {
    flex-direction: column !important;
  }

  .nf-ql-cb.one {
    width: 100% !important;
  }

  .nf-ql-cb.two {
    width: 100% !important;
  }

  .nf-ql-cb.three {
    width: 90% !important;
  }

  .nf-ql-title {
    font-size: 26px !important;
    padding-bottom: 14px !important;
  }

  .nf-ul {
    font-size: 18px !important;
    line-height: 36px !important;
  }

  .nf-img-container {
    max-width: 590px !important;
    margin-left: -71%;
  }

  .new-icon {
    padding: 40px 30px 40px 0px !important;
    justify-content: left !important;
    gap: 42px !important;
  }

  .new-icon a {
    font-size: 32px !important;
  }

  .new-footer-img {
    width: 55% !important;
    margin-top: -1% !important;
  }

  .new-footer-bottom {
    margin-top: 6%;
    font-size: 15px !important;
  }

  .new-footer .dots-info {
    margin-top: -30% !important;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .new-footer {
    padding: 100px 100px 0px 100px !important;
  }

  .nf-ql-c {
    flex-direction: column;
  }

  .nf-ql-cb.one {
    width: 100%;
    margin-bottom: 20px;
  }

  .nf-ql-cb.two {
    width: 100%;
    margin-bottom: 20px;
  }

  .nf-ql-cb.three {
    width: 100%;
  }

  .nf-ql-title {
    font-size: 25px !important;
    padding-bottom: 15px;
    margin-bottom: 0px;
  }

  .nf-ul {
    font-size: 16px !important;
    line-height: 38px;
  }

  .nf-img-container {
    width: 550px;
    margin-left: -38%;
  }

  .new-icon {
    padding: 45px 40px 45px 0px;
    font-size: 10px;
  }

  .new-icon a {
    font-size: 25px !important;
  }

  .new-footer-img {
    width: 58%;
    margin-top: -17%;
  }

  .new-footer-bottom {
    left: 0;
    font-size: 16px;
  }

  .new-footer-bottom {
    margin-top: -5% !important;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    font-size: 10px;
  }

  .new-icon {
    padding: 40px 30px 40px 0px !important;
    justify-content: center !important;
    gap: 42px !important;
  }

  .new-footer-img {
    margin-top: -2% !important;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .new-footer {
    padding: 120px 150px 0px 150px;
  }

  .nf-ql-c {
    flex-direction: row;
  }

  .nf-ql-cb.one {
    width: 30%;
  }

  .nf-ql-cb.two {
    width: 35%;
  }

  .nf-ql-cb.three {
    width: 35%;
  }

  .nf-ql-title {
    font-size: 30px;
    padding-bottom: 18px;
  }

  .nf-ul {
    font-size: 22px;
    line-height: 44px;
  }

  .nf-img-container {
    width: 650px;
  }

  .new-icon {
    padding: 50px 50px 50px 0px;
  }

  .new-icon a {
    font-size: 38px;
  }

  .new-footer-img {
    width: 60%;
    margin-top: -18%;
  }

  .new-footer-bottom {
    left: 0;
    font-size: 13px;
  }

  .new-footer .dots-info {
    margin-top: -34%;
    line-height: 5px;
    padding-bottom: 11%;
  }
}

@media (min-width: 1921px) {
  .new-footer {
    padding: 150px 200px 0px 200px;
  }

  .nf-ql-c {
    flex-direction: row;
  }

  .nf-ql-cb.one {
    width: 30%;
  }

  .nf-ql-cb.two {
    width: 35%;
  }

  .nf-ql-cb.three {
    width: 35%;
  }

  .nf-ql-title {
    font-size: 35px;
    padding-bottom: 20px;
  }

  .nf-ul {
    font-size: 24px;
    line-height: 48px;
  }

  .nf-img-container {
    width: 750px;
  }

  .new-icon {
    padding: 60px 60px 60px 0px;
  }

  .new-icon a {
    font-size: 42px;
  }

  .new-footer-img {
    width: 55%;
    margin-top: -11% !important;
  }

  .new-footer-bottom {
    left: 0;
    font-size: 13px;
  }

  .new-footer .dots-info {
    margin-top: -36%;
    margin-bottom: 10%;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .new-footer {
    padding: 40px 30px 0px;
  }

  .nf-ql-c {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nf-ql-cb.one,
  .nf-ql-cb.two,
  .nf-ql-cb.three {
    width: 30%;
    margin-bottom: 15px;
  }

  .nf-ql-title {
    font-size: 18px;
    padding-bottom: 8px;
  }

  .nf-ul {
    font-size: 14px;
    line-height: 26px;
  }

  .nf-img-container {
    width: 100%;
    max-width: 300px;
  }

  .new-icon {
    padding: 20px 0;
    gap: 15px;
  }

  .new-icon a {
    font-size: 24px;
  }

  .new-footer-img {
    width: 50%;
    margin-top: 10px;
  }

  .new-footer-bottom {
    left: 0;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .new-footer .dots-info {
    margin-top: 15px;
  }
}

@media (max-width: 320px) {
  .contact-page-header {
    height: 250px !important;
  }

  .contact-page-header h1 {
    font-size: 20px;
    top: 65%;
    left: 50%;
    transform: translate(-69%, -50%);
    letter-spacing: 1px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contact-page-header {
    height: 280px;
  }

  .contact-page-header h1 {
    font-size: 18px;
    top: 58%;
    left: 44%;
    transform: translate(-72%, -50%);
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .contact-page-header {
    height: 297px !important;
  }

  .contact-page-header h1 {
    font-size: 32px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .contact-page-header {
    height: 280px;
  }

  .contact-page-header h1 {
    font-size: 36px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-page-header {
    height: 280px;
  }

  .contact-page-header h1 {
    font-size: 29px;
    top: 62%;
    left: 40%;
    transform: translate(-53%, -50%);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-page-header {
    height: 350px;
  }

  .contact-page-header h1 {
    font-size: 36px;
    top: 61%;
    left: 40%;
    transform: translate(-54%, -50%);
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-page-header {
    height: 400px;
  }

  .contact-page-header h1 {
    font-size: 46px;
    top: 55%;
    left: 50%;
    transform: translate(-89%, -50%);
  }
}

@media (max-width: 320px) {
  .about-page-box {
    padding: 30px 15px !important;
  }

  .about-page-container {
    padding: 0 10px;
  }

  .about-page-ai {
    height: 300px !important;
    margin-bottom: 20px;
    margin-left: -26%;
  }

  .rs-about-title {
    font-size: 41px !important;
    margin-bottom: 15px;
  }

  .home-about-heading {
    font-size: 20px;
    margin-bottom: 15px;
    width: 68%;
  }

  .home-about-left p {
    font-size: 12px;
    line-height: 20px;
  }

  .home-about-pointer-box {
    margin-top: 20px;
  }

  .home-about-pointer {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
    gap: 0px !important;
    width: 67% !important;
  }

  .home-about-pointer img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .pointer-text h4 {
    font-size: 14px !important;
  }

  .pointer-text p {
    font-size: 11px;
    line-height: 18px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .about-page-box {
    padding: 35px 20px !important;
  }

  .about-page-container {
    padding: 0 15px;
  }

  .about-page-ai {
    height: 300px !important;
    margin-bottom: 25px;
  }

  .about-page-container .col-md-7 {
    width: 100% !important;
  }

  .rs-about-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .home-about-heading {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .home-about-left p {
    font-size: 13px;
    line-height: 22px;
  }

  .home-about-pointer {
    flex-direction: column;
    text-align: center;
    margin-bottom: 18px;
  }

  .home-about-pointer img {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .pointer-text h4 {
    font-size: 15px;
  }

  .pointer-text p {
    font-size: 12px;
    line-height: 20px;
  }

  .about-page-box {
    padding: 20px !important;
  }

  .home-about-pointer {
    gap: 0px !important;
    width: 100% !important;
    align-items: left !important;
  }

}


@media (min-width: 426px) and (max-width: 480px) {
  .about-page-box {
    padding: 50px 30px !important;
  }

  .about-page-container {
    padding: 0 25px;
  }

  .about-page-ai {
    height: 340px !important;
    margin-bottom: 35px;
  }

  .rs-about-title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .home-about-heading {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .home-about-left p {
    font-size: 15px;
    line-height: 26px;
  }

  .home-about-pointer-box {
    margin-top: 30px;
  }

  .home-about-pointer {
    flex-direction: column;
    text-align: center;
    margin-bottom: 22px;
    gap: 10px !important;
  }

  .home-about-pointer img {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .pointer-text h4 {
    font-size: 17px;
  }

  .pointer-text p {
    font-size: 14px;
    line-height: 24px;
    margin-left: 10%;
  }

  .about-page-container .col-md-7 {
    width: 108% !important;
  }

  .unitorq-founder-section {
    width: 100%;
    padding: 0px 0 !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .about-page-box {
    padding: 60px 40px !important;
  }

  .about-page-container {
    padding: 0 30px;
  }

  .about-page-ai {
    height: 500px !important;
    margin-bottom: 40px;
    margin-left: -15%;
  }

  .rs-about-title {
    font-size: 86px !important;
    margin-bottom: 25px;
  }

  .home-about-heading {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .home-about-left p {
    font-size: 15px;
    line-height: 26px;
  }

  .home-about-pointer-box {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .home-about-pointer {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 15px;
  }

  .home-about-pointer img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .pointer-text h4 {
    font-size: 16px;
  }

  .pointer-text p {
    font-size: 13px;
    line-height: 22px;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-page-box {
    padding: 80px 60px !important;
  }

  .about-page-container {
    padding: 0 40px;
  }

  .about-page-ai {
    height: 350px;
  }

  .rs-about-title {
    font-size: 28px;
  }

  .home-about-heading {
    font-size: 38px;
  }

  .home-about-left p {
    font-size: 16px;
    line-height: 28px;
  }

  .home-about-pointer-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 0px;
  }

  .home-about-pointer {
    flex: 1;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .home-about-pointer img {
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .about-page-box {
    padding: 100px 80px !important;
  }

  .about-page-ai {
    height: 550px !important;
    margin-top: -42%;
    margin-left: -29% !important;
  }

  .rs-about-title {
    font-size: 32px;
  }

  .home-about-heading {
    font-size: 42px;
  }

  .home-about-left p {
    font-size: 15px;
    line-height: 30px;
  }

  .home-about-pointer-box {
    gap: 40px;
  }

  .vmv-box {
    padding: 50px 0px !important;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .about-page-box {
    padding: 100px 100px 50px 100px !important;
  }

  .about-page-ai {
    height: 500px;
  }
}

@media (max-width: 320px) {
  .founder-container {
    padding: 30px 15px;
  }

  .founder-box {
    padding: 20px 15px;
  }

  .founder-bg {
    margin-top: 25px;
  }

  .founder-img-box {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .founder-img-box img {
    max-width: 100%;
    max-height: 100%;
  }

  .text-stock-area {
    display: none;
  }

  .right-content-image {
    text-align: center;
  }

  .right-content-image img {
    max-width: 80%;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .founder-container {
    padding: 35px 20px;
  }

  .founder-box {
    padding: 25px 20px;
  }

  .founder-bg {
    margin-top: 30px;
  }

  .founder-img-box {
    height: 230px;
  }

  .right-content-image img {
    max-width: 85%;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .founder-container {
    padding: 40px 25px;
  }

  .founder-box {
    padding: 30px 25px;
  }

  .founder-bg {
    margin-top: 35px;
  }

  .founder-img-box {
    height: 260px;
  }

  .text-stock-area h4 {
    font-size: 16px;
  }

  .right-content-image img {
    max-width: 90%;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .founder-container {
    padding: 50px 30px;
  }

  .founder-box {
    padding: 35px 30px;
  }

  .founder-bg {
    margin-top: 40px;
  }

  .founder-img-box {
    height: 290px;
  }

  .text-stock-area h4 {
    font-size: 18px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .founder-container {
    padding: 60px 40px;
  }

  .founder-box {
    padding: 40px;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .founder-bg {
    margin-top: 0;
  }

  .founder-img-box {
    height: 300px;
  }

  .text-stock-area h4 {
    font-size: 20px;
  }

  .home-about-left p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .founder-container {
    padding: 80px 60px;
  }

  .founder-box {
    padding: 50px;
  }

  .founder-img-box {
    height: 350px;
  }

  .home-about-left p {
    font-size: 13px;
    line-height: 26px;
    width: 90%;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .founder-container {
    padding: 100px 80px;
  }

  .founder-box {
    padding: 60px;
  }

  .founder-img-box {
    height: 400px;
  }
}

@media (max-width: 320px) {
  .vmv-box {
    padding: 30px 15px !important;
  }

  .vmv-container {
    padding: 0 10px;
  }

  .vmv-box .row {
    flex-direction: column;
    gap: 20px;
  }

  .vmv-box .col-md-4 {
    width: 100%;
  }

  .vmv-content-box {
    padding: 20px 15px !important;
    text-align: center;
    height: fit-content !important;
    margin-bottom: 41%;
  }

  .vmv-icon-box {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 15px;
  }

  .vmv-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
  }

  .vmv-content-box h1 {
    font-size: 24px !important;
    margin-bottom: 10px;
  }

  .vmv-content-box p {
    font-size: 12px !important;
    line-height: 20px !important;
    width: 100%;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .vmv-box {
    padding: 35px 20px !important;
  }

  .vmv-container {
    padding: 0 15px;
  }

  .vmv-box .row {
    flex-direction: column;
    gap: 25px;
  }

  .vmv-box .col-md-4 {
    width: 100%;
  }

  .vmv-content-box {
    padding: 25px 20px;
    height: fit-content !important;
    margin-bottom: 30%;
  }

  .vmv-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
  }

  .vmv-content-box h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .vmv-content-box p {
    font-size: 13px !important;
    line-height: 22px !important;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .vmv-box {
    padding: 40px 25px !important;
  }

  .vmv-container {
    padding: 0 20px;
  }

  .vmv-box .row {
    flex-direction: column;
    gap: 30px;
  }

  .vmv-content-box {
    padding: 30px 25px;
    height: fit-content !important;
  }

  .vmv-icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
  }

  .vmv-content-box h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .vmv-content-box p {
    font-size: 14px;
    line-height: 24px;
  }

  .pointer-text p {
    text-align: center;
    font-size: 11px;
    margin-left: 10%;
    line-height: 13px;
    text-align: center;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .vmv-box {
    padding: 50px 30px !important;
  }

  .vmv-container {
    padding: 0 25px;
  }

  .vmv-box .row {
    flex-direction: column;
    gap: 35px;
  }

  .vmv-content-box {
    padding: 35px 30px;
    margin-bottom: 30%;
    height: fit-content !important;
  }

  .vmv-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
  }

  .vmv-content-box h1 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .vmv-content-box p {
    font-size: 15px !important;
    line-height: 26px;
    height: fit-content !important;

  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .vmv-box {
    padding: 60px 69px !important;
  }

  .vmv-container {
    padding: 0 30px;
  }

  .vmv-box .row {
    flex-direction: column;
    gap: 30px;
  }

  .vmv-box .col-md-4 {
    width: 100%;
    margin-bottom: 19%;
  }

  .vmv-content-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content !important;
  }

  .vmv-icon-box {
    width: 85px;
    height: 85px;
    margin-bottom: 20px;
  }

  .vmv-content-box h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .vmv-content-box p {
    font-size: 15px;
    line-height: 26px;
    text-align: center;
  }

  .about-page-container .col-md-7 {
    width: 100% !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .vmv-box {
    padding: 80px 60px 0px 80px !important;
  }

  .vmv-container {
    padding: 0 40px;
  }

  .vmv-box .row {
    flex-direction: row;
    gap: 30px;
  }

  .vmv-box .col-md-4 {
    width: 100%;
    margin-bottom: 17%;

  }

  .vmv-icon-box {
    width: 80px;
    height: 80px;
  }

  .vmv-content-box h1 {
    font-size: 36px;
  }

  .vmv-content-box p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .vmv-box {
    padding: 100px 80px;
  }

  .vmv-container {
    padding: 0 50px;
  }

  .vmv-box .row {
    gap: 40px;
  }

  .vmv-icon-box {
    width: 85px;
    height: 85px;
  }

  .vmv-content-box h1 {
    font-size: 38px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .vmv-box {
    padding: 100px 120px;
  }

  .vmv-container {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 320px) {
  .os-story-section {
    padding: 20px 15px !important;
  }

  .os-story-container {
    max-width: 100% !important;
    padding: 0 0px !important;
  }

  .os-story-header {
    margin-bottom: 20px;
  }

  .os-story-header .home-about-heading {
    font-size: 20px;
  }

  .os-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
  }

  .os-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .os-tab-btn.active {
    background: #800000;
    color: #fff;
  }

  .os-content-inner {
    gap: 15px;
  }

  .os-image-box {
    width: 100%;
    height: 150px;
  }

  .os-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .os-text-box {
    width: 100%;
    padding: 0px;
  }

  .os-year {
    font-size: 11px !important;
    display: block;
    margin-bottom: 10px;
    padding: 2px 10px !important;
  }

  .os-text-box h3 {
    font-size: 20px !important;
    margin-bottom: 10px;
  }

  .os-text-box p {
    font-size: 12px !important;
    line-height: 20px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .os-story-section {
    padding: 35px 20px;
  }

  .os-story-container {
    max-width: 100% !important;
    padding: 0 15px;
  }

  .os-story-header {
    margin-bottom: 25px;
  }

  .os-story-header .home-about-heading {
    font-size: 22px;
  }

  .os-tabs-nav {
    gap: 10px;
    margin-bottom: 25px;
  }

  .os-tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .os-content-inner {
    gap: 18px;
  }

  .os-image-box {
    height: 180px;
  }

  .os-text-box {
    padding: 18px;
  }

  .os-year {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .os-text-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .os-text-box p {
    font-size: 13px;
    line-height: 22px;
  }

  .unitorq-founder-section {
    width: 100%;
    padding: 50px 0 !important;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .os-story-section {
    padding: 40px 25px;
  }

  .os-story-container {
    max-width: 100% !important;
    padding: 0 20px;
  }

  .os-story-header {
    margin-bottom: 30px;
  }

  .os-story-header .home-about-heading {
    font-size: 24px;
  }

  .os-tabs-nav {
    gap: 12px;
    margin-bottom: 30px;
  }

  .os-tab-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .os-content-inner {
    gap: 20px;
  }

  .os-image-box {
    height: 200px;
  }

  .os-text-box {
    padding: 20px;
  }

  .os-year {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .os-text-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .os-text-box p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .os-story-section {
    padding: 50px 30px;
  }

  .os-story-container {
    max-width: 100% !important;
    padding: 0 25px;
  }

  .os-story-header {
    margin-bottom: 35px;
  }

  .os-story-header .home-about-heading {
    font-size: 28px;
  }

  .os-tabs-nav {
    gap: 15px;
    margin-bottom: 35px;
  }

  .os-tab-btn {
    padding: 14px 18px;
    font-size: 15px;
  }

  .os-content-inner {
    gap: 25px;
  }

  .os-image-box {
    height: 220px;
  }

  .os-text-box {
    padding: 25px;
  }

  .os-year {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .os-text-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .os-text-box p {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .os-story-section {
    padding: 60px 40px;
  }

  .os-story-container {
    max-width: 90% !important;
    padding: 0 30px;
  }

  .os-story-header {
    margin-bottom: 40px;
  }

  .os-story-header .home-about-heading {
    font-size: 32px;
  }

  .os-tabs-nav {
    gap: 15px;
    margin-bottom: 40px;
  }

  .os-tab-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .os-content-inner {
    gap: 30px;
  }

  .os-image-box {
    width: 100%;
    height: 250px;
  }

  .os-text-box {
    width: 100%;
    padding: 30px;
  }

  .os-year {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .os-text-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .os-text-box p {
    font-size: 15px;
    line-height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .os-story-section {
    padding: 80px 60px;
  }

  .os-story-container {
    max-width: 90% !important;
    padding: 0 40px;
  }

  .os-story-header {
    margin-bottom: 50px;
  }

  .os-story-header .home-about-heading {
    font-size: 40px;
  }

  .os-tabs-nav {
    gap: 20px;
    margin-bottom: 45px;
  }

  .os-tab-btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  .os-content-inner {
    flex-direction: row;
    gap: 0px;
    align-items: center;
  }

  .os-image-box {
    width: 100%;
    height: 300px;
  }

  .os-text-box {
    width: 100%;
    padding: 30px;
  }

  .os-year {
    font-size: 42px;
  }

  .os-text-box h3 {
    font-size: 26px;
  }

  .os-content-inner {
    align-items: center;
    gap: 50px;
  }

}

@media (min-width: 1025px) and (max-width: 1280px) {
  .os-story-section {
    padding: 100px 80px;
  }

  .os-story-container {
    max-width: 98% !important;
  }

  .os-story-header {
    margin-bottom: 60px;
  }

  .os-story-header .home-about-heading {
    font-size: 48px;
  }

  .os-tabs-nav {
    gap: 25px;
    margin-bottom: 50px;
  }

  .os-content-inner {
    gap: 50px;
  }

  .os-image-box {
    height: auto;
    width: 560px;
    object-fit: cover;
  }
}

@media(max-width:814px) {
  .story-img-box {
    margin-bottom: 10px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .about-page-box {
    padding: 30px 5% !important;
  }

  .about-page-ai {
    height: 150px;
  }

  .founder-img-box {
    height: 180px;
  }

  .vmv-box .row {
    flex-direction: row;
  }

  .os-image-box {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .os-tab-btn,
  .os-tab-content,
  .os-content-inner {
    transition: none;
    animation: none;
  }
}

@media print {
  .contact-page-header::before {
    display: none;
  }

  .about-page-box,
  .founder-container,
  .vmv-box,
  .os-story-section {
    padding: 20px;
  }

  .about-page-ai img,
  .founder-img-box img,
  .os-image-box img {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

@media (max-width: 320px) {
  .map-pin {
    transform: scale(0.6);
  }

  .map-pin i {
    font-size: 16px;
  }

  .map-pin:hover i {
    font-size: 20px;
  }

  .pin-north {
    top: 28%;
    left: 45%;
  }

  .pin-udaipur {
    top: 39%;
    left: 38%;
  }

  .pin-head {
    top: 31%;
    left: 38%;
  }

  .pin-south {
    top: 44%;
    left: 75%;
  }

  .pin-ahm {
    top: 45%;
    left: 36%;
  }

  .pin-che {
    top: 78%;
    left: 55%;
  }

  .pin-ludhiana {
    top: 22%;
    left: 24%;
  }

  .pin-jaipur {
    top: 33%;
    left: 36%;
  }

  .pin-jodhpur {
    top: 35%;
    left: 17%;
  }

  .pin-ajmer {
    top: 39%;
    left: 34%;
  }

  .pin-bhiwadi {
    top: 28%;
    left: 28%;
  }

  .pin-rajkot {
    top: 48%;
    left: 28%;
  }

  .pin-surat {
    top: 45%;
    left: 32%;
  }

  .pin-vapi {
    top: 48%;
    left: 34%;
  }

  .pin-daman {
    top: 50%;
    left: 32%;
  }

  .pin-mumbai {
    top: 57%;
    left: 38%;
  }

  .pin-latur {
    top: 57%;
    left: 44%;
  }

  .pin-pune {
    top: 59%;
    left: 40%;
  }

  .pin-goa {
    top: 66%;
    left: 40%;
  }

  .pin-chennai {
    top: 72%;
    left: 52%;
  }

  .pin-coimbatore {
    top: 77%;
    left: 50%;
  }

  .pin-bangalore {
    top: 72%;
    left: 44%;
  }

  .pin-vadodara {
    top: 48%;
    left: 30%;
  }

  .pin-ludhiana-y {
    top: 23%;
    left: 24%;
  }

  .pin-kolkata-y {
    top: 46%;
    left: 78%;
  }

  .pin-jaipur-y {
    top: 33%;
    left: 38%;
  }

  .pin-delhi-y {
    top: 26%;
    left: 26%;
  }

  .pin-tooltip {
    min-width: 100px;
    padding: 6px 8px;
  }

  .pin-tooltip h4 {
    font-size: 10px;
  }

  .pin-tooltip p {
    font-size: 9px;
  }

  .home-ind-icon-box img {
    height: 35px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .map-pin {
    transform: scale(0.65);
  }

  .map-pin i {
    font-size: 18px;
  }

  .map-pin:hover i {
    font-size: 22px;
  }

  .pin-north {
    top: 27%;
    left: 42%;
  }

  .pin-udaipur {
    top: 38%;
    left: 36%;
  }

  .pin-head {
    top: 30%;
    left: 36%;
  }

  .pin-south {
    top: 43%;
    left: 73%;
  }

  .pin-ahm {
    top: 44%;
    left: 34%;
  }

  .pin-che {
    top: 77%;
    left: 52%;
  }

  .pin-ludhiana {
    top: 21%;
    left: 24%;
  }

  .pin-jaipur {
    top: 32%;
    left: 34%;
  }

  .pin-jodhpur {
    top: 34%;
    left: 30%;
  }

  .pin-ajmer {
    top: 38%;
    left: 32%;
  }

  .pin-bhiwadi {
    top: 27%;
    left: 27%;
  }

  .pin-rajkot {
    top: 47%;
    left: 26%;
  }

  .pin-surat {
    top: 44%;
    left: 30%;
  }

  .pin-vapi {
    top: 47%;
    left: 32%;
  }

  .pin-daman {
    top: 49%;
    left: 30%;
  }

  .pin-mumbai {
    top: 56%;
    left: 36%;
  }

  .pin-latur {
    top: 56%;
    left: 42%;
  }

  .pin-pune {
    top: 58%;
    left: 38%;
  }

  .pin-goa {
    top: 65%;
    left: 38%;
  }

  .pin-chennai {
    top: 71%;
    left: 50%;
  }

  .pin-coimbatore {
    top: 76%;
    left: 48%;
  }

  .pin-bangalore {
    top: 71%;
    left: 42%;
  }

  .pin-vadodara {
    top: 47%;
    left: 28%;
  }

  .pin-ludhiana-y {
    top: 23%;
    left: 25%;
  }

  .pin-kolkata-y {
    top: 45%;
    left: 76%;
  }

  .pin-jaipur-y {
    top: 32%;
    left: 36%;
  }

  .pin-delhi-y {
    top: 29%;
    left: 28%;
  }

  .pin-tooltip {
    min-width: 110px;
    padding: 8px 10px;
  }

  .pin-tooltip h4 {
    font-size: 11px;
  }

  .pin-tooltip p {
    font-size: 10px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .map-pin {
    transform: scale(0.7);
  }

  .map-pin i {
    font-size: 20px;
  }

  .map-pin:hover i {
    font-size: 24px;
  }

  .pin-north {
    top: 26%;
    left: 40%;
  }

  .pin-udaipur {
    top: 37%;
    left: 34%;
  }

  .pin-head {
    top: 29%;
    left: 34%;
  }

  .pin-south {
    top: 42%;
    left: 70%;
  }

  .pin-ahm {
    top: 43%;
    left: 32%;
  }

  .pin-che {
    top: 76%;
    left: 50%;
  }

  .pin-ludhiana {
    top: 20%;
    left: 38%;
  }

  .pin-jaipur {
    top: 31%;
    left: 32%;
  }

  .pin-jodhpur {
    top: 33%;
    left: 28%;
  }

  .pin-ajmer {
    top: 37%;
    left: 30%;
  }

  .pin-bhiwadi {
    top: 26%;
    left: 31%;
  }

  .pin-rajkot {
    top: 46%;
    left: 24%;
  }

  .pin-surat {
    top: 43%;
    left: 28%;
  }

  .pin-vapi {
    top: 46%;
    left: 30%;
  }

  .pin-daman {
    top: 48%;
    left: 28%;
  }

  .pin-mumbai {
    top: 55%;
    left: 34%;
  }

  .pin-latur {
    top: 55%;
    left: 40%;
  }

  .pin-pune {
    top: 57%;
    left: 36%;
  }

  .pin-goa {
    top: 64%;
    left: 36%;
  }

  .pin-chennai {
    top: 70%;
    left: 48%;
  }

  .pin-coimbatore {
    top: 75%;
    left: 46%;
  }

  .pin-bangalore {
    top: 70%;
    left: 40%;
  }

  .pin-vadodara {
    top: 46%;
    left: 26%;
  }

  .pin-ludhiana-y {
    top: 22%;
    left: 38%;
  }

  .pin-kolkata-y {
    top: 44%;
    left: 74%;
  }

  .pin-jaipur-y {
    top: 31%;
    left: 34%;
  }

  .pin-delhi-y {
    top: 28%;
    left: 40%;
  }

  .pin-tooltip {
    min-width: 120px;
    padding: 8px 12px;
  }

  .pin-tooltip h4 {
    font-size: 12px;
  }

  .pin-tooltip p {
    font-size: 11px;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .map-pin {
    transform: scale(0.75);
  }

  .map-pin i {
    font-size: 22px;
  }

  .map-pin:hover i {
    font-size: 26px;
  }

  .pin-north {
    top: 25%;
    left: 38%;
  }

  .pin-udaipur {
    top: 36%;
    left: 32%;
  }

  .pin-head {
    top: 28%;
    left: 32%;
  }

  .pin-south {
    top: 41%;
    left: 68%;
  }

  .pin-ahm {
    top: 42%;
    left: 30%;
  }

  .pin-che {
    top: 75%;
    left: 48%;
  }

  .pin-ludhiana {
    top: 19%;
    left: 36%;
  }

  .pin-jaipur {
    top: 30%;
    left: 30%;
  }

  .pin-jodhpur {
    top: 32%;
    left: 26%;
  }

  .pin-ajmer {
    top: 36%;
    left: 28%;
  }

  .pin-bhiwadi {
    top: 25%;
    left: 29%;
  }

  .pin-rajkot {
    top: 45%;
    left: 22%;
  }

  .pin-surat {
    top: 42%;
    left: 26%;
  }

  .pin-vapi {
    top: 45%;
    left: 28%;
  }

  .pin-daman {
    top: 47%;
    left: 26%;
  }

  .pin-mumbai {
    top: 54%;
    left: 32%;
  }

  .pin-latur {
    top: 54%;
    left: 38%;
  }

  .pin-pune {
    top: 56%;
    left: 34%;
  }

  .pin-goa {
    top: 63%;
    left: 34%;
  }

  .pin-chennai {
    top: 69%;
    left: 46%;
  }

  .pin-coimbatore {
    top: 74%;
    left: 44%;
  }

  .pin-bangalore {
    top: 69%;
    left: 38%;
  }

  .pin-vadodara {
    top: 45%;
    left: 24%;
  }

  .pin-ludhiana-y {
    top: 21%;
    left: 36%;
  }

  .pin-kolkata-y {
    top: 43%;
    left: 72%;
  }

  .pin-jaipur-y {
    top: 30%;
    left: 32%;
  }

  .pin-delhi-y {
    top: 27%;
    left: 27%;
  }

  .pin-tooltip {
    min-width: 130px;
    padding: 10px 14px;
  }

  .pin-tooltip h4 {
    font-size: 13px;
  }

  .pin-tooltip p {
    font-size: 11px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .map-pin {
    transform: scale(0.8);
  }

  .map-pin i {
    font-size: 24px;
  }

  .map-pin:hover i {
    font-size: 28px;
  }

  .pin-north {
    top: 24%;
    left: 35%;
  }

  .pin-udaipur {
    top: 35%;
    left: 30%;
  }

  .pin-head {
    top: 27%;
    left: 30%;
  }

  .pin-south {
    top: 40%;
    left: 62%;
  }

  .pin-ahm {
    top: 41%;
    left: 28%;
  }

  .pin-che {
    top: 74%;
    left: 44%;
  }

  .pin-ludhiana {
    top: 18%;
    left: 22%;
  }

  .pin-jaipur {
    top: 29%;
    left: 28%;
  }

  .pin-jodhpur {
    top: 31%;
    left: 24%;
  }

  .pin-ajmer {
    top: 35%;
    left: 26%;
  }

  .pin-bhiwadi {
    top: 24%;
    left: 27%;
  }

  .pin-rajkot {
    top: 44%;
    left: 20%;
  }

  .pin-surat {
    top: 41%;
    left: 24%;
  }

  .pin-vapi {
    top: 44%;
    left: 26%;
  }

  .pin-daman {
    top: 46%;
    left: 24%;
  }

  .pin-mumbai {
    top: 53%;
    left: 30%;
  }

  .pin-latur {
    top: 53%;
    left: 36%;
  }

  .pin-pune {
    top: 55%;
    left: 32%;
  }

  .pin-goa {
    top: 62%;
    left: 32%;
  }

  .pin-chennai {
    top: 68%;
    left: 42%;
  }

  .pin-coimbatore {
    top: 73%;
    left: 40%;
  }

  .pin-bangalore {
    top: 68%;
    left: 35%;
  }

  .pin-vadodara {
    top: 44%;
    left: 22%;
  }

  .pin-ludhiana-y {
    top: 20%;
    left: 24%;
  }

  .pin-kolkata-y {
    top: 42%;
    left: 68%;
  }

  .pin-jaipur-y {
    top: 29%;
    left: 30%;
  }

  .pin-delhi-y {
    top: 26%;
    left: 25%;
  }

  .pin-tooltip {
    min-width: 140px;
    padding: 10px 14px;
  }

  .pin-tooltip h4 {
    font-size: 13px;
  }

  .pin-tooltip p {
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .map-pin {
    transform: scale(0.85);
  }

  .map-pin i {
    font-size: 26px;
  }

  .map-pin:hover i {
    font-size: 32px;
  }

  .pin-north {
    top: 23%;
    left: 32%;
  }

  .pin-udaipur {
    top: 34%;
    left: 26%;
  }

  .pin-head {
    top: 26%;
    left: 26%;
  }

  .pin-south {
    top: 39%;
    left: 56%;
  }

  .pin-ahm {
    top: 40%;
    left: 24%;
  }

  .pin-che {
    top: 73%;
    left: 40%;
  }

  .pin-ludhiana {
    top: 17%;
    left: 30%;
  }

  .pin-jaipur {
    top: 28%;
    left: 24%;
  }

  .pin-jodhpur {
    top: 30%;
    left: 20%;
  }

  .pin-ajmer {
    top: 34%;
    left: 22%;
  }

  .pin-bhiwadi {
    top: 23%;
    left: 24%;
  }

  .pin-rajkot {
    top: 43%;
    left: 18%;
  }

  .pin-surat {
    top: 40%;
    left: 22%;
  }

  .pin-vapi {
    top: 43%;
    left: 24%;
  }

  .pin-daman {
    top: 45%;
    left: 22%;
  }

  .pin-mumbai {
    top: 52%;
    left: 28%;
  }

  .pin-latur {
    top: 52%;
    left: 34%;
  }

  .pin-pune {
    top: 54%;
    left: 30%;
  }

  .pin-goa {
    top: 61%;
    left: 30%;
  }

  .pin-chennai {
    top: 67%;
    left: 38%;
  }

  .pin-coimbatore {
    top: 72%;
    left: 36%;
  }

  .pin-bangalore {
    top: 67%;
    left: 32%;
  }

  .pin-vadodara {
    top: 43%;
    left: 20%;
  }

  .pin-ludhiana-y {
    top: 19%;
    left: 30%;
  }

  .pin-kolkata-y {
    top: 41%;
    left: 62%;
  }

  .pin-jaipur-y {
    top: 28%;
    left: 26%;
  }

  .pin-delhi-y {
    top: 25%;
    left: 32%;
  }

  .pin-tooltip {
    min-width: 150px;
    padding: 12px 16px;
  }

  .pin-tooltip h4 {
    font-size: 14px;
  }

  .pin-tooltip p {
    font-size: 12px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .map-pin {
    transform: scale(0.9);
  }

  .map-pin i {
    font-size: 28px;
  }

  .map-pin:hover i {
    font-size: 34px;
  }

  .pin-north {
    top: 25%;
    left: 30%;
  }

  .pin-udaipur {
    top: 36%;
    left: 24%;
  }

  .pin-head {
    top: 28%;
    left: 24%;
  }

  .pin-south {
    top: 41%;
    left: 54%;
  }

  .pin-ahm {
    top: 42%;
    left: 22%;
  }

  .pin-che {
    top: 75%;
    left: 38%;
  }

  .pin-ludhiana {
    top: 19%;
    left: 28%;
  }

  .pin-jaipur {
    top: 30%;
    left: 22%;
  }

  .pin-jodhpur {
    top: 32%;
    left: 18%;
  }

  .pin-ajmer {
    top: 36%;
    left: 20%;
  }

  .pin-bhiwadi {
    top: 25%;
    left: 22%;
  }

  .pin-rajkot {
    top: 45%;
    left: 16%;
  }

  .pin-surat {
    top: 42%;
    left: 20%;
  }

  .pin-vapi {
    top: 45%;
    left: 22%;
  }

  .pin-daman {
    top: 47%;
    left: 20%;
  }

  .pin-mumbai {
    top: 54%;
    left: 26%;
  }

  .pin-latur {
    top: 54%;
    left: 32%;
  }

  .pin-pune {
    top: 56%;
    left: 28%;
  }

  .pin-goa {
    top: 63%;
    left: 28%;
  }

  .pin-chennai {
    top: 74%;
    left: 36%;
  }

  .pin-coimbatore {
    top: 78%;
    left: 34%;
  }

  .pin-bangalore {
    top: 69%;
    left: 30%;
  }

  .pin-vadodara {
    top: 45%;
    left: 18%;
  }

  .pin-ludhiana-y {
    top: 21%;
    left: 28%;
  }

  .pin-kolkata-y {
    top: 43%;
    left: 58%;
  }

  .pin-jaipur-y {
    top: 30%;
    left: 24%;
  }

  .pin-delhi-y {
    top: 27%;
    left: 30%;
  }

  .pin-tooltip {
    min-width: 160px;
    padding: 12px 16px;
  }

  .pin-tooltip h4 {
    font-size: 15px;
  }

  .pin-tooltip p {
    font-size: 13px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .map-pin i {
    font-size: 30px;
  }

  .map-pin:hover i {
    font-size: 36px;
  }

  .pin-north {
    top: 26%;
    left: 31%;
  }

  .pin-udaipur {
    top: 37%;
    left: 25%;
  }

  .pin-head {
    top: 29%;
    left: 25%;
  }

  .pin-south {
    top: 42%;
    left: 56%;
  }

  .pin-ahm {
    top: 43%;
    left: 23%;
  }

  .pin-che {
    top: 76%;
    left: 39%;
  }

  .pin-ludhiana {
    top: 20%;
    left: 25%;
  }

  .pin-jaipur {
    top: 31%;
    left: 23%;
  }

  .pin-jodhpur {
    top: 33%;
    left: 19%;
  }

  .pin-ajmer {
    top: 37%;
    left: 21%;
  }

  .pin-bhiwadi {
    top: 26%;
    left: 23%;
  }

  .pin-rajkot {
    top: 46%;
    left: 17%;
  }

  .pin-surat {
    top: 43%;
    left: 21%;
  }

  .pin-vapi {
    top: 46%;
    left: 23%;
  }

  .pin-daman {
    top: 48%;
    left: 21%;
  }

  .pin-mumbai {
    top: 55%;
    left: 27%;
  }

  .pin-latur {
    top: 55%;
    left: 33%;
  }

  .pin-pune {
    top: 57%;
    left: 29%;
  }

  .pin-goa {
    top: 64%;
    left: 29%;
  }

  .pin-chennai {
    top: 78%;
    left: 37%;
  }

  .pin-coimbatore {
    top: 79%;
    left: 35%;
  }

  .pin-bangalore {
    top: 70%;
    left: 31%;
  }

  .pin-vadodara {
    top: 46%;
    left: 19%;
  }

  .pin-ludhiana-y {
    top: 22%;
    left: 25%;
  }

  .pin-kolkata-y {
    top: 44%;
    left: 60%;
  }

  .pin-jaipur-y {
    top: 31%;
    left: 25%;
  }

  .pin-delhi-y {
    top: 28%;
    left: 31%;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .map-pin i {
    font-size: 32px;
  }

  .map-pin:hover i {
    font-size: 40px;
  }

  .pin-north {
    top: 27%;
    left: 31%;
  }

  .pin-udaipur {
    top: 38%;
    left: 25%;
  }

  .pin-head {
    top: 30%;
    left: 25%;
  }

  .pin-south {
    top: 43%;
    left: 58%;
  }

  .pin-ahm {
    top: 44%;
    left: 22%;
  }

  .pin-che {
    top: 77%;
    left: 38%;
  }

  .pin-ludhiana {
    top: 21%;
    left: 27%;
  }

  .pin-jaipur {
    top: 32%;
    left: 27%;
  }

  .pin-jodhpur {
    top: 34%;
    left: 23%;
  }

  .pin-ajmer {
    top: 38%;
    left: 25%;
  }

  .pin-bhiwadi {
    top: 27%;
    left: 26%;
  }

  .pin-rajkot {
    top: 47%;
    left: 18%;
  }

  .pin-surat {
    top: 44%;
    left: 24%;
  }

  .pin-vapi {
    top: 47%;
    left: 26%;
  }

  .pin-daman {
    top: 49%;
    left: 24%;
  }

  .pin-mumbai {
    top: 56%;
    left: 26%;
  }

  .pin-latur {
    top: 56%;
    left: 32%;
  }

  .pin-pune {
    top: 58%;
    left: 28%;
  }

  .pin-goa {
    top: 65%;
    left: 28%;
  }

  .pin-chennai {
    top: 80%;
    left: 37%;
  }

  .pin-coimbatore {
    top: 80%;
    left: 38%;
  }

  .pin-bangalore {
    top: 71%;
    left: 33%;
  }

  .pin-vadodara {
    top: 47%;
    left: 20%;
  }

  .pin-ludhiana-y {
    top: 23%;
    left: 27%;
  }

  .pin-kolkata-y {
    top: 43%;
    left: 59%;
  }

  .pin-jaipur-y {
    top: 32%;
    left: 29%;
  }

  .pin-delhi-y {
    top: 29%;
    left: 29%;
  }
}

@media (min-width: 1921px) {
  .map-pin i {
    font-size: 36px;
  }

  .map-pin:hover i {
    font-size: 44px;
  }

  .pin-north {
    top: 28%;
    left: 32%;
  }

  .pin-udaipur {
    top: 39%;
    left: 26%;
  }

  .pin-head {
    top: 31%;
    left: 26%;
  }

  .pin-south {
    top: 44%;
    left: 60%;
  }

  .pin-ahm {
    top: 45%;
    left: 23%;
  }

  .pin-che {
    top: 78%;
    left: 40%;
  }

  .pin-ludhiana {
    top: 22%;
    left: 28%;
  }

  .pin-jaipur {
    top: 33%;
    left: 28%;
  }

  .pin-jodhpur {
    top: 35%;
    left: 24%;
  }

  .pin-ajmer {
    top: 39%;
    left: 26%;
  }

  .pin-bhiwadi {
    top: 28%;
    left: 27%;
  }

  .pin-rajkot {
    top: 48%;
    left: 19%;
  }

  .pin-surat {
    top: 45%;
    left: 25%;
  }

  .pin-vapi {
    top: 48%;
    left: 27%;
  }

  .pin-daman {
    top: 50%;
    left: 25%;
  }

  .pin-mumbai {
    top: 57%;
    left: 27%;
  }

  .pin-latur {
    top: 57%;
    left: 33%;
  }

  .pin-pune {
    top: 59%;
    left: 29%;
  }

  .pin-goa {
    top: 66%;
    left: 29%;
  }

  .pin-chennai {
    top: 82%;
    left: 38%;
  }

  .pin-coimbatore {
    top: 82%;
    left: 39%;
  }

  .pin-bangalore {
    top: 73%;
    left: 34%;
  }

  .pin-vadodara {
    top: 48%;
    left: 21%;
  }

  .pin-ludhiana-y {
    top: 24%;
    left: 28%;
  }

  .pin-kolkata-y {
    top: 44%;
    left: 61%;
  }

  .pin-jaipur-y {
    top: 33%;
    left: 30%;
  }

  .pin-delhi-y {
    top: 30%;
    left: 30%;
  }

  .pin-tooltip {
    min-width: 200px;
    padding: 15px 20px;
  }

  .pin-tooltip h4 {
    font-size: 18px;
  }

  .pin-tooltip p {
    font-size: 15px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .map-pin i {
    font-size: 20px;
  }

  .map-pin:hover i {
    font-size: 26px;
  }

  .pin-north {
    top: 25%;
    left: 38%;
  }

  .pin-udaipur {
    top: 36%;
    left: 32%;
  }

  .pin-head {
    top: 28%;
    left: 32%;
  }

  .pin-south {
    top: 41%;
    left: 65%;
  }

  .pin-ahm {
    top: 42%;
    left: 30%;
  }

  .pin-che {
    top: 75%;
    left: 46%;
  }

  .pin-ludhiana {
    top: 19%;
    left: 36%;
  }

  .pin-jaipur {
    top: 30%;
    left: 30%;
  }

  .pin-jodhpur {
    top: 32%;
    left: 26%;
  }

  .pin-ajmer {
    top: 36%;
    left: 28%;
  }

  .pin-bhiwadi {
    top: 25%;
    left: 30%;
  }

  .pin-rajkot {
    top: 45%;
    left: 22%;
  }

  .pin-surat {
    top: 42%;
    left: 26%;
  }

  .pin-vapi {
    top: 45%;
    left: 28%;
  }

  .pin-daman {
    top: 47%;
    left: 26%;
  }

  .pin-mumbai {
    top: 54%;
    left: 32%;
  }

  .pin-latur {
    top: 54%;
    left: 38%;
  }

  .pin-pune {
    top: 56%;
    left: 34%;
  }

  .pin-goa {
    top: 63%;
    left: 34%;
  }

  .pin-chennai {
    top: 70%;
    left: 44%;
  }

  .pin-coimbatore {
    top: 74%;
    left: 42%;
  }

  .pin-bangalore {
    top: 68%;
    left: 38%;
  }

  .pin-vadodara {
    top: 45%;
    left: 24%;
  }

  .pin-ludhiana-y {
    top: 21%;
    left: 36%;
  }

  .pin-kolkata-y {
    top: 42%;
    left: 68%;
  }

  .pin-jaipur-y {
    top: 30%;
    left: 32%;
  }

  .pin-delhi-y {
    top: 27%;
    left: 38%;
  }

  .pin-tooltip {
    min-width: 120px;
    padding: 8px 12px;
  }

  .pin-tooltip h4 {
    font-size: 11px;
  }

  .pin-tooltip p {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin {
    animation: none;
  }

  .map-pin:hover {
    animation: none;
  }
}


.wu-process {
  padding: 80px 0px;
  background: #f8f9fb;
  text-align: center;
}

.wu-container {
  max-width: 75%;
  margin: auto;
}

.wu-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.wu-title span {
  color: #000000;
}

.wu-process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 7%;

}

.wu-step-line::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 68%;
  right: -51%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.wu-step {
  width: 22%;
  position: relative;
  z-index: 2;
}

.wu-step-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #ffffff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #800000;
  margin-bottom: 20px;
  font-weight: bold;
  border: 1px solid #800000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.wu-step-title {
  font-size: 27px;
  line-height: 1.2;
  color: #800000;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 0px;
}

.wu-step-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}


.wu-step p {
  color: #515151;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 19px;
  line-height: 27px;
}


@media(max-width:768px) {

  .wu-process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .wu-process-steps::before {
    display: none;
  }

  .wu-step {
    width: 100%;
  }

  .wu-step-line::after {
    display: none;
  }
}

@media(max-width:1200px) {
  .wu-container {
    max-width: 95%;
  }

  .wu-step p {
    font-size: 15px;
    line-height: 23px;
  }

  .wu-step-title {
    font-size: 22px;
  }
}

@media(min-width: 1281px) and (max-width: 1440px) {
  .wu-container {
    max-width: 91%;
    margin: auto;
  }

  .wu-step-title {
    font-size: 26px;
  }

  .wu-step p {
    font-size: 16px;
  }
}



.fix-padding {
  padding: 50px 150px;
}

.about-page-ai {
  height: 600px;
  margin-top: -20%;
}

.about-page-ai img {
  height: 100%;
}

.rs-about-title {
  font-size: 86px;
  text-transform: uppercase;
  line-height: 0.8;
  color: rgba(2, 1, 1, 0);
  background-clip: text;
  -webkit-background-clip: text;
  background-color: transparent;
  background-image: linear-gradient(180deg, #F5F6F7 20%, #FDFDFD 100%);
  display: flex;
  justify-content: center;
}


.home-about-pointer {
  display: flex;
  gap: 35px;
  justify-content: start;
  align-items: center;
  width: 85%;
  padding-top: 20px;
}

.home-about-pointer img {
  border: 1px solid #800000;
  background: #d7d7d7;
  border-radius: 10px;
}

.pointer-text h4 {
  font-size: 23px;
  color: #800000;
  font-weight: bold;
}

.pointer-text p {
  color: #515151;
  width: 86%;
  font-size: 20px;
  line-height: 28px;
  text-align: justify;
  color: #515151;
  width: 86%;
  font-size: 18px;
  line-height: 28px;
  font-family: math;
  text-align: left;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 24px;
  margin-top: 0px;
}



.border-text {
  text-transform: uppercase;
  font-size: 116px;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(140 9 9 / 36%);
}

.right-content-image {
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.large-image {
  height: 580px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10%;
}

.founder-img-box {
  margin-top: 62%;
  position: relative;
}

.founder-box {
  background: #e2e2e2;
  border-radius: 95px;
  padding: 100px;
  height: 580px;
}

.vmv-box {
  padding: 100px 150px;
}

.vmv-content-box h1 {
  font-size: 40px;
  line-height: 1.2;
  max-width: 90%;
  color: #800000;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.vmv-content-box {
  position: relative;
  margin-top: 0%;
  background: #000;
  position: relative;
  background: #e2e2e2;
  border-radius: 6px;
  padding: 40px 40px;
  z-index: 1;
  transition: all 0.5s ease;
  margin-top: 40px;
  height: 452px;
}

.vmv-content-box p {
  margin-top: 4%;
  text-align: left;
  color: #515151;
  margin-top: 4%;
  font-size: 20px;
  text-align: start;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 32px;
  font-weight: 500;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

.vmv-icon-box {
  width: 85px;
  height: 80px;
  background: #800000;
  box-shadow: 0px 8px 32px -8px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  border-radius: 5px;
  margin-bottom: 40px;
  transition: all 0.5s ease;
}

.vmv-img-box img {
  width: 100%;
  border-radius: 13px;
}


.os-story-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.os-story-container {
  max-width: 75%;
  margin: 0 auto;
  padding: 0 20px;
}

.os-story-header {
  text-align: center;
  margin-bottom: 50px;
}

.os-story-header .home-about-heading {
  font-size: 48px;
}

.os-tabs-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.os-tabs-nav {
  display: flex;
  justify-content: center;
  background: #800000;
  padding: 0;
  margin: 0;
  list-style: none;
}

.os-tab-btn {
  flex: 1;
  padding: 25px 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Host Grotesk", sans-serif;
  position: relative;
}

.os-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.3s ease;
}

.os-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.os-tab-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.os-tab-btn.active::after {
  width: 80%;
}

.os-tab-content {
  display: none;
  padding: 50px;
  animation: fadeIn 0.5s ease;
}

.os-tab-content.active {
  display: block;
}

.os-content-inner {
  align-items: center;
  gap: 50px;
}

.story-img-box {
  width: fit-content;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-img-box img {
  width: 100%;
  border-radius: 10px;
}

.os-image-box {
  flex: 0 0 45%;
  position: relative;
}

.os-image-box img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.os-image-box img:hover {
  transform: scale(1.02);
}

.os-image-box::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  z-index: -1;
}

.os-text-box {
  flex: 1;
  text-align: center;
}

.os-text-box h3 {
  font-size: 32px;
  color: #800000;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

.os-text-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-family: "Host Grotesk", sans-serif;
  margin-bottom: 15px;
}

.os-text-box .os-year {
  display: inline-block;
  background: #800000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-container {
  padding: 100px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .os-story-header .home-about-heading {
    font-size: 32px;
  }

  .os-tabs-nav {
    flex-wrap: wrap;
  }

  .os-tab-btn {
    flex: 0 0 50%;
    font-size: 14px;
    padding: 8px !important;
  }

  .os-tab-content {
    padding: 10px;
  }

  .os-content-inner {
    gap: 30px;
  }

  .os-image-box {
    flex: 0 0 100%;
  }

  .os-text-box h3 {
    font-size: 24px;
  }

  .os-text-box p {
    font-size: 13px;
    text-align: justify;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .os-tab-btn {
    flex: 0 0 100%;
  }
}


.about-page-box {
  padding: 100px 100px 50px 100px !important;
}


@media (max-width: 320px) {
  .founder-container {
    padding: 30px 15px !important;
  }

  .founder-box {
    padding: 20px 15px !important;
    border-radius: 30px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .founder-bg {
    margin-top: 0 !important;
    width: 100%;
  }

  .founder-img-box {
    height: 200px !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 180px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area {
    display: none;
  }

  .right-content-image {
    text-align: center;
    width: 100%;
  }

  .right-content-image img {
    max-width: 100% !important;
    height: auto !important;
  }

  .founder-box .home-about-heading {
    font-size: 24px !important;
    text-align: center;
  }

  .founder-box .home-about-left p {
    font-size: 12px !important;
    line-height: 20px !important;
    text-align: justify;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .founder-container {
    padding: 35px 20px !important;
  }

  .founder-box {
    padding: 25px 20px !important;
    border-radius: 40px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100% !important;
    margin-bottom: 25px;
  }

  .founder-bg {
    margin-top: 0 !important;
    width: 100%;
  }

  .founder-img-box {
    height: 230px !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 210px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area h4 {
    font-size: 57px;
  }

  .right-content-image {
    text-align: center;
    width: 100%;
  }

  .founder-box .home-about-heading {
    font-size: 26px !important;
    text-align: center;
  }

  .founder-box .home-about-left p {
    font-size: 13px !important;
    line-height: 22px !important;
    text-align: justify;
  }

  .rs-about-title {
    font-size: 42px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .founder-container {
    padding: 40px 25px !important;
  }

  .founder-box {
    padding: 30px 25px !important;
    border-radius: 50px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100% !important;
    margin-bottom: 30px;
  }

  .founder-bg {
    margin-top: 0 !important;
    width: 100%;
  }

  .founder-img-box {
    height: 260px !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 240px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area h4 {
    font-size: 57px;
  }

  .right-content-image {
    text-align: center;
    width: 100%;
  }

  .founder-box .home-about-heading {
    font-size: 28px !important;
    text-align: center;
  }

  .founder-box .home-about-left p {
    font-size: 14px !important;
    line-height: 24px !important;
    text-align: justify;
  }
}

@media (min-width: 426px) and (max-width: 480px) {
  .founder-container {
    padding: 50px 30px !important;
  }

  .founder-box {
    padding: 35px 30px !important;
    border-radius: 60px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100% !important;
    margin-bottom: 35px;
  }

  .founder-bg {
    margin-top: 0 !important;
    width: 100%;
  }

  .founder-img-box {
    height: 290px !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 270px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area {
    display: none;
  }

  .right-content-image {
    text-align: center;
    width: 100%;
  }

  .founder-box .home-about-heading {
    font-size: 30px !important;
    text-align: center;
  }

  .founder-box .home-about-left p {
    font-size: 14px !important;
    line-height: 24px !important;
    text-align: justify;
  }

  .contact-page-header h1 {
    font-size: 36px;
    top: 60%;
    left: 42%;
    transform: translate(-50%, -50%);
  }

  .rs-about-title {
    font-size: 49px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .founder-container {
    padding: 60px 40px !important;
  }

  .founder-box {
    padding: 40px !important;
    border-radius: 70px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: column;
  }

  .founder-box .col-md-6 {
    width: 100% !important;
    margin-bottom: 40px;
  }

  .founder-bg {
    margin-top: 0 !important;
    width: 100%;
  }

  .founder-img-box {
    height: 300px !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 280px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area h4 {
    font-size: 71px;
  }

  .right-content-image {
    text-align: center;
    width: 100%;
  }

  .founder-box .home-about-heading {
    font-size: 32px !important;
    text-align: center;
  }

  .founder-box .home-about-left p {
    font-size: 15px !important;
    line-height: 26px !important;
    text-align: justify;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .founder-container {
    padding: 80px 60px !important;
  }

  .founder-box {
    padding: 50px !important;
    border-radius: 80px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: row;
  }

  .founder-box .col-md-6 {
    width: 50% !important;
    margin-bottom: 0;
  }

  .founder-bg {
    margin-top: 0 !important;
  }

  .founder-img-box {
    height: 350px !important;
    margin-top: 10% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 320px !important;
    width: auto !important;
    height: auto !important;
  }

  .text-stock-area {
    display: block;
  }

  .founder-box .home-about-heading {
    font-size: 36px !important;
  }

  .founder-box .home-about-left p {
    font-size: 15px !important;
    line-height: 26px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .founder-container {
    padding: 100px 80px !important;
  }

  .founder-box {
    padding: 60px !important;
    border-radius: 90px !important;
    height: auto !important;
  }

  .founder-img-box {
    height: 400px !important;
    margin-top: 15% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 370px !important;
    width: auto !important;
    height: auto !important;
  }

  .founder-box .home-about-heading {
    font-size: 40px !important;
  }

  .founder-box .home-about-left p {
    font-size: 16px !important;
    line-height: 28px !important;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .founder-container {
    padding: 100px !important;
  }

  .founder-box {
    padding: 80px !important;
    border-radius: 95px !important;
    height: auto !important;
  }

  .founder-img-box {
    height: 450px !important;
    margin-top: 20% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 420px !important;
    width: auto !important;
    height: auto !important;
  }

  .founder-box .home-about-heading {
    font-size: 44px !important;
  }

  .founder-box .home-about-left p {
    font-size: 17px !important;
    line-height: 30px !important;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .founder-container {
    padding: 120px 100px !important;
  }

  .founder-box {
    padding: 100px !important;
    border-radius: 100px !important;
    height: auto !important;
  }

  .founder-img-box {
    height: 500px !important;
    margin-top: 25% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 470px !important;
    width: auto !important;
    height: auto !important;
  }

  .founder-box .home-about-heading {
    font-size: 48px !important;
  }

  .founder-box .home-about-left p {
    font-size: 18px !important;
    line-height: 32px !important;
  }
}

@media (min-width: 1921px) {
  .founder-container {
    padding: 150px 120px !important;
  }

  .founder-box {
    padding: 120px !important;
    border-radius: 120px !important;
    height: auto !important;
    max-width: 1600px;
    margin: 0 auto;
  }

  .founder-img-box {
    height: 580px !important;
    margin-top: 30% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 550px !important;
    width: auto !important;
    height: auto !important;
  }

  .founder-box .home-about-heading {
    font-size: 52px !important;
  }

  .founder-box .home-about-left p {
    font-size: 20px !important;
    line-height: 34px !important;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .founder-container {
    padding: 30px 5% !important;
  }

  .founder-box {
    padding: 30px !important;
    border-radius: 50px !important;
    height: auto !important;
  }

  .founder-box .row {
    flex-direction: row;
  }

  .founder-box .col-md-6 {
    width: 50% !important;
    margin-bottom: 0;
  }

  .founder-img-box {
    height: 250px !important;
    margin-top: 5% !important;
  }

  .founder-img-box img {
    max-width: 100% !important;
    max-height: 220px !important;
  }

  .text-stock-area {
    display: none;
  }

  .founder-box .home-about-heading {
    font-size: 24px !important;
  }

  .founder-box .home-about-left p {
    font-size: 12px !important;
    line-height: 18px !important;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .founder-img-box img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-reduced-motion: reduce) {

  .founder-container,
  .founder-box,
  .founder-img-box {
    transition: none !important;
    animation: none !important;
  }
}



.unitorq-founder-section {
  width: 100%;
  padding: 80px 0;
}

.unitorq-founder-container {
  max-width: 80%;
  margin: auto;
  position: relative;
  background: #e9e9e9;
  border-radius: 40px;
  padding: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.unitorq-founder-content {
  width: 55%;
  z-index: 2;
}

.unitorq-founder-title {
  font-size: 48px;
  font-weight: 600;
  color: #6c6c6c;
  margin-bottom: 30px;
}

.unitorq-founder-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.unitorq-founder-image-box {
  position: absolute;
  right: 13%;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.unitorq-founder-image {
  max-height: 520px;
  object-fit: contain;
  z-index: 2;
}

.text-stock-area {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  margin-bottom: 0px;
}

@media (max-width:1300px) {
  .vmv-content-box {
    height: 496px;
  }

  .vmv-content-box p {
    font-size: 18px;
  }

  .values-box p {
    text-align: left !important;
  }
}

@media (max-width:992px) {

  .about-page-box {
    padding: 20px !important;
  }

  .about-page-container .col-md-7 {
    width: 150%;
  }
}

@media (max-width:600px) {}

@media(min-width: 1281px) and (max-width: 1440px) {

  .border-text {
    font-size: 97px !important;
  }

  .fix-padding {
    padding: 100px 50px 50px 50px !important;
  }

  .vmv-box {
    padding: 50px;
  }

  .about-page-box {
    padding: 100px 100px 0px 100px !important;
  }

  .about-page-ai {
    margin-left: -16%;
  }
}


@media (min-width: 376px) and (max-width: 425px) {
  .about-page-box {
    padding: 40px 25px !important;
  }

  .about-page-container {
    padding: 0 20px;
  }

  .about-page-ai {
    height: 372px !important;
    margin-bottom: 30px;
  }

  .rs-about-title {
    font-size: 66px !important;
    margin-bottom: 20px;
  }

  .home-about-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .home-about-left p {
    font-size: 14px;
    line-height: 24px;
  }

  .home-about-pointer-box {
    margin-top: 25px;
  }

  .home-about-pointer {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .home-about-pointer img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .pointer-text h4 {
    font-size: 16px;
  }

  .pointer-text p {
    font-size: 13px;
    line-height: 22px;
    text-align: center;
  }

  .about-page-container .col-md-7 {
    width: 100%;
  }
}


@media(max-width:1300px) {
  .home-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .home-pro-box {
    margin-bottom: 5%;
  }
}


.dealer-container {
  padding: 100px 200px;
}

.dealer-content-container {
  background: #ffffff;
  height: 390px;
  margin-bottom: 10%;
  padding: 30px;
  border: 1px solid #800000;
  border-radius: 1px;
}

.dealer-content-container-long {
  height: 550px !important;
}

.dealer-details h1 {
  color: #800000;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
}

.dealer-details h3 {
  color: #000;
  font-family: "Host Grotesk", sans-serif;
  padding-bottom: 20px;
  border-bottom: 1px solid #800000;
  margin-bottom: 20px;
}

.dealer-details h4 {
  color: #000;
  font-family: "Host Grotesk", sans-serif;
  padding: 10px 0px 0px 0px;
  font-size: 20px;
}

.dealer-details img {
  height: 22px;
}

.dealer-details a {
  font-size: 17px;
  padding-left: 11px;
  color: #000;
}


.dealer-name {
  font-size: 17px;
  padding: 10px 0px 10px 0px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}


#iLine {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60vh;
  border-left: 2px dashed #800000;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease, height 0.5s ease;
}

.timeline-content {
  display: flex;
  align-items: flex-start;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0px 0px 100px 0px;
}

.image-wrapper {
  width: 45%;
  height: 100%;
  position: relative;
  line-height: 0;
}

.image-date-text-wrapper .text-wrapper {
  width: 62%;

  margin-top: 0;
  text-align: left;
}

.our-story-left {
  height: 590px;
  width: 600px;
  margin-left: -40%;
  object-fit: contain;
}

.our-story-right {
  width: 600px;
  margin-left: 0%;
  height: 590px;
  object-fit: contain;
}

.text-wrapper-right {
  margin-right: -20%;
}

.text-wrapper-left {
  margin-left: -11%;
}

.text-wrapper h3 {
  font-size: 30px;
  color: #000000;
  font-family: "Host Grotesk", sans-serif;
  line-height: 46px;
  font-style: initial;
  font-weight: bold;
}

.text-wrapper h1 {
  color: #800000;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 5%;
  font-size: 57px;
  font-weight: bold;
}

.text-wrapper p {
  color: #000000;
  font-size: 20px;
  line-height: 31px;
  font-family: "Host Grotesk", sans-serif;
}

.tcmt {
  margin-top: -9%;
}

.dealers-title {
  margin-bottom: 12%;
}

.values-box p {
  text-align: left !important;
  margin-top: 0px;
  margin-bottom: 0px;
}

@media(max-width:1600px) {
  .our-story-left {
    height: 400px;
    margin-left: -11%;
  }

  .text-wrapper-left {
    margin-left: 2%;
  }

  .our-story-right {
    width: 400px;
    margin-left: 13%;
  }

  .image-date-text-wrapper .text-wrapper {
    width: 51%;
    margin-top: 0;
    text-align: left;
  }

  .text-wrapper-right {
    margin-right: -7%;
  }
}

@media (max-width:950px) {
  .our-story-left {
    height: 350px !important;
    margin-left: 3% !important;
  }

  .text-wrapper h1 {
    font-size: 40px;
  }

  .text-wrapper h3 {
    font-size: 23px;
  }

  .dealer-details img {
    height: 18px;
  }

  .dealer-details a {
    font-size: 15px;
  }

  .our-story-left {
    height: 300px !important;
    margin-left: -46% !important;
    width: 570px;
  }

  .text-wrapper-left {
    margin-left: 1%;
  }

  .our-story-right {
    width: 300px;
    margin-left: -2%;
  }

  .info_section {
    padding: 50px;
  }

  .info_section {
    padding: 30px;
  }

  .our-story-left {
    height: 250px !important;
    margin-left: -46% !important;
    width: 472px;
  }
}

@media (max-width:600px) {
  .our-story-left {
    height: 300px;
    margin-left: 3%;
  }

  .text-wrapper h1 {
    font-size: 34px;
  }

  .text-wrapper h3 {
    font-size: 20px;
  }

  .dealer-details a {
    font-size: 14px;
  }

  .text-wrapper p {
    line-height: 20px;
    font-size: 12px;
  }

  .our-story-right {
    width: 100px;
    margin-left: 0%;
  }

  .text-wrapper-left {
    margin-left: 0%;
  }

  .text-wrapper p {
    line-height: 11px;
    font-size: 8px;
    padding-right: 10px;
  }

  .dealer-details a {
    font-size: 17px;
    padding-left: 2px;
  }
}

@media (max-width:656px) {
  .our-story-left {
    height: 260px;
    margin-left: 3%;
  }

  .text-wrapper h1 {
    font-size: 28px;
  }

  .text-wrapper h3 {
    font-size: 17px;
  }

  .dealer-details a {
    font-size: 8px;
    line-height: 15px;
    padding-right: 10px;
  }

  .dealer-details img {
    height: 11px;
  }

  .our-story-left {
    height: 188px !important;
    margin-left: 3% !important;
    width: 100%;

  }

  .timeline-content {
    padding: 0px 0px 0px 0px;
  }


  #iLine {
    border-left: 1px dashed #800000;
  }

  .info_section {
    padding: 0px;
  }

  .reversed {
    margin-top: -21%;
    margin-bottom: -27%;
  }
}

@media(max-width:530) {
  .our-story-left {
    height: 150px;
    margin-left: 3%;
    width: 300px;
  }

  .text-wrapper h1 {
    font-size: 21px;
  }

  .text-wrapper h3 {
    font-size: 14px;
  }

  .text-wrapper p {
    line-height: 13px;
  }

  .dealer-details a {
    font-size: 8px;
  }

  .dealer-details img {
    height: 11px;
  }

  .text-wrapper p {
    line-height: 13px;
    font-size: 10px;
  }

  .our-story-right {
    width: 100px;
    margin-left: 13%;
  }

  .reversed {
    margin-top: -30%;
    margin-bottom: -34%;
  }

  .dealer-details a {
    font-size: 6px;
  }

  .dealer-details img {
    height: 11px;
  }
}

@media(max-width:400px) {
  .our-story-left {
    height: 100px !important;
    margin-left: -22% !important;
    width: 161px;
  }

  .text-wrapper h1 {
    font-size: 15px !important;
  }

  .text-wrapper h3 {
    font-size: 10px !important;
  }

  .text-wrapper-right {
    margin-right: -5% !important;
  }

  .text-wrapper h3 {
    line-height: 10px !important;
  }

  .pointer-text p {
    text-align: center;
    font-size: 11px;
    margin-left: 10%;
    line-height: 13px;
  }

  .reversed {
    margin-top: -55%;
    margin-bottom: -59%;
  }

  .info_section {
    padding: 00px;
  }

  .dealer-details a {
    font-size: 6px;
    line-height: 20px;
  }
}

@media(min-width:978px)and(max-width:1024px) {
  .vmv-content-box {
    height: fit-content !important;
  }

  .about-page-ai {
    margin-left: -65%;
  }

  .home-about-left p {
    width: 117%;
  }

  .home-about-pointer {
    width: 108%;
  }
}

.nppb {
  background: #ededed;
}

.nppc {
  display: flex;

}

.right {
  justify-content: flex-end;
  padding-top: 12%;
  padding-bottom: 11%;
}

.left {
  justify-content: flex-start;
  margin-top: 2%;
}

.left-nppib {
  margin-right: -22%;
}

.nppcd {
  background: #000;
  display: flex;
  justify-content: center;
  border-bottom: 7px solid #b30000;
  width: 66%;
  align-items: center;
}

.nppib {
  margin-bottom: 4%;
  margin-left: -16%;
}

.nppib img {
  height: 500px;
  object-fit: contain;
  margin-top: -20%;
  background: #ffffff;
  border: 2px solid #800000;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.npp-content-box {
  padding: 50px 19% 50px 100px;
}

.npp-content-box h1 {
  font-size: 46px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: bold;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 20px;
}

.npp-content-box p {
  font-size: 17px;
  line-height: 22px;
  padding-top: 1%;
  color: #fff;
  padding-bottom: 2%;
}

.npp-content-box-left {
  padding: 50px 30% 50px 13%;
}

.pro-right-icon {
  color: #aa0202;
  font-size: 20px;
  float: right;
  border: 3px solid #800000;
  padding: 5px 10px;
  border-radius: 50%;
  margin-top: 1%;
}


@media (max-width : 1700px) {
  .nppib img {
    height: 400px;
  }

  .npp-content-box h1 {
    font-size: 35px;
  }

  .npp-content-box p {
    font-size: 15px;
  }

  .nppcd {
    width: 39% !important;
  }

  .nppib img {
    height: 300px;
  }

  .npp-content-box h1 {
    font-size: 26px !important;
  }

  .npp-content-box p {
    font-size: 14px !important;
  }

  .pro-right-icon {
    color: #aa0202;
    font-size: 19px;
  }

  .right {
    padding-bottom: 5%;
  }


  .left {
    justify-content: flex-start;
    margin-top: -33%;
  }

  .right {
    padding-top: 0%;
    padding-bottom: 11%;
  }

  .npp-content-box {
    padding: 40px 8% 40px 37px !important;
  }

  .npp-content-box-left {
    padding: 50px 19% 50px 5% !important;
    width: 81%;
  }

  .nppib img {
    height: 270px;
  }
}


@media (max-width : 1200px) {
  .nppib img {
    height: 170px !important;
    margin-top: -41%;
  }

  .npp-content-box h1 {
    font-size: 20px !important;
  }

  .npp-content-box p {
    font-size: 12px;
  }

  .nppcd {
    width: 75%;
  }

  .pro-right-icon {
    margin-top: 0%;
    margin-bottom: 1%;
  }

  .npp-content-box {
    padding: 0px 2% 0px 25px !important;
  }

  .npp-content-box-left {
    padding: 0px 19% 0px 0px !important;
  }

  .right {
    justify-content: flex-end;
    padding-top: 3% !important;
    padding-bottom: 0% !important;
  }

  .nppcd {
    height: 300px !important;
  }
}

@media (max-width : 900px) {

  .npp-content-box h1 {
    font-size: 25px;
  }

  .npp-content-box p {
    font-size: 11px;
  }

  .nppib img {
    margin-top: -22%;
    height: 140px !important;
  }

  .pro-right-icon {
    color: #aa0202;
    font-size: 12px;
  }

  .pro-right-icon {
    margin-top: 0%;
    margin-bottom: 7%;
  }

  .nppcd {
    height: 385px !important;
    width: 335px !important;
  }
}

@media(max-width:510px) {
  .nppib img {
    margin-top: -22%;
    height: 150px !important;
  }

  .nppcd {
    width: 79% !important;
  }

  .nppcd {
    height: fit-content !important;
  }

  .left {
    margin-top: 11% !important;
  }

  .right {
    padding-top: 11% !important;
  }
}

@media(max-width:400px) {
  .nppib img {
    height: 150px !important;
  }

  .npp-content-box h1 {
    font-size: 16px;
  }

  .npp-content-box p {
    font-size: 10px !important;
    line-height: 14px;
  }

  .pro-right-icon {
    font-size: 14px;
    padding: 2px 5px;
  }

  .npp-content-box {
    padding: 0px 0% 0px 6px !important;
  }

  .npp-content-box h1 {
    font-size: 16px !important;
  }

  .npp-content-box-left {
    padding: 0px 18% 0px 6px !important;
  }
}

@media(max-width:300px) {
  .nppib img {
    height: 120px;
  }

  .npp-content-box {
    padding: 0px 20% 0px 15px;
  }

  .pro-right-icon {
    border: 1px solid #800000;
    margin-bottom: 2%;
  }
}

@media(max-width:350px) {
  .npp-content-box h1 {
    font-size: 11px;
  }

  .npp-content-box p {
    font-size: 5px;
    line-height: 14px;
  }

  .nppib img {
    height: 100px !important;
  }

  .npp-content-box {
    padding: 0px 21% 0px 21px !important;
  }
}

.right {
  justify-content: flex-end;
  padding-top: 12%;
  padding-bottom: 11%;
}

.nppc {
  display: flex;
}

.nppcd {
  background: #000;
  display: flex;
  justify-content: center;
  border-bottom: 7px solid #b30000;
  width: 760px;
  align-items: center;
}

.nppib {
  margin-bottom: -9%;
  margin-left: -17%;
}

.nppib img {
  height: 300px;
  object-fit: contain;
  margin-top: -20%;
  background: #ffffff;
  border: 2px solid #800000;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.npp-content-box {
  padding: 40px 15% 40px 100px;
}

.npp-content-box h1 {
  font-size: 33px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: bold;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 20px;
}

.left {
  justify-content: flex-start;
  margin-top: -24%;
}

.nppcd {
  background: #000;
  display: flex;
  justify-content: center;
  border-bottom: 7px solid #b30000;
  width: 760px;
  height: 400px;
  align-items: center;
}


.npp-content-box-left {
  padding: 50px 26% 50px 9%;
  width: 81%;
}

.left-nppib {
  margin-right: -15%;
}

.right {
  justify-content: flex-end;
  padding-top: 5%;
  padding-bottom: 11%;
}

.red-bg {
  background: #800000;
}


.black-btn {
  color: #dddddd;
  border: 3px solid #dadada;
}


.has-dropdown {
  position: relative;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: -48%;
  background: #800000;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 0px;
  height: auto;
  align-items: center;
  width: fit-content;
}

.dropdown-college-left-img {
  grid-column: 1;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-right: 1rem;
  backdrop-filter: blur(5px);
  width: fit-content;
  height: auto;
  width: 400px;
  border-right: 1px solid #a60000;
  box-shadow: 7px 0 10px -5px #7a0c0c;
}

.products-dropdown li a {
  display: block;
  color: #333;
  text-decoration: none;
}

.has-dropdown:hover .products-dropdown {
  display: block;
}

.right-img {
  height: fit-content;
  width: fit-content;
  margin-top: 25%;
}

.right-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.pd-box {
  padding: 5% 10% 2% 10%;
}

.product-details-left h1 {
  color: #800000;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 5%;
  font-size: 40px;
  font-weight: bold;
}

.product-details-left h2 {
  font-size: 29px;
  color: #000000;
  font-family: "Host Grotesk", sans-serif;
  line-height: 27px;
  font-style: initial;
  font-weight: 500;
}

.product-details-left h3 {
  font-size: 23px;
  color: #000000;
  font-family: "Host Grotesk", sans-serif;
  line-height: 20px;
  font-style: initial;
  font-weight: 500;
}

.rating-title {
  padding-top: 30px;
  font-style: italic !important;
}

.nm-title {
  font-size: 22px !important;
  margin-top: 0px;
  padding-top: 0px;
}

.product-details-title {
  color: #515151;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 19px;
  line-height: 27px;
  margin-top: 3%;
}

.product-details-left li {
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  padding: 5px 0px;
}

.pd-details-box {
  margin-top: 5%;
}

.pd-details-box h1 {
  color: #800000;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 1%;
  font-size: 28px;
  font-weight: bold;
}

.pd-details-box p {
  font-family: "Host Grotesk", sans-serif;
  font-size: 17px;
  line-height: 32px;

  text-align: justify;
}

.pd-four-photos-box {
  display: flex;
  gap: 27px;
  margin: 5% 0%;
  justify-content: left;
}

.pd-four-photos-box img {
  height: 200px !important;
}

.features-ul {
  list-style-type: disclosure-closed;
}

.features-ul li {
  font-family: "Host Grotesk", sans-serif;
  font-size: 17px;
  padding: 5px 0px;
}


.product-models-slider {
  background: #ededed;
  padding: 50px;
}

.product-models-slider p {
  text-align: center;
  font-family: "Host Grotesk", sans-serif;
  font-size: 29px;
  border-top: 1px solid #800000;
  padding-top: 38px;
}


.fail-safe-products-section {
  padding: 60px 0;
  margin: 0 auto;
}

.slider-title {
  color: #800000;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 4%;
  font-size: 33px;
  font-weight: bold;
}

.fail-safe-products-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;

}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #f8f9fa;
}

.product-slide {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-right: 1px solid #8000002b;
  background: #f8f9fa;
}

.product-slide:hover {
  transform: translateY(-10px);
}

.product-slide img {
  width: 100%;
  max-width: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-slide h3 {
  font-size: 23px;
  margin: 10px 0;
  color: #2c3e50;
  font-family: "Host Grotesk", sans-serif;
  text-align: center;
}

.product-slide p {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #800000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-arrow:hover {
  background: #a52a2a;
  transform: translateY(-50%) scale(1.07);
}

.slider-arrow-prev {
  left: 10px;
}

.slider-arrow-next {
  right: 10px;
}

.slider-dots {
  display: none;
}

.fail-safe-products-slider {
  position: relative;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot:active {
  background: #800000;
}

.btn-box {
  display: flex;
  gap: 20px;
  margin-top: 1%;
}

.btn-box .cta-icon {
  padding: 10px;
}

.nav-all-pro-title h3 {
  font-style: italic;
  color: #ffffff;
  font-family: "Host Grotesk", sans-serif;
  margin-bottom: 3%;
  font-weight: bold;
  font-size: 27px;
}

.nav-all-pro-title a {
  color: #fff;
  font-size: 13px;
  border: 1px solid #ffffff61;
  padding: 5px 10px;
  border-radius: 3px;
}

.mounting-img-box {
  width: fit-content;
  height: 400px;
}

.mounting-img-box img {
  padding: 20px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.view-box {
  height: 430px;
  padding: 25px;
}

.view-box img {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #800000;
  object-fit: contain;
  border-radius: 2px;
}

.right-img {
  margin-top: 13%;
}

.right-img-2 {
  height: fit-content;
}


.right-img-2 img {
  height: 400px;
}

.right-img-cb img {
  height: 350px;
}

.view-box:hover {
  filter: brightness(0.6);
}

.view-box:hover img {
  background-color: #fff;
}

.product-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.product-preview img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
  background: #fff;
  padding: 20px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-preview {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.view-box img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.view-box img:hover {
  transform: scale(1.05);
}

@media(max-width:1500px) {
  .product-details-left h1 {
    margin-bottom: 3%;
    font-size: 33px;
  }

  .product-details-left h2 {
    font-size: 27px;
    line-height: 39px;
  }

  .product-details-left h3 {
    font-size: 19px;
    line-height: 0px;
  }

  .pd-details-box p {
    font-size: 15px;
  }

  .pd-details-box {
    margin-top: 4%;
  }

  .pd-four-photos-box img {
    height: 160px !important;
  }

  .right-img {
    height: fit-content !important;
  }

  .rating-title {
    padding-top: 20px;
  }

  .nm-title {
    font-size: 18px !important;
    padding: 0px;
  }

}

@media(max-width:1356px) {
  .dropdown-college-left-img {
    width: 310px !important;
  }

  .product-item img {
    width: 100px;
  }
}

@media(max-width:1200px) {
  .product-item img {
    width: 90px;
    height: 85px;
  }

  .product-item span {
    font-size: 8px;
  }

  .product-item {
    margin-bottom: 0%;
    line-height: 10px;
  }

  .products-dropdown {
    height: fit-content;
  }
}

@media(max-width:1100px) {
  .product-item img {
    width: 83px;
    height: 61px;
  }

  .dropdown-college-left-img {
    width: 235px !important;
  }
}

@media(max-width:1000px) {
  .product-item img {
    width: 65px;
    height: 65px;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10%;
  }

  .product-item span {
    font-size: 8px;
    line-height: auto;
  }

  .products-dropdown {
    gap: 0rem;
  }

  .product-item {
    height: fit-content;
  }

  .products-dropdown li a {
    display: block;
    color: #333;
    text-decoration: none;
  }

  .product-preview img {
    max-width: 90%;
    max-height: 90%;
  }
}

@media(max-width:926px) {

  .products-dropdown li a {
    width: fit-content;
  }

  .products-dropdown {
    max-width: fit-content;
    left: 43%;
    height: fit-content;
  }

  .dropdown-college-left-img {
    width: 190px !important;
  }

  .right-img-2 img {
    height: 300px;
    text-align: center;
  }

}

@media(max-width:1700px) {
  .pd-box {
    padding: 3%;
  }

  .pd-four-photos-box img {
    height: 200px !important;
  }

  .right-img {
    height: 500px;
  }
}

@media(max-width:1200px) {
  .pd-four-photos-box img {
    height: 150px !important;
  }

  .product-details-left h2 {
    font-size: 25px;
  }

  .product-details-left h1 {
    margin-bottom: 3%;
    font-size: 33px;
  }

  .product-details-left li {
    font-size: 17px;
    padding: 6px 0px;
  }

  .pd-details-box h1 {
    font-size: 33px;
  }

  .pd-details-box p {
    font-size: 17px;
  }

  .product-slide h3 {
    font-size: 21px;
  }

  .product-slide {
    margin: 0px;
    padding: 0px;
  }

  .fail-safe-products-slider {
    height: fit-content;
  }

  .right-img {
    height: fit-content;
  }

  .view-box {
    height: 308px;
  }
}

@media(max-width:800px) {
  .pd-four-photos-box img {
    height: 150px !important;
  }

  .right-img {
    height: fit-content;
    margin-top: 5%;
    text-align: center;
  }
}

@media(max-width:767px) {
  .pd-four-photos-box img {
    height: 100px !important;
  }

  .pd-details-box h1 {
    font-size: 25px;
  }

  .pd-details-box p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 22px;
  }

  .product-details-left h2 {
    font-size: 26px;
  }

  .product-slide h3 {
    font-size: 15px;
  }

  .btn-box {
    display: block;
  }

  .cta-icon {
    padding: 5px;
    font-size: 10px;
    margin-bottom: 8px;
  }

  .product-details-left li {
    margin-left: 25px;
  }

  .features-ul li {
    margin-left: 25px;
  }
}

@media(max-width:500px) {
  .header-nav {
    width: 241px;
    padding: 12px;
    gap: 15px;
  }

  .product-details-left h1 {
    margin-bottom: 3%;
    font-size: 20px;
  }

  .product-details-left h2 {
    font-size: 19px;
    margin-top: 0%;
  }

  .pd-four-photos-box img {
    height: 55px !important;
  }

  .features-ul li {
    font-family: "Host Grotesk", sans-serif;
    font-size: 15px;
    padding: 10px 0px;
  }

  .fail-safe-products-section {
    padding: 0px 0;
  }

  .slider-title {
    font-size: 25px;
  }

  .fail-safe-products-slider {
    height: fit-content;
  }

  .product-slide h3 {
    font-size: 10px;
    text-align: center;
  }

  .product-details-left li {
    font-size: 15px;
    padding: 2px;
  }

  .products-dropdown li a {
    width: 168px;
  }

  .btn-box {
    display: block;
  }

  .cta-icon {
    padding: 5px;
    font-size: 10px;
    margin-bottom: 8px;
  }

  .product-slide {
    flex: 0 0 50%;
    padding: 5px;
  }

  .product-slide p {
    font-size: 7px;
  }

  .mounting-img-box {
    height: auto;
  }

  .right-img-2 img {
    height: fit-content;
    text-align: center;
  }

  .view-box {
    padding: 10px;
  }
}

.nf-ul {
  font-weight: 500 !important;
}

@media(max-width:767px) {
  .certi-subtitle p {
    font-size: 10px !important;
  }

  .products-right-grid {
    display: block;
  }

  .dropdown-college-left-img {
    width: fit-content;
  }
}

@media(max-width:972px) {
  .view-box {
    height: auto;
    width: 94vw;
  }
}

@media(max-width:1200px) {
  .certi-subtitle p {
    font-size: 13px;
  }

  .sub-title {
    font-size: 26px;
    font-weight: 600;
  }
}


@media(max-width:1500px) {
  .wu-container {
    max-width: 91%;
    margin: auto;
  }

  .home-cta {
    padding: 100px 200px 100px 200px;
    text-align: left;
  }
}


@media(max-width:1100px) {
  .contact-office-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 50px 30px;
  }
}

.applications-box {
  max-width: 83%;
  margin: 0 auto;
}

.application-header-box h1 {
  font-size: 50px;
  line-height: 1.2;
  max-width: 100%;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #800000;
  margin-bottom: 2%;
  text-align: center;
  padding-top: 20px;
}

.application-header-box h3 {
  color: #515151;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
}

.application-header-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 50px;
}

.app-img {
  height: 300px;
  width: auto;
}

.app-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.application-header-text-container {
  align-items: center;
  gap: 150px;
}

.application-details-box {
  justify-content: space-between;
  padding: 0px 0px 50px;
  align-items: center;
}

.application-img-box {
  padding: 150px 50px 20px 50px;
  width: fit-content;
}


.application-container {
  padding: 50px 0px;
  background: #f1f1f1;
}

.application-header-img-box {
  height: 300px;
}

.application-header-img-box img {
  height: 100%;
}

.application-header-box-img {
  display: flex;
  gap: 50px;
}

.app-bg-box {
  width: 100%;
  height: 311px;
}

.app-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.app-row .col-md-6 {
  padding: 0px;
}

.ind-about-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ind-about-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.app-bg-box-container {
  display: flex;
  padding: 31px;
  max-width: 65%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.app-row {
  margin: 0 auto;
  background: #f1f1f1;
  padding: 90px 0px 150px;
  margin-top: -125px;
  margin-bottom: -200px;
  max-width: 84%;
}

.one-app-box {
  padding: 30px 50px;
}

.all-app-box {
  padding: 0px 0px 70px 0px;
}

.cnbimgbox {
  padding: 30px;
}

@media(max-width:1500px) {
  .applications-box {
    padding: 0px 50px 50px 50px;
  }
}

@media(max-width:1200px) {
  .applications-box {
    padding: 0px 0px 50px 0px;
  }

  .application-header-box h1 {
    font-size: 35px;
  }

  .application-header-box h3 {
    font-size: 21px;
  }

  .ind-title {
    padding: 10px 10px 10px 30px;
    font-size: 21px;
  }

  .one-app-box {
    margin-bottom: 20px;
  }

  .all-app-box {
    padding: 30px 0px 0px 0px;
  }
}

@media(max-width:1100px) {
  .app-bg-box {
    height: 200px;
  }

  .ind-logo-img-box {
    height: 262px;
  }

  .application-details-box {
    padding: 0px 0px 18px;
  }

  .one-app-box {
    margin-bottom: 0px;
  }

  .application-header-box h3 {
    font-size: 21px;
    margin: 0px;
  }

  .one-app-box {
    padding: 0px;
  }
}

@media(max-width:767px) {
  .applications-box {
    padding: 0px 0px 0px 0px;
  }

  .app-bg-box-container {
    padding: 20px;
  }

  .app-bg-box {
    height: auto;
  }

  .app-bg-box img {
    padding: 0px 5px 33px;
  }

  .one-app-box {
    margin-bottom: 0px;
    padding: 20px 20px;
  }

  .application-header-box h1 {
    font-size: 20px;
  }

  .application-details-box h3 {
    font-size: 16px;
    margin-top: 0px;

  }

  .application-details-box {
    padding-bottom: 0px;
  }

  .ind-title {
    padding: 10px 10px 10px 30px;
    font-size: 17px;
  }

  .ind-logo-img-box {
    height: 180px;
  }
}

.uni-new-app-slider {
  width: 70%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.uni-new-app-track {
  display: flex;
  transition: transform 0.5s ease;
}

.uni-new-app-slide {
  min-width: 33.3333%;
  padding: 10px;
  transition: transform 0.5s ease;
}

.uni-new-app-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 4px solid #800000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.uni-new-app-slide.uni-new-app-active {
  transform: translateY(-85px);
}

.uni-new-app-controls {
  margin-top: 20px;
  text-align: center;
}

.uni-new-app-controls button {
  padding: 0px 24px;
  margin: 0 10px;
  border: none;
  background: #ffffff00;
  cursor: pointer;
  border-radius: 8px;
  color: #800000;
  font-size: 51px;
}

@media(max-width:1800px) {
  .uni-new-app-slider {
    width: 74%;
  }
}

@media(max-width:1756px) {
  .uni-new-app-slider {
    width: 74%;
  }
}

@media(max-width:1650px) {
  .uni-new-app-slider {
    width: 75%;
  }

  .ind-logo-img-box-left-right {
    height: 300px;
    width: 280px;
  }

  .app-bg-box {
    height: 260px;
  }

  .app-row {
    background: #f1f1f1;
  }
}

@media(max-width:1490px) {
  .applications-box {
    max-width: 93%;
  }

  .app-row {
    padding: 70px 0px 150px;
  }

  .application-header-box h1 {
    font-size: 36px;
    margin-bottom: -1%;
    padding-top: 17px;
  }

  .app-bg-box {
    height: 269px;
  }

  .ind-logo-img-box-left-right {
    height: 230px;
    width: 250px;
  }

  .uni-new-app-slider {
    width: 70%;
  }

  .uni-new-app-controls {
    margin-top: -42px;
    position: relative;
    z-index: 3;
  }

  .application-header-box h3 {
    font-size: 18px;
  }
}

@media(max-width:1370px) {
  .applications-box {
    max-width: 99%;
  }

  .uni-new-app-slider {
    width: 77%;
  }

  .application-header-box h1 {
    font-size: 40px;
  }

  .application-header-box h3 {
    font-size: 17px;
    padding-top: 10px;
  }

  .ind-logo-img-box-left-right {
    height: 230px;
    width: 242px;
  }
}

@media(max-width:1100px) {
  .one-app-box {
    padding: 30px 0px;
  }

  .uni-new-app-slide.uni-new-app-active {
    transform: translateY(-45px);
  }
}

@media(max-width:1000px) {
  .one-app-box {
    padding: 0px 0px;
  }

  .uni-new-app-slide.uni-new-app-active {
    transform: translateY(-45px);
  }

  .ind-logo-img-box-left-right {
    height: 230px;
    width: 233px;
  }

  .ind-title {
    margin-top: -25%;
    font-size: 15px;
  }

  .applications-box {
    padding: 0px 0px 50px 0px;
  }

  .application-header-box h1 {
    font-size: 35px;
    margin-bottom: 1%;
    padding-top: 17px;
  }

  .ind-logo-img-box-left-right {
    height: 230px;
    width: 242px;
  }
}

@media(max-width:990px) {
  .ind-logo-img-box-left-right {
    height: 230px;
    width: 232px;
  }
}

@media(max-width:950px) {
  .app-bg-box {
    height: 220px;
  }

  .application-header-box h1 {
    font-size: 30px;
  }

  .application-header-box h3 {
    font-size: 15px;
    padding-top: 0px;
  }

  .ind-logo-img-box-left-right {
    height: 196px;
    width: 209px;
  }

  .ind-title {
    padding: 10px 10px 10px 16px;
  }
}

@media(max-width:860px) {
  .ind-logo-img-box-left-right {
    height: 183px;
    width: 185px;
  }

  .ind-title {
    padding: 0px 5px;
    font-size: 10px;
  }

  .app-row {
    max-width: 89%;
  }

  .uni-new-app-controls button {
    padding: 0px;
    font-size: 44px;
  }

  .home-cta {
    padding: 0px;
  }
}

@media(max-width:767px) {
  .app-bg-box {
           height: 145px;
        padding: 0px;
  }
.app-bg-box-container{
  max-width: 100%;
}
  .app-row {
    padding: 40px 0px 150px;
    margin-top: -77px;
  }

  .ind-logo-img-box-left-right {
    height: 138px;
    width: 151px;
  }

}

@media(max-width:650px) {
  .uni-new-app-slider {
    width: 90%;
  }
}

@media(max-width:510px) {
  .ind-logo-img-box-left-right {
    height: 138px;
    width: 133px;
  }

  .ind-title {
    padding: 0px 0px 0px 5px;
    font-size: 6px;
  }

  .application-header-box h1 {
    padding-top: 0px;
    font-size: 26px;
  }

  .application-header-box h3 {
    font-size: 14px;
  }
}

@media(max-width:500px) {
  .application-header-box h1 {
    margin-top: 5px;
  }

  .application-header-box h1 {
    font-size: 22px;
  }

  .application-header-box h3 {
    font-size: 11px;
  }

  .ind-logo-img-box-left-right {
    height: 106px;
    width: 107px;
  }

  .uni-new-app-controls button {
    padding: 0px;
    font-size: 34px;
    margin: 0px;
  }

  .uni-new-app-slider {
    width: 79%;
  }

}

@media(max-width:450px) {
  .uni-new-app-slider {
    width: 85%;
  }
}

@media(max-width:405px) {
  .uni-new-app-slider {
    width: 90%;
  }

  .uni-new-app-slider img {
    border: 2px solid #800000;
  }

  .ind-logo-img-box-left-right {
    height: 98px;
    width: 98px;
  }
}

@media(max-width:360px) {
  .uni-new-app-slider {
    width: 99%;
  }

  .uni-new-app-slider img {
    border: 2px solid #800000;
  }

  .ind-logo-img-box-left-right {
    height: 98px;
    width: 90px;
  }

  .app-row {
    padding: 40px 0px 150px;
    margin-top: -90px;
  }
}

@media(max-width:300px) {
  .uni-new-app-slider {
    width: 99%;
  }

  .uni-new-app-slider img {
    border: 2px solid #800000;
  }

  .ind-logo-img-box-left-right {
    height: 90px;
    width: 70px;
  }

}

@media(max-width:500px) {
  .home-cta {
    padding: 150px 10px 50px 10px !important;
  }
}