/* Enjoy Bazar - Modern Responsive CSS (Mobile First) */

:root{
  --primary: #0ea5a4;          /* teal/green */
  --primary-2:#2563eb;         /* blue */
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --border:#e2e8f0;
  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --shadow-soft: 0 8px 20px rgba(2, 6, 23, .06);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans Bengali", "Hind Siliguri", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width: 100%;
  max-width: var(--container);
  padding: 0 16px;
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 64px;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing:.2px;
}

.brand-badge{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .5px;
}

/* ব্যাজের ভিতরে E দেখাবে */
.brand-badge::before{
  content: "E";
}

.brand small{
  display:block;
  font-weight:600;
  color: var(--muted);
  font-size: 12px;
  margin-top:-2px;
}

.nav-links{
  display:none;
  gap: 18px;
  align-items:center;
}

.nav-links a{
  font-weight: 600;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active{
  color: var(--text);
  background: #f1f5f9;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Mobile menu button */
.menu-btn{
  border:1px solid var(--border);
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: 0 2px 10px rgba(2,6,23,.04);
}

.menu-panel{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.menu-panel .menu-inner{
  padding: 10px 16px 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.menu-panel a{
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 650;
  color: var(--muted);
  border:1px solid var(--border);
}
.menu-panel a:hover,
.menu-panel a.active{
  color: var(--text);
  background:#f8fafc;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  user-select:none;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover{ box-shadow: var(--shadow); }

.btn-ghost{
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover{ background:#f8fafc; }

/* Sections */
.section{
  padding: 40px 0;
}

.section-title{
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -.2px;
}
.section-sub{
  margin: 0 0 18px;
  color: var(--muted);
}

/* Hero */
.hero{
  padding: 46px 0 30px;
}
.hero-grid{
  display:grid;
  gap: 18px;
}
.hero-card{
  background: radial-gradient(1200px 400px at 10% 10%, rgba(14,165,164,.12), transparent 60%),
              radial-gradient(800px 300px at 90% 20%, rgba(37,99,235,.10), transparent 55%),
              #ffffff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.hero h1{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.3px;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}
.hero-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-meta{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.pill{
  border:1px solid var(--border);
  background:#fff;
  border-radius: 999px;
  padding: 8px 10px;
}

/* Cards */
.grid{
  display:grid;
  gap: 14px;
}
.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 18px rgba(2,6,23,.04);
}
.card h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,164,.18), rgba(37,99,235,.16));
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
  border: 1px solid rgba(226,232,240,.9);
}

/* Highlight */
.highlight{
  background: #f8fafc;
  border:1px dashed #cbd5e1;
  border-radius: var(--radius);
  padding: 18px;
}

/* Forms */
.form{
  display:grid;
  gap: 12px;
}
.input{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
label{
  font-weight: 700;
  font-size: 13px;
}
input, textarea{
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  outline:none;
  background:#fff;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(37,99,235,.6);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid{
  display:grid;
  gap: 14px;
}
.footer small{ color: var(--muted); }
.footer a{ color: var(--muted); font-weight: 650; }
.footer a:hover{ color: var(--text); }

/* Utilities */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background:#fff;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.hr{
  height:1px;
  background: var(--border);
  margin: 14px 0;
}
.brand-logo{
  width: 30px !important;
  height: 38px!important;
  border-radius: 12px;
  object-fit: contain;     /* logo crop হবে না */
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 6px;            /* লোগো ছোট হলে সুন্দর দেখায় */
}

/* Desktop */
@media (min-width: 900px){
  .nav-links{ display:flex; }
  .menu-btn{ display:none; }
  .menu-panel{ display:none !important; }

  .hero-grid{ grid-template-columns: 1.2fr .8fr; }
  .hero h1{ font-size: 38px; }
  .grid.cols-2{ grid-template-columns: repeat(2,1fr); }
  .grid.cols-3{ grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; }
}
