* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-padding-top: 80px;
}
body {
  overflow-x: hidden !important;
  font-family: "Roboto" !important;
}
body {
  overflow-x: hidden !important;
  font-family: "PT Sans", sans-serif !important;
}

.ball {
  width: 20px;
  height: 20px;
  background-color: #ea6e01d5;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.logo {
  width: 172px;
  height: 96px;
  flex-shrink: 0;
}
.navbar-nav .nav-link {
  color: rgba(4, 4, 4, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.84px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link:hover {
  color: #ea6e01;
  transform: scale(1.1);
}

#home {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
  min-height: 650px;
  background: linear-gradient(
    280deg,
    rgba(185, 185, 185, 0.4) -0.79%,
    rgba(255, 255, 255, 0) 100.88%
  );
  background-size: cover;
  background-position: center;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-title {
  color: #1a1a1a;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-subtitle {
  color: #1a1a1a;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
}
.hero-subtitle-italic {
  font-style: italic;
  font-size: 1.1rem; /* Adjust size as needed */
  margin-top: -10px; /* Adjust spacing if needed */
}
.dot {
  width: 15px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid #ea6e01;
  margin: 0 4px;
  cursor: pointer;
}

.dot.active {
  width: 47px;
  border-radius: 10px;
  background-color: #ea6e01;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container::before,
.image-container::after {
  content: "";
  position: absolute;
  background: linear-gradient(152deg, #00537b 13.96%, #08acf9 94.72%);
  z-index: -1;
}

.image-container::before {
  width: 100%;
  height: 100%;
  bottom: -20px;
  left: -20px;
}

.image-container::after {
  width: 100%;
  height: 100%;
  top: -20px;
  right: -20px;
}

@keyframes imageFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* clients Courosel */
.marquee {
  display: flex;
  animation: scroll 15s linear infinite;
  width: max-content;
  gap: 0;
}
img[data-bs-toggle="tooltip"] {
  cursor: pointer;
}
.marquee:hover {
  animation-play-state: paused;
}
.tooltip-inner {
  background-color: #ffffff !important;
  color: #000000;
  padding: 8px 14px;
  font-size: 0.875rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}

.tooltip .tooltip-arrow {
  display: none !important;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #2c2f36 !important;
}

.fade.tooltip.show {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.carousel-wrapper .marquee img {
  height: 80px;
  min-width: 150px;
  margin-right: 30px;
  object-fit: contain;
}
/* partners Courosel */
.marquee-oem,
.marquee-distributor {
  display: flex;
  gap: 40px;
  width: max-content;
}
.marquee-oem {
  animation: scroll-left 45s linear infinite;
  display: flex;
  align-items: center;
}

.marquee-distributor {
  animation: scroll-right 45s linear infinite;
  display: flex;
  align-items: center;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee-oem img,
.marquee-distributor img {
  height: 80px;
  width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #fff;
}
/* About Section */
#about {
  background-color: #f9f9f9;
  background-size: cover;
  background-position: center;
  min-height: 778px;
}

.about-img {
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 100%;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
}

.about-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ea6e01;
}

.about-box p {
  font-weight: 400;
  color: #333;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  color: #ea6e01;
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.feature-text {
  font-weight: 400;
  color: #1a1a1a;
  line-height: 26px;
}
.counts {
  background-color: #ea6e01;
}

.section-title {
  color: #1a1a1a;
  font-size: 28px;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
#service-title {
  color: #1a1a1a;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
#service-description {
  color: #1a1a1a;
  line-height: 29px;
}
.subtitle {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  max-width: 800px;
  word-wrap: break-word;
  margin: 0 auto;
  hyphens: auto;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}
.service-link {
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  background-color: white;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.service-link:hover {
  color: #ea6e01;
}

.service-link.active {
  background-color: #ea6e01;
  color: #ffffff !important;
  font-weight: bold;
}
.service-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.service-content {
  flex: 1;
}
.service-image-wrapper {
  position: relative;
  display: inline-block;
  flex: 1;
}
.service-tabs-wrapper {
  position: relative;
  padding: 0 30px;
}

.scroll-container {
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.scroll-content {
  transition: transform 0.3s ease;
}
.scroll-btn {
  background-color: #fff;
  border: 1px solid #ea6e01;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ea6e01;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: background 0.3s;
}

.scroll-btn.left {
  left: -20px;
}

.scroll-btn.right {
  right: -20px;
}

.scroll-btn:disabled {
  border: 1px solid #ea6e016a;
  box-shadow: none;
  background-color: #f9f9f9;
  color: #ea6e016a;
  cursor: default;
}

@media (max-width: 767px) {
  .scroll-btn {
    display: none;
  }

  .scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .service-tabs-wrapper {
    position: relative;
    padding: 0;
  }

  .scroll-content {
    flex-wrap: nowrap;
  }

  .service-link {
    flex: 0 0 auto;
  }
}

.main-service-image {
  flex: 1;
  width: 100%;
  height: 363px;
  border-radius: 16px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}
.fade-out {
  opacity: 0;
}
.corner-shape {
  position: absolute;
  background: linear-gradient(152deg, #00537b 13.96%, #08acf9 94.72%);
  width: 180px;
  height: 180px;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

.corner-top-left {
  top: -18px;
  left: -18px;
}

.corner-bottom-right {
  bottom: -18px;
  right: -18px;
}

input {
  font-size: 16px !important;
  font-weight: normal;
}
input::placeholder {
  color: #fafafa;
}
select:invalid {
  color: rgba(95, 90, 90, 0.952) !important;
}

.error-message {
  color: red;
  font-size: 14px;
}

.input-group {
  border: 2px solid transparent;
  border-radius: 5px;
}

.input-group:focus-within {
  border: 2px solid #1058e74a;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #1058e74a;
}
.input-group .form-control:focus,
.input-group .input-group-text:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

.custom-cancel-btn {
  border-radius: 5px;
  border: 1px solid var(--Second-Option-P, #ea6e01);
  background: var(--White-Smoke, #f9f9f9);
  color: #ea6e01;
  padding: 8px 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.custom-cancel-btn:hover {
  color: #ea6e01;
  border: 1px solid var(--Second-Option-P, #ea6e01);
  background: var(--White-Smoke, #cccccc5f);
}
.custom-btn {
  background: #ea6e01 !important;
  border: none;
  border-radius: 5px;
  color: white !important;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.3s;
}

.custom-btn:hover {
  background: #d65d00eb !important;
  transform: scale(1.05);
  color: #fff !important;
}

.custom-label {
  font-size: 14px;
  font-weight: 400;
}
.card-box {
  height: 100%;
  text-align: center;
  gap: 15px;
}

.icon {
  font-size: 45px;
  color: var(--Second-Option-P, #ea6e01);
}
.card-text {
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.card-title {
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
}
.quote-container {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  text-align: center;
  transition: height 0.5s ease; 
}
.quote-wrapper {
  position: relative;
}
.animated-quote {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 10px 0;
}
.animated-quote {
  visibility: hidden;
}
.animated-quote.active {
  visibility: visible;
}
.animated-quote.active {
  opacity: 1;
  transform: translateY(0);
  position: relative; /* Makes it take space */
}
.partners {
  background-color: #f9f9f9;
}
/* FAQ Box */
.question {
  background-color: #f9f9f9;
}
.faq-box {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.faq-question:hover {
  background-color: #f1f1f1;
}
.faq-question h4 {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  flex: 1;
}
.faq-question .toggle-icon {
  font-size: 18px;
  color: #666;
  transition: transform 0.3s ease;
  margin-left: 10px;
}
.faq-answer {
  display: none;
  padding: 10px 15px;
  color: #555;
}
.faq-answer p {
  margin: 0;
}
.content-box img {
  width: 100%;
  height: auto;
}
/* testimonials */
.testimonials {
  background-color: #f9f9f9;
}
.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: transparent;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  text-align: center;
  flex: 0 0 calc(33.33% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
}

.testimonial-card p {
  font-size: 20px;
  color: #1a1a1a;
  font-style: italic;
}

.testimonial-card span {
  font-size: 14px;
  color: #ea6e01;
  font-weight: bold;
}

.profile-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border-right: 3px solid #532494;
  object-fit: cover;
  margin-top: 10px;
}

.testimonial-card h5 {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
  width: 45px;
  height: 45px;
  background-color: #ea6e01;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  color: #fff;
  transition: background 0.3s;
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
  background-color: #d45a00;
}

.carousel-control-prev-custom[disabled],
.carousel-control-next-custom[disabled] {
  background-color: #ccc;
  cursor: default;
}
footer {
  background-color: #3e3e3e;
  font-size: 16px !important;
}
footer ul li {
  margin-bottom: 8px;
}

.list-unstyled a {
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}

.list-unstyled a:hover {
  color: #ea6e01 !important;
  transform: scale(1.1);
}
.social-icon img {
  width: 12px;
  height: 12px;
  filter: drop-shadow(1px 1px 0px black) drop-shadow(-1px -1px 0px black);
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 20px;
  height: 20px;
  background-color: #ea6e01;
  border-radius: 2px;
  color: black;
}
.social-icon:hover {
  transform: scale(1.2);
}
@keyframes floatGlow {
  0% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-5px);
    filter: brightness(1.5);
  }
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
}

.mobile-logo-container img {
  animation: floatGlow 3s infinite ease-in-out;
}
.mail:hover {
  transform: none !important;
  text-decoration: underline !important;
}
@media (min-width: 1025px) and (max-width: 1336px) {
  #about-subtitle {
    font-size: 40px;
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 38px;
  }
  .subtitle {
    font-size: 32px;
  }
  .section-title {
    font-size: 22px;
  }
  .copy {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navbar-toggler .close-icon {
    font-size: 24px;
    color: #333;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    display: none;
  }
  .navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline-block;
  }
  /* Dark Overlay Effect */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 101px;
    height: auto;
  }
  .navbar {
    min-height: 80px;
  }
  .navbar-nav .nav-link:hover {
    color: #ea6e01;
    transform: none !important;
  }
  #home {
    margin-top: 70px !important;
  }
  .about-title {
    font-size: 20px;
  }
  .about-box h3 {
    font-size: 18px;
  }
  .about-img {
    max-width: 50%;
  }
  .feature-icon {
    font-size: 18px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h4 {
    font-size: 14px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .toggle-icon {
    font-size: 16px;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-subtitle {
    font-size: 35px;
  }
  .subtitle {
    font-size: 32px;
  }
  .section-title {
    font-size: 20px;
  }
  .image-container::before,
  .image-container::after {
    width: 80%;
    height: 80%;
  }
  .image-container::before {
    bottom: -18px;
    left: 20px;
  }
  .image-container::after {
    top: -18px;
    right: 20px;
  }
  .image-container img {
    max-width: 80% !important;
  }
  .service-links {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .service-link::-webkit-scrollbar {
    display: none;
  }

  .service-link {
    flex: 0 0 auto;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    min-width: fit-content;
  }

  .service-link.active {
    background-color: #e76f00;
    color: white !important;
    border-color: #e76f00;
  }
  .copy {
    font-size: 11px;
  }
}

@media (max-width: 767.98px) {
  .marquee {
    animation-duration: 10s; /* Faster animation on mobile */
  }
  .marquee-oem {
    animation: scroll-left 30s linear infinite;
  }
  .marquee-oem img {
    height: 60px;
    width: 100px;
  }
  .marquee-distributor img {
    height: 60px;
    width: 100px;
  }
  .marquee-distributor {
    animation: scroll-right 30s linear infinite;
  }
  .marquee-oem,
.marquee-distributor {
  gap: 20px;
}
}

@media (max-width: 767px) {
  .dot {
    margin: 0 2px;
  }
  .about-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 18px;
  }
  .hero-subtitle {
    font-size: 30px;
  }
  .subtitle {
    font-size: 30px;
  }
  .section-title {
    font-size: 18px;
  }
  .partners h2 {
    font-size: 32px !important;
  }
  .main-service-image {
    height: 200px;
    width: 90%;
  }
  .corner-top-left {
    top: -18px;
    left: -18px;
  }

  .corner-bottom-right {
    bottom: -18px;
    right: -18px;
  }
  #service-title {
    font-size: 18px;
  }
  .corner-shape {
    width: 120px;
    height: 120px;
  }
  .corner-top-left {
    top: -14px;
    left: 0px;
  }
  .corner-bottom-right {
    bottom: -14px;
    right: 0px;
  }
  .partners h2 {
    font-size: 20px !important;
  }
  #contact h2 {
    font-size: 20px !important;
  }
  .contactImg {
    max-width: 90%;
  }
  .about-img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }
  .copy {
    font-size: 14px;
  }
  .image-container::before,
  .image-container::after {
    width: 80%;
    height: 80%;
  }
  .image-container::before {
    bottom: -14px;
    left: 22px;
  }
  .image-container::after {
    top: -14px;
    right: 22px;
  }
  .image-container img {
    max-width: 80% !important;
  }
}
@media (max-width: 375px) {
  .image-container::before,
  .image-container::after {
    width: 80%;
    height: 80%;
  }
  .image-container::before {
    bottom: -14px;
    left: 22px;
  }
  .image-container::after {
    top: -14px;
    right: 22px;
  }
  .image-container img {
    max-width: 80% !important;
  }
}
@media (max-width: 320px) {
  .main-service-image {
    height: 200px;
    width: 80%;
  }
  .corner-top-left {
    top: -14px;
    left: 12px;
  }

  .corner-bottom-right {
    bottom: -14px;
    right: 12px;
  }
  .image-container::before,
  .image-container::after {
    width: 80%;
    height: 80%;
  }
  .image-container::before {
    bottom: -14px;
    left: 14px;
  }
  .image-container::after {
    top: -14px;
    right: 14px;
  }
  .image-container img {
    max-width: 80% !important;
  }
 .copy{
  font-size:11px;
 }
}

@media (min-width: 768px) {
  .about-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .about-image,
  .about-content {
    flex: 1;
  }
}
