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

:root{
  --bg:#f4f6fb;
  --white:#ffffff;
  --text:#0b1220;
  --muted:#6b7280;

  --primary:#4f46e5;        /* premium indigo */
  --primary-dark:#3730a3;

  --success:#16a34a;
  --danger:#dc2626;

  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,0.08);

  --radius:18px;
}

body{
  font-family:Arial, sans-serif;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color:var(--text);
  line-height:1.5;
}

/* HEADER */
.header{
  background: rgba(76, 0, 255, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}


.header{
  padding: 10px 14px !important;
}

.logo{
  width: 42px !important;
  height: 42px !important;
}

.brand-text h2{
  font-size: 18px !important;
}

.brand-text p{
  font-size: 11px !important;
}

.header-badge{
  padding: 7px 12px !important;
  font-size: 12px !important;
}

.header-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.header-left{
  display:flex;
  align-items:center;
  min-width:0;
}

.page-wrap{
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* IMPORTANT MOBILE FIX */
@media (max-width: 768px){
  .page-wrap{
    width: 100%;
    margin: 0 auto;
    padding: 12px;
  }

  .section-card,
  .box{
    width: 100%;
  }
}
.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.header-right h2{
  color:#ffffff !important;
  font-size:22px;
  font-weight:800;
  letter-spacing:-0.3px;
}

.header-right h2{
  margin:4px 0 0;
  font-size:13px;
  color:var(--muted);
  font-weight:500;
}

.header-right h2{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, #eff6ff, #dbeafe);
  color:var(--primary-dark);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  border:1px solid #bfdbfe;
  box-shadow:0 8px 18px rgba(37,99,235,0.10);
}

/* HEADER RESPONSIVE */
@media (max-width: 768px){
  .header{
    padding:12px 14px;
  }

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .header-right{
    width:100%;
  }

  .header-badge{
    width:100%;
    justify-content:center;
  }

  .logo{
    width:48px;
    height:48px;
  }

  .brand-text h2{
    font-size:21px;
  }

  .brand-text p{
    font-size:12px;
  }
}

@media (max-width: 480px){
  .header{
    padding:12px;
  }

  .logo-wrap{
    gap:10px;
  }

  .logo{
    width:44px;
    height:44px;
    border-radius:14px;
  }

  .brand-text h2{
    font-size:19px;
  }

  .brand-text p{
    font-size:11.5px;
  }

  .header-badge{
    font-size:12px;
    padding:9px 12px;
  }
}

/* COMMON CARD */
.section-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(226,232,240,0.7);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.section-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}
.section-top{
  margin-bottom:14px;
}

.section-badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#eff6ff;
  color:var(--primary);
  font-size:12px;
  font-weight:700;
  margin-bottom:8px;
}

.section-top h3{
  font-size:20px;
  font-weight:700;
  color:var(--text);
}

/* SLIDER */
.slider{
  width:100%;
  overflow:hidden;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #edf2f7;
}

.track{
  display:flex;
   transition: transform 1s ease-in-out;
}

.track img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
}

/* MARQUEE */
.marquee{
  width:100%;
  overflow:hidden;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 0;
}

.marquee-text{
  white-space:nowrap;
  display:inline-block;
  padding-left:100%;
  font-size:15px;
  font-weight:600;
  color:var(--primary);
  animation:move 16s linear infinite;
}

@keyframes move{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}

/* SUPPORT */
.support-card{
  padding:14px 16px;
}

