/* General Styles */
body {
    margin: 0;
    font-family: sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 16px;
}

/* Container for max-width of 1300px */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo h1 {
    margin-left: 10px;
    font-size: 24px;
}

header .logo-icon {
    width: 40px;
    height: 40px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #007BFF;
}

/* Hamburger menu styling */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Banner Section */
#banner {
    display: block;
    padding: 20px;
    background-image: url('your-banner-background.jpg');
    background-size: cover;
    background-position: center;
    color: #000000;
}

/* Two Column Layout */
.banner-content {
    display: flex;
    max-width: 1300px;
    width: 100%;
}

.banner-left-column, .banner-right-column {
    flex: 1;
    padding: 20px;
}

.banner-left-column .tagline h2 {
    font-size: 50px;
    color: #000000;
    margin-bottom: 20px;
}

.banner-left-column .sub-tagline p {
    font-size: 28px;
    color: #000000;
    margin-bottom: 30px;
}

/* Features (Icons and Text) */
.features {
    display: flex;
    justify-content: space-between;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 125px;
    height: 125px;
    margin-bottom: 10px;
    color: #000000;
}

/* Mobile App Image */
.banner-right-column .mobile-app-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Who We Are Section */
#who-we-are-section {
    background-color: #FFC125;
    padding: 40px 20px;
}

.who-we-are-content {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    color: #000000;
}

.who-we-are-content .left-column {
    flex: 1;
    padding: 20px;
}

.who-we-are-content .left-column h2 {
    font-size: 36px;
}

.who-we-are-content .right-column {
    flex: 2;
    padding: 20px;
    text-align: justify;
}

.who-we-are-content .right-column h3 {
    font-size: 24px;
    margin-top: 20px;
}

.who-we-are-content .right-column p {
    font-size: 16px;
    line-height: 1.6;
}

/* What We Do Section */
#what-we-do-section {
    padding: 40px 20px;
}

#what-we-do-section h2 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 30px;
}

.what-we-do-content {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    color: #000000;
}

.service {
    width: 30%;
    text-align: center;
}

.service img {
    width: 230px;
    height: 300px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

/* App Publishing Section */
#app-publishing-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

#app-publishing-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    margin: 0 auto 40px;
    max-width: 800px;
}

.subsection-header {
    font-size: 24px;
    margin-bottom: 40px;
}

.value-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background-color: #E8E6E6;
    border-radius: 8px;
    padding: 50px 20px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 40px;
    height: 40px;
}

.offer-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* Careers Section */
#careers-section {
    background-color: #FFC125;
    padding: 40px 20px;
    color: #000000;
}

.careers-content {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
}

.careers-content .left-column {
    flex: 1;
    padding: 20px;
}

.careers-content .left-column h2 {
    font-size: 36px;
}

.careers-content .right-column {
    flex: 2;
    padding: 20px;
}

.careers-content .right-column h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.careers-content .right-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    margin-bottom: 10px;
}

.job-list a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.job-list a:hover {
    color: #000000;
}

/* Contact Us Section */
#contact-us-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    color: #000000;
}

.contact-us-content {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
}

.contact-us-content .left-column {
    flex: 1;
    padding: 20px;
}

.contact-us-content .left-column h2 {
    font-size: 36px;
}

.contact-us-content .contact-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.contact-us-content .right-column {
    flex: 2;
    padding: 20px;
}

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

.contact-us-content label {
    font-weight: bold;
    margin-top: 10px;
}

.contact-us-content input,
.contact-us-content textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-us-content button {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-us-content button:hover {
    background-color: #333333;
}

.contact-info {
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 18px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer Section */
#footer {
    background-color: #FFC125;
    padding: 20px;
    color: #000000;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    color: #000000; /* Ensures color stays black on hover */
}


/* Responsive for mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #fff;
        border: 1px solid #ccc;
        width: 200px;
        padding: 10px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .hamburger {
        display: block;
    }

    .menu.show {
        display: flex;
    }

    .banner-content,
    .who-we-are-content,
    .what-we-do-content,
    .footer-content,
    .careers-content,
    .contact-us-content {
        flex-direction: column;
    }

    .banner-right-column {
        order: 1;
    }

    .banner-left-column {
        order: 2;
    }

    .service {
        width: 100%;
        margin-bottom: 20px;
    }

    .value-offer-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
