/* ------------------------------- BODY  */
body {
  font-family: "Poppins", sans-serif;
}

/* ------------------------------- NAVBAR  */
/* Hover underline animation */
.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease-in-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #572d51; /* Brand Color */
  transition: width 0.3s ease-in-out;
}
.nav-link:hover {
  color: #572d51;
}
.theme-color1 {
  color: #572d51;
}
.nav-link:hover::after {
  width: 100%;
}
/* ------------------------------- WELCOME OVER VIEW  */

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float-slow {
  animation: float-slow 10s infinite ease-in-out;
}
.animation-delay-3000 {
  animation-delay: 3s;
}

/* ------------------------------- WHY CHOOSE US  */
@keyframes blob {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.animate-blob {
  animation: blob 8s infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}
.perspective {
  perspective: 1000px;
}
.rotate-y-6 {
  transform: rotateY(6deg);
}

@keyframes fly {
  0% {
    transform: translateX(-150px) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(100vw) translateY(-50px) rotate(15deg);
  }
  100% {
    transform: translateX(200vw) translateY(0) rotate(0deg);
  }
}
.animate-fly {
  animation: fly 12s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}
.animate-float {
  animation: float 10s ease-in-out infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: perspective(800px) rotateX(0deg);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: perspective(800px) rotateX(5deg) translateY(-10px);
  box-shadow: 0 10px 30px rgba(87, 45, 81, 0.3);
}
.process-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(87, 45, 81, 0.3);
}
.process-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #222;
}
.process-step p {
  font-size: 1rem;
  text-align: center;
  color: #555;
}

/* Make slider cards comfortable on wide screens by limiting card width inside the slide TESTIMONIALS */
@media (min-width: 900px) {
  .testimonialSlide > div {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* small visual tweak for dot */
.dotBtn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.dotBtn.active {
  background: #572d51;
  transform: scale(1.2);
}

/* Hover effects */
a[href="#contact"]:hover {
  transform: scale(1.05);
  background: #ffe26b;
}
a[href="#services"]:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive font sizes */
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }
  section p {
    font-size: 1rem;
  }
}

footer a:hover {
  color: #ffdd57;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  footer div[style*="grid-template-columns"] {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer img {
    margin: 0 auto;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Animate the flags row */
.animate-marquee {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
