/* Navbar */
.navbar {
    transition: background 0.3s;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.btn-primary {
    background-color: #ff6600;
    border: none;
}

.btn-primary:hover {
    background-color: #e65c00;
}

/* About Section */
#about {
    padding: 50px 20px;
}

/* Contact Section */
#contact {
    background: #f8f9fa;
    padding: 50px 20px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
}

/* Packages Section */
#packages {
    padding: 50px 20px;
}

.package-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.package {
    min-width: 300px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s;
    max-height: 500px;
}

.package img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    max-height: 500px;
}

.package:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #333;
    color: white;
}
