* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

.green-text {
    color: #75BF7A;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.help-center-btn {
    background: #75BF7A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    padding: 4rem 8%;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-text {
    color: #9E9DA2;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.store-btn {
    background: #000;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    font-size: 1em;
    margin: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hero-img img {
    width: 100%;
    max-width: 500px;
}

/* Input Section */
.input-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #7dba7d;
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
}

.input-text p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.input-group {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
}

input {
    flex: 1;
    height: 60px;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0 20px;
    outline: none;
}

.apply-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 60px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    /* Button ka text wrap nahi hoga */
}

.second-section {
    text-align: center;
    padding-top: 50px;
}

.center-p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.side {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    border: 8px solid #75BF7A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #75BF7A;
    font-weight: 800;
}

.step-p {
    color: #9E9DA2;
    font-size: 0.9rem;
    line-height: 1.4;
}

.big-green-circle {
    width: 350px;
    height: 350px;
    background: #75BF7A;
    border-radius: 50%;
    position: relative;
}

.mobile-on-circle {
    display: none;
    width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Benefits */
.benefits-title {
    text-align: center;
    margin-top: 80px;
    font-size: 2.5rem;
}

.benefits-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
}

.mobile-bg {
    position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 280px;
    z-index: -1;
}

.info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 40px;
    margin-bottom: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.row-reverse {
    flex-direction: row-reverse;
}

.bg-number {
    font-size: 80px;
    color: #75BF7A;
    opacity: 0.8;
}

.info-card-heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.info-card-p {
    max-width: 350px;
}

.image-box img {
    width: 250px;
}

/* Footer */
.main-footer {
    padding: 80px 5% 30px;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    width: 120px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.download-links {
    display: flex;
    gap: 1em;
    align-items: center;
}

.store-link {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
    color: #72bf44;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 4%
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .side {
        width: 100%;
    }

    .center-img {
        order: -1;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .big-green-circle {
        width: 280px;
        height: 280px;
    }

    .mobile-on-circle {
        display: block;
        width: 160px;
    }

    .mobile-bg {
        display: none;
    }

    .input-section {
        flex-direction: column;
        text-align: center;
        margin: 10px;
        padding: 10px;
    }

    .input-group {
        margin: 20px 0 0 0;
        width: 100%;
    }
}

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .logo img {
        width: 110px;
        height: auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .input-text p {
        font-size: 1rem;
        font-weight: 700;
    }

    input {
        height: 50px;
        padding: 0 15px;
        font-size: 14px;
    }

    .apply-btn {
        height: 50px;
    }

    .info-card,
    .info-card.row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col:nth-child(1) {
        order: 1;
    }

    .footer-col.download-links {
        order: 2;
        flex-direction: column;
        gap: 20px;
    }

    .store-link {
        width: 200px;
        justify-content: center;
    }

    .footer-col:nth-child(2) {
        display: none;
    }

    .footer-col:nth-child(3) {
        order: 3;
        display: block;
    }
}

/* --- Mobile Responsive Styles (480px se niche) --- */
@media (max-width: 480px) {
    .input-group {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }

    input {
        width: 100%;
        height: 50px;
        border-radius: 8px;
        text-align: center;
        padding: 15px 10px;
    }

    .apply-btn {
        width: 100%;
        height: 50px;
        border-radius: 8px;
        padding: 0;
    }

    .second-section h1 {
        font-size: 1.5rem;
        padding: 0 0 20px;
    }

    .sub-text {
        font-size: 0.89rem;
        padding: 5px;
    }

    .big-green-circle {
        width: 240px;
        height: 240px;
    }

    .mobile-on-circle {
        display: block;
        width: 150px;
    }

    .step-p {
        padding-top: 10px;
    }

    .benefits-title {
        margin-top: 50px;
        font-size: 1.5rem;
    }

    .info-card {
        padding: 5px;
    }

    .bg-number {
        font-size: 60px;
    }

    .info-card-heading {
        font-size: 1.2rem;
    }

    .steps-container {
        gap: 30px;
    }

    .benefits-wrapper {
        margin: 5px auto;
    }

    .info-card {
        margin-bottom: 25px;
    }

    .main-footer {
        padding: 40px 5% 30px;
    }

    .footer-logo {
        width: 110px;
    }

    .store-link {
        width: 150px;
    }

    .footer-col.download-links {
        gap: 10px;
    }

    .footer-bottom {
        margin-top: 10px;
    }

}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}