:root {
  --bg-dark: #050816;
  --bg-deep: #060b2b;
  --primary: #4f46e5;   /* Indigo */
  --primary-soft: #6366f1;
  --accent: #f97316;    /* Orange */
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #0f172a;
  --border-soft: #1f2937;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
  --transition: all 0.25s ease;
  --container: 1200px;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, #1e293b 0, #020617 50%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(to right, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, #4f46e5, #22d3ee, #f97316, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  font-weight: 800;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: var(--transition);
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0b1120;
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
}

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

.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.eyebrow i {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-title span {
  background: linear-gradient(to right, #a5b4fc, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 500px;
  font-size: 0.97rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-item i {
  color: #22c55e;
}

.hero-right {
  position: relative;
}

.hero-orbit {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #4f46e5 0, #020617 55%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover ;   /* পুরো ইমেজটা গোলের ভেতরে ফিট করবে */
  filter: drop-shadow(0 18 35px rgba(15, 23, 42, 0.9));
  transform: none;       /* নিচে নামানো থাকবেনা */
}


.hero-pill {
  position: absolute;
  right: -10px;
  top: 24%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
}

.hero-pill i {
  color: #22c55e;
}

.hero-card {
  position: absolute;
  left: -10px;
  bottom: -18px;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1);
}

.hero-card strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

/* ============= BRAND STRIP ============= */

.brand-strip {
  padding: 10px 0 60px;
}

.brand-inner {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 12px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), rgba(15, 23, 42, 0.9));
}

.brand-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-right: 6px;
}

