* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f7f7;
}

/* HEADER */
.header {
    background: #27ae60;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.header nav {
    display: flex;
}

.header a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #27ae60;
        flex-direction: column;
        display: none;
    }

    .header nav a {
        margin: 15px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .header nav.active {
        display: flex;
    }
}


/* HERO BANNER */
.hero-banner {
    height: 90vh;
    background: 
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("https://images.unsplash.com/photo-1542838132-92c53300491e");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-content {
    max-width: 700px;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.banner-content button {
    padding: 14px 36px;
    background: #27ae60;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.banner-content button:hover {
    background: #219150;
}

/* 📱 Responsive Banner */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* PINCODE SECTION */
.pincode-section {
    background: #f4fdf7;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.pincode-box {
    background: #fff;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pincode-box h2 {
    margin-bottom: 10px;
}

.pincode-box p {
    color: #666;
    margin-bottom: 20px;
}

.pincode-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pincode-form input {
    padding: 12px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.pincode-form button {
    padding: 12px 25px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.pincode-form button:hover {
    background: #219150;
}

.pincode-result {
    margin-top: 15px;
    font-weight: bold;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
    .pincode-form {
        flex-direction: column;
    }

    .pincode-form input {
        width: 100%;
    }
}


/* SHOP SECTION */
.shop {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.shop h2 {
    font-size: 32px;
}

.shop-subtitle {
    color: #777;
    margin-top: 5px;
}

/* PRODUCT GRID */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

/* PRODUCT CARD */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 8px;
}

.price {
    display: block;
    font-size: 18px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 12px;
}

.card button {
    padding: 10px 20px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.card button:hover {
    background: #219150;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .shop h2 {
        font-size: 26px;
    }
}


/* HOW IT WORKS */
.how {
    background: #f0fff6;
    padding: 70px 20px;
    text-align: center;
}

.how h2 {
    font-size: 32px;
}

.how-subtitle {
    color: #777;
    margin-top: 8px;
}

/* STEPS GRID */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

/* STEP CARD */
.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #27ae60;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ICON */
.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    color: #666;
    font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .how h2 {
        font-size: 26px;
    }
}

/* APP DOWNLOAD BUTTON */
.app-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.playstore-btn img {
    height: 55px;
    transition: 0.3s;
}

.playstore-btn img:hover {
    transform: scale(1.05);
}


/* CONTACT SECTION */
.contact {
    background: #f9f9f9;
    padding: 70px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    padding: 12px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #219150;
}

/* FOOTER */
.footer {
    background: #27ae60;
    color: #fff;
    padding: 20px;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 8px;
    }
}



/* HEADER */
.policy-header {
    background: #27ae60;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.policy-header h1 {
    font-size: 36px;
}

.policy-header p {
    opacity: 0.9;
}

/* CONTENT CARD */
.policy-content {
    background: white;
    padding: 40px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.policy-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.policy-content .updated {
    color: #777;
    margin-bottom: 25px;
}

.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #27ae60;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #777;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .current {
    color: #555;
}

/* FOOTER */
.policy-footer {
    background: #27ae60;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MOBILE */
@media (max-width: 600px) {
    .policy-header h1 {
        font-size: 28px;
    }

    .policy-content {
        padding: 25px;
    }

    .policy-content h2 {
        font-size: 26px;
    }
}
