    html {
      scroll-behavior: smooth;
    }

   section {
  padding: 80px 0;
  min-height: 100vh; /* Make sure it fills at least the full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Optional: centers content vertically */
}


    #backToTop {
      display: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      font-size: 20px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 50%;
      padding: 5px 15px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    #backToTop:hover {
      background: #0056b3;
    }

    /* Home Section Styles */
    #home {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #87ceeb;
      z-index: 1;
    }

    .sky {
      position: absolute;
      top: 0;
      left: 0;
      height: 70%;
      width: 100%;
      background: linear-gradient(to bottom, #2e85a9 0%, #b2e0ff 100%);
      z-index: 1;
    }

    .cloud {
      position: absolute;
      background: url('images/cloud.png') no-repeat center;
      background-size: contain;
      width: 200px;
      height: 100px;
      opacity: 0.9;
      animation: moveClouds 60s linear infinite;
      z-index: 2;
    }

    .cloud1 { top: 80px; left: -250px; }
    .cloud2 { top: 200px; left: -400px; animation-delay: 15s; }

    @keyframes moveClouds {
      0% { transform: translateX(0); }
      100% { transform: translateX(200vw); }
    }

    .ground {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 30%;
      width: 100%;
      background: #b2e0ff;
      z-index: 2;
      overflow: visible;
    }

    .grass {
      position: absolute;
      bottom: 0;
      height: 30px;
      width: 200%;
      background: url('images/grass.png') repeat-x;
      background-size: contain;
      animation: grassScroll 10s linear infinite;
      z-index: 3;
    }

    @keyframes grassScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .bus {
      position: absolute;
      bottom: 5px;
      left: 30%;
      transform: translateX(-50%);
      width: 100vw;
      max-width: 600px;
      height: 150px;
      background: url('images/bus.png') no-repeat center;
      background-size: contain;
      animation: busMove 2s ease-in-out infinite alternate;
      z-index: 2;
      transform-origin: center bottom;
    }

    @keyframes busMove {
      0% { transform: translateY(0) rotate(-0.5deg); }
      100% { transform: translateY(-2px) rotate(0.5deg); }
    }

    .home-content {
      position: absolute;
      top: 35%;
      width: 100%;
      text-align: center;
      color: #fff;
      z-index: 5;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    }

    .home-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .home-content p {
      font-size: 1.2rem;
    }

   /* Initial navbar style */
#navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  background-color: transparent;
  backdrop-filter: none;
  z-index: 999;
}

/* On scroll */
#navbar.scrolled {
  background-color: rgba(4, 29, 82, 0.8);
  backdrop-filter: blur(10px);
}

/* Navbar links default */
.navbar-nav .nav-link {
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Active link style */
.navbar-nav .nav-link.active {
  background-color: #0b174a; /* darker background */
  color: #fff;
}

 .section-bg {
      background: linear-gradient(to right, #dfefff, #c6f1ff);
    }
    .about-section {
      background: linear-gradient(to right, #f7faff, #d0eaff);
      color: #333;
    }
    .feature-icon {
      background-color: #fff;
      border-radius: 50%;
      padding: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .feature-icon img {
      width: 48px;
    }
    .card-custom {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .card-custom:hover {
      transform: translateY(-10px);
    }
    .animated-title {
      font-size: 2.5rem;
      font-weight: bold;
      background: linear-gradient(to right, #0d6efd, #00bcd4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: slideIn 2s ease-in-out;
    }
    @keyframes slideIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
	
	.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.timeline::before {
      content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    background: #0a58ca;
    border-radius: 10px;
    z-index: 0;
}

.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}

.timeline-step .year {
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-step .dot {
      width: 32px;
    height: 32px;
    background: #007bff;
    border-radius: 50%;
    margin: 0 auto;
    border: 8px solid white;
    z-index: 2;
    position: relative;
}

.timeline-step .desc {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Vertical layout on mobile */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    width: 4px;
    height: 100%;
    top: 0;
    left: 25px;
  }

  .timeline-step {
    text-align: left;
    margin-bottom: 50px;
    padding-left: 40px;
    position: relative;
  }

  .timeline-step .dot {
    position: absolute;
    left: 20px;
    top: 20px;
    transform: translateY(-50%);
  }

  .timeline-step .year {
    margin-left: 10px;
  }

  .timeline-step .desc {
    margin-left: 10px;
  }
}

.package-card .img-wrapper {
  border: 4px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  transition: transform 0.3s ease;
}

.package-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .img-wrapper img {
  transform: scale(1.05);
}

#bookings .card:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.btn-flash {
  background-color: #ff6f00;
  color: white;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
}

.btn-flash:hover {
  background-color: #e65100;
}



.btn-flash {
  background-color: #007bff;
  color: white;
  animation: flash 1.5s infinite;
  border: none;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.btn-flash:hover {
  animation: none;
  background-color: #0056b3;
}

#enquiry .form-label {
  font-weight: 500;
}

#estimateResult {
  transition: all 0.3s ease-in-out;
  font-size: 0.95rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: white;
  }

  .bg-gradient-blue { background: linear-gradient(135deg, #1e88e5, #42a5f5); }
  .bg-gradient-green { background: linear-gradient(135deg, #43a047, #66bb6a); }
  .bg-gradient-purple { background: linear-gradient(135deg, #8e24aa, #ba68c8); }
  .bg-gradient-orange { background: linear-gradient(135deg, #fb8c00, #fbc02d); }

  .card-custom {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .card-custom:hover {
    transform: translateY(-5px);
  }

  .card-custom h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .card-custom p {
    font-size: 0.9rem;
  }


footer ul li i {
  margin-right: 8px;
}
footer ul li i {
  color: #00d4ff;
}

footer a:hover {
  color: #0dcaf0 !important;
  text-decoration: underline;
}
