body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

.custom-navbar {

    background: rgba(11, 31, 58, 0.82);
    backdrop-filter: blur(10px);
    padding: 6px 0;
    min-height: 80px;
    transition: 0.4s;
    z-index: 9999;

}

.navbar-brand {
    font-size: 1.7rem;
    color: #D4AF37 !important;
}

.nav-link {
    color: #fff !important;
    margin-left: 10px;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 20px;
}

.section-padding {
    padding: 100px 0;
}

.tour-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    height: 250px;
    object-fit: cover;
}

.footer-section {
    background: #0B1F3A;
    color: white;
    padding: 70px 0 30px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.whatsapp-float {

    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;

}
.main-logo {

    height: 58px !important;
    width: auto !important;
    max-width: 240px;
    display: block;
    object-fit: contain;

}

.hero-logo{

    width: 220px;
    max-width: 90%;
    height: auto;

}

.hero-content h1{

    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);

}

.hero-content p{

    font-size: 1.3rem;

}

@media(max-width:768px){

    .hero-content h1{

        font-size: 2.5rem;

    }

    .hero-content p{

        font-size: 1rem;

    }

    .hero-logo{

        width: 160px;

    }

}

.gallery-card{

    transition:0.4s;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-image{

    width:100%;
    height:320px;
    object-fit:cover;
    cursor:pointer;
    transition:0.4s;

}

.gallery-image:hover{

    opacity:0.92;

}

.testimonial-card{

    transition:0.4s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-avatar{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;

}