/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #091b4e;
}

body, html {
    overflow-x: hidden;
}

.screens, .reviews-container {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screens::-webkit-scrollbar,
.reviews-container::-webkit-scrollbar {
    display: none;
}

/* Header Styles */
.header {
    width: 100%;
    background-color: #fff;
}

.container {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2em;
    font-weight: 500;
    color: #091b4e;
}

.logo img {
    width: 90px;
    padding: 17px 0;
}

.nav {
    display: flex;
    gap: 50px;
    font-size: 22px;
    font-weight: 500;
}

.nav a {
    text-decoration: none;
    color: #091b4e;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2737e5;
}

.menu-icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Main Section Styles */
.main-section {
    background-color: #f2f2f7;
    padding: 130px 0 250px 0;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    max-width: 50%;
    margin-top: 20px;
}

.text-content h1 {
    font-size: 2.8em;
    color: #091b4e;
    margin-bottom: 20px;
    line-height: 1.6;
}

.text-content p {
    font-size: 19px;
    color: #091b4e;
    margin-bottom: 30px;
    line-height: 40px;
    font-weight: 600;
}

.app-store-button img {
    width: 320px;
    transition: transform 0.3s;
}

.app-store-button img:hover {
    transform: scale(1.05);
}

.mockup-image {
    max-width: 45%;
}

.mockup-image img {
    width: 660px;
    border-radius: 20px;
    position: sticky;
}

/* Features Section Styles */
.features-section {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 2em;
    color: #091b4e;
    margin-bottom: 100px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    text-align: justify;
}

.feature img {
    width: 50px;
    margin-bottom: 10px;
    margin-top: 60px;
    font-weight: 500;
}

.feature h3 {
    font-size: 1.7em;
    color: #091b4e;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #091b4e;
    line-height: 1.6;
}

.feature-center {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-center img {
    width: 80%;
    border-radius: 20px;
}

.feature-bottom-center {
    grid-column: 2 / 3;
    grid-row: 3;
    text-align: center;
    align-self: center;
}

/* Screenshots Section Styles */
.main-container {
    background-color: #f2f2f7;
}

.heading {
    padding: 60px 0 80px 0;
    text-align: center;
}

.heading h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.screens {
    display: flex;
    gap: 10px;
    width: calc(250px * 16 + 80px);
    animation: slide-left 20s linear infinite;
}

.screen {
    min-width: 250px;
    flex-shrink: 0;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Animation for sliding effect */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8 - 1px));
    }
}

/* Reviews Section Styles */
.reviews-section {
    text-align: center;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    background-color: #f9f9f9;
}

.reviews-section h1 {
    font-size: 2.3rem;
    padding: 2rem 0;
    color: #091b4e;
    font-weight: 500;
}

.reviews-container {
    display: inline-flex;
    gap: 1.5rem;
    animation: scroll-left 20s linear infinite;
    padding: 80px 0;
    white-space: nowrap;
}

.review-card {
    padding: 1.5rem;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.15);
    width: 420px;
    text-align: left;
    border-radius: 10px;
    background-color: #ffffff;
    display: inline-block;
    white-space: normal;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}



