/* @font-face {
  font-family: 'SutonnyMJ';
  src: url('/fonts/SutonnyMJ.woff2') format('woff2'),
       url('/fonts/SutonnyMJ.woff') format('woff'),
       url('/fonts/SutonnyMJ.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');

:root {
  --bg: #f7f1e8;
  --ink: #0f1b1a;
  --muted: #5b6b6a;
  --accent: #0b7e77;
  --accent-strong: #08655f;
  --accent-warm: #f2a23a;
  --card: #ffffff;
  --line: rgba(15, 27, 26, 0.12);
  --shadow: 0 28px 60px rgba(15, 27, 26, 0.16);
  --shadow-soft: 0 16px 36px rgba(15, 27, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", "Noto Sans Bengali", "Hind Siliguri", "Space Grotesk", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 80% 10%, rgba(11, 126, 119, 0.18), transparent 45%),
    radial-gradient(circle at 12% 20%, rgba(242, 162, 58, 0.18), transparent 40%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  background-attachment: fixed;
  line-height: 1.6;
}

.result-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 28px;
  max-width: 720px;
}

.result-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.result-inputs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.result-inputs input {
  flex: 1 1 260px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  font-size: 16px;
}

.result-inputs input:focus {
  outline: 2px solid rgba(11, 126, 119, 0.35);
  border-color: rgba(11, 126, 119, 0.4);
}

.result-alert {
  max-width: 720px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(242, 162, 58, 0.12);
  border: 1px solid rgba(242, 162, 58, 0.3);
}

.result-card {
  max-width: 720px;
  margin: 0 auto 32px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(11, 126, 119, 0.1), rgba(11, 126, 119, 0));
  border-bottom: 1px solid var(--line);
}

.result-card__header h3 {
  margin: 4px 0;
}

.result-card__header .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.result-badge {
  align-self: center;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.result-card__body {
  padding: 20px 24px 24px;
}

.result-card__body dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 24px;
  margin: 0;
}

.result-card__body dt {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.result-card__body dd {
  margin: 0;
  font-weight: 600;
}

.result-value {
  font-size: 20px;
}

@media (max-width: 640px) {
  .result-inputs {
    flex-direction: column;
  }

  .result-inputs .cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .result-card__header {
    flex-direction: column;
  }

  .result-badge {
    align-self: flex-start;
  }
}

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

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

p {
  margin: 0 0 16px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.announcement {
  background: #0f3d3a;
  color: #f8f3e7;
  font-size: 20px;
}

.announcement__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.announcement__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 16px;
  color: #f2c879;
  white-space: nowrap;
   font-family: 'SutonnyMJ';
}

.announcement__scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.announcement__scroll marquee {
  width: 100%;
}

.announcement__item {
  display: inline-block;
  margin-right: 32px;
}

.announcement__item {
  min-width: max-content;
}

.announcement__item p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: auto;
  height: 80px;
}

.brand__text {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav-overlay {
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 240;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  gap: 6px;
  font-size: 18px;
}

.hero {
  position: relative;
  padding: 80px 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.7), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  margin: 16px 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 16px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 126, 119, 0.25);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
  position: absolute;
}

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

.hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15, 27, 26, 0.8);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.hero-photo--1 {
  width: 62%;
  height: 60%;
  top: 0;
  left: 0;
  animation: float 12s ease-in-out infinite;
}

.hero-photo--2 {
  width: 58%;
  height: 55%;
  right: 0;
  top: 20%;
  animation: float 14s ease-in-out infinite;
}

.hero-photo--3 {
  width: 48%;
  height: 42%;
  bottom: 0;
  left: 16%;
  animation: float 16s ease-in-out infinite;
}

.hero-photo--placeholder {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, rgba(11, 126, 119, 0.2), rgba(242, 162, 58, 0.25));
  color: var(--ink);
  font-weight: 600;
}

.hero-photo__placeholder {
  font-size: 18px;
  text-align: center;
  padding: 24px;
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 8px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.section-head--center {
  text-align: center;
  justify-content: center;
}

.section-head--center > div {
  max-width: 600px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

.features {
  padding-top: 40px;
}

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(11, 126, 119, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
}

.courses {
  padding-top: 40px;
}

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

.course-card {
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
}

.course-media {
  height: 220px;
  background: #f8fafc;
}

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

.course-body {
  padding: 18px 20px 24px;
  display: grid;
  gap: 8px;
}

.course-body h3 {
  margin: 0;
  font-size: 20px;
}

.course-meta {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.filter-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(11, 126, 119, 0.12);
  color: var(--accent);
  font-size: 12px;
}

.filter-pill.is-active {
  background: var(--accent);
  border-color: transparent;
  color: #ffffff;
}

.filter-pill.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.course-empty {
  grid-column: 1 / -1;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.reviews {
  background: rgba(255, 255, 255, 0.5);
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.review-card {
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-text {
  color: var(--muted);
}

.review-text p {
  margin: 0 0 12px;
}

.review-name {
  font-weight: 700;
}

.review-role {
  font-size: 13px;
  color: var(--muted);
}

.team {
  padding-top: 40px;
}

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

.team-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(11, 126, 119, 0.08);
}

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

.team-body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
}

.team-body h3 {
  margin: 0;
  font-size: 20px;
}

.team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.team-body p {
  margin: 0;
  color: var(--muted);
}

.impact {
  color: #f8f3e7;
  background: linear-gradient(135deg, #0b3d3a, #0e6a63);
}

.impact .section-head p,
.impact .section-head h2 {
  color: #f8f3e7;
}

.metric-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.metric-value {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
}

.metric-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

.payments {
  padding-top: 40px;
}

.payment-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.payment-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px dashed var(--line);
  text-align: center;
}

.payment-card img {
  height: 90px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.payment-number {
  font-size: 18px;
  font-weight: 700;
}

.cta {
  padding-top: 40px;
}
.cta-header{
  padding-top: 0;
  padding-bottom: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 126, 119, 0.9), rgba(242, 162, 58, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-soft);
  z-index: 220;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float:hover {
  background: #1fb055;
  transform: translateY(-2px);
}

.site-footer {
  background: #0f1d1c;
  color: #f5f1e8;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-grid p {
  color: rgba(245, 241, 232, 0.8);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: rgba(245, 241, 232, 0.8);
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bank {
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 14px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-shell {
  padding-bottom: 80px;
}

.page-hero {
  padding: 80px 0 32px;
}

.page-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px;
}

.page-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.page-body {
  padding-bottom: 80px;
}

.page-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.page-content h2,
.page-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.page-content a {
  color: var(--accent);
  font-weight: 600;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 22px 20px;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 28px rgba(0, 0, 0, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 14px;
    overflow-y: auto;
    transition: right 0.25s ease;
    z-index: 300;
  }

  .nav-links.is-open {
    left: 0;
  }

  .nav-links a::after {
    display: none;
  }

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

  .hero-media {
    min-height: 360px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .announcement__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-photo--1 {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .hero-photo--2,
  .hero-photo--3 {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .page-content {
    padding: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
