﻿/* ===== FIXED NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff; /* or your preferred color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Prevent content from hiding under navbar */
body {
    padding-top: 90px; /* Adjust this height to match your navbar height */
}

/* Optional: Add smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}



/* ==============================
   HERO SECTION (Responsive Background)
============================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90vh;
    color: #fff;
    overflow: hidden;
    background: center center / cover no-repeat;
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 85% ), url('../images/Hero_new.png');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 70% );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #00b050;
    max-width: 800px;
    margin-left: 5%;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d9f7e4;
    margin-top: 1rem;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    /* ==============================
   BUTTON STYLES
============================== */
    .hero-buttons .btn-join,
    .hero-buttons .btn-join-outline {
        border-radius: 30px;
        padding: 12px 28px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

.btn-join {
    background: linear-gradient(90deg, #00b050, #00c36f);
    color: #fff;
    border: none;
}

    .btn-join:hover {
        background: linear-gradient(90deg, #00a048, #00b85f);
        transform: translateY(-2px);
    }

.btn-join-outline {
    border: 2px solid #00b050;
    color: #00b050;
    background: transparent;
}

    .btn-join-outline:hover {
        background: #00b050;
        color: #fff;
    }

/* ==============================
   HERO STATS SECTION
============================== */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.35);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.stat-box {
    color: #f5c94a;
    border: 1px solid #f5c94a;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

    .stat-box:hover {
        background: #f5c94a;
        color: #000;
    }

/* ==============================
   RESPONSIVE BREAKPOINTS
============================== */

/* Tablets & Small Laptops (≤992px) */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-position: center;
        background-attachment: scroll;
        padding: 80px 0 120px;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 90%;
        text-align: center;
        color: #00b050;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Move stats below buttons */
    .hero-stats {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 90%;
        border-radius: 25px;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.4);
        box-shadow: none;
    }

    .stats-container {
        justify-content: center;
        gap: 15px;
    }

    .stat-box {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* Phones (≤576px) */
@media (max-width: 576px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        min-height: 85vh;
        background-position: center top;
        background-size: cover;
        padding: 70px 0 100px;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 1.5rem;
    }

        .hero-buttons .btn-join,
        .hero-buttons .btn-join-outline {
            width: 80%;
            padding: 10px 20px;
        }

    /* Stats move below buttons, full width */
    .hero-stats {
        position: static;
        width: 100%;
        margin-top: 30px;
        padding: 10px 15px;
        border-radius: 25px;
        background: rgba(0, 0, 0, 0.4);
    }

    .stats-container {
        flex-direction: column;
        gap: 10px;
    }

    .stat-box {
        width: 100%;
        font-size: 0.9rem;
        padding: 8px 15px;
        text-align: center;
    }
}

/* Prevent unwanted scrolling */
html, body {
    overflow-x: hidden;
}



/* ===============================
   HOW IT WORKS SECTION
=============================== */
.how-it-works-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    /*max-height: 200px;*/ /* or any value you prefer */
    overflow: hidden;
}

.how-it-works-box {
    background-color: #eaf2fc;
    border-radius: 1rem;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

/* Icon styling */
.how-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 1rem;
}

/* Vertical line between steps */
.vertical-line {
    width: 1px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Typography */
.how-it-works-box h4 {
    font-weight: 600;
    color: #157347;
    text-transform: uppercase;
}

.how-it-works-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.how-it-works-box p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* ===================================
   Medium Screens (Tablets / Landscape)
=================================== */
@media (max-width: 991px) {
    .how-it-works-box {
        padding: 2rem 1rem;
    }

    .how-icon {
        width: 80px;
        height: 80px;
        margin-right: 0.8rem;
    }

    .vertical-line {
        height: 40px;
    }

    .how-it-works-section {
        margin-top: -20px;
    }
}

/* ===================================
   Small Screens (Phones)
=================================== */
@media (max-width: 767px) {
    .how-it-works-section {
        margin-top: 0;
        padding: 1rem;
    }

    .how-it-works-box {
        padding: 1.5rem;
        border-radius: 0.75rem;
        text-align: center;
    }

    .how-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem auto;
    }

    .vertical-line {
        display: none;
    }

    /* Stack each step vertically */
    .col-md-3 {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 1.5rem;
    }

        .col-md-3 img {
            margin: 0 auto 1rem auto !important;
        }

    /* Improve text spacing */
    .how-it-works-box h5 {
        font-size: 1rem;
    }

    .how-it-works-box p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Extra Small Screens (< 480px)
=================================== */
@media (max-width: 480px) {
    .how-it-works-box {
        padding: 1rem;
    }

    .how-icon {
        width: 50px;
        height: 50px;
    }

    .how-it-works-box h4 {
        font-size: 1.1rem;
    }

    .how-it-works-box h5 {
        font-size: 0.95rem;
    }

    .how-it-works-box p {
        font-size: 0.85rem;
    }
}


/* ===============================
   WHAT DRIVES US SECTION
=============================== */
.what-drives-us-section {
    background-color: #fff;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .what-drives-us-section .col-lg-6.bg-success {
        border-radius: 0 0 1.5rem 1.5rem !important;
    }

    .what-drives-us-section img {
        border-radius: 1.5rem 1.5rem 0 0 !important;
    }
}

@media (max-width: 576px) {
    .what-drives-us-section .icon-circle {
        width: 40px;
        height: 40px;
    }
}

/* Image and Icon Adjustments */
.hand-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem 0 0 1.5rem;
}