.quote-mark {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.user-info h3 {
    font-size: 1rem;
    color: #091b4e;
}

.review-text {
    font-size: 15px;
    color: #091b4e;
    margin: 1.3rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    font-size: 1.2rem;
    color: #ffd700;
    display: flex;
    align-items: flex-end; /* Centers text vertically */
    height: 100%; /* Ensure container has full height for vertical centering */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Download Section Styles */
.section-main {
    background-color: #ffffff;
    padding: 70px 0 100px 0;
}

.content-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-text {
    max-width: 100%;
}

.content-text h1 {
    font-size: 2.5em;
    color: #0b0e2b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    font-size: 17px;
    color: #091b4e;
    margin-bottom: 30px;
    line-height: 31px;
    font-weight: 600;
}

.button-app-store img {
    width: 256px;
    transition: transform 0.3s;
}

.button-app-store img:hover {
    transform: scale(1.05);
}

.image-mockup {
    max-width: 45%;
}

.image-mockup img {
    width: 100%;
}

/* Footer Section Styles */
.footer {
    background-color: #f2f2f7;
    padding: 20px 0;
    color: #091b4e;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-nav {
    display: flex;
    gap: 50px;
    font-weight: 600;
    padding: 60px 0 33px 0;
    font-size: 21px;
}

.footer-nav a {
    color: #091b4e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #2737e5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.9em;
    color: #091b4e;
    font-weight: bold;
    justify-content: center;
}

.footer-logo img {
    width: 90px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    font-size: 0.9em;
    color: #091b4e;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 10px 0 0 178px;
    color: #7b85a1;
    font-size: 20px;

}

.footer-bottom::before {
    content: "";
    display: block;
    width: 90%;
    max-width: 1400px;
    height: 2px;
    background-color:#dee0e9;
    margin: 0 auto 10px;
}

/* Large screens (max-width: 1420px) */
@media (max-width: 1420px) {
    .container {
        padding: 0 50px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        width: 90px; /* Slightly larger logo for large screens */
    }
    
    .nav {
        font-size: 16px;
    }
    
    .main-section {
        padding: 60px 0 110px;
    }
    
    .mockup-image img {
        max-width: 90%; /* Larger image scaling */
    }
    
    .text-content {
        max-width: 70%;
        margin-top: 40px;
    }
    
    .text-content h1 {
        font-size: 2.6em;
    }
    
    .text-content p {
        font-size: 20px;
        line-height: 32px;
    }
    
    .app-store-button img {
        width: 270px;
    }
    
    /* Features Section */
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
    
    .feature {
        padding: 25px;
        max-width: 260px;
    }
    
    .feature img {
        width: 80px;
        margin-bottom: 20px;
    }
    
    .feature h3 {
        font-size: 1.5em;
        margin: 15px 0;
    }
    
    .feature p {
        font-size: 16px;
        line-height: 26px;
    }
    
    /* Reviews Section */
    .reviews-container {
        gap: 15px;
    }
    
    .review-card {
        width: 280px;
        padding: 20px;
    }
    
    .heading h3 {
        font-size: 1.5em;
    }
    
    .content-text h1 {
        font-size: 1.9em;
    }
    
    .content-text h2 {
        font-size: 1.5em;
    }
    
    
    
  
}



/* Large screens (max-width: 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    .logo{
        font-size: 15px;
    }
    .logo img {
        width: 80px; /* Adjusted logo size for large screens */
    }
    .nav{
        font-size: 15px;
    }
    .main-section {
        padding: 50px 0 100px;
    }
    .mockup-image img{
        max-width: 100%;
    }
    .text-content {
        max-width: 75%;
        margin-top: 35px;
    }
    .text-content h1 {
        font-size: 2.4em;
    }
    .text-content p {
        font-size: 18px;
        line-height: 30px;
    }
    .app-store-button img {
        width: 250px;
    }
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }
    .review-card {
        width: 260px;
        padding: 15px;
    }
    .content-text h1 {
        font-size: 1.8em;
    }
    .content-text h2 {
        font-size: 1.4em;
    }
     .footer-content {
        padding: 0 40px;
    }

    .footer-nav a {
        font-size: 0.95em;
    }

    .footer-logo img {
        width: 35px;
    }

    .footer-bottom {
        font-size: 0.85em;
    }
}

