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

/* HEADER STYLING */
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;
}

.About_Us {
    background-color: white;
    margin-top: 100px;
    border-radius: 15px;
    margin: 100px 10px 0;
}

.About_Us h1 {
    color: #087a8e;
    font-family: "Regular";
    text-align: center;
    margin: 20px 0 0 0;
    font-size: 40px;
}

.About_Us h2 {
    text-align: center;
    font-family: "Regular";
    font-style: italic;
    font-size: 18px;
    margin: 0;
    color: black;
}

.About_Us p {
    font-family: "Regular";
    font-size: 12px;
    margin: 15px;
    color: black;
}

.About_Us_Container {
    display: flex;
    justify-content: space-between; /* Ensures space between both containers */
    align-items: flex-start; /* Aligns content to the top */
    gap: 20px; /* Adds spacing between columns */
    max-width: 1440px;
    margin: auto; /* Centers the section */
    padding: 20px;
    
}

.About_Us_Container_1, 
.About_Us_Container_2 {
    flex: 1; /* Makes both columns take up equal space */
    padding: 20px;
    border-radius: 10px; /* Optional: Rounded corners for individual columns */
    margin: auto;
}

.About_Us_Container_1{
    border-radius: 8px; /* Rounded corners around the container */
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.slider-container {
    width: 400px;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.slides {
    display: flex;
    width: 500%; /* Accommodates extra duplicated slide */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    max-width: 400px;
    object-fit: cover;
    border-radius: 10px; /* Border radius for images inside the slide */
}
Section.Services-section {
    background-color: #087a8e;
    border: 1px solid white;
    border-radius: 15px;
    margin: 10px;
}

Section.Services-section h1{
    color: white;
    text-align: center;
    font-size: 40px;
    margin: 0;
    font-family: "Regular";
}

Section.Services-section h2{
    color: black;
    text-align: center;
    font-size: 18px;
    margin: 10px;
    font-family: "Regular";
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #087a8e;
    border-radius: 15px;
}

.service {
    position: relative;
    width: 23%; /* Four services in a row */
    height: 300px; /* Set a fixed height */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    color: #087a8e;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    align-items: center; /* Center content horizontally */
    text-align: center;
    padding-bottom: 15px; /* Adds some spacing at the bottom */
}

.service:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

Section.Service_Logo img{
    width: 175px;
    border-radius: 8px;
}

#service1{
    background-image: url('Gemini_Logo.jpg');
    background-size:contain; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
}

#service2{
    background-image: url('Oakfall_Website.jpg');
    background-size:contain; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
}

#service3{
    background-image: url('Oakfall_PlatformDesign.jpg');
    background-size:contain; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
}

#service4{
    background-image: url('Oakfall_Branding.jpg');
    background-size:contain; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
}

Section.Service_Logo{
    text-align: center;
}

.service-content {
    width: 90%; /* Ensure it takes most of the width */
    background: rgba(0, 0, 0, 0.5); /* Dark background for text visibility */
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.service h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.service p {
    margin: 5px 0 0;
    font-size: 18px;
    color: #800080;
    text-align: center;
}

.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;
}

/* 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;
    }

    .About_Us {
        margin: 90px 10px 0 15px;
        min-width: 335px;
    }

    .About_Us h1 {
        font-size: 28px;
    }

    .About_Us h2 {
        font-size: 16px;
    }

    .About_Us p {
        font-size: 11px;
    }

    .About_Us_Container {
        flex-direction: column;
        min-width: 300px;
    }

    .Services-section{
        min-width: 335px;
    }

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

    Section.Services-section h2{
        font-size: 18px;
    }

    .slider-container {
        width: 100%;
        height: auto;
    }

    .slide img {
        width: 100%;
        max-width: 100%;
    }

    .services {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .service {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .service h3 {
        font-size: 20px;
    }

    .service p {
        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;
    }

    .About_Us {
        margin: 90px 10px 0 15px;
        min-width: 335px;
    }

    .About_Us h1 {
        font-size: 32px;
    }

    .About_Us h2 {
        font-size: 17px;
    }

    .About_Us p {
        font-size: 12px;
    }

    .About_Us_Container,
    .contact-us,
    .services {
        flex-direction: column;
        padding: 20px;
    }

    .services {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service {
        width: 100%;
        height: 200px;
    }

    Section.Services-section h1{
        font-size: 30px;
    }

    Section.Services-section h2{
        font-size: 16px;
    }

    .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;
    }


}