/* General Styling */
body {
    margin: 0;
    font-family: inherit;  /* Inherit the font family from the parent */
    background: url('../assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: black;
}

.section {
    padding: 50px;
    text-align: center;
    color: black;
    font-family: inherit;  /* Ensure sections inherit the main font */
}

.section h2 {
    margin-bottom: 20px;
    color: black;
}

/* Home Section with Parallax and Sticky Effect */
.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('../assets/home-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden; /* To ensure scrolling is controlled */
}

.home .overlay {
    position: sticky;
    top: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    z-index: 1; /* Ensure overlay stays on top */
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 99.5%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.navbar .logo img {
    max-height: 40px;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
}

.navbar .nav-links ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
}

.navbar .nav-links ul li a:hover {
    color: #DD5A26;
}

.navbar .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    .nav-links ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
        z-index: 999;
    }

    .navbar .menu-toggle {
        display: block;
    }

    .navbar .nav-links.active ul {
        display: flex;
    }

    .nav-links ul li {
        text-align: center;
    }

    .nav-links ul li a {
        color: white;
    }

    .nav-links ul li a:hover {
        color: #ff9800;
    }
}

/* Contact Form Styling */
form input, form textarea, form button {
    color: black;
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
}

/* Restriction Section */
#services-restriction {
    margin-top: 30px;
}

/* Disclaimer Modal Styling */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.disclaimer-modal.active {
    visibility: visible;
    opacity: 1;
}

.disclaimer-content {
    background-color: white;
    padding: 20px;
    max-width: 800px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
}

.agree-btn {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.agree-btn:hover {
    background-color: #005f73;
}
