.hero {
  background: linear-gradient(
    135deg,
    #1e8a9a 0%,
    #1f8b98 16%,
    #2c9888 33%,
    #34a07e 50%,
    #3da475 66%,
    #4bb368 83%,
    #56bc57 100%
  );
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  width: 100px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
 background: linear-gradient(135deg, #1E8A9A, #1F8B98, #2C9888, #34A07E, #3DA475, #4BB368, #56BC57);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;!important;
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, #1E8A9A, #1F8B98, #2C9888, #34A07E, #3DA475, #4BB368, #56BC57);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent; !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(45deg, #1f8b98, #4caf50);
  border-radius: 2px;
}
.navbar-nav{

    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.travel-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.travel-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.travel-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  font-size: 3rem;
  animation-delay: 0s;
}

.travel-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  font-size: 2.5rem;
  animation-delay: 2s;
}

.travel-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  font-size: 2rem;
  animation-delay: 4s;
}

.travel-icon:nth-child(4) {
  bottom: 25%;
  right: 25%;
  font-size: 2.8rem;
  animation-delay: 1s;
}

.travel-icon:nth-child(5) {
  top: 50%;
  left: 5%;
  font-size: 2.2rem;
  animation-delay: 3s;
}

.travel-icon:nth-child(6) {
  top: 60%;
  right: 10%;
  font-size: 1.8rem;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.airplane-animation {
  position: absolute;
  top: 30%;
  left: -100px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  animation: flyAcross 20s linear infinite;
}

@keyframes flyAcross {
  0% {
    left: -100px;
    transform: rotate(0deg);
  }
  100% {
    left: calc(100% + 100px);
    transform: rotate(0deg);
  }
}

.bus-animation {
  position: absolute;
  bottom: 20%;
  right: -100px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  animation: driveAcross 15s linear infinite reverse;
}

@keyframes driveAcross {
  0% {
    right: -100px;
  }
  100% {
    right: calc(100% + 100px);
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-custom {
  background: linear-gradient(45deg, #1F8B98, #4caf50);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(86, 188, 87, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(86, 188, 87, 0.4);
  color: white;
}

.btn-outline-custom {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.feature-cards {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e8a9a;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .feature-cards {
    bottom: 20px;
    width: 95%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 250px;
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}




 

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .section-title span {
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .custom-card {
            background: white;
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            height: 180px;
        }

        .custom-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .custom-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .custom-card:hover::before {
            opacity: 1;
        }

        .custom-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .custom-card:hover .custom-img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .custom-card:hover .card-overlay {
            opacity: 1;
        }

        .service-icon {
            font-size: 2.5rem;
            color: white;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

        .custom-card:hover .service-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            /* .container {
                padding: 40px 30px;
            } */

            .section-title {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 30px;
            }

            .custom-card {
                height: 160px;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
           

            .section-title {
                font-size: 1.8rem;
            }

            .custom-card {
                height: 140px;
                margin-bottom: 20px;
            }

            .service-icon {
                font-size: 2rem;
            }
            .Zigzag{
                display: none;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.5rem;
            }

            .custom-card {
                height: 120px;
            }

            .service-icon {
                font-size: 1.8rem;
            }
            .Zigzag{
                display: none;
            }
        }

        /* Animation for cards */
        .custom-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}





        .custom-card:nth-child(1) { animation-delay: 0.1s; }
        .custom-card:nth-child(2) { animation-delay: 0.2s; }
        .custom-card:nth-child(3) { animation-delay: 0.3s; }
        .custom-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }