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

.about-us {
    padding: 20px;
    margin: auto;
    position: relative;
    margin-top: 80px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
    z-index: 2;
}

.about-text h1 {
    font-size: 36px;
    color: #087a8e;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.website-services {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 10px;
    text-align: center;
    max-width: 1400px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-link {
    background: #087a8e;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tab-link:hover, .tab-link.active {
    background: #065c69;
}

.tab-content {
    display: none;
    padding-top: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-grid div {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-grid strong {
    font-size: 18px;
    color: #087a8e;
    display: block;
    margin-bottom: 5px;
}

.content-grid p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.platform-services {
    padding: 20px;
    margin: auto;
    position: relative;
    margin-top: 100px;
}

/* Image & Text Layout */
.platform-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 30px;
}

.platform-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.platform-image img {
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.platform-text {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.platform-text h1 {
    font-size: 36px;
    color: #087a8e;
    margin-bottom: 15px;
}

.platform-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 2-Column Section Layout */
.platform-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: auto;
    padding: 30px 50px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.platform-section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.platform-section h2 {
    font-size: 20px;
    color: #065c69;
    margin-bottom: 10px;
}

.platform-section p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.platform-section ul {
    padding-left: 20px;
}

.platform-section li {
    font-size: 14px;
    margin: 8px 0;
    color: #444;
}

/* Button Container - Centers Button */
.pricing-button-container {
    text-align: center;
    grid-column: span 2;
}

/* Button Styling */
.pricing-button {
    display: inline-block;
    background: #087a8e;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.pricing-button:hover {
    background: #065c69;
}

#pricing-button-website{
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
}

#pricing-button-artwork{
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-management-services {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 10px;
    text-align: center;
    max-width: 1400px;
}

.artwork-branding-services {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 10px;
    text-align: center;
    max-width: 1400px;
}

Section.Services-section {
    background-color: #087a8e;
    border: 1px solid white;
    border-radius: 15px;
    margin: 10px;
}

.gemini-login-section {
    max-width: 750px;
    margin: 40px auto;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card-container {
    background-color: black;
    border-radius: 15px;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    margin: 10px auto 0 auto;
    display: flex;
    justify-content: center;
}

.login-card {
    text-align: center;
}

.login-card h2 {
    font-size: 2rem;
    color: #087a8e;
    margin-top: 0;
    margin-bottom: 15px;
}

.login-card img {
    width: 125px;
    height: 125px;
    margin: 0 auto 20px auto;
    display: block;
    border: 1px solid white;
    border-radius: 8px;
}

.login-card .btn {
    width: 125px;
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    background-color: mediumvioletred;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    text-align: center;
}

.login-card .btn:hover {
    background-color: #b03060; /* Slightly darker shade for hover */
}

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

    .about-container {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }

    .about-text {
        padding: 20px;
        text-align: center;
    }

    .about-text h1 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 400px;
    }

    .tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px;
        margin: 0;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        justify-content: flex-start;
    }

    .tabs::-webkit-scrollbar {
        display: none; /* Chrome */
      }

    .tab-link {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .event-management-services{
        min-width: 300px;
        padding: 10px;
        margin: 20px;
    }

    .platform-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .platform-text {
        padding: 20px;
        text-align: center;
    }

    .platform-text h1 {
        font-size: 28px;
    }

    .platform-text p {
        font-size: 14px;
    }

    .platform-sections {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 20px;
    }

    .pricing-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    Section.Services-section{
        margin: 20px;
        min-width: 320px;
    }

    .gemini-login-section {
        padding: 10px;
    }

    .login-card-container {
        flex-direction: column;
        padding: 20px;
    }

    .login-card h2 {
        font-size: 24px;
    }

    .login-card .btn {
        width: 100px;
        padding: 10px;
        font-size: 14px;
    }

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

@media screen and (min-width: 601px) and (max-width: 1024px) {

    header {
        height: 80px;
    }

    header .container {
        padding: 10px 15px;
    }

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

    .navbar {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .About_Us {
        margin: 90px 0 0 0;
        padding: 0 15px;
        min-width: 0; /* prevent overflow */
        text-align: center;
    }

    .event-management-services{
        min-width: 600px;
        padding: 10px;
        margin: 20px;
    }

    .website-services{
        min-width: 600px;
        padding: 10px;
        margin: 20px;
    }

    .artwork-branding-services{
        min-width: 300px;
        padding: 10px;
        margin: 20px;
    }

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

    .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 15px;
        border-radius: 15px;
    }

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

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

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

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

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

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

    /* Fix content tab scrolling */
    .tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px;
        margin: 0;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        justify-content: flex-start;
    }

    .tabs::-webkit-scrollbar {
        display: none; /* Chrome */
      }

    .tab-link {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .platform-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .platform-text {
        padding: 30px;
        text-align: center;
    }

    .platform-text h1 {
        font-size: 32px;
    }

    .platform-text p {
        font-size: 15px;
    }

    .platform-sections {
        grid-template-columns: 1fr 1fr;
        padding: 30px 15px;
        gap: 30px;
    }

    .pricing-button {
        font-size: 16px;
        padding: 10px 22px;
    }

    .gemini-login-section {
        padding: 20px 15px;
    }

    .login-card-container {
        flex-direction: column;
        padding: 30px 15px;
    }

    .login-card h2 {
        font-size: 28px;
    }

    .login-card .btn {
        width: 150px;
        font-size: 14px;
    }
}