  .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            z-index: 1000;
            border: 1px solid #f0f0f0;
            padding: 8px 0;
            margin-top: 8px;
        }


        .nav-dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-content a {
            color: #374151;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 2px 8px;
        }

        .dropdown-content a:hover {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: white;
            transform: translateX(5px);
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 8px;
            border-radius: 8px;
            text-decoration: none;
        }

        .nav-link:hover {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .dropdown-arrow {
            margin-left: 5px;
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .nav-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

      
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a.facebook:hover { color: #1877f2; }   /* Facebook blue */
.social-icons a.instagram:hover { color: #e4405f; }  /* Instagram pink */
.social-icons a.tiktok:hover { color: #010101; }     /* TikTok black */

.banner {
  position: relative;
  background: url('../images/htt-banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* Black overlay with opacity */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(0 0 0 / 84%);
  z-index: 1;
}
/* Make content appear above the overlay */
.banner-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 480px) {
#contact-email .text-sm{font-size:0.610rem}
#mobile-menu{overflow-y:auto}
}

/* index */

 .feature-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}
.rating-stars {
    color: #FFD700;
    font-size: 0.9rem;
}
        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
        }
       
        * {
            box-sizing: border-box;
        }

        .gradient-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        }

        .text-gold {
            color: #FFD700;
        }

        .bg-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        }

        .border-gold {
            border-color: #FFD700;
        }

        .hover-gold:hover {
            background-color: #FFA500;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }

        .hero-section {
            
            background-size: cover;
            background-position: center;
            min-height: 500px;
        }

        .section-title {
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
        }

        .tour-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .tour-image {
            height: 200px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            position: relative;
            overflow: hidden;
        }

        .price-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            padding: 7px 7px;
            border-radius: 20px;
            font-weight: bold;
            color: #fff;
        }

        .destination-card {
            position: relative;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .destination-card {
                height: 280px;
            }
            #mobile-menu{overflow-y:auto}

        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 24px;
            color: white;
        }

        .activity-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
        }

        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 280px;
                padding: 12px 12px;
            }
            #mobile-menu{overflow-y:auto}

            .text-sm{font-size:0.68rem !important}
           .price-badge{font-size:17px !important}
            .nav-dropdown .dropdown-content {
                position: fixed;
                top: 80px;
                left: 16px;
                right: 16px;
                width: auto;
                min-width: auto;
            }
           
            .section-title {
                font-size: 2rem !important;
                line-height: 1.2;
            }
           
            .hero-section h2 {
                font-size: 1.5rem !important;
                line-height: 1.1;
                margin-bottom: 1rem;
            }
           
            .hero-section p {
                font-size: 1.1rem !important;
                margin-bottom: 2rem;
            }
           
            .tour-card {
                margin-bottom: 1rem;
            }
           
            .tour-card .p-4 {
                padding: 1rem !important;
            }
           
            .destination-card {
                height: 180px;
            }
           
            .destination-overlay {
                padding: 16px;
            }
           
            .destination-overlay h4 {
                font-size: 1.25rem;
                margin-bottom: 0.25rem;
            }
           
            .destination-overlay p {
                font-size: 0.875rem;
            }
           
            .activity-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
                margin-bottom: 12px;
            }
           
            .blog-card .h-48 {
                height: 160px !important;
            }
           
            .grid {
                gap: 1rem !important;
            }
           
            .max-w-7xl {
                padding-left: 1rem;
                padding-right: 1rem;
            }
           
            .py-20 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }
           
            .py-16 {
                padding-top: 2.5rem !important;
                padding-bottom: 2.5rem !important;
            }
           
            .mb-16 {
                margin-bottom: 2rem !important;
            }
           
            .text-center h3 {
                margin-bottom: 0.5rem !important;
            }
           
            .text-center p {
                font-size: 1rem !important;
                margin-bottom: 1rem !important;
            }
        }
 
 .tour-card .button {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    display: block;
    text-align: center;
}
