body {
  font-family: "Poppins", sans-serif;
  color: #5e6282;
  height: 100vh;
  overflow-x: hidden;
}

.custom-text {
  display: flex;
  color: black;
  font-weight: bold;
  font-size: 17px;
}

.nav-link:hover {
  color: #df6951 !important;
}
.Signup {
  /* border: 1px solid #000; */
  border-radius: 8px;
  padding: 0px 10px;
  background: linear-gradient(to right, orange, yellow);
}
.Signup:hover {
  color: #04071d !important;
}
.hero h5 {
  color: #df6951;
  font-weight: 700;
}
.find:hover {
  background: linear-gradient(to right, orange, yellow);
  color: #000;
}
.Play-btn:hover {
  color: black;
}
.hero h1 {
  font-family: "sans-serif";
  font-weight: bold;
  font-size: 4rem;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
  color: #181e4b;
}

.hero-text {
  font-size: 1.1rem;
  color: #5e6282;
  max-width: 90%;
  margin-bottom: 2rem;
}
h1 {
  color: #000;
  font-family: "sans-serif";
}

.btn-primary {
  background-color: #f1a501;
  border: none;
}

.btn-link {
  color: #686d77;
  font-weight: bold;
}

#services {
  text-align: center;
}
.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  margin: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
  width: 40px;
  height: 40px;
}
#services {
  text-align: center;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hover animation */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon size */
.service-icon {
  width: 40px;
  height: 40px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
}

.card img {
  height: 300px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.card {
  border: none;
  /* width: 300px; */
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.price {
  font-weight: bold;
}
.trip-info i {
  margin-right: 6px;
}
.section-margin-top {
  margin-bottom: 100px;
}

.our-client-img img {
  max-height: 80px;
  object-fit: contain;
}

.color-btn {
  background-color: #ff7d68;
  color: white;
}
/* Base: full width for small screens */
.email-input {
  width: 100%;
  max-width: 100%;
}

.subscribe-btn {
  width: 100%;
}

/* Medium and up: input 50%, button auto */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .email-input {
    width: 50%;
  }

  .subscribe-btn {
    width: auto;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  /* .navbar-brand img {
    height: 30px;
  } */

  .Signup {
    padding: 2px 8px;
    font-size: 14px;
  }

  .custom-text {
    font-size: 15px;
  }
  .logo {
    width: 100%;
    max-width: 90px;
  }
  .small-img {
    margin-right: 50px;
    height: 20%;
    width: 50%;
  }

  .small-img p {
    font-size: 12px;
    margin-top: -5px;
  }
}

/* =======================
   GLOBAL ANIMATIONS
======================= */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Navbar animation */
.navbar {
  animation: navFade 0.8s ease forwards;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
   HERO SECTION
======================= */
.hero h5,
.hero h1,
.hero p,
.hero .btn {
  animation: slideLeft 1s ease forwards;
}

.hero img {
  animation: zoomIn 1.2s ease forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =======================
   CARDS HOVER EFFECT
======================= */
.card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =======================
   SERVICES ICON POP
======================= */
#services img {
  transition: transform 0.4s ease;
}

#services img:hover {
  transform: scale(1.15) rotate(3deg);
}

/* =======================
   CLIENT LOGOS
======================= */
.our-client-img img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.our-client-img img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* =======================
   BUTTON MICRO INTERACTION
======================= */
.btn,
.Play-btn img {
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.Play-btn img:hover {
  transform: scale(1.1);
}

/* =======================
   SCROLL ANIMATION
======================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
