body {
    margin:0;
    font-family: Arial, sans-serif;
    background: ghostwhite;
}

.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#0a3d62;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo-container {
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-container img {
    height:40px;
}

nav {
    display:flex;
    gap:20px;
}

nav a {
    color:white;
    text-decoration:none;
}

.hamburger {
    display:none;
    font-size:28px;
    cursor:pointer;
}

.hero {
    background:#f1f1f1;
    padding:80px 20px;
    text-align:center;
}

.btn-primary {
    background:#27ae60;
    color:white;
    padding:12px 20px;
    text-decoration:none;
    margin:5px;
    display:inline-block;
}

.btn-secondary {
    background:#2980b9;
    color:white;
    padding:12px 20px;
    text-decoration:none;
}

/*booking button*/

.booking-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    text-align: center;
    text-decoration: none; /* Remove default link underline */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
}

.booking-button:hover {
    background-color: #0056b3; /* Darker color on hover */
}



.service-grid {
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

h2, p {padding-left: 10px;
}

.card {
    background:#0a3d62;
    color: white;
    padding:20px;
    width:300px;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
}

footer {
    background:#0a3d62;
    color:white;
    text-align:center;
    padding:20px;
}

@media (max-width:768px) {
    nav {
        display:none;
        flex-direction:column;
        background:#0a3d62;
        position:absolute;
        top:60px;
        right:0;
        width:200px;
        padding:10px;
    }

    .hamburger {
        display:block;
    }
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.hero-poster {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.reviews {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.review-carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.review-card p {
    font-size: 18px;
    margin-bottom: 15px;
}

.stars {
    color: #f1c40f;
    font-size: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0a3d62;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media (max-width:768px) {
    .review-card p {
        font-size: 16px;
    }
}

.faq {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.faq h3 {
    margin-top: 25px;
    font-size: 20px;
}

.faq p {
    margin-top: 5px;
    color: #555;
}