.brand-logo {
  font-size: 0.95rem;
  color: #e5e7eb;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-logo i {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============= SECTION BASE ============= */

section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-subtitle-left {
  text-align: left;
  margin: 0;
  max-width: none;
}

/* ============= CARDS / GRID ============= */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.card {
  background: linear-gradient(145deg, var(--card-bg), #020617);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, #4f46e5, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-meta {
  font-size: 0.8rem;
  color: #e5e7eb;
  opacity: 0.9;
}

/* ============= PROCESS ============= */

.process {
  background: radial-gradient(circle at top, #111827 0, #020617 70%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-item {
  background: #020617;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
}

.process-step {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ============= WHY US ============= */

.why {
  background: radial-gradient(circle at bottom, #020617 0, #020617 75%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-badges {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-badge i {
  color: #22c55e;
}

.feature-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.feature-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============= PROGRAMS ============= */

.programs {
  background: radial-gradient(circle at top, #111827 0, #020617 70%);
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 10px;
}

.pill i {
  color: var(--accent);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 6px 0 4px;
}

.price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.list {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.list li i {
  color: #22c55e;
  margin-top: 3px;
  font-size: 0.75rem;
}

/* ============= STATS ============= */

.stats {
  background: linear-gradient(to bottom, #020617, #020617 40%, #020617 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: center;
}

.stat-card {
  padding: 20px 14px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #0b1120, #020617);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.85);
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============= REACH ============= */

.reach {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 65%);
}

.reach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.reach-map {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.reach-map img {
  height: 100%;
  object-fit: cover;
}

.reach-pill {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.reach-list {
  margin-top: 18px;
}

/* ============= PORTFOLIO ============= */

.portfolio {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 65%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  transition: var(--transition);
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-content {
  padding: 14px 16px 16px;
  font-size: 0.85rem;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  color: var(--text-muted);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.9);
}

/* ============= TIMELINE ============= */

.timeline {
  background: radial-gradient(circle at bottom, #020617 0, #020617 75%);
}

.timeline-line {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(148, 163, 184, 0.4);
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding-left: 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.timeline-year {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ============= PRICING ============= */

.pricing {
  background: radial-gradient(circle at bottom, #020617 0, #020617 75%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.pricing-plan {
  background: linear-gradient(160deg, #020617, #020617 60%, #111827 100%);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 24px 22px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  position: relative;
}

.pricing-plan.popular {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.2);
}

.badge-popular {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.plan-name {
  font-size: 1rem;
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-foot {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============= GALLERY ============= */

.gallery {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 70%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.gallery-item img {
  height: 220px;
  object-fit: cover;
}

.gallery-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* ============= TEAM & TESTIMONIALS ============= */

.team-testimonials {
  background: radial-gradient(circle at top, #0f172a 0, #020617 65%);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.team-card,
.testimonial-card {
  background: var(--card-bg);
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  padding: 20px 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.team-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(148, 163, 184, 0.7);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.team-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial-meta {
  font-size: 0.83rem;
  color: #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #facc15;
  font-size: 0.8rem;
}

/* ============= FAQ ============= */

.faq {
  background: radial-gradient(circle at bottom, #020617 0, #020617 75%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: #020617;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 16px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.8);
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============= BLOG / INSIGHTS ============= */

.blog {
  background: radial-gradient(circle at top, #0b1120 0, #020617 75%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: #020617;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 18px 18px 20px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
}

.blog-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-link {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.blog-link i {
  margin-left: 6px;
}

/* ============= CTA / CONTACT ============= */

.cta {
  background: radial-gradient(circle at top, #1d293b 0, #020617 65%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #4f46e5, #0f172a);
  border-radius: 26px;
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.cta-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  max-width: 420px;
  margin-bottom: 18px;
}

.contact-meta {
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #e5e7eb;
}

.contact-meta span i {
  margin-right: 8px;
}

.cta-form {
  background: rgba(15, 23, 42, 0.97);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.form-control {
  width: 100%;
  background: #020617;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.3);
}

textarea.form-control {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

/* ============= FOOTER ============= */

.site-footer {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 26px 0 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #020617;
  border: 1px solid #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #020617;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 992px) {
  .nav-links {
    display: none; /* Elementor দিয়ে আলাদা মোবাইল মেনু বানাবে */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle,
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    max-width: 380px;
    margin: 10px auto 0;
  }

  .feature-grid,
  .cta-inner,
  .reach-grid {
    grid-template-columns: 1fr;
  }

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

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .portfolio-grid,
  .grid-3,
  .cards-3,
  .gallery-grid,
  .blog-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 40px;
  }

  section {
    padding: 54px 0;
  }

  .cards-3,
  .cards-4,
  .pricing-grid,
  .portfolio-grid,
  .grid-3,
  .stats-grid,
  .gallery-grid,
  .blog-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 22px 18px;
  }

  .site-header .btn-outline {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-inner {
    border-radius: 18px;
  }
} /* ================= EXTRA INTERACTIONS & HOVERS ================= */

/* ---- Flip cards (Services section) ---- */

.card-flip {
  perspective: 1200px;
}

.card-flip .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-face {
  position: absolute;
  inset: 0;
  padding: 24px 22px;
  backface-visibility: hidden;
}

.card-front {
  /* আগের card padding চলে আসবে, তাই আলাদা কিছু লাগেনা */
}

.card-back {
  transform: rotateY(180deg);
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: inherit;
  border: 1px solid rgba(129, 140, 248, 0.6);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 1);
}

.card-flip:hover .card-inner {
  transform: rotateY(180deg) translateY(-4px);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(129, 140, 248, 0.7);
  color: #e5e7eb;
}

.card-tag i {
  color: var(--accent);
}

/* ---- Hero image subtle hover tilt ---- */

.hero-orbit {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-orbit:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
}

/* ---- Buttons glow + micro movement ---- */

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.15), transparent 60%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-primary:hover::before {
  opacity: 1;
  transform: translateX(40%);
}

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

/* ---- Program / pricing cards hover depth ---- */

.cards-4 .card,
.pricing-plan {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cards-4 .card:hover,
.pricing-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
  border-color: rgba(129, 140, 248, 0.9);
}

/* ---- Portfolio image parallax hover ---- */

.portfolio-item {
  overflow: hidden;
  position: relative;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(250, 250, 250, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover::before {
  opacity: 1;
}

/* ---- Gallery item hover ---- */

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ---- Blog card hover ---- */

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 1);
}

/* ---- Smooth scroll behaviour ---- */
html {
  scroll-behavior: smooth;
}

/* ============= GALLERY ============= */

.gallery {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 70%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  background: #020617;
  isolation: isolate;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* উপরে হালকা গ্লো গ্র্যাডিয়েন্ট */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* নিচে ক্যাপশন */
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}





/* ================= TEAM SECTION ================= */

.team {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 60%);
  padding: 90px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.7);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
}

/* left side: image + name + role */

.team-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.team-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(248, 250, 252, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.team-role {
  font-size: 0.86rem;
  color: #94a3b8;
}

/* right side: vertical icons */

.team-social-vert {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-social-vert a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.team-social-vert a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #020617;
  transform: translateX(2px);
}

/* responsive: small screen এ কার্ডটা vertical হবে */

@media (max-width: 768px) {
  .team-card {
    flex-direction: row;
    align-items: center;
  }

  .team-img img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-left {
    align-items: center;
  }

  .team-social-vert {
    flex-direction: row;
  }
}
