body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}

.header-gradient {
    background: linear-gradient(to bottom, #0000ff, #00ffff);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, #0000ff, #00ffff); /* Add this line */
}

.header-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    flex-grow: 1;
    justify-content: center;
}

.header-link:hover {
    text-decoration: underline;
}
.header-download-btn {
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Different gradient color */
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 1.2rem; /* Increased font size */
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 1rem; /* Margin to separate from other menu items */
}

.header-download-btn:hover {
    background: linear-gradient(to right, #feb47b, #ff7e5f);
}

.header .menu-items ul {
    display: flex;
    align-items: center; /* Ensure items are vertically centered */
}

.service-section, .feature-section {
    margin: 20px 0;
}



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

.header-title {
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
}

.menu-bar {
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
    position: absolute;
    left: 1rem;
    color: white; /* Make the menu bar icon white */
}

.menu-items {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.menu-items ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-items ul li {
    margin-left: 2rem;
    padding-right: 2rem;
}

.menu-items ul li a {
    color: white;
    text-decoration: none;
}

.side-menu {
    position: fixed;
    top: 60px; /* Below the header */
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    display: none;
    z-index: 999;
    padding-top: 10px;
    box-sizing: border-box;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    padding: 1rem;
    border-bottom: 1px solid #444;
}

.side-menu ul li a {
    color: black;
    text-decoration: none;
}
.greetz-image {
        max-width: 100%; /* Make sure it scales responsively */
        height: auto;
    }
.image-container {
    width: 100%;
    overflow: hidden;
    margin-top: 60px; /* Adjust to prevent header overlap */
    display: flex;
    flex-direction: column; /* Stack images on small screens */
    align-items: center;
}

.playstore-image {
    max-width: 200px; /* Normal size for Play Store image */
    height: auto;
    display: block;
    margin: 10px auto; /* Center the image */
}

.responsive-image {
    width: 100%;
    height: auto;
}

footer {
    background-color: black;
    color: white;
    padding: 2rem 1rem 4rem 1rem; /* Added bottom padding */
    text-align: center;
}

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

.footer-section {
    flex: 1;
    margin: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 1rem;
}

.download-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
}

.download-btn:hover {
    background-color: #45a049;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 2rem 2rem 4rem 2rem; /* Adjusted bottom padding */
    box-sizing: border-box;
}

.white-card {
    background-color: white;
    color: black;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.5);
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.screenshot {
    flex: 2;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto; /* Ensures horizontal scrolling */
    display: flex; /* Ensure images are horizontally aligned */
    justify-content: center; /* Center the images */
}

.screenshot img {
    flex: 0 0 auto; /* Prevents images from stretching */
    width: 200px; /* Ensures images are properly sized */
    height: auto;
    border-radius: 8px;
    margin: 0.5rem;
}

.contact-card {
    background-color: white;
    color: black;
    padding: 1rem;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 3rem; /* Added bottom margin */
}

.contact-card p {
    margin: 0;
    font-size: 1rem; /* Reduced font size */
    font-weight: bold;
}

.sticky-download-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #0000ff, #00ffff);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu-bar {
        display: block;
    }

    .menu-items {
        display: none;
    }

    .side-menu {
        display: none;
    }

    h1 {
        font-size: 1.2rem;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .white-card {
        width: 90%; /* Increased width for better alignment */
        font-size: 0.9rem; /* Reduced font size for smaller screens */
        font-weight: normal;
        border-radius: 0;
        padding: 1rem;
        height: auto; /* Adjust this height as needed */
        text-align: justify; /* Added text alignment */
        margin-left: auto;
        margin-right: auto;
    }

    .screenshot {
        display: flex;
        overflow-x: auto; /* Ensures horizontal scrolling */
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start; /* Align images to the start for smaller screens */
    }

    .screenshot img {
        flex: 0 0 auto; /* Prevents images from stretching */
        width: 200px; /* Ensures images are properly sized */
        margin: 0 0.5rem;
    }

    .contact-card {
        width: 90%; /* Increased width */
        font-size: 1rem;
        padding: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .download-btn {
        width: 100%;
        padding: 1rem; /* Reduced padding */
        font-size: 1.2rem; /* Adjusted font size */
        font-weight: bold;
    }
}

@media (min-width: 769px) {
      .image-container {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center content */
        align-items: center;
    }

    .greetz-image {
        max-width: 70%; /* Greetz image takes larger space */
        height: auto;
        flex-basis: 100%; /* Ensure Greetz image takes full width of the first row */
    }

    .playstore-image {
        max-width: 350px; /* Smaller Play Store image */
        height: auto;
        margin-top: 20px; /* Add margin to ensure space between rows */
        flex-basis: 100%; /* Ensure Play Store image wraps to the next row */
    }
    .responsive-image {
        max-height: 100%; /* Ensure the image fits within the container */
        width: auto; /* Maintain aspect ratio */
    }

    .screenshot img {
        width: 250px; /* Increase the size of images for larger screens */
    }

    .white-card {
        font-size: 1rem; /* Standard font size for larger screens */
    }
}

/* Add styles for email */
.email {
    color: red; /* Change this color as needed */
    font-size: 1rem; /* Reduced font size */
}

/* Add styles for headings in blue color */
.blue-heading {
    color: blue;
}

/* Add styles for FAQ items */
.faq-item {
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: blue; /* Updated color for questions */
}

.faq-item p {
    font-size: 16px;
    margin-left: 1rem;
}