/* Large tablet screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        gap: 15px;
        text-align: center;
        z-index: 10;
    }
    .nav.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .logo img {
        width: 75px;
    }
    .main-section {
        padding: 45px 0 100px;
    }
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mockup-image {
        order: -1;
        max-width: 50%;
    }
    .text-content {
        max-width: 80%;
        margin-top: 40px;
    }
    .text-content h1 {
        font-size: 2.2em;
    }
    .text-content p {
        font-size: 16px;
        line-height: 28px;
    }
    .app-store-button img {
        width: 240px;
    }
    .mockup-image img {
        width: 100%;
    }

    /* Features Section */
    .features-section {
        padding: 40px 0;
        text-align: center;
    }
    .features-section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .feature img {
        width: 70px;
        margin-bottom: 15px;
    }
    .feature h3 {
        font-size: 1.4em;
        margin: 12px 0;
    }
    .feature p {
        font-size: 15px;
        line-height: 24px;
    }
    .feature-center,
    .feature-bottom-center {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    

    /* Reviews Section */
    .reviews-container {
        gap: 10px;
    }
    .review-card {
        width: 230px;
        padding: 12px;
    }
    .heading h3 {
        font-size: 1.4em;
    }
    .screenshot {
        max-width: 190px;
    }
    .content-text h1 {
        font-size: 1.7em;
    }
    .content-text h2 {
        font-size: 1.2em;
    }
    .footer-content {
        padding: 0 30px;
        flex-direction: column;
        gap: 15px;
    }
    .content-text h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .content-text h2 {
        font-size: 1.5em;
    }

    .content-text p {
        font-size: 0.9em;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Download Section */
    .container.content-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .image-mockup img {
        max-width: 250px;
        margin-bottom: 15px;
    }

    .button-app-store img {
        max-width: 150px;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-nav a {
        font-size: 0.9em;
    }

    .footer-logo {
        flex-direction: column;
    }

    .footer-logo img {
        width: 30px;
    }

    .footer-bottom {
        font-size: 0.8em;
    }
}


/* Tablet screens (max-width: 768px) */
@media (max-width: 786px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        align-self: flex-start;
    }

    .logo img {
        width: 65px;
    }

    .header-span {
        align-self: flex-start;
    }

    .main-section {
        padding: 35px 0 80px;
    }

    .text-content {
        max-width: 85%;
        margin-top: 25px;
    }

    .text-content h1 {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .text-content h2 {
        font-size: 1.3em;
        margin-bottom: 8px;
    }

    .text-content p {
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .app-store-button img {
        width: 130px;
    }

    /* Features Section */
   .features-section {
    padding: 30px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
   
    background-color: #f5f7fa;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
    
    max-width: 70000px;
}

.feature-center img {
    max-width: 30%;
}

.feature img {
    width: 40px;
}

.feature h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.feature p {
    font-size: 14px;
    line-height: 22px;
}

.feature-center,
.feature-bottom-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* Consistent padding for feature center and bottom center */
}


    /* Footer Section */
    .footer {
        padding: 20px 0;
    }

    .footer-content {
        padding: 0 20px;
        gap: 10px;
    }

    .footer-nav {
    gap: 10px;
}

.footer-nav a {
    font-size: 0.7em;
}

.footer-logo {
    font-size: 20px;
}

.footer-logo img {
    width: 45px;
}

.footer-bottom {
    font-size: 0.75em;
    text-align: center; /* Centers the paragraph inside .footer-bottom */
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 10px;
    margin: 0;
}


    /* Reviews Section */
    .reviews-section h1 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .review-card {
        width: 200px;
        padding: 12px;
        position: relative;
    }

    .user-info img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .quote-mark {
        width: 20px;
        position: absolute;
        opacity: 0.6;
    }

    .review-text {
        font-size: 0.9em;
        line-height: 1.5;
        margin-top: 5px;
    }

    .content-text h1 {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .content-text h2 {
        font-size: 1.2em;
    }

    .content-text p {
        font-size: 0.7em;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Download Section */
    .container.content-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .image-mockup img {
        max-width: 250px;
        margin-bottom: 15px;
    }

    .button-app-store img {
        max-width: 150px;
    }
}



@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        width: 55px;
    }
    
    .nav a {
        font-size: 16px;
    }
    
    .main-section {
        padding: 25px 0 60px;
    }
    
    .text-content h1 {
        font-size: 1.2em;
    }
    
    .text-content p {
        font-size: 12px;
        line-height: 20px;
    }
    
    .app-store-button img {
        width: 110px;
    }

    /* Features Section */
    .features-section {
        padding: 20px 0;
        text-align: center;
    }
    
    .features-section h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .features-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .feature h3 {
        font-size: 1.1em;
    }
    
    .feature p {
        font-size: 12px;
        line-height: 18px;
    }

    /* Reviews Section Font Adjustments */
    .reviews-section h1 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.review-card {
    width: 180px;
    padding: 8px;
}

.user-info h3 {
    font-size: 1em;
}

.quote-mark {
    width: 15px; /* Adjusted size for better visibility */
    display: block;
    margin: 0 auto 10px auto; /* Centers the quote mark and adds spacing below */
    opacity: 0.7; /* Slight transparency for subtle effect */
}

.review-text {
    font-size: 0.9em;
    line-height: 1.4;
}

.rating img {
    width: 80px;
}
 .section-main {
        padding: 30px 0;
    }

    .container.content-main {
        padding: 15px;
    }

    .image-mockup img {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .content-text{
          width: 100%;
    }
    .content-text h1 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }

    .content-text h2 {
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    .content-text p {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .button-app-store img {
        width: 110px;
    }
    .footer {
        padding: 15px 0;
    }

    .footer-content {
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 18px;
    }

    .footer-nav a {
        font-size: 0.8em;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
    }

  .footer-bottom {
    text-align: center; /* Centers the paragraph */
    font-size: 0.75em;
    padding-top: 10px;
}

.footer-logo img {
    width: 30px;
}

.footer-logo span {
    font-size: 0.85em;
}

.footer-bottom p {
    font-size: 10px;
    margin: 0;
}

}