body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    width: 1000px;
    margin: 0 auto;
}

.hero-content {
    max-width: 500px;
}

.app-store-btn img {
    height: 50px;
    margin-top: 20px;
}

.hero-image img {
    height: 400px;
}
.mobileLogo{
    display: none;
}

#mbl_only_logo{
    display: none;
}

/* Mobile View */
@media (max-width: 900px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        text-align: center;
        background-color: #f9f9f9;
    }

    nav {
        display: none;
    }

    .hero {
        flex-direction: column;
        width: auto;
        padding: 20px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-image img {
        display: none;
    }

    .logo-container {
        position: absolute;
        top: 20px;
        left: 20px;
        display: flex;
        align-items: center;
    }
}





footer {
    background-color: #111;
    color: #ddd;
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left {
    max-width: 350px; /* Keeps text constrained to the left */
    text-align: left;
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 50px; /* Controls spacing between sections */
}

.footer-links div {
    min-width: 160px; /* Ensures equal spacing */
}

.footer-links h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.contact-section p {
    font-size: 13px;
    color: #aaa;
    margin: 5px 0;
}

.contact-section a {
    color: #aaa;
    text-decoration: none;
}

.contact-section a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
}