.support{
  text-align:center;
  background:linear-gradient(135deg, #fff1f2, #ffffff);
  color:var(--red);
  font-weight:700;
  padding:14px 16px;
  border:1px solid #fecdd3;
  border-radius:16px;
  font-size:16px;
}

/* COUNTER */
.counter{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.counter-item{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px 12px;
  text-align:center;
  box-shadow:0 8px 24px rgba(15, 23, 42, 0.04);
}

.counter-item h2{
  font-size:28px;
  color:var(--primary);
  margin-bottom:6px;
}

.counter-item p{
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

/* PACKAGE */
.pkg{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.pkg-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  box-shadow:0 12px 30px rgba(15, 23, 42, 0.06);
  display:flex;
  flex-direction:column;
  height:100%;
}

.pkg-head{
  margin-bottom:14px;
}

.pkg-card h3{
  font-size:14px;
  color:var(--primary);
  margin-bottom:6px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.3px;
}

.pkg-card h2{
  font-size:24px;
  color:var(--text);
  font-weight:700;
}

.price{
  background:linear-gradient(135deg, var(--green), #22c55e);
  color:#ffffff;
  padding:12px;
  text-align:center;
  border-radius:14px;
  font-weight:700;
  font-size:18px;
  margin-bottom:16px;
}

.pkg-card ul{
  padding-left:18px;
  margin-bottom:18px;
  flex:1;
}

.pkg-card ul li{
  margin-bottom:8px;
  color:#334155;
  font-size:14px;
}

.pkg-card button,
.form-box button{
  width:100%;
  padding:13px 16px;
  border:none;
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#ffffff;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:0.25s ease;
}

.pkg-card button:hover,
.form-box button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(37, 99, 235, 0.2);
}

/* BOX */
.box{
  width:100%;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}

.form-box{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input,
select{
  width:100%;
  padding:13px 14px;
  border:1px solid #dbe3ec;
  border-radius:12px;
  background:#ffffff;
  color:var(--text);
  outline:none;
  font-size:15px;
}

input:focus,
select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 3px rgba(59, 130, 246, 0.12);
}

/* FAQ */
.faq-box{
  display:flex;
  flex-direction:column;
  gap:12px;
}

details{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 16px;
}

summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
  list-style:none;
}

summary::-webkit-details-marker{
  display:none;
}

details p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25D366;
  color:#ffffff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  box-shadow:0 12px 25px rgba(37, 211, 102, 0.3);
  z-index:999;
  transition:0.25s ease;
}

.whatsapp:hover{
  transform:translateY(-2px) scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 991px){
  .pkg{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 768px){
  .header h2{
    font-size:24px;
  }

  .section-card{
    padding:14px;
  }

  .section-top h3{
    font-size:18px;
  }

  .counter{
    grid-template-columns:1fr;
  }

  .pkg{
    grid-template-columns:1fr;
  }

  .track img{
    aspect-ratio:16/9;
  }
}

@media (max-width: 480px){
  .page-wrap{
    width:94%;
    margin-top:14px;
    gap:14px;
  }

  .header{
    padding:16px 12px;
  }

  .header h2{
    font-size:22px;
  }

  .header p{
    font-size:13px;
  }

  .section-badge{
    font-size:11px;
    padding:5px 10px;
  }

  .section-top h3{
    font-size:17px;
  }

  .pkg-card h2{
    font-size:21px;
  }

  .price{
    font-size:17px;
  }

  .whatsapp{
    right:14px;
    bottom:14px;
    padding:12px 16px;
    font-size:14px;
  }
}


/* TOAST */
.toast{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  background:#16a34a;
  color:white;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  opacity:0;
  pointer-events:none;
  transition:0.4s;
  z-index:9999;
}

.toast.show{
  opacity:1;
  top:30px;
}

/* LOADING OVERLAY */
.loading{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.6);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:white;
  display:none;
  z-index:9999;
}

.spinner{
  width:50px;
  height:50px;
  border:5px solid #fff;
  border-top:5px solid #2563eb;
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin-bottom:12px;
}

@keyframes spin{
  0%{transform:rotate(0);}
  100%{transform:rotate(360deg);}
}



.support-badge{
  position:fixed;   /* 🔥 এটা সবচেয়ে গুরুত্বপূর্ণ */
  bottom:20px;
  right:20px;
  z-index:9999;

  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#25D366,#1da851);
  color:white;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;

  box-shadow:0 8px 18px rgba(37,211,102,0.25);
  animation:pulse 1.8s infinite ease-in-out;
  transition:0.3s;
}

/* WhatsApp icon */
.wa-icon{
  width:18px;
  height:18px;
  animation: iconBounce 2s infinite;
}

/* hover effect */
.support-badge:hover{
  transform:scale(1.1) rotate(-1deg);
  box-shadow:0 12px 25px rgba(37,211,102,0.35);
}

/* button pulse animation */
@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.06);}
  100%{transform:scale(1);}
}

/* icon bounce animation */
@keyframes iconBounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-3px);}
}


/* 🔥 MOBILE CENTER FIX */
body, html {
  width: 100%;
  overflow-x: hidden;
}

.page-wrap{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px;
  box-sizing: border-box;
}