.home-icon-img {
    width: 200px; /* Increased from 110px */
    height: 200px; /* Increased from 110px */
    background-color: rgba(25, 135, 84, 0.85);
    border-radius: 50%;
    padding: 28px; /* Slightly increased padding */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .home-icon-img:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

@media (max-width: 991px) {
    .hand-image {
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .home-icon-img {
        width: 85px;
        height: 85px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .home-icon-img {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
}

.icon-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .icon-img:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }

@media (max-width: 768px) {
    .icon-img {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
}

/* ===============================
   ECOSYSTEM SECTION
=============================== */
/*.ecosystem-wrapper {
    padding: 80px 20px;
    background-color: #2a2a2a;
}*/

/* ... rest of your ecosystem, testimonials, CTA, and app intro CSS are fine ... */




/* ===============================
   ECOSYSTEM SECTION
   =============================== */
.ecosystem-wrapper {
    padding: 80px 20px;
    background-color: #2a2a2a;
}

.ecosystem-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

    .ecosystem-container h2 {
        font-size: 42px;
        font-weight: 700;
        color: #2eaa7d;
        margin-bottom: 50px;
    }

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.ecosystem-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

    .ecosystem-card:hover {
        transform: translateY(-5px);
    }

.ecosystem-card-green {
    background-color: #2eaa7d;
}

.ecosystem-card-white {
    background-color: #dfeafa;
}

.ecosystem-icon-yellow {
    width: 70px;
    height: 70px;
    background-color: #ffc145;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-icon-green {
    width: 70px;
    height: 70px;
    background-color: #269970;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ecosystem-card-green h3,
.ecosystem-card-green p {
    color: #ffffff;
}

.ecosystem-card-white h3,
.ecosystem-card-white p {
    color: #1a1a1a;
}

.ecosystem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ecosystem-card p {
    font-size: 15px;
    opacity: 0.9;
}

.ecosystem-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ecosystem-btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ecosystem-btn-primary {
    background-color: #2eaa7d;
    color: #ffffff;
}

    .ecosystem-btn-primary:hover {
        background-color: #269970;
        transform: translateY(-2px);
    }

.ecosystem-btn-secondary {
    background-color: #ffc145;
    color: #1a1a1a;
}

    .ecosystem-btn-secondary:hover {
        background-color: #ffb31f;
        transform: translateY(-2px);
    }

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablets */
@media (max-width: 991px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ecosystem-container h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .ecosystem-card {
        padding: 30px 25px;
        text-align: center;
    }

    .ecosystem-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 15px;
    }

    .ecosystem-card h3 {
        font-size: 18px;
    }

    .ecosystem-card p {
        font-size: 14px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ecosystem-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ecosystem-card {
        text-align: center;
        padding: 25px 20px;
    }

    .ecosystem-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }

    .ecosystem-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ecosystem-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}


/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-wrapper {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

    .testimonials-container h2 {
        font-size: 42px;
        font-weight: 700;
        color: #2eaa7d;
        text-align: center;
        margin-bottom: 50px;
    }

.testimonials-navigation {
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #2eaa7d;
    background: transparent;
    color: #2eaa7d;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testimonial-nav-btn:hover {
        background-color: #2eaa7d;
        color: #ffffff;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card-white {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card-green {
    background-color: #2eaa7d;
}

.quote-icon {
    font-size: 48px;
    color: #2eaa7d;
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-card-green .quote-icon {
    color: #ffffff;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333333;
}

.testimonial-card-green .testimonial-text {
    color: #ffffff;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.testimonial-card-green .author-info h4 {
    color: #ffffff;
}

.author-info p {
    font-size: 13px;
    color: #666666;
}

.testimonial-card-green .author-info p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-active {
    background-color: #2eaa7d;
    width: 30px;
    border-radius: 5px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablets */
@media (max-width: 991px) {
    .testimonials-container h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .quote-icon {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 15px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .testimonials-wrapper {
        padding: 60px 15px;
    }

    .testimonials-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        text-align: center;
    }

    .quote-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info p {
        font-size: 12px;
    }

    .testimonials-navigation {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .testimonial-dots {
        margin-top: 20px;
    }
}


/* ===============================
   TRANSFORM CTA SECTION
   =============================== */
.transform-cta-wrapper {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.transform-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background-image: url('../images/bana.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .transform-cta-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
    }

.transform-cta-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

    .transform-cta-content h2 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.3;
        max-width: 600px;
        margin: 0;
    }

.transform-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.transform-cta-btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 250px;
}

.transform-btn-farmer {
    background-color: #2eaa7d;
    color: #ffffff;
}

    .transform-btn-farmer:hover {
        background-color: #269970;
        transform: translateY(-2px);
    }

.transform-btn-supplier {
    background-color: #ffc145;
    color: #1a1a1a;
}

    .transform-btn-supplier:hover {
        background-color: #ffb31f;
        transform: translateY(-2px);
    }

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablets */
@media (max-width: 991px) {
    .transform-cta-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 50px 40px;
        gap: 30px;
    }

        .transform-cta-content h2 {
            font-size: 36px;
            line-height: 1.4;
            max-width: 90%;
            margin: 0 auto;
        }

    .transform-cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .transform-cta-btn {
        min-width: 200px;
        font-size: 16px;
        padding: 15px 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .transform-cta-wrapper {
        padding: 60px 10px;
    }

    .transform-cta-container {
        border-radius: 20px;
        min-height: 400px;
        background-position: center;
        background-size: cover;
    }

    .transform-cta-content {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

        .transform-cta-content h2 {
            font-size: 26px;
            line-height: 1.4;
            color: #fff;
        }

    .transform-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .transform-cta-btn {
        width: 90%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .transform-cta-content h2 {
        font-size: 22px;
    }

    .transform-cta-btn {
        width: 100%;
        font-size: 15px;
        padding: 12px 18px;
    }
}



.app-intro-section {
    background: linear-gradient(90deg, #f3f8ff 0%, #ffffff 100%);
    border-radius: 40px;
    padding: 80px 0;
    margin: 60px auto;
}

.app-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Text Section */
.app-intro-text {
    flex: 1 1 450px;
}

    .app-intro-text h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #009444; /* main green */
        margin-bottom: 20px;
        line-height: 1.3;
    }

        .app-intro-text h2 span {
            color: #00b050;
        }

    .app-intro-text p {
        font-size: 1rem;
        color: #333;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.download-text {
    font-weight: 600;
    color: #000;
}

.store-buttons img {
    width: 150px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

    .store-buttons img:hover {
        transform: scale(1.05);
    }

/* Image Section */
.app-intro-image {
    flex: 1 1 400px;
    text-align: center;
    overflow: hidden;
}

.phone-image {
    width: 100%;
    height: 600px;
    max-height: 700px; /* limit large screen height */
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Tablet Screens */
@media (max-width: 992px) {
    .app-intro-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .phone-image {
        max-height: 550px; /* reduce a bit for tablets */
    }

    .app-intro-text h2 {
        font-size: 1.8rem;
    }

    .store-buttons img {
        width: 130px;
        margin: 10px;
    }

    .app-intro-section {
        padding: 60px 20px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .phone-image {
        width: 90%;
        max-height: 400px; /* smaller height for phones */
    }

    .app-intro-text h2 {
        font-size: 1.5rem;
    }

    .app-intro-text p {
        font-size: 0.95rem;
    }
}
