:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --primary: #ea224d;
  --secondary: #1f43b8;
  --text: #111111;
  --muted-text: #666666;
  --border: #e7e7e7;
}

.hero-bg,
.service-area-bg,
.owner-photo,
.gallery-1,
.gallery-2,
.gallery-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  background-image:
    linear-gradient(
      180deg,
      rgba(8, 15, 34, 0.64) 0%,
      rgba(8, 15, 34, 0.18) 45%,
      rgba(8, 15, 34, 0.72) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    url("../images/hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-area-bg {
  background-image:
    linear-gradient(
      180deg,
      rgba(5, 16, 58, 0.82) 0%,
      rgba(11, 59, 154, 0.68) 100%
    ),
    linear-gradient(
      135deg,
      rgba(18, 60, 139, 0.55) 0%,
      rgba(15, 46, 117, 0.45) 35%,
      rgba(23, 57, 106, 0.55) 100%
    ),
    url("assets/images/locationcard-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-1,
.gallery-2,
.gallery-3 {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.gallery-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%),
    url("assets/images/card1.jpg");
}

.gallery-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%),
    url("assets/images/card2.jpg");
}

.gallery-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%),
    url("assets/images/card3.jpg");
}

.owner-photo {
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 24, 68, 0.12) 0%,
      rgba(7, 24, 68, 0.1) 100%
    ),
    linear-gradient(135deg, #ced9e7 0%, #f7f8fb 52%, #7e8ea5 100%),
    url("assets/images/garfield.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.shadow-card {
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Load Animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.85s ease-out forwards;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
    transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-raise {
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.hover-raise:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
}

.transition-soft {
  transition: all 0.3s ease;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.font-anton {
  font-family: "Anton";
}

/* Match arrows and dots to your primary color */
.slick-prev:before,
.slick-next:before {
  color: #d01e42 !important;
  font-size: 28px;
}
.slick-dots li.slick-active button:before {
  color: #d01e42 !important;
}
.slick-dots li button:before {
  font-size: 14px;
  color: #000;
}

/* Container spacing to prevent arrows from overlapping text */
.trust-slick-slider {
  padding: 0 40px;
  margin-bottom: 30px;
}

/* Lock image heights so Slick calculates widths properly on load */
.trust-slick-slider img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Ensure uniform height for all slides */
.slick-track {
  display: flex !important;
}
.slick-slide {
  height: inherit !important;
  float: none !important;
}

/* Service Page */
.service-section h2 {
  color: #000;
}
.service-section .services-top {
  color: #000;
}

.about-section h2 {
  color: #000;
}
.about-section p {
  color: #000;
}
.about-section li {
  color: #000;
}
.about-section .about-banner {
  color: #000;
  background: #dfdfdf;
}

.slick-dots li button:before {
  font-size: 10px !important;
}

.slick-dots li {
  width: 18px;
  height: 18px;
  margin: 0 1px;
}
.slick-dots {
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
  display: flex;
  width: max-content;
}

@media only screen and (max-width: 600px) {
  .hero-bg {
    background-position: 75%;
  }
}