/* সব section যেন center থাকে */
.section-card,
.box{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* slider full width fix */
.slider{
  width: 100%;
}
.track img{
  width: 100%;
  display: block;
}


.logo{
  width:50px;
  height:50px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}


html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}


.slider{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.track img{
  transition: transform 0.6s ease;
}

.track img:hover{
  transform: scale(1.03);
}



button{
  position: relative;
  overflow: hidden;
}

button:active{
  transform: scale(0.97);
}


.pkg-card{
  border-radius: 24px;
  transition: all 0.3s ease;
}

.pkg-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


.support-badge{
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
  backdrop-filter: blur(10px);
}



@media (max-width: 768px){

  .header-inner{
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
  }

  .header{
    padding: 8px 10px !important;
  }

  .logo{
    width: 40px !important;
    height: 40px !important;
  }

  .brand-text h2{
    font-size: 15px !important;
  }

  .brand-text p{
    display: none; /* mobile এ সাব টাইটেল লুকিয়ে দিচ্ছে */
  }

  .header-badge{
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
}

#country {
  color: #000;
}

#country option {
  color: #000;
}




.app-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e2e8f0;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

.app-card:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.app-card img{
  width:48px;
  height:48px;
  border-radius:10px;
  object-fit:cover;
}

.app-card h4{
  margin:0;
  font-size:15px;
  color:#0f172a;
}

.app-card p{
  margin:2px 0 0;
  font-size:12px;
  color:#64748b;
}



/* ===== PREMIUM GLOBAL POLISH ===== */
body{
  background:#f5f7fb;
}

/* smooth spacing system */
.page-wrap{
  gap:22px;
}

/* ===== HEADER FIX (clean + modern) ===== */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(135deg,#4f6ef7,#6a5cff);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  padding:10px 14px;
}

/* make logo + title aligned */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== SECTION CARDS PREMIUM LOOK ===== */
.section-card{
  background:#fff;
  border-radius:18px;
  padding:16px;
  margin-bottom:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.04);
}

/* ===== IMAGE CARD FIX ===== */
.section-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
}

/* ===== TEXT IMPROVEMENT ===== */
h1,h2,h3{
  letter-spacing:-0.3px;
  color:#111;
}

p{
  color:#555;
  line-height:1.5;
}

/* ===== BUTTON PREMIUM STYLE ===== */
button{
  background:linear-gradient(135deg,#4f6ef7,#6a5cff);
  color:#fff;
  border:none;
  padding:12px 16px;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
}

button:hover{
  transform:scale(1.03);
}

/* ===== COUNTER CARDS ===== */
.counter-item{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* ===== SUPPORT BADGE CLEAN ===== */
.support{
  background:#ffffff;
  color:#111;
  font-weight:600;
  border:1px solid #eee;
  box-shadow:0 8px 18px rgba(0,0,0,0.05);
}

/* ===== APP CARDS (DOWNLOAD SECTION) ===== */
.app-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  padding:12px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.app-card img{
  width:50px;
  height:50px;
  border-radius:12px;
}



/* ===== PLAY STORE SINGLE APP STYLE ===== */
.playstore-section{
  padding:16px;
}

.section-title{
  font-size:18px;
  font-weight:700;
  color:#111;
  margin-bottom:4px;
}

.section-subtitle{
  font-size:13px;
  color:#777;
  margin-bottom:12px;
}

/* CARD */
.app-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  padding:14px;
  border-radius:16px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.2s;
}

.app-card:hover{
  transform:scale(1.02);
}

/* ICON */
.app-card img{
  width:60px;
  height:60px;
  border-radius:14px;
  object-fit:cover;
}

/* TEXT */
.app-info h3{
  font-size:15px;
  margin:0;
  color:#111;
  font-weight:700;
}

.app-info p{
  font-size:12px;
  margin:4px 0 0;
  color:#666;
}

/* BUTTON */
.install-btn{
  display:inline-block;
  margin-top:6px;
  font-size:12px;
  background:linear-gradient(135deg,#4f6ef7,#6a5cff);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
}

.download-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 22px;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-radius:999px;
  font-size:14px;
  box-shadow:0 8px 20px rgba(37,99,235,0.20);
  transition:0.3s ease;
}

.download-btn:hover{
  transform:translateY(-2px);
}

.mini-stats{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:nowrap;
}

.mini-stat{
  flex:1;
  background:#f8fbff;
  border:1px solid #dbeafe;
  border-radius:14px;
  padding:10px 8px;
  text-align:center;
  box-shadow:0 6px 18px rgba(15,23,42,0.05);

  opacity:0;
  transform:translateY(16px);
  animation:statUp 0.6s ease forwards;
}

.mini-stat:nth-child(1){
  animation-delay:0.1s;
}

.mini-stat:nth-child(2){
  animation-delay:0.25s;
}

.mini-stat:nth-child(3){
  animation-delay:0.4s;
}

.mini-stat span{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}

.mini-stat strong{
  display:block;
  font-size:14px;
  color:#1e3a8a;
  font-weight:800;
  line-height:1.2;
}

.mini-stat small{
  display:block;
  font-size:11px;
  color:#64748b;
  margin-top:2px;
}

@keyframes statUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:480px){
  .mini-stats{
    gap:6px;
  }

  .mini-stat{
    padding:8px 6px;
    border-radius:12px;
  }

  .mini-stat strong{
    font-size:13px;
  }

  .mini-stat small{
    font-size:10px;
  }
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #f5f6fa;
}

