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

body {
    font-family: 'Inter', sans-serif;
    color: #111;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 50px;
    height: 60px;
    border-radius: 5px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
}

.top-btn {
    background: #2f5d34;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-btn:hover {
    background: #244a28;
}

.hero-section {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #F2FBF2 100%);
    overflow: hidden;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ================= HERO ================= */

.hero {
    padding: 60px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.tag {
    display: inline-block;
    background: #dfe6dd;
    color: #2f5d34;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title span {
    color: #2f5d34;
}

.hero-description {
    font-size: 20px;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Store buttons */

.store-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0px;
}

.store-buttons img {
    height: 55px;
    cursor: pointer;
    transition: 0.3s ease;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

/* CTA */

.cta-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.start-btn {
    background: #2f5d34;
    color: #fff;
    padding: 18px 34px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.start-btn:hover {
    background: #244a28;
    transform: translateY(-3px);
}

.trusted {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2f5d34;
}

/* Hero Image */

.hero-right {
    flex: 1;
    text-align: right;
}

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

/* =========================LARGE LAPTOP=========================*/
@media (max-width: 1200px) {

    .hero-title {
        font-size: 52px;
    }

    .hero-right img {
        width: 320px;
    }

}


/* =========================
   TABLET (992px)
========================= */
@media (max-width: 992px) {

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

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
        margin: auto;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-section {
        flex-direction: column;
        gap: 15px;
    }

    .hero-right img {
        width: 280px;
    }

    /* Reduce glow size */
    .hero-section::after {
        width: 500px;
        height: 500px;
        right: -150px;
    }

}


/* =========================
   MOBILE (576px)
========================= */
@media (max-width: 576px) {

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .start-btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-right img {
        width: 230px;
    }

    /* Glow aur halka */
    .hero-section::after {
        width: 350px;
        height: 350px;
        right: -120px;
    }

    .logo img {
        width: 40px;
        height: 47px;
        border-radius: 5px;
    }

    .logo-text {
        font-size: 18px;

    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero {
        padding: 20px 0 0px;
    }

    .store-buttons img {
        height: 42px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .store-buttons {
        margin: 20px 0px;
    }

    .top-btn {
        background: #2f5d34;
        color: #fff;
        padding: 11px 22px;
        border-radius: 40px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s ease;
        font-size: 16px;
    }

}

/* Section */
.features-section {
    position: relative;
    padding: 120px 0 220px;
    background: #ffffff;
    overflow: hidden;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b6b6b;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}

/* Bottom Wave */
.features-wave {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    height: 260px;
    background: url("../img/shap.jpg") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
}

/* Keep content above wave */
.features-section .container {
    position: relative;
    z-index: 2;
}

/* ========================= */
/* Responsive Design */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {

    .section-title {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 576px) {

    .features-section {
        padding: 80px 0 80px;
    }

    .step h3 {
        font-size: 18px !important;
        margin-bottom: 12px;
    }

    .padding-phone {
        text-align: center;
        margin-bottom: -40px !important;
    }

    .step p {
        font-size: 14px !important;
        color: #7a7a7a;
    }

    .section-title {
        font-size: 26px;
    }

    .badge img {
        height: 50px !important;
        width: 50px !important;
    }

    .waitlist-section {
        background: linear-gradient(to bottom, #FFFFFF, #F2FBF2);
        padding: 50px 0px 0px 0px !important;
    }

    .padding-footer {
        margin-bottom: 10px !important;
    }

    .content-wrapper {
        gap: 0px !important;
    }

    .footer-bar {
        margin-top: 40px !important;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 30px;
    }



}

.how-it-work {
    background: #ffffff;
    text-align: center;
}

.container {
    max-width: 1250px;
    margin: auto;
}

.heading h2 {
    font-size: 64px;
    font-weight: 700;
}

.heading p {
    font-size: 20px;
    color: #8c8c8c;
    margin-top: 10px;
}

.steps {
    position: relative;
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Cards */
.step {
    width: 380px;
    background: #F2FBF2;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    z-index: 3;
}

/* Position center card lower */
.step-2 {
    margin-top: 120px;
}

/* Badge */
.badge {
    position: absolute;
    top: -20px;
    right: 40px;

}

.badge span {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

/* Side extension block */
.badge-tab {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 12px;
    height: 50px;
    background: #214721;
    border-radius: 4px;
}

/* Icon */
.icon img {
    width: 40px;
    margin-bottom: 20px;
}

.icon {
    position: absolute;
    top: -20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step p {
    font-size: 17px;
    color: #7a7a7a;
}

/* Curved lines */
.line {
    position: absolute;
    width: 170px;
}

.left-line {
    left: 340px;
    transform: rotate(36deg);
    top: 70px;
}

.right-line {
    right: 332px;
    transform: scaleX(-1);
    transform: rotate(-35deg);
    top: 68px;
}

/* Responsive */
@media (max-width: 992px) {

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        margin-bottom: 50px;
    }

    .step-2 {
        margin-top: 0;
    }

    .line {
        display: none;
    }
}

.waitlist-section {
    background: linear-gradient(to bottom, #FFFFFF, #F2FBF2);
    padding: 150px 0px 0px 0px;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
}

/* TOP HEADING */
.top-heading {
    text-align: center;
    margin-bottom: 70px;
}

.mini-icon {
    width: 60px;
    height: 60px;
    background: #2e5f2e;
    color: #fff;
    margin: auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.top-heading h2 {
    font-size: 54px;
    font-weight: 700;
}

.top-heading p {
    font-size: 20px;
    color: #777;
    margin-top: 10px;
}

/* CONTENT */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT IMAGE */
.left-image img {
    width: 100%;
    max-width: 520px;
}

/* CONTACT CARD */
.contact-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 5px;
    width: 480px;
    border: 1px solid #E0DCDC;


}

.contact-card h3 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #2e5f2e;
    display: inline-block;
    padding-bottom: 5px;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

input:focus {
    border-color: #2e5f2e;
}

/* BUTTON */
button {
    margin-top: 20px;
    padding: 16px;
    border-radius: 40px;
    border: none;
    background: #356b35;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #2a542a;
}

/* FOOTER */
.footer-bar {
    margin-top: 100px;
    background: #2e5f2e;
    padding: 20px 0;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .content-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .contact-card {
        width: 100%;
        max-width: 500px;
    }

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

}

@media (max-width: 576px) {

    .top-heading h2 {
        font-size: 32px;
    }

    .top-heading p {
        font-size: 16px;
    }

    .contact-card {
        padding: 35px 20px;
    }

}

html {
    scroll-behavior: smooth;
}