
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0dcaf0 !important;
}

.carousel-item {
    height: 100vh;
    min-height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.carousel-caption {
    bottom: 35%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #1f2937;
}

.section-title p {
    color: #6b7280;
}

.destination-card {
    border: none;
    overflow: hidden;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    height: 260px;
    object-fit: cover;
}

.package-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.package-box:hover {
    transform: scale(1.02);
}

.package-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.stats {
    background: linear-gradient(to right, #0ea5e9, #2563eb);
    color: white;
    padding: 80px 0;
}

.stats h2 {
    font-size: 3rem;
    font-weight: 700;
}

.testimonial {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

footer {
    background: #111827;
    color: white;
    padding: 50px 0 20px;
}

footer a {
    color: #d1d5db;
    text-decoration: none;
}

footer a:hover {
    color: #0dcaf0;
}

.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
    color: white;
}

@media(max-width: 768px) {

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

