/* Using Tailwind utilities for topbar layout and colors. */

/* Font settings: Bebas Neue for headings, Roboto for body/text */
html {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial !important;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bebas Neue', 'Roboto', sans-serif !important;
}

.hero h3,
.why-excellence h3,
.about-section h3,
.services-section h3,
#consultationForm h3 {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial !important;
}

/* Hero background moved from inline to CSS */
.hero {
  background-image: url("../images/hero-banner.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.triangle {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1a98d5;
}

.why-excellence #whyExcellenceSlider .owl-item {
  padding-bottom: 20px;
}


/* Logo Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 20s linear infinite;
}

.services-section {
  background-image: url("../images/service-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .serviceBoxWrapper {
  position: relative;
} */

.services-section .serviceBox {
  height: 250px;
}

.services-section .serviceBox .normal-para {
  font-size: 0.9rem;
}

.services-section .serviceBox .small-para {
  font-size: 0.9rem;
  display: none;
}

.services-section .serviceBox.active {
  background: #2e2e6e;
  color: #fff;
  z-index: 100;
  transition: 0.4s ease-out;
}

.services-section .serviceBox.active .normal-para {
  font-size: 1rem;
  font-weight: 500;
}

.services-section .serviceBox.active .small-para {
  display: block;
}

.services-section .serviceBox.active a {
  color: #fff;
}

.services-section .serviceBox1.active {
  margin-bottom: -250px;
  height: 500px;
}

.services-section .serviceBox2.active {
  margin-top: -250px;
  height: 500px;
}

.writing-mode-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.desktop-clearfix {
  clear: both;
  display: block;
}

.testimonials-serction img {
  width: auto !important;
}

.testimonials-serction .owl-carousel .owl-stage-outer {
  padding: 30px 0px;
}

/* Base dots container */
#testimonialSlider .owl-dots {
  margin-top: 20px;
  text-align: center;
}

/* Dot */
#testimonialSlider .owl-dots .owl-dot span {
  width: 28px;
  height: 6px;
  background: #d1d5db;
  display: block;
  border-radius: 4px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

/* Active dot */
#testimonialSlider .owl-dots .owl-dot.active span {
  background: #1a98d5;
  width: 40px;
}


@media only screen and (min-width:360px) and (max-width:767px) {
  .desktop-clearfix {
    clear: none;
    display: none;
  }

  .services-section {
    background: none;
  }

  .services-section h2 {
    color: #000;
  }

  .services-section .serviceBox {
    height: 250px;
  }

  .services-section .serviceBox h3 {
    line-height: 24px;
  }

  .testimonials-serction .owl-carousel .owl-stage-outer{
    padding: 0px;
  }
}