
/* Icon bounce animation */
.bounce-animation {
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Glow effect on button */
.book-btn {
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
  transition: 0.3s;
}
.book-btn:hover {
  box-shadow: 0 0 20px rgba(255, 193, 7, 1), 0 0 40px rgba(255, 193, 7, 0.8);
  transform: scale(1.05);
}

/* Floating emoji animation */
.floating-emoji {
  position: absolute;
  font-size: 1.5rem;
  animation: floatUp 4s infinite linear;
  opacity: 0.8;
}
.floating-emoji.second {
  right: 20px;
  animation-delay: 2s;
}
@keyframes floatUp {
  0% { bottom: -10px; opacity: 0; }
  50% { opacity: 1; }
  100% { bottom: 100%; opacity: 0; }
}

  .service-card {
    transition: all 0.3s ease;
    background: #fff;
  }  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
  }  .icon-wrapper {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }  .service-card i {
    font-size: 2rem;
  }.section-title {
    font-weight: 600;
  }

    div .cT {
        color: #4c7145; 
    }

    
    /* css for Booking */
.progress-container {
  gap: 20px;
}
.circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  transition: 0.4s;
}
.circle.active {
  background: linear-gradient(135deg, #6f42c1, #ffc107);
  box-shadow: 0px 0px 12px rgba(111, 66, 193, 0.6);
}
.line {
  height: 3px;
  width: 60px;
  background: #ddd;
}
.btn-gradient {
  background: linear-gradient(135deg, #6f42c1, #ffc107);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn-gradient:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffc107, #6f42c1);
}
.invalid-feedback {
  display: none;
  color: red;
  font-size: 0.85rem;
}
input:invalid ~ .invalid-feedback,
select:invalid ~ .invalid-feedback {
  display: block;
}


/* Make text scale better on smaller screens */
.hero-title {
  font-size: 2rem;
  line-height: 1.3;
}
.hero-lead {
  font-size: 1rem;
  line-height: 1.6;
}
.hero-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Tablets */
@media (min-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-lead { font-size: 1.1rem; }
}

/* Desktops */
@media (min-width: 992px) {
  .hero-title { font-size: 3rem; }
  .hero-lead { font-size: 1.25rem; }
}


/* Footer Styling */
.footer {
  font-size: 0.9rem; /* smaller, modern font size */
  line-height: 1.6;
  padding-top: 2rem !important; /* reduce height */
  padding-bottom: 2rem !important;
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem !important; /* tighter spacing */
}

.footer p,
.footer a {
  font-size: 0.9rem;
}

.footer a.btn-link {
  padding: 0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer a.btn-link:hover {
  color: #ffc107 !important; /* subtle hover color */
}

/* Newsletter input smaller */
.footer input.form-control {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
}

.footer button.btn {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
}

/* Copyright bar compact */
.copyright {
  font-size: 0.8rem;
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}
