/* 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,
.about-section h3,
.why-excellence h3,
.services-serction 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: center;
  background-repeat: no-repeat;
}

.why-excellence {
  background-image: url("../images/why-choose.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* Logo Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 20s linear infinite;
}

/* Vertical text for floating button */
.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) {
  .testimonials-serction .owl-carousel .owl-stage-outer {
    padding: 0px;
  }
}