body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #087a8e;
}

header {
    box-shadow: 0px 1px 6px 0px #0000001A;
    background-color: #087a8e;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: "Regular", sans-serif;
}

section.header-container-banner1{
    height: 10px;
    background: #087a8e;
}

/* HEADER CONTAINER */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 35px;
    background-color: black;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* LOGO */
header .OS_Logo {
    display: flex;
    align-items: center;
}

header .OS_Logo img {
    max-width: 100%;
    width: 85px;
    height: 85px;
}

/* NAVIGATION MENU */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* NAVBAR LINKS */
.navbar a {
    font-size: 16px;
    color: #087a8e;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #087a8e;
    color: white;
    cursor: pointer;
}

/* DROPDOWN CONTAINER */
.dropdown {
    position: relative;
    display: inline-block;
}

/* DROPDOWN BUTTON */
.dropdown .dropbtn {
    background-color: transparent;
    color: #087a8e;
    padding: 14px 30px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
    cursor: pointer;
    display: block;
}

/* SHOW DROPDOWN CONTENT ON HOVER */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 25px;
    top: 100%;
    left: 0;
    overflow: hidden;
    cursor: pointer;
}

/* STYLE DROPDOWN LINKS */
.dropdown-content a {
    color: #087a8e;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

/* CHANGE COLOR ON HOVER */
.dropdown-content a:hover {
    background-color: #087a8e;
    cursor: pointer;
}

/* ENSURE DROPDOWN APPEARS ON HOVER */
.dropdown:hover .dropdown-content {
    display: block;
}

.contact-container {
    margin: 20px auto;
    background: white;
    padding: 20px;
    font-family: "Regular";
    box-sizing: border-box;
    flex: 1;
    border-radius: 8px; /* Rounded corners around the container */
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
}

.contact-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    color: black;
}

.contact-container input, textarea, button {
    width: calc(100% - 10px); /* Ensures both input and button are same width, accounting for padding */
    padding: 10px;
    border: 1px solid #087a8e;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box; /* Ensures padding doesn't overflow the width */
    background-color: white;
    color: black;
    font-family: "Regular";
}

.contact-container input, textarea {
    margin-bottom: 10px;
    background-color: white;
    color: black;
}

.contact-container textarea {
    resize: vertical;
    height: 120px;
    color: black;
}

.contact-container button {
    background-color: #087a8e;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px; /* Ensure some space between textarea and button */
    border-radius: 25px;
}

.contact-container button:hover {
    background-color: #1a3f6e;
}

.contact-container .success, .error {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

.contact-container .success {
    background-color: #d4edda;
    color: #155724;
}

.contact-container .error {
    background-color: #f8d7da;
    color: #721c24;
}

.contact-us {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: auto;
    padding: 10px 20px;
    max-width: 1000px;
    background-color: white;
}

/* Right Section */
.contact-details {
    flex: 1;
    margin-top: 25px;
}

.contact-details p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

.contact-details i{
    color: #087a8e;
}

.contact-details img{
    max-width: 375px;
    border-radius: 10px;
}

Section.Contact-section h1{
    color: #087a8e;
    text-align: center;
    font-size: 40px;
    font-family: "Regular";
    margin: 10px;
}

Section.Contact-section h2 {
    color: black;
    font-size: 16px;
    font-family: "Regular";
    margin: 0;
    padding-bottom: 10px;
    text-align: center;
}

Section.Contact-section {
    background-color: white;
    border-radius: 15px;
    margin: 10px;
    margin-top: 100px;
    min-height: 760px;
}

/* Footer styling */
footer {
    background-color: #087a8e;
    color: #fff;
    padding: 0;
    font-family: "Regular";
}
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    margin: 0 auto;
}
  
.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
    padding: 15px 40px 10px;
}
  
.footer-column h4 {
    font-size: 12px;
    color: #f5f5f5;
    margin: 0;
}

.footer-column a {
    color: #f5f5f5;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
}
  
.footer-column p {
    margin: 0;
    font-size: 10px;
    color: #ccc;
    text-align: left;
}

.footer-column-OS {
    text-align: right;
    flex: 1 1 200px;
    min-width: 200px;
    padding: 15px 40px 10px;
    margin: 0;
    font-size: 10px;
    color: #ccc;
}

.footer-column-OS p{
    margin: 0;
    text-align: right;
}
  
.back-to-top {
    display: block;
    color: #ccc;
    margin-top: 10px;
    padding-bottom: 10px;
    font-size: 10px;
    text-decoration: none;
}
  
.back-to-top:hover {
    color: #fff;
}

/* Mobile devices (up to 600px) */
@media screen and (max-width: 600px) {
    header {
        height: 80px;
    }
    
    header .container {
        padding: 10px;
        height: auto;
    }

    header .OS_Logo img {
        max-width: 100%;
        width: 50px;
        height: 50px;
    }

    .navbar {
        gap: 10px;
    }

    .navbar a,
    .dropdown .dropbtn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .Contact-section {
        min-width: 335px;
        box-sizing: border-box;
    }

    Section.Contact-section h1{
        font-size: 28px;
    }

    .contact-container {
        min-width: 280px;
        width: 100%;
        max-width: 600px;
        margin: auto;
        box-sizing: border-box;
    }

    .contact-us {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .contact-details img {
        width: 200px;
    }

    .contact-details{
        margin: auto;
        text-align: center;
    }

    .contact-details p{
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        min-width: 335px;
    }

    .footer-column,
    .footer-column-OS {
        padding: 10px;
        text-align: center;
        flex: 0;
    }

    .footer-column p{
        text-align: center;
    }

    .footer-column-OS p{
        text-align: center;
    }

    .footer-bottom {
        min-width: 350px;
    }

}

/* Tablet devices (601px to 1024px) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
    header {
        height: 80px;
    }
    
    header .container {
        padding: 10px;
        height: auto;
    }

    header .OS_Logo img {
        max-width: 100%;
        width: 50px;
        height: 50px;
    }

    .navbar {
        gap: 15px;
    }

    .contact-us{
        flex-direction: column;
        padding: 20px;
    }
    .contact-us {
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
    }

    .contact-container {
        margin: 10px auto 0 auto;
        padding: 20px;
    }

    .contact-details{
        margin: 0 auto;
    }

    .contact-details img {
        width: 200px;
    }

    .contact-details{
        margin: auto;
        text-align: center;
    }

    .contact-details p{
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .footer-column,
    .footer-column-OS {
        padding: 10px;
        text-align: center;
        flex: 0;
    }

    .footer-column p{
        text-align: center;
    }

    .footer-column-OS p{
        text-align: center;
    }


}