/* ---------------------------------------------------<Base Styles>--------------------------------------------------- */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
.grecaptcha-badge { visibility: hidden; }

/* ---------------------------------------------------<Navbar>--------------------------------------------------- */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1rem 0;
}

.navbar-scrolled {
  background-color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.nav-link {
  color: white;
}

.nav-link:hover {
  color: #dc3545;
}

/* Logo Sizing */
.navbar-brand img {
  height: 150px;
  transition: height 0.3s ease;
}

.navbar-scrolled .navbar-brand img {
  height: 50px;
}

/* ---------------------------------------------------<Hero Section>--------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://dkialpha.com/alpha_img/junk/1920/junk-015.webp') no-repeat center center/cover;
  background-size: 105%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: zoomHero 30s ease-in-out infinite alternate;
}

@keyframes zoomHero {
  from {
    background-size: 105%;
  }
  to {
    background-size: 120%;
  }
}


.hero-overline,
.hero-heading,
.hero-para {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.hero-overline {
  animation-delay: 0.3s;
}

.hero-heading {
  animation-delay: 0.5s;
}

.hero-para {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-overline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-heading {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-para {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 3rem 1rem;
    background-position: center center;
    background-size: cover; /* FULL cover */
    background-attachment: scroll;
    animation: none; /* <-- stop zoomHero animation on mobile */
  }

  .hero-section .container {
    padding: 75px 0 0;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-para {
    font-size: 1rem;
  }

  .hero-overline {
    font-size: 0.9rem;
  }

  .hero-section .d-flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}

/* ------------------------------------------------</Hero Section>------------------------------------------------ */

/* ---------------------------------------------------<One Liner>--------------------------------------------------- */
.fade-in-text {
  opacity: 0;
  animation: fadeInText 1.5s ease-in forwards;
  animation-delay: 0.3s;
}

.fade-in-image {
  opacity: 0;
  animation: fadeInImage 1.5s ease-in forwards;
  animation-delay: 0.5s;
}
.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-element.in-view {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@keyframes fadeInImage {
  to {
    opacity: 1;
  }
}




/* ---------------------------------------------------<Promo Bars>--------------------------------------------------- */
.promo-bar {
  background-color: #dc3545;
  color: white;
  padding: 3rem 0;
  clip-path: polygon(0 35%, 100% 0%, 100% 65%, 0% 100%);
  position: relative;
  z-index: 1;
}
.promo-bar.reverse {
  clip-path: polygon(0 0%, 100% 35%, 100% 100%, 0% 65%);
}
@media (max-width: 767.98px) {
    .promo-bar .container {
        margin: 30px 0!important; 
    }
  .promo-bar {
    padding: 7rem 0;
    clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  }

  .promo-bar.reverse {
    clip-path: polygon(0 0%, 100% 20%, 100% 100%, 0% 80%);
  }
}

/* ---------------------------------------------------</Promo Bars>--------------------------------------------------- */

/* ---------------------------------------------------<Our Process>--------------------------------------------------- */
.card.bg-dark {
  background-color: #000;
  color: #fff;
}
.card.bg-dark h4,
.card.bg-dark .display-4 {
  color: #dc3545;
}
.process-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------</Our Process>--------------------------------------------------- */

/* ---------------------------------------------------<Locations>--------------------------------------------------- */
.fade-pin {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.fade-pin.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------------------------------------------</Locations>--------------------------------------------------- */

/* ---------------------------------------------------<Reviews>--------------------------------------------------- */
    .carousel-inner .row {
      margin-left: 2rem;
      margin-right: 2rem;
    }

    .reviews-section .carousel-control-prev,
    .reviews-section .carousel-control-next {
      width: auto;
      padding: 0 1rem;
    }

    .reviews-section .carousel-control-prev {
      left: -2rem;
    }

    .reviews-section .carousel-control-next {
      right: -2rem;
    }

    .carousel-custom-icon {
      width: 48px;
      height: 48px;
      font-size: 1.5rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {
      .carousel-inner .row {
        margin-left: 0;
        margin-right: 0;
      }

      .reviews-section .carousel-control-prev,
      .reviews-section .carousel-control-next {
        display: none;
      }
    }

/* ---------------------------------------------------</Reviews>--------------------------------------------------- */

/* ---------------------------------------------------<Buttons>--------------------------------------------------- */
.btn-primary {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-primary:hover {
  background-color: #a71d2a;
  border-color: #a71d2a;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: white;
}

/* Scroll to Top Button */
#scrollTopBtn {
  z-index: 999;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------<Sections Spacing>--------------------------------------------------- */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ---------------------------------------------------<Footer>--------------------------------------------------- */
.footer a {
  color: #dc3545;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
