/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header Section */
.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('images/contact-banner.jpg');
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
    position: relative;
}

.sub-header h1 {
    margin-top: 140px;
    font-size: 42px;
    font-weight: bold;
}

/* Navigation */
nav {
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 135px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* Hide menu icons on larger screens */
.fa-bars,
.fa-close {
    display: none;
}

/* Force-hide menu icons on desktop */
@media (min-width: 769px) {
    .fa-bars,
    .fa-close {
        display: none !important; /* Ensure they are hidden on larger screens */
    }
}


/* Responsive Navigation for Mobile */
@media (max-width: 768px) {
    .fa-bars {
        display: block;
        font-size: 22px;
        color: white;
        cursor: pointer;
    }

    .fa-close {
        display: none;
        font-size: 22px;
        color: white;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: right 0.5s;
        flex-direction: column;
        padding-top: 50px;
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
        padding: 15px 0;
    }

    .nav-links ul li a {
        font-size: 18px;
        color: #fff;
    }

    .fa-bars.show {
        display: none;
    }

    .fa-close.show {
        display: block;
    }
}

/* Location Section */
.location iframe {
    border: none;
    width: 100%;
    height: 450px;
}

/* Contact Us Section */
.contact-us {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.contact-us .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-col {
    flex-basis: 45%;
    margin-bottom: 20px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-col div i {
    font-size: 28px;
    color: #f44336;
    margin-right: 20px;
}

.contact-col div span h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-col div span p {
    font-size: 14px;
    color: #555;
}

.contact-col form {
    display: flex;
    flex-direction: column;
}

.contact-col form input,
.contact-col form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.contact-col form button {
    background: #f44336;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-col form button:hover {
    background: #c93025;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 30px 0;
    background: #222;
    color: white;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    color: #aaa;
}

.icons .fa {
    color: #f44336;
    margin: 0 10px;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.icons .fa:hover {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-us .row {
        flex-direction: column;
    }

    .contact-col {
        flex-basis: 100%;
    }
}
