t

<!DOCTYPE html> <html lang=”bn”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>৭টি ফলের চারা প্যাকেজ – মাত্র ১৪৯৯ টাকা</title> <style> @import url(‘https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap‘); , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { –green-dark: #1a4d2e; –green-mid: #2d7a4a; –green-light: #4caf72; –leaf: #a8d5b5; –amber: #e8a020; –amber-light: #fef3dc; –cream: #fafaf5; –text: #1c2b1e; –muted: #4a6351; –white: #ffffff; –radius: 12px; –shadow: 0 4px 24px rgba(26,77,46,0.13); } html { scroll-behavior: smooth; } body { font-family: ‘Hind Siliguri’, sans-serif; background: var(–cream); color: var(–text); line-height: 1.65; font-size: 16px; } / ── HEADER STRIP ── / .top-strip { background: var(–green-dark); color: var(–white); text-align: center; padding: 10px 16px; font-size: 14px; letter-spacing: 0.03em; } .top-strip span { color: var(–amber); font-weight: 700; } / ── HERO ── / .hero { background: linear-gradient(135deg, var(–green-dark) 0%, var(–green-mid) 60%, #3d9e5f 100%); color: var(–white); padding: 56px 20px 64px; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ”; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 1px, transparent 1px), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; } .hero-inner { position: relative; max-width: 680px; margin: 0 auto; } .eyebrow { display: inline-block; background: var(–amber); color: var(–green-dark); font-weight: 700; font-size: 13px; padding: 5px 14px; border-radius: 20px; letter-spacing: 0.05em; margin-bottom: 20px; } .hero h1 { font-size: clamp(26px, 6vw, 44px); font-weight: 700; line-height: 1.25; margin-bottom: 18px; text-shadow: 0 2px 8px rgba(0,0,0,0.2); } .hero h1 .price-highlight { color: var(–amber); display: block; } .hero-sub { font-size: clamp(15px, 3vw, 18px); color: var(–leaf); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; } .hero-cta-wrap { display: flex; flex-direction: column; gap: 12px; align-items: center; } .btn-primary { display: inline-block; background: var(–amber); color: var(–green-dark); font-weight: 700; font-size: clamp(16px, 3.5vw, 20px); padding: 16px 40px; border-radius: var(–radius); text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 6px 20px rgba(232,160,32,0.4); cursor: pointer; border: none; font-family: inherit; width: 100%; max-width: 400px; text-align: center; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,160,32,0.5); } .stock-note { font-size: 13px; color: var(–leaf); display: flex; align-items: center; gap: 6px; } .stock-dot { width: 8px; height: 8px; background: #ff6b6b; border-radius: 50%; animation: pulse 1.4s infinite; flex-shrink: 0; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } } / ── SECTION WRAPPER ── / .section { padding: 52px 20px; } .section-inner { max-width: 700px; margin: 0 auto; } .section-title { font-size: clamp(20px, 4.5vw, 28px); font-weight: 700; color: var(–green-dark); margin-bottom: 28px; text-align: center; position: relative; padding-bottom: 14px; } .section-title::after { content: ”; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 48px; height: 3px; background: var(–amber); border-radius: 2px; } / ── PACKAGE LIST ── / .package-box { background: var(–white); border: 2px solid var(–green-light); border-radius: var(–radius); padding: 32px 28px; box-shadow: var(–shadow); } .package-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid #e8f0ea; font-size: 17px; font-weight: 500; } .package-item:last-child { border-bottom: none; } .check-icon { width: 28px; height: 28px; background: var(–green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; } / ── PRICE BLOCK ── / .price-section { background: var(–green-dark); color: var(–white); } .price-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(–radius); padding: 36px 28px; text-align: center; } .price-label { font-size: 15px; color: var(–leaf); margin-bottom: 8px; } .price-big { font-size: clamp(48px, 12vw, 80px); font-weight: 700; color: var(–amber); line-height: 1; margin-bottom: 6px; } .price-sub { font-size: 14px; color: var(–leaf); margin-bottom: 28px; } .price-section .btn-primary { max-width: 100%; } / ── REASONS ── / .reasons-grid { display: grid; grid-template-columns: 1fr; gap: 16px; } @media (min-width: 560px) { .reasons-grid { grid-template-columns: 1fr 1fr; } } .reason-card { background: var(–white); border-radius: var(–radius); padding: 22px 20px; border-left: 4px solid var(–green-light); box-shadow: 0 2px 12px rgba(26,77,46,0.07); font-size: 15px; font-weight: 500; color: var(–text); display: flex; gap: 12px; align-items: flex-start; } .reason-icon { font-size: 22px; flex-shrink: 0; } / ── EMOTIONAL ── / .emotional-section { background: var(–amber-light); } .emotional-card { background: var(–white); border-radius: var(–radius); padding: 32px 28px; border-top: 4px solid var(–amber); box-shadow: var(–shadow); font-size: 17px; color: var(–muted); line-height: 1.8; text-align: center; font-style: italic; } .emotional-card strong { color: var(–green-dark); font-style: normal; } / ── FIRE REASONS ── / .fire-list { list-style: none; display: flex; flex-direction: column; gap: 14px; } .fire-list li { background: var(–white); border-radius: var(–radius); padding: 16px 20px; display: flex; gap: 12px; align-items: center; font-size: 16px; font-weight: 500; box-shadow: 0 2px 10px rgba(26,77,46,0.06); } .fire-emoji { font-size: 20px; flex-shrink: 0; } / ── ORDER SECTION ── / .order-section { background: var(–green-dark); color: var(–white); text-align: center; } .order-section .section-title { color: var(–white); } .order-section .section-title::after { background: var(–amber); } .order-desc { color: var(–leaf); font-size: 16px; margin-bottom: 28px; } / ── FOOTER ── / footer { background: #0f2a1a; color: var(–leaf); text-align: center; padding: 20px 16px; font-size: 13px; } / ── DIVIDER LEAF ── */ .leaf-divider { text-align: center; font-size: 24px; margin: 8px 0; opacity: 0.5; } </style> </head> <body> <!– TOP STRIP –> <div class=”top-strip”> ⚠️ সীমিত স্টক — <span>আজই অর্ডার করুন</span> এবং দ্রুত ডেলিভারি পান! </div> <!– HERO –> <section class=”hero”> <div class=”hero-inner”> <span class=”eyebrow”>🌿 বিশেষ অফার</span> <h1> মাত্র <span class=”price-highlight”>১৪৯৯ টাকায়</span> ৭টি প্রিমিয়াম ফলের চারা প্যাকেজ! </h1> <p class=”hero-sub”> আপনার ছাদ, উঠান বা বাগানে এবার একসাথে ফলবে<br>দেশি-বিদেশি জনপ্রিয় ফল। </p> <p style=”color: var(–leaf); margin-bottom: 24px; font-size: 15px;”> এক প্যাকেজেই কাঠাল, আপেল, আঙুর, আনার, পেয়ারা, লেবু ও জাম — <strong style=”color: var(–amber);”>সীমিত সময়ের অফার!</strong> </p> <div class=”hero-cta-wrap”> <a href=”#dp-order-now” class=”btn-primary”> 🛒 এখনই অর্ডার করুন – মাত্র ১৪৯৯ টাকা </a> <span class=”stock-note”> <span class=”stock-dot”></span> স্টক শেষ হওয়ার আগে বুক করুন </span> </div> </div> </section> <!– PACKAGE CONTENTS –> <section class=”section”> <div class=”section-inner”> <h2 class=”section-title”>প্যাকেজে যা থাকছে</h2> <div class=”package-box”> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি কাঠাল চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি আপেল চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি আঙুর চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি আনার চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি পেয়ারা চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি লেবু চারা</div> <div class=”package-item”><span class=”check-icon”>✅</span> ১টি জাম চারা</div> </div> </div> </section> <!– PRICE –> <section class=”section price-section”> <div class=”section-inner”> <h2 class=”section-title” style=”color:var(–white);”>মূল্য</h2> <div class=”price-card”> <p class=”price-label”>৭টি চারার সম্পূর্ণ প্যাকেজ</p> <div class=”price-big”>১৪৯৯<span style=”font-size:28px;”> ৳</span></div> <p class=”price-sub”>স্টক সীমিত — আগে অর্ডার করলে আগে পাবেন</p> <a href=”#dp-order-now” class=”btn-primary”>এখনই অর্ডার করুন</a> </div> </div> </section> <!– WHY BUY –> <section class=”section”> <div class=”section-inner”> <h2 class=”section-title”>কেন এই প্যাকেজ নিবেন?</h2> <div class=”reasons-grid”> <div class=”reason-card”> <span class=”reason-icon”>🌳</span> একবার লাগান, বছরের পর বছর ফল পাওয়ার সম্ভাবনা। </div> <div class=”reason-card”> <span class=”reason-icon”>🏡</span> ছাদবাগান, বাড়ির আঙিনা ও জমির জন্য উপযোগী। </div> <div class=”reason-card”> <span class=”reason-icon”>🥭</span> পরিবারের জন্য নিরাপদ, সতেজ ও নিজের হাতে উৎপাদিত ফল। </div> <div class=”reason-card”> <span class=”reason-icon”>🌍</span> গাছ লাগিয়ে পরিবেশ রক্ষায় আপনিও ভূমিকা রাখুন। </div> </div> </div> </section> <!– EMOTIONAL –> <section class=”section emotional-section”> <div class=”section-inner”> <div class=”leaf-divider”>🍃🌿🍃</div> <div class=”emotional-card”> আজ যে চারা লাগাবেন, আগামী দিনের সন্তানদের জন্য সেটাই হবে<br> <strong>ছায়া, ফল আর অক্সিজেনের উপহার।</strong> <br><br> গরম কমাতে, পরিবেশ বাঁচাতে এবং নিজের বাড়িকে সবুজ করতে<br> <strong>আজই শুরু করুন।</strong> </div> </div> </section> <!– FIRE REASONS –> <section class=”section”> <div class=”section-inner”> <h2 class=”section-title”>অর্ডার করার কারণ</h2> <ul class=”fire-list”> <li><span class=”fire-emoji”>🔥</span> বাজারে আলাদা আলাদা কিনলে খরচ বেশি</li> <li><span class=”fire-emoji”>🔥</span> এক প্যাকেজে ৭ রকম ফলের চারা</li> <li><span class=”fire-emoji”>🔥</span> নতুন বাগান শুরু করার জন্য পারফেক্ট</li> <li><span class=”fire-emoji”>🔥</span> উপহার হিসেবেও দারুণ</li> </ul> </div> </section> <!– ORDER CTA –> <section class=”section order-section” id=”dp-order-now”> <div class=”section-inner”> <h2 class=”section-title”>এখনই অর্ডার করুন</h2> <p class=”order-desc”> অর্ডার কনফার্ম করতে আপনার নাম, মোবাইল নাম্বার ও ঠিকানা দিন। </p> <!– CartFlows order form এখানে insert হবে –> <a href=”#dp-order-now” class=”btn-primary” style=”max-width:420px; display:inline-block;”> 🛒 এখনই অর্ডার করুন – মাত্র ১৪৯৯ টাকা </a> <p style=”margin-top: 16px; color: var(–leaf); font-size: 14px;”> 📦 দ্রুত ডেলিভারি — স্টক শেষ হওয়ার আগে বুক করুন </p> </div> </section> <!– FOOTER –> <footer> <p>© Nursery Agro — সবুজ বাংলাদেশের জন্য</p> </footer> </body> </html>