/* Using Tailwind utilities for topbar layout and colors. */

@font-face {
  font-family: "graphie";
  font-style: normal;
  src: url(../fonts/graphie.otf) format("opentype");
}

/* Font settings: Bebas Neue for headings, Roboto for body/text */
html {
  font-family: "graphie" !important;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
}

.hero h3,
.services-serction h3,
#consultationForm h3 {
  font-family: "Roboto Condensed", sans-serif;
}

.font-roboto-condensed {
  font-family: "Roboto Condensed", sans-serif !important;
}

/* Hero background moved from inline to CSS */
.hero {
  background: url("../images/hero-banner.webp") bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.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;
}

/* 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;
}

.movement1 {
  animation: movement1 4s ease-in-out infinite;
}

@keyframes movement1 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}

.movement2 {
  animation: movement2 4s ease-in-out infinite;
}

@keyframes movement2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/********* dotted line effect begin here *********/
.blink-line {
  border-color: #fd8282;
  animation: blinkColors 1.5s ease-in-out infinite;
}

@keyframes blinkColors {
  0% {
    border-color: #fd8282;
    /* box-shadow: 0 0 5px #ffffff; */
    opacity: 0.4;
  }
  25% {
    border-color: #3b82f6; /* blue */
    /* box-shadow: 0 0 10px #3b82f6; */
    opacity: 1;
  }
  50% {
    border-color: yellow; /* purple */
    /* box-shadow: 0 0 12px #a855f7; */
    opacity: 0.6;
  }
  75% {
    border-color: #22d3ee; /* cyan */
    /* box-shadow: 0 0 10px #22d3ee; */
    opacity: 1;
  }
  100% {
    border-color: #fd8282;
    /* box-shadow: 0 0 5px #ffffff; */
    opacity: 0.4;
  }
}
/********* dotted line effect ends here *********/
.service-box {
  min-height: 432px;
}

.service-box .box-hover-img {
  opacity: 1;
  transition: all 0.45s;
}
.service-box:hover .box-hover-img {
  opacity: 0;
}

ul.service-list {
  margin: 0;
  padding: 0;
  margin-left: 0px;
  margin-top: 10px;
}
ul.service-list li {
  padding-left: 25px;
  position: relative;
}
ul.service-list li::before {
  content: "";
  background: url(../images/icon.svg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}

.footer-social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.footer-social-icons ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  display: flex;
  border-radius: 5px;
  margin-top: 20px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .testimonials-serction .owl-carousel .owl-stage-outer {
    padding: 0px;
  }
  span.desktop-clearfix {
    clear: none;
    display: none !important;
  }
  .hero-video {
    top: 100px;
    transform: scale(2);
  }
  .hero {
    background: url(../images/hero-banner.webp) top 19% center;
    background-size: auto 260px;
    background-repeat: no-repeat;
  }
}