/* SECTION */
.apps {
  padding: 15px;
}

/* 2 COLUMN ROW */
.app-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

/* APP CARD */
.app-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.app-logo {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  box-shadow: none;
  display: block;
}

/* APP TITLE */
.app-title {
  font-size: 13px;
  margin: 4px 0;
  font-weight: 600;
  color: #333;
}

/* DOWNLOAD BUTTON */
.download-btn {
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 12px;
  background: #1a73e8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* BUTTON HOVER */
.download-btn:hover {
  background: #0f5bd3;
  transform: scale(1.05);
}

/* COUNTER / TEXT SECTION (safe styling) */
.counter {
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}

/* WHATSAPP BUTTON (if you use) */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .app-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-logo {
    width: 50px;
    height: 50px;
  }

  .app-title {
    font-size: 12px;
  }
  

  .download-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 8px;
  background: #f1f1f1;
  border-radius: 6px;
}

.footer-links a:hover {
  background: #e0e0e0;
}


.get-apps-btn {
  display: flex;
  flex-direction: column;  /* 👈 IMPORTANT (top to bottom) */
  align-items: center;

  margin-top: 15px;
  padding: 12px;

  background: #1a73e8;
  color: white;

  border-radius: 10px;
  text-decoration: none;

  width: 120px;   /* optional for nice box */
}

.get-apps-btn img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  object-fit: contain;
}

.get-apps-btn span {
  font-size: 13px;
  font-weight: 500;
}



.payment-section {
  text-align: center;
  padding: 30px 10px;
  background: #fff;
}

.payment-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.payment-image img {
  width: 100%;
  max-width: 600px;   /* mobile friendly limit */
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.app-card {
  width: 160px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.app-card img {
  width: 110px;        /* 🔥 main fix */
  height: 110px;
  object-fit: contain;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 14px;
  margin: 5px 0;
}

.app-card button {
  padding: 8px 12px;
  border: none;
  background: #6c5ce7;
  color: white;
  border-radius: 8px;
}


.pkg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px;
  background: #f5f7fb;
}

/* CARD DESIGN */
.pkg-card {
  width: 300px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.pkg-card:hover {
  transform: translateY(-5px);
}

/* HEADER */
.pkg-head h3 {
  margin: 0;
  font-size: 16px;
  color: #777;
}

.pkg-head h2 {
  margin: 5px 0 10px;
  font-size: 22px;
  color: #222;
}

/* PRICE */
.price {
  font-size: 18px;
  font-weight: bold;
  color: #00a86b;
  margin-bottom: 15px;
}

/* LIST STYLE (✔️ MARK) */
.pkg-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pkg-card ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 22px;
}

/* ✔️ CHECK MARK */
.pkg-card ul li::before {
  content: "✔️";
  color: #00c853;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* BUTTON */
.pkg-card button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #007bff;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.pkg-card button:hover {
  background: #0056b3;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* 👈 বাম পাশে আনে */
  gap: 10px;
}

/* WhatsApp + Contact section */
.contact-wa {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 👈 বাম পাশে চাপাবে */
  margin-top: 10px;
}

/* Gmail text */
.contact-wa p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* WhatsApp button */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px;
}

/* WhatsApp icon size */
.wa-btn img {
  width: 18px;
  height: 18px;
}


