/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header (Hero Section with Video) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

/* Fullscreen Background Video */
#hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill; /* Maintain aspect ratio */
    z-index: -1;
    background-color: black;
}

/* Dark Overlay on Video */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Logo */
.logo {
    max-height: 300px;
    width: auto;
    margin-bottom: 15x;
    animation: fadeIn 1.5s ease-in-out;
}

/* Service Banner Styling */
.service-banner {
    width: 50%;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Service Group - Separate Each Section */
.service-group {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Text */
.hero-overlay h1 {
    font-size: 3rem;
    color: #00AEEF; 
    animation: slideIn 1s ease-in-out;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: slideIn 1.2s ease-in-out;
}

/* Booking Button */
.booking-button {
    display: inline-block;
    background-color: #0077B6; 
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.booking-button:hover {
    background-color: #00AEEF;
    color: #0077B6; 
    transform: scale(1.05);
}

/* Services Section */
.services {
    text-align: center;
    padding: 60px;
    background-color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

.services h2 {
    font-size: 2.5rem;
    color: #0077B6;
    margin-bottom: 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 300px;
}

.service-card img {
    width: 100%;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Our Mission Section */
.mission {
    text-align: center;
    padding: 60px;
    background: #75c2de;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

.mission h2 {
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Form */
form {
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Form Button */
button {
    background-color: #00AEEF;
    color: #0077B6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #0077B6;
    color: white;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Contact Us Section */
.contact {
    text-align: center;
    padding: 60px;
    background-color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

.contact h2 {
    font-size: 2.5rem;
    color: #0077B6;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 5px 0;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #0077B6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.contact form button:hover {
    background-color: #00AEEF;
    color: #0077B6;
}

/* Top Navigation Bar - Smaller Size */
.top-nav {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 2px solid #0077B6;
}

.back-button {
    text-decoration: none;
    color: #0077B6;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.back-button:hover {
    text-decoration: underline;
}

/* Booking Page Header */
.booking-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00AEEF;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Header Content with Logo */
.header-content {
    display: inline-block;
    align-items: center;
    gap: 8px;
}

.header-logo {
    height: 150px; /* Adjust logo size */
}

.booking-header h1 {
    font-size: 2rem;
    margin: 0;
}

/* Booking Form */
.booking-form-container {
    max-width: 500px;
    margin: 30px auto;
    background-color: #00AEEF;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.booking-form-container form input,
.booking-form-container form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form-container form button {
    background-color: #0077B6;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.booking-form-container form button:hover {
    background-color: #00AEEF;
    color: #0077B6;
    transform: scale(1.05);
}

/* Phone Input */
.phone-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-input select {
    width: 30%;
}

.phone-input input {
    width: 65%;
}

/* Popup Overlay */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
#success-popup {
    background-color: #fff;
    padding: 30px 40px;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* Heading */
#success-popup h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

/* Message */
#success-popup p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

/* Close Button */
.close-btn {
    background-color: #0077B6;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1em;
    padding: 10px 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Close Button Hover */
.close-btn:hover {
    background-color: #00AEEF;
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.nav-logo img {
    height: 50px;
    width: 50px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 8px;
}

.nav-links a:hover {
    color: #0077B6;
}

/* Booking Button */
.nav-book .booking-button {
    background-color: #0077B6;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-book .booking-button:hover {
    background-color: #0077B6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* adjust for navbar height */
}
