/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman';
}

html, body {
    
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Times New Roman';
    scroll-behavior: smooth;
    background-color: black;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: black;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #0077CC;
    display: flex;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}
.logo a img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    border-radius: 5px;
}
.logo a:hover {
    color: #66A3A3;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 18px;
}

.menu ul li a:hover {
    color: #66A3A3;
}

/* Mobile Menu */
#menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#close-menu {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: #2c4e4e;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        transition: right 0.5s ease-in-out;
        z-index: 1000;
    }

    .menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .menu ul li a {
        font-size: 22px;
        text-align: left;
    }

    #close-menu {
        display: block;
    }
 

}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    position: flex;
    width: 100%;
    bottom: 0;
}
/* Contact section */
.contact {
    padding: 80px 5% 100px;
    background-color: #66A3A3;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    text-align: center; 
    flex-direction: column;
}

.contact .content h2 {
    font-size: 42px; 
    margin-bottom: 20px;
    color: #0077CC;
}

.contact .content p {
    font-size: 20px; 
    color: #ccc;
}

/* Flex layout for contact info and form */
.container {
    display: flex;
    justify-content: space-between; 
    gap: 40px;
    align-items: flex-start; 
    margin-top: 40px;
}

/* Contact info styling */
.contact {
    padding: 80px 5% 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.79), rgba(0, 0, 0, 0.95)), 
                url('contact-background.jpg') no-repeat center center/cover;
    margin-top: 60px;
    text-align: center;
}
.contact-info {
    padding-top:7%;
    flex: 1;
    text-align: left; 
    color: #ffffff;
    padding-left: 0px;

}

.contact-info .info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 27px;
}

.contact-info h3, .contact-info p {
    font-size: 20px; 
}

.contact-info i {
    font-size: 30px;
    color: #0077CC;
}

/* Contact form container adjustments */
.contact-form-container {
    max-width: 500px; 
    width: 100%;
    margin-left: auto;
    margin-right: auto; 
}
.contact-form h3{
    padding-bottom: 3%;
    font-size: 25px;
    color: #66A3A3;;
}

.contact-form {
    width: 100%;
    padding: 34px; 
    background: rgba(38, 38, 38, 0.728);
    border-radius: 10px;
    max-width: 500px; 
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.contact-form button {
    width: 100%;
    padding: 9px;
    font-size: 14px;
    background: #0077CC; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #758c8c; 
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column; 
        gap: 20px; 
        object-position: center;
    }


    /* Center the contact info */
    .contact-info {
        text-align: center; 
        display: flex;
        flex-direction: column; 
        align-items: center; 
        padding-top: 0; 
        padding-left: 16%;
        gap: 50px;
        padding-top: 4%;
        padding-bottom: 7%;
    }

    /* Style for each info box (address, phone, email) */
    .contact-info .info-box {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        margin-bottom: 20px; 
    }

    .contact-form-container {
        max-width: 100%; 
        margin: 0; 
    }

    .contact-form {
        padding: 20px; 
    }

    .contact-form h3 {
        font-size: 22px; 
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px; 
    }
}

@media (max-width: 480px) {
    .contact .content h2 {
        font-size: 28px; 
    }

    .contact .content p {
        font-size: 16px; 
    }

    .contact-info h3,
    .contact-info p {
        font-size: 18px; 
    }

    .contact-form h3 {
        font-size: 20px; 
    }
}




/* location section */
 body .the-location{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(12, 12,12);
}

.the-location{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    color: white;
}

.boxlocation{
    max-width: 600px;
}
.boxlocation h1{
    font-size: 5em;
    text-align: center;
}

.boxlocation p{
    font-size: 1.2em;
    text-align: justify;
    line-height: 30px;
}
iframe{
    border-radius: 2em;
    border: none;
    width: 500px;
    height: 500px;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

iframe:hover{
    transform: scale(1.05);
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .the-location {
        flex-direction: column; 
        gap: 2em; 
    }

    .boxlocation {
        max-width: 90%; 
    }

    .boxlocation h1 {
        font-size: 3em; 
    }

    .boxlocation p {
        font-size: 1em; 
    }

    iframe {
        width: 90%;
        height: 300px; 
    }
}

@media (max-width: 480px) {
    .boxlocation h1 {
        font-size: 2.5em; 
    }

    .boxlocation p {
        font-size: 0.9em;
    }

    iframe {
        height: 250px; 
    }

}
