/* =========================================================
   ROOT COLOR & FONT VARIABLES  — Blue combination
   ========================================================= */
:root {
  --primary: #0b5fd8;
  --primary-dark: #073b91;
  --primary-darker: #052759;
  --primary-light: #eaf2ff;
  --white: #ffffff;
  --text-dark: #0f1f3d;
  --text-muted: #5b6b8c;
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --wa-shadow: rgba(18, 140, 126, 0.35);
  --font-heading: 'Baloo Da 2', 'Hind Siliguri', sans-serif;
  --font-body: 'Hind Siliguri', sans-serif;

  --header-height: 100px;
  --notice-height: 40px;
  --transition: 0.25s ease;

  /*  */
  --c7-purple: #7c3aed;
  --c7-purple-dark: #5b21b6;
  --c7-blue: #1e40af;
  --c7-blue-dark: #1e3a8a;
  --c7-green: #166534;
  --c7-green-dark: #14532d;
  --c7-orange: #c2410c;
  --c7-orange-dark: #9a3412;
  --c7-navy-text: #1e1b4b;
  --c7-gray-text: #6b7280;
  --c7-bg: #f6f5fb;


  --navy-1: #101d3f;
  --navy-2: #1c2f63;
  --purple: #5b4be0;
  --purple-dark: #4536c4;
  --purple-soft: #eef0fd;
  --green: #22b866;
  --blue-msg: #0084ff;
  --ink: #131a2c;
  --muted: #6b7280;
  --line: #e9ebf3;
  --bg: #f6f7fb;
  --price: #4c2ac9;
  --nila-1: #eef4ff;
  --nila-2: #f6f9ff;
  --nila-line: #dfe8fb;

  --fc-bg: #F6F7FB;
  --fc-ink: #1B1D29;
  --fc-muted: #7A7E92;
  --fc-card-line: #ECEEF5;

  --c6: #7C4DFF;
  --c6-soft: #F1ECFF;
  --c7: #2F80ED;
  --c7-soft: #EAF2FE;
  --c8: #F2994A;
  --c8-soft: #FEF3E8;
  --c9: #1DB876;
  --c9-soft: #E6F8F0;
  --c10: #EA4C89;
  --c10-soft: #FDEAF2;
}





* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   NOTICE MARQUEE BAR
   ========================================================= */
.notice-bar {
  height: var(--notice-height);
  background: var(--primary-darker);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.notice-icon {
  flex: 0 0 auto;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: var(--primary);
  height: 100%;
}

.marquee-wrap {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  padding-left: 4rem;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  height: var(--header-height);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11, 95, 216, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* logo — auto width, fixed height so it always fits nicely */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 72px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

/* desktop nav */
.main-nav {
  flex: 1 1 auto;
  justify-content: center;
}

/* FIX #1: only the direct top-level <ul> of .main-nav should be a flex row.
   Before this used ".main-nav ul" which also matched the nested
   .dropdown-panel <ul>, forcing its <li> items into a horizontal row. */
.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 2px;
  transition: color var(--transition);
  position: relative;
}

.main-nav>ul>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.main-nav>ul>li>a:hover {
  color: var(--primary);
}

.main-nav>ul>li>a:hover::after {
  width: 100%;
}

/* dropdown — desktop */
.has-dropdown .dropdown-panel {
  display: block;
  /* FIX #1: explicit block so items stack vertically */
  position: absolute;
  /* top: calc(100% + 12px); */
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(5, 39, 89, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}

.has-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel li {
  display: block;
  /* FIX #1: force each dropdown item on its own line */
  width: 100%;
}

.dropdown-panel li a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}

.dropdown-panel li a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/*  */
.dropdown-panel li.has-submenu {
  position: relative;
}

.dropdown-panel li.has-submenu>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submenu-arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform var(--transition);
}

.submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  min-width: 190px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(5, 39, 89, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1200;
  list-style: none;
}

.dropdown-panel li.has-submenu:hover>.submenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-panel li.has-submenu:hover>a .submenu-arrow {
  transform: rotate(90deg);
}

.submenu-panel li {
  width: 100%;
}

.submenu-panel li a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: 'Noto Sans Bengali', sans-serif;
  /* ✅ নিশ্চিত করলাম সঠিক Bangla font */
  letter-spacing: 0.3px;
  /* ✅ কোনো negative spacing থাকলে override */
  word-spacing: normal;
  line-height: 1.6;
  /* ✅ conjunct/matra ঠিকমতো বসার জন্য বাড়তি line-height */
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;

}

.submenu-panel li a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/*  */

/* login / register button */
.header-actions {
  flex: 0 0 auto;
}

.btn-auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(11, 95, 216, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(11, 95, 216, 0.34);
  color: var(--white);
}

/* mobile hamburger */
.menu-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* invisible spacer so the logo stays visually centered on mobile */
.header-spacer {
  flex: 0 0 auto;
  width: 44px;
}

/* =========================================================
   MOBILE SIDEBAR (offcanvas)
   ========================================================= */
.mobile-sidebar {
  width: 300px;
  font-family: var(--font-body);
}

.mobile-sidebar .offcanvas-header {
  border-bottom: 1px solid #eef2fa;
  padding: 16px 18px;
}

.sidebar-logo {
  height: 42px;
  width: auto;
}

.mobile-sidebar .offcanvas-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-nav li+li {
  border-top: 1px solid #f0f3f9;
}

.sidebar-nav li>a,
.sidebar-nav .dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  text-align: left;
}

.sidebar-nav .dropdown-trigger i {
  transition: transform var(--transition);
  font-size: 14px;
}

.sidebar-nav li.open .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-panel-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.sidebar-nav li.open .dropdown-panel-mobile {
  max-height: 265px;
}

.dropdown-panel-mobile li {
  border-top: none !important;
}

.dropdown-panel-mobile li a {
  padding: 10px 10px 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.dropdown-panel-mobile li a:hover {
  color: var(--primary);
}

/*  */
.submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 10px 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  text-align: left;
}

.submenu-arrow-mobile {
  font-size: 12px;
  transition: transform var(--transition);
}

.has-submenu-mobile.open .submenu-arrow-mobile {
  transform: rotate(180deg);
}

.submenu-panel-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding-left: 10px;
}

.has-submenu-mobile.open .submenu-panel-mobile {
  max-height: 260px;
}

.submenu-panel-mobile li {
  border-top: none !important;
}

.submenu-panel-mobile li a {
  padding: 9px 10px 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  font-family: 'Noto Sans Bengali', sans-serif;
  ;
}

.submenu-panel-mobile li a:hover {
  color: var(--primary);
}

/*  */

.btn-auth-mobile {
  justify-content: center;
  width: 100%;
}

/* =========================================================
   BANNER SLIDER
   FIX #2: real sliding transition instead of opacity crossfade.
   All slides sit side-by-side in a flex row (.banner-track) and
   we move the whole track with transform: translateX(), which
   gives a smooth, buttery slide effect.
   ========================================================= */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary-light);
  height: clamp(180px, 38vw, 650px);
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.banner-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(5, 39, 89, 0.45);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
}

.banner-arrow:hover {
  background: var(--primary);
}

.banner-prev {
  left: 16px;
}

.banner-next {
  right: 16px;
}

.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.banner-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.banner-dots span.active {
  background: var(--white);
  width: 22px;
  border-radius: 6px;
}

/* hide arrows/dots automatically when there is only one slide */
.banner-slider.single-slide .banner-arrow,
.banner-slider.single-slide .banner-dots {
  display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .header-inner {
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }
}

/* =========================================================
   MOBILE BANNER FIX — কোনো crop হবে না, পুরো image দেখা যাবে
   ========================================================= */
@media (max-width: 575.98px) {
  :root {
    --header-height: 66px;
  }

  .logo img {
    height: 60px;
  }

  .notice-icon {
    width: 34px;
    font-size: 13px;
  }

  .marquee-track span {
    font-size: 12.5px;
  }

  .banner-arrow {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  /* ✅ FIX: height fixed clamp বাদ দিয়ে image এর নিজের ratio অনুযায়ী
     height auto calculate হবে — তাই সাইড crop হবে না */
  .banner-slider {
    height: auto;
  }

  .banner-track {
    height: auto;
  }

  .banner-slide {
    height: auto;
  }

  .banner-slide img {
    width: 100%;
    height: auto;

    aspect-ratio: 24 / 9;
    /* তোমার banner image এর actual ratio অনুযায়ী চেঞ্জ করে নিও */
  }
}

/* 22 */
@media (min-width: 1600px) {
  .banner-slider {
    height: clamp(480px, 40vw, 700px);
    /* 620 থেকে বাড়িয়ে 700 করলাম */
  }
}

@media (min-width: 1920px) {
  .banner-slider {
    height: clamp(560px, 32vw, 780px);
    /* 680 থেকে বাড়িয়ে 780 করলাম */

  }
}

/* start */
/* =========================================================
   CLASS SELECT SECTION
   ========================================================= */
.class-select-section {
  padding: 64px 0 72px;
  background: #FAFBFF;
}

/* ---------- Header ---------- */
.cs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.cs-icon {
  display: inline-block;
  font-size: 34px;
  margin-bottom: 6px;
}

.cs-title {
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 700;
  color: var(--text-dark, #0b1f4e);
  line-height: 1.35;
  margin: 0 0 12px;
}

.cs-accent-blue {
  color: #2F6FED;
}

.cs-accent-orange {
  color: #F97316;
}

.cs-subtitle {
  font-size: 15px;
  color: var(--text-muted, #6b7896);
  margin: 0;
}

/* ---------- Grid ---------- */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* ---------- Card ---------- */
.cs-card {
  position: relative;
  border-radius: 16px;
  padding: 22px 16px 20px;
  text-align: center;
  border: 1px solid rgba(11, 31, 78, 0.06);
  box-shadow: 0 4px 14px rgba(11, 31, 78, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(11, 31, 78, 0.12);
}

/* decorative blob behind illustration */
.cs-illustration {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  /* ✅ গোল frame */
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(11, 31, 78, 0.12);
}

.cs-illustration::before {
  content: none;
  /* ✅ আগের blob shape আর লাগবে না, photo নিজেই colorful */
}

.cs-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ✅ contain এর বদলে cover — real photo এর জন্য ঠিক */
}

.cs-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark, #0b1f4e);
  margin: 0 0 14px;
}

.cs-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: filter var(--transition, 0.25s ease), transform var(--transition, 0.25s ease);
}

.cs-card-btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.cs-card-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}

.cs-card-btn:hover i {
  transform: translateX(3px);
}

/* ---------- Per-card color themes ---------- */
.cs-card--c1 {
  background: #EAF2FF;
}

.cs-card--c1 .cs-illustration::before {
  background: #D3E4FF;
}

.cs-card--c1 .cs-card-btn {
  background: #2F6FED;
}

.cs-card--c2 {
  background: #EAFBF0;
}

.cs-card--c2 .cs-illustration::before {
  background: #CFF3DC;
}

.cs-card--c2 .cs-card-btn {
  background: #16A34A;
}

.cs-card--c3 {
  background: #FFF4E5;
}

.cs-card--c3 .cs-illustration::before {
  background: #FFE3BF;
}

.cs-card--c3 .cs-card-btn {
  background: #F97316;
}

.cs-card--c4 {
  background: #F3EBFF;
}

.cs-card--c4 .cs-illustration::before {
  background: #E4D3FF;
}

.cs-card--c4 .cs-card-btn {
  background: #8B5CF6;
}

.cs-card--c5 {
  background: #FFEAF2;
}

.cs-card--c5 .cs-illustration::before {
  background: #FFD1E4;
}

.cs-card--c5 .cs-card-btn {
  background: #EC4899;
}

.cs-card--c6 {
  background: #E6FBFA;
}

.cs-card--c6 .cs-illustration::before {
  background: #C7F2EF;
}

.cs-card--c6 .cs-card-btn {
  background: #0D9488;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet — 3 per row */
@media (max-width: 991.98px) {
  .cs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .class-select-section {
    padding: 48px 0 56px;
  }
}

/* Mobile — 2 per row (তোমার চাহিদা অনুযায়ী) */
@media (max-width: 575.98px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cs-header {
    margin-bottom: 30px;
  }

  .cs-card {
    padding: 18px 10px 16px;
    border-radius: 14px;
  }

  .cs-illustration {
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
  }

  .cs-card-title {
    font-size: 14.5px;
    margin-bottom: 10px;
  }

  .cs-card-btn {
    font-size: 12.5px;
    padding: 8px 10px;
  }
}

/* end */

/* start */
/* =========================================================
   SPECIAL PREP COURSES SECTION
   ========================================================= */
.prep-courses-section {
  padding: 25px 0 50px;
  background: #FCFCFF;
}

/* ---------- Header ---------- */
.pc-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.pc-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pc-line {
  flex: 0 0 auto;
  width: 46px;
  height: 0;
  border-top: 2px dashed #c9d3e6;
}

.pc-icon {
  font-size: 22px;
  line-height: 1;
}

.pc-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.pc-accent-teal {
  color: #0D9488;
}

.pc-accent-blue {
  color: #2F6FED;
}

.pc-subtitle {
  font-size: 14.5px;
  color: var(--text-muted, #6b7896);
  margin: 0;
}

/* ---------- Grid ---------- */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---------- Card ---------- */
.pc-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 24px;
  text-align: center;
  border: 1px solid rgba(11, 31, 78, 0.06);
  box-shadow: 0 4px 14px rgba(11, 31, 78, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(11, 31, 78, 0.12);
}

.pc-icon-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.pc-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark, #0b1f4e);
  margin: 0 0 8px;
}

.pc-card-desc {
  font-size: 13.5px;
  color: var(--text-muted, #6b7896);
  margin: 0 0 20px;
  line-height: 1.5;
}

.pc-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: filter 0.25s ease;
}

.pc-card-btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.pc-card-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}

.pc-card-btn:hover i {
  transform: translateX(3px);
}

/* ---------- Per-card color themes ---------- */
.pc-card--c1 .pc-icon-badge {
  background: #FFF4D6;
}

.pc-card--c1 .pc-card-btn {
  background: #16A34A;
}

.pc-card--c2 .pc-icon-badge {
  background: #F1E9FF;
}

.pc-card--c2 .pc-card-btn {
  background: #7C3AED;
}

.pc-card--c3 .pc-icon-badge {
  background: #E9F6FF;
}

.pc-card--c3 .pc-card-btn {
  background: #2F6FED;
}

.pc-card--c4 .pc-icon-badge {
  background: #E9FBF3;
}

.pc-card--c4 .pc-card-btn {
  background: #F59E0B;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet — 2 per row */
@media (max-width: 991.98px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .prep-courses-section {
    padding: 15px 0 38px;
  }
}

/* Mobile — 2 per row + header adjustments */
@media (max-width: 575.98px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pc-title-row {
    gap: 8px;
  }

  .pc-line {
    width: 22px;
  }

  .pc-title {
    font-size: 17px;
    white-space: normal;
  }

  .pc-header {
    margin-bottom: 30px;
  }

  .pc-card {
    padding: 20px 12px 18px;
    border-radius: 14px;
  }

  .pc-icon-badge {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 12px;
  }

  .pc-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .pc-card-desc {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .pc-card-btn {
    font-size: 12.5px;
    padding: 9px 10px;
  }
}

/* end */


/* start */
/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */
.why-us-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}

/* ---------- Left: media ---------- */
.why-us-media {
  position: relative;
}

.why-us-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  z-index: 2;
}

.why-us-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-stat-card {
  position: absolute;
  bottom: 24px;
  right: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(11, 31, 78, 0.18);
}

.why-us-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #EAF2FF;
  color: #2F6FED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.why-us-stat-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark, #0b1f4e);
  margin: 0;
}

.why-us-stat-label {
  font-size: 12.5px;
  color: var(--text-muted, #6b7896);
  margin: 2px 0 0;
}

.why-us-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.why-us-blob--1 {
  width: 130px;
  height: 130px;
  background: #EAF2FF;
  top: -24px;
  left: -24px;
}

.why-us-blob--2 {
  width: 90px;
  height: 90px;
  background: #FFF4E5;
  bottom: -20px;
  left: 40%;
}

/* ---------- Right: content ---------- */
.why-us-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2F6FED;
  background: #EAF2FF;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.why-us-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark, #0b1f4e);
  margin: 0 0 16px;
}

.why-us-accent {
  color: #2F6FED;
}

.why-us-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted, #6b7896);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ---------- Feature grid ---------- */
.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
  margin-bottom: 34px;
}

.why-us-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-us-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.why-us-icon--c1 {
  background: #EAF2FF;
  color: #2F6FED;
}

.why-us-icon--c2 {
  background: #EAFBF0;
  color: #16A34A;
}

.why-us-icon--c3 {
  background: #F3EBFF;
  color: #8B5CF6;
}

.why-us-icon--c4 {
  background: #FFF4E5;
  color: #F97316;
}

.why-us-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark, #0b1f4e);
  margin: 0 0 5px;
}

.why-us-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted, #6b7896);
  margin: 0;
}

/* ---------- Button ---------- */
.why-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2F6FED;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.why-us-btn:hover {
  filter: brightness(1.08);
  color: #fff;
  transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 991.98px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-img-wrap {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 3.4;
  }

  .why-us-media {
    display: flex;
    justify-content: center;
  }

  .why-us-stat-card {
    right: 8%;
  }

  .why-us-section {
    padding: 56px 0;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .why-us-section {
    padding: 44px 0;
  }

  .why-us-img-wrap {
    aspect-ratio: 4 / 3.2;
    border-radius: 18px;
  }

  .why-us-stat-card {
    right: 6%;
    bottom: 12px;
    padding: 10px 14px;
    gap: 8px;
  }

  .why-us-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .why-us-stat-number {
    font-size: 15px;
  }

  .why-us-stat-label {
    font-size: 11px;
  }

  .why-us-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-title {
    font-size: 21px;
  }

  .why-us-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .why-us-btn {
    width: 100%;
    justify-content: center;
  }
}

/* end */

/* start */

.c7-section {
  background: var(--c7-bg);
  font-family: 'Hind Siliguri', 'Poppins', sans-serif;
  padding: 40px 0;
}

.c7-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header row ---- */
.c7-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.c7-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--c7-navy-text);
  margin: 0;
}

.c7-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c7-purple);
  color: var(--c7-purple);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.c7-viewall-btn:hover {
  background: var(--c7-purple);
  color: #fff;
}

.c7-viewall-btn svg {
  transition: transform .2s ease;
}

.c7-viewall-btn:hover svg {
  transform: translateX(3px);
}

/* ---- Tabs ---- */
.c7-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.c7-tab-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
}

.c7-tab-btn:hover {
  border-color: var(--c7-purple);
  color: var(--c7-purple);
}

.c7-tab-btn.active {
  background: var(--c7-purple);
  border-color: var(--c7-purple);
  color: #fff;
  box-shadow: 0 4px 10px rgba(124, 58, 237, .25);
}

/* ---- Carousel row ---- */
.c7-carousel-outer {
  position: relative;
}

.c7-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c7-track::-webkit-scrollbar {
  display: none;
}

.c7-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c7-navy-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, color .2s ease;
}

.c7-arrow:hover {
  background: var(--c7-purple);
  color: #fff;
}

.c7-arrow-left {
  left: -20px;
}

.c7-arrow-right {
  right: -20px;
}

@media (max-width:1240px) {
  .c7-arrow-left {
    left: -8px;
  }

  .c7-arrow-right {
    right: -8px;
  }
}

/* ---- Card ---- */
.c7-card {
  flex: 0 0 auto;
  width: 270px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(17, 24, 39, .07), 0 1px 3px rgba(17, 24, 39, .05);
  border: 1px solid #eef0f4;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.c7-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, .14), 0 4px 10px rgba(17, 24, 39, .06);
}

/* ---- Banner: image ekhon FULL, kono crop nai ---- */
.c7-card-banner {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c7-card-banner.purple {
  background: linear-gradient(160deg, #8b5cf6, #5b21b6);
}

.c7-card-banner.blue {
  background: linear-gradient(160deg, #2563eb, #1e3a8a);
}

.c7-card-banner.green {
  background: linear-gradient(160deg, #22c55e, #14532d);
}

.c7-card-banner.orange {
  background: linear-gradient(160deg, #f97316, #9a3412);
}

/* subtle radial glow, professional depth */
.c7-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.c7-banner-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.c7-card:hover .c7-banner-img {
  transform: scale(1.06);
}

.c7-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c7-card-heading {
  font-weight: 700;
  font-size: 16px;
  color: var(--c7-navy-text);
  margin: 0 0 8px;
}

.c7-card-desc {
  font-size: 13px;
  color: var(--c7-gray-text);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.c7-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  border-radius: 9px;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.c7-card-btn:hover {
  filter: brightness(1.08);
  color: #fff;
  transform: translateY(-1px);
}

.c7-card-btn svg {
  transition: transform .2s ease;
}

.c7-card-btn:hover svg {
  transform: translateX(3px);
}

.c7-card-btn.purple {
  background: var(--c7-purple);
}

.c7-card-btn.blue {
  background: var(--c7-blue);
}

.c7-card-btn.green {
  background: var(--c7-green);
}

.c7-card-btn.orange {
  background: var(--c7-orange);
}

/* ---- Responsive ---- */
@media (max-width:768px) {
  .c7-title {
    font-size: 22px;
  }

  .c7-viewall-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .c7-card {
    width: 220px;
  }

  .c7-card-banner {
    height: 160px;
  }

  .c7-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width:480px) {
  .c7-header {
    flex-direction: row;
  }

  .c7-tabs {
    gap: 8px;
  }

  .c7-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .c7-card {
    width: 200px;
  }

  .c7-card-banner {
    height: 150px;
  }
}

/* end */


/* start */


/* ===== SECTION WRAPPER ===== */
.ebook-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 60%);
  padding: 35px 0 50px;
}

.ebook-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary-light), rgba(234, 242, 255, 0));
  z-index: 0;
}

.dot-grid {
  position: absolute;
  top: 40px;
  left: 6%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(var(--primary) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.18;
  z-index: 0;
}

/* ===== ROW / GAP FIX ===== */
/* col-lg-6 duita pashapashi thakle default gutter kom mone hoy,
     tai custom gutter set kore disi so left content <-> right image
     er majhe balanced, professional gap thake */
.ebook-row {
  --bs-gutter-x: 4rem;
  /* desktop e horizontal gap */
  row-gap: 3rem;
  /* mobile e stack hole vertical gap */
}

/* ===== LEFT CONTENT ===== */
.ebook-content {
  position: relative;
  z-index: 2;
}

.ebook-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.ebook-badge i {
  font-size: 1rem;
}

.ebook-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ebook-heading-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.9rem;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 22px;
}

.ebook-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 34px;
}

.ebook-features {
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
}

.ebook-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.ebook-features li:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.ebook-features li:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.feature-text h6 {
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-ebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 24px -8px rgba(11, 95, 216, 0.55);
}

.btn-ebook i {
  transition: transform var(--transition);
}

.btn-ebook:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ebook:hover i {
  transform: translateX(4px);
}

/* ===== RIGHT VISUAL ===== */
.ebook-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.ebook-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 2;
}

/* image er pichone soft glow — image ta khali/lonely na lagar jonno */
.ebook-img-wrap::before {
  content: "";
  position: absolute;
  inset: 6% 8%;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(234, 242, 255, 0) 72%);
  border-radius: 50%;
  z-index: -1;
}

.ebook-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 40px 70px -24px rgba(5, 39, 89, 0.35);
}

.float-badge {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px -10px rgba(11, 95, 216, 0.35);
  z-index: 3;
  text-align: center;
}

.float-badge i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.float-badge span {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .ebook-section {
    padding: 70px 0 60px;
    text-align: center;
  }

  .ebook-row {
    --bs-gutter-x: 1.5rem;
    row-gap: 2.5rem;
  }

  .ebook-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ebook-features li {
    text-align: left;
  }

  .ebook-heading-main {
    font-size: 2.3rem;
  }

  .ebook-visual {
    margin-top: 0;
    min-height: auto;
  }

  .ebook-img-wrap {
    margin: 0 auto;
  }

  .float-badge {
    top: -6%;
    right: 4%;
  }
}

@media (max-width: 575.98px) {
  .ebook-heading {
    font-size: 1.3rem;
  }

  .ebook-heading-main {
    font-size: 1.9rem;
  }

  .float-badge {
    width: 76px;
    height: 76px;
    top: -4%;
    right: 2%;
  }
}

/* end */


/* start */
/* .gc-section {
  background: linear-gradient(180deg, #f6f4ff 0%, #ffffff 100%);
  font-family: 'Hind Siliguri', 'Poppins', sans-serif;
  padding: 35px 0 20px;
  position: relative;
  overflow: hidden;
}

.gc-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}


.gc-badge-wrap {
  margin-bottom: 18px;
}

.gc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e4defc;
  color: #7c3aed;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(124, 58, 237, .08);
}


.gc-deco {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .08);
}

.gc-deco-left {
  top: 0;
  left: 2%;
  color: #7c3aed;
  transform: rotate(-8deg);
}

.gc-deco-right {
  top: 6%;
  right: 2%;
  color: #16a34a;
  transform: rotate(8deg);
}

@media (max-width:768px) {
  .gc-deco {
    display: none;
  }
}


.gc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #3730a3;
  margin: 0 0 14px;
}

.gc-subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}


.gc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
  align-items: stretch;
}

.gc-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .05);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 370px;
}

.gc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, .09);
}

.gc-card-img {
  height: 170px;
  flex: 0 0 170px;
  overflow: hidden;
}

.gc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.gc-card:hover .gc-card-img img {
  transform: scale(1.05);
}

.gc-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.gc-card-title {
  font-weight: 700;
  font-size: 15.5px;
  color: #111827;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.4em * 2);
}

.gc-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.gc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  margin-top: auto;
}

.gc-card-link svg {
  transition: transform .2s ease;
}

.gc-card-link:hover svg {
  transform: translateX(3px);
}


.gc-cta {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, .05);
}

.gc-cta-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-cta-icon-left {
  background: #f3e8ff;
  color: #7c3aed;
}

.gc-cta-icon-right {
  background: #fef9c3;
  color: #ca8a04;
  margin-left: auto;
}

.gc-cta-text {
  flex: 1;
  text-align: left;
  font-size: 14px;
  color: #374151;
  margin: 0;
}

.gc-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s ease;
}

.gc-cta-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}


@media (max-width:900px) {
  .gc-cards {
    grid-template-columns: 1fr;
  }

  .gc-title {
    font-size: 26px;
  }

  .gc-card {
    height: auto;
    min-height: 360px;
  }
}

@media (max-width:600px) {
  .gc-cta {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .gc-cta-text {
    text-align: center;
    flex: 1 1 100%;
    order: 1;
  }

  .gc-cta-btn {
    order: 2;
  }

  .gc-cta-icon-right,
  .gc-cta-icon-left {
    display: none;
  }
} */

/* end */

/* start */
/* ================= e-book CATEGORY slider (renamed, collision-free) ================= */
.ebkcat-section {
  padding: 50px 20px 55px;
}

.ebkcat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ebkcat-header-spacer {
  flex: 1;
  min-width: 42px;
}

.ebkcat-title-wrap {
  flex: 1;
  text-align: center;
}

.ebkcat-title-wrap .ebkcat-eyebrow {
  justify-content: center;
}

.ebkcat-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ebkcat-eyebrow .line {
  width: 40px;
  height: 0;
  border-top: 2px dotted #c9c3e8;
}

.ebkcat-icon-badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c7-purple), var(--c7-purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.28);
}

.ebkcat-icon-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.ebkcat-title-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--c7-purple);
  margin: 0 0 8px;
}

.ebkcat-subtitle {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c7-gray-text);
  max-width: 460px;
  margin: 0;
}

/* ---- Nav buttons ---- */
.ebkcat-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.ebkcat-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c7-purple);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ebkcat-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--c7-purple);
  pointer-events: none;
  transition: stroke 0.25s ease;
}

.ebkcat-nav-btn:hover {
  background: linear-gradient(135deg, var(--c7-purple), var(--c7-purple-dark));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.3);
}

.ebkcat-nav-btn:hover svg {
  stroke: var(--white);
}

.ebkcat-nav-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.ebkcat-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ebkcat-nav-btn:active {
  transform: translateY(-1px) scale(0.96);
}

/* ---- Slider track ---- */
.ebkcat-track {
  --n: 2;
  --gap: 16px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  margin: 0 -4px;
  scrollbar-width: none;
}

.ebkcat-track:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.ebkcat-track::-webkit-scrollbar {
  display: none;
}

/* ---- Card ---- */
.ebkcat-card {
  flex: 0 0 auto;
  width: calc((100% - (var(--n) - 1) * var(--gap)) / var(--n));
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30, 27, 75, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ebkcat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 27, 75, 0.16);
}

.ebkcat-cover {
  position: relative;
  aspect-ratio: 3 / 4.3;
  overflow: hidden;
}

.ebkcat-card--navy .ebkcat-cover {
  background: linear-gradient(160deg, #232a52, #3a3f7a);
}

.ebkcat-card--gold .ebkcat-cover {
  background: linear-gradient(160deg, #f7c14d, #eb9f28);
}

.ebkcat-card--pink .ebkcat-cover {
  background: linear-gradient(160deg, #fbdfec, #f5c4dc);
}

.ebkcat-card--cream .ebkcat-cover {
  background: linear-gradient(160deg, #fbf3e6, #f1e2c8);
}

.ebkcat-card--coral .ebkcat-cover {
  background: linear-gradient(160deg, #ff9466, #f2622f);
}

.ebkcat-card--mint .ebkcat-cover {
  background: linear-gradient(160deg, #dcf5ee, #b9e7da);
}

.ebkcat-mockup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ebkcat-card:hover .ebkcat-mockup {
  transform: scale(1.05);
}

.ebkcat-bottom-bar {
  padding: 10px 16px;
}

.ebkcat-bottom-bar span {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .ebkcat-track {
    scroll-behavior: auto;
  }

  .ebkcat-card,
  .ebkcat-mockup,
  .ebkcat-nav-btn {
    transition: none;
  }
}

@media (min-width: 576px) {
  .ebkcat-track {
    --n: 3;
  }
}

@media (min-width: 768px) {
  .ebkcat-track {
    --n: 4;
    --gap: 18px;
  }

  .ebkcat-title-main {
    font-size: 34px;
  }
}

@media (min-width: 992px) {
  .ebkcat-track {
    --n: 5;
  }
}

@media (min-width: 1200px) {
  .ebkcat-track {
    --n: 6;
    --gap: 20px;
  }

  .ebkcat-section {
    padding: 35px 20px 0;
  }

  .ebkcat-title-main {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .ebkcat-title-main {
    font-size: 24px;
  }

  .ebkcat-subtitle {
    font-size: 13px;
  }

  .ebkcat-bottom-bar span {
    font-size: 12px;
  }

  .ebkcat-nav-btn {
    width: 36px;
    height: 36px;
  }
}

/* end */


/* start */
/* ========= root additions =========
   Tomar :root e ei 2 ta variable already na thakle add kore dio.
   Baki shob variable tomar existing root theke e use kora hoyeche. */
:root {
  --danger: #df0000;
  --card-border: rgba(15, 31, 61, 0.08);
}

/* ================= Special Deals section ================= */

.deals-section {
  background: var(--c7-bg);
  padding: 42px 16px;
  width: 100%;
}

.deals-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- Header ---- */
.deals-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--primary-dark);
}

.deals-btn-seeall {
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  transition: background var(--transition);
}

.deals-btn-seeall:hover {
  background: var(--primary-darker);
  color: var(--white);
}

/* ---- Product card ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 14px 30px rgba(15, 31, 61, 0.12);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ---- Media / image swap on hover ---- */
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c7-bg);
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.product-img--hover {
  opacity: 0;
}

.product-card:hover .product-img--main {
  opacity: 0;
}

.product-card:hover .product-img--hover {
  opacity: 1;
}

/* ---- Discount ribbon badge ---- */
.discount-badge {
  position: absolute;
  top: 0;
  left: 8px;
  width: 32px;
  padding: 6px 6px 10px;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 90%, 71% 100%, 50% 90%, 29% 100%, 15% 90%, 0 100%);
}

.discount-badge strong {
  font-size: 12px;
  font-weight: 800;
}

.discount-badge small {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

/* ---- Body ---- */
.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.product-price {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 12px;
}

.price-old {
  color: var(--danger);
  text-decoration: line-through;
  font-size: 12.5px;
  white-space: nowrap;
}

.price-new {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

/* ---- Add to Bag button ---- */
/* ---- Add to Bag button ---- */
.add-to-bag-btn {
  margin-top: auto;
  background: var(--primary-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
}

.add-to-bag-btn span {
  white-space: nowrap;
}


.add-to-bag-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.add-to-bag-btn:hover {
  background: var(--primary-darker);
  color: var(--white);
}

.add-to-bag-btn:active {
  transform: scale(0.95);
}

.add-to-bag-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---- Responsive tuning ---- */
/* ---- Responsive tuning ---- */
@media (min-width: 768px) {
  .deals-title {
    font-size: 28px;
  }

  .product-title {
    font-size: 16px;
    min-height: 40px;
  }

  .price-old {
    font-size: 15.5px;
  }

  .price-new {
    font-size: 18px;
  }

  .add-to-bag-btn {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Small mobile fix (row-cols-2 e card choto hoye jai bole) ---- */
@media (max-width: 420px) {
  .deals-title {
    font-size: 18px;
  }

  .deals-btn-seeall {
    padding: 7px 16px;
    font-size: 12px;
  }

  .product-body {
    padding: 10px;
  }

  .add-to-bag-btn {
    padding: 8px 10px;
    font-size: 11px;
    gap: 4px;
  }

  .add-to-bag-btn svg {
    width: 11px;
    height: 11px;
  }
}

/* end */

/* start product slider */
/* ================= Deals Slider ================= */
.deals-slider {
  overflow: hidden;
  position: relative;
}

.deals-track {
  display: flex;
  will-change: transform;
}

.deals-slide {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 6px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .deals-slide {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* end */




/* start css */
.faq-section {
  padding: 43px 20px 45px;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Header ---- */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.faq-eyebrow .dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-eyebrow .dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c7-purple);
  opacity: 0.35;
}

.faq-eyebrow .dots span:nth-child(1) {
  background: var(--c7-green);
  opacity: 0.6;
}

.faq-eyebrow .dots span:nth-child(2) {
  background: var(--c7-orange);
  opacity: 0.6;
}

.faq-eyebrow .dots span:nth-child(3) {
  background: var(--c7-purple);
  opacity: 0.9;
}

.faq-eyebrow .line {
  width: 60px;
  height: 0;
  border-top: 2px dotted #c9c3e8;
}

.faq-icon-badge {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c7-purple), var(--c7-purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.28);
}

.faq-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--c7-purple);
  margin: 0 0 12px;
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c7-gray-text);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(30, 27, 75, 0.06);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: 0 8px 26px rgba(30, 27, 75, 0.1);
}

.faq-item-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 22px;
  height: 22px;
}

.faq-item:nth-child(1) .faq-icon {
  background: #f1e9ff;
}

.faq-item:nth-child(1) .faq-icon svg {
  stroke: var(--c7-purple);
}

.faq-item:nth-child(1) .faq-item-title {
  color: var(--c7-purple);
}

.faq-item:nth-child(2) .faq-icon {
  background: #e2f6ea;
}

.faq-item:nth-child(2) .faq-icon svg {
  stroke: var(--c7-green);
}

.faq-item:nth-child(2) .faq-item-title {
  color: var(--c7-green);
}

.faq-item:nth-child(3) .faq-icon {
  background: #ffe9d6;
}

.faq-item:nth-child(3) .faq-icon svg {
  stroke: var(--c7-orange);
}

.faq-item:nth-child(3) .faq-item-title {
  color: var(--c7-orange);
}

.faq-item:nth-child(4) .faq-icon {
  background: var(--primary-light);
}

.faq-item:nth-child(4) .faq-icon svg {
  stroke: var(--primary);
}

.faq-item:nth-child(4) .faq-item-title {
  color: var(--primary);
}

.faq-item:nth-child(5) .faq-icon {
  background: #fbdcea;
}

.faq-item:nth-child(5) .faq-icon svg {
  stroke: var(--c7-pink, #ec4899);
}

.faq-item:nth-child(5) .faq-item-title {
  color: var(--c7-pink, #ec4899);
}

.faq-item-body {
  flex: 1;
  min-width: 0;
}

.faq-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  text-align: left;
}

.faq-item-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c7-gray-text);
  margin: 0;
  text-align: left;
}

.faq-chevron {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c7-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  margin-top: 4px;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--c7-navy-text);
  transition: transform var(--transition);
}

.faq-item.active .faq-chevron {
  background: var(--primary-light);
  transform: rotate(180deg);
}

.faq-item.active .faq-chevron svg {
  stroke: var(--primary);
}

.faq-item-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  padding-right: 60px;
}

.faq-item.active .faq-item-answer {
  grid-template-rows: 1fr;
}

.faq-item-answer-inner {
  display: block;
  overflow: hidden;
}

.faq-item-desc {
  padding-top: 6px;
}

/* ---- CTA banner ---- */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #efe9ff 0%, #eef3ff 100%);
  border-radius: 18px;
  padding: 22px 28px;
}

.faq-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-cta-illustration {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}

.faq-cta-illustration svg {
  width: 56px;
  height: 56px;
}

.faq-cta-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--c7-navy-text);
  margin: 0 0 4px;
}

.faq-cta-text {
  font-size: 13.5px;
  color: var(--c7-gray-text);
  margin: 0;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--c7-purple), var(--primary));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 20px rgba(11, 95, 216, 0.25);
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 95, 216, 0.32);
}

.faq-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

/* ---- Focus states (accessibility) ---- */
.faq-item-header:focus-visible,
.faq-cta-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============ Responsive ============ */

/* small phones */
@media (max-width: 420px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-subtitle {
    font-size: 13.5px;
  }

  .faq-item-header {
    padding: 14px 14px;
    gap: 12px;
  }

  .faq-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-item-title {
    font-size: 14.5px;
  }

  .faq-item-desc {
    font-size: 13px;
  }

  .faq-item-answer {
    padding-right: 0;
  }

  .faq-chevron {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* tablets */
@media (min-width: 768px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-item-header {
    padding: 22px 26px;
  }

  .faq-item-title {
    font-size: 17px;
  }

  .faq-item-desc {
    font-size: 14.5px;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .faq-section {
    padding: 35px 20px 50px;
    max-width: 960px;
  }

  .faq-title {
    font-size: 40px;
  }

  .faq-subtitle {
    font-size: 15.5px;
  }
}

/* large monitors 1600px+ */
@media (min-width: 1600px) {
  .faq-section {
    max-width: 1080px;
    padding: 56px 20px 88px;
  }

  .faq-title {
    font-size: 44px;
  }

  .faq-subtitle {
    font-size: 16.5px;
    max-width: 540px;
  }

  .faq-item-header {
    padding: 26px 30px;
  }

  .faq-item-title {
    font-size: 18.5px;
  }

  .faq-item-desc {
    font-size: 15.5px;
  }

  .faq-icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .faq-icon svg {
    width: 24px;
    height: 24px;
  }

  .faq-cta {
    padding: 30px 36px;
  }

  .faq-cta-heading {
    font-size: 19px;
  }

  .faq-cta-text {
    font-size: 14.5px;
  }

  .faq-cta-btn {
    padding: 15px 28px;
    font-size: 15px;
  }
}

/* ultra-wide 1920px+ */
@media (min-width: 1920px) {
  .faq-section {
    max-width: 1180px;
  }
}

/*  end css */

/* start */

/* ===== REVIEW SECTION ===== */
.review-section {
  background: var(--c7-bg);
  background-image: radial-gradient(#d9d4f2 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 25px 0 25px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header block (matches reference) ---- */
.review-header {
  text-align: center;
  margin-bottom: 2.6rem;
  position: relative;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c7-purple);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.1);
  margin-bottom: 18px;
}

.review-badge i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c7-purple), var(--primary));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.review-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.review-heading-row i.fa-paper-plane {
  color: var(--c7-purple);
  font-size: 26px;
  transform: rotate(-25deg);
}

.review-section h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--c7-purple);
  margin: 0;
}

.review-section h2 span {
  color: var(--primary);
}

.review-subtitle {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--c7-gray-text);
  font-size: 14.5px;
  line-height: 1.8;
  position: relative;
}

.review-quote-icon {
  color: var(--c7-purple);
  opacity: 0.25;
  font-size: 22px;
  display: block;
  margin: 6px 0 2px;
}

.review-underline {
  width: 46px;
  height: 3px;
  background: var(--c7-orange);
  border-radius: 3px;
  margin: 18px auto 0;
}

/* ---- Cards ---- */
.review-card {
  background: #DCEBFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 4px 15px rgba(15, 31, 61, 0.06);
  height: 100%;
}

.review-card h6 {
  color: var(--c7-purple) !important;
}

.reviewer-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.review-body {
  background: var(--review-tint);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}

.review-body p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.75;
  opacity: 0.9;
}

.star-rating .fa-star {
  font-size: 0.8rem;
}

.star-on {
  color: var(--gold);
}

.star-off {
  color: #dfe3ef;
}

/* ---- Dots ---- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.8rem;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6d1f0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dots span.active {
  background: var(--c7-purple);
  transform: scale(1.25);
}

/* ---- Nav (kept, hidden by default in markup) ---- */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-nav button {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--c7-purple);
}

.slider-nav button:hover {
  background: var(--c7-purple);
  color: var(--white);
  border-color: var(--c7-purple);
}

.slides-wrapper {
  overflow: hidden;
}

.slides-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide-item {
  flex: 0 0 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ===== Responsive ===== */
@media (max-width: 420px) {
  .review-section h2 {
    font-size: 24px;
  }

  .review-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .review-subtitle {
    font-size: 13px;
  }
}

@media (min-width: 1600px) {
  .review-section {
    padding: 25px 0;
  }

  .review-section h2 {
    font-size: 42px;
  }

  .review-subtitle {
    font-size: 16px;
    max-width: 620px;
  }

  .review-card {
    padding: 1.5rem;
  }
}

/* end */



/* start */
/* =========================================================
   STATS COUNTER SECTION
   ========================================================= */
/* .stats-section {
  position: relative;
  background: linear-gradient(135deg, #0B1F4E 0%, #123a7a 100%);
  padding: 60px 0;
  overflow: hidden;
}

.stats-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.stats-blob--1 {
  width: 260px;
  height: 260px;
  top: -100px;
  left: -60px;
}

.stats-blob--2 {
  width: 200px;
  height: 200px;
  bottom: -90px;
  right: -40px;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.stat-item {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}


.stat-item+.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.14);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #6f9dff;
}

.stat-number {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 14.5px;
  color: #b7c3e2;
  margin: 0;
}




@media (max-width: 991.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(1)::before {
    display: none;
  }

  .stat-item:nth-child(odd)::before {
    display: none;
  }

  .stats-section {
    padding: 48px 0;
  }
}


@media (max-width: 575.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 10px;
  }

  .stat-item::before {
    display: none;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
    margin-bottom: 12px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12.5px;
  }

  .stats-section {
    padding: 40px 0;
  }
} */

/* end */


/* course-details start css */
main {
  padding-bottom: 40px;
}

/* Breadcrumb */
.breadcrumb-row {
  font-size: .86rem;
  color: var(--muted);
  letter-spacing: .2px;
}

.breadcrumb-row a {
  color: var(--muted);
  text-decoration: none;
  transition: .15s;
}

.breadcrumb-row a:hover {
  color: var(--purple);
}

.breadcrumb-row i {
  font-size: .65rem;
  margin: 0 6px;
  vertical-align: middle;
}

.breadcrumb-row .current {
  color: var(--ink);
  font-weight: 600;
}

/* ============ BANNER ============ */
.banner-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10.5;
  box-shadow: 0 18px 40px -14px rgba(16, 29, 63, .45);
}

.banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 22px;
}

.class-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 29, 63, .55);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.class-badge i {
  color: #ffd166;
  font-size: .85rem;
}

.banner-overlay h2 {
  font-family: 'Baloo Da 2', sans-serif;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8), 0 0 20px rgba(0, 0, 0, .6);
  margin-bottom: 0;
  background: linear-gradient(90deg, rgba(16, 29, 63, .75), transparent);
  padding: 8px 12px;
  border-radius: 8px;
  width: fit-content;
}

.banner-overlay h2 .sub {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #e8ecff;
  margin-top: 6px;
  letter-spacing: .2px;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px -10px rgba(16, 29, 63, .12);
}

.stat-item {
  text-align: center;
  padding: 20px 8px;
  border-right: 1px solid var(--line);
  transition: .2s;
}

.stat-item:hover {
  background: var(--purple-soft);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  color: var(--purple);
  font-size: 1.35rem;
}

.stat-item .num {
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 8px;
  color: var(--navy-1);
}

.stat-item .lbl {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Description card */
.desc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-top: 18px;
  box-shadow: 0 6px 18px -10px rgba(16, 29, 63, .10);
}

.desc-card h6 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-1);
}

.desc-card h6 i {
  color: var(--purple);
  font-size: 1.15rem;
}

.desc-line {
  display: flex;
  gap: 10px;
  font-size: .96rem;
  color: #3c4356;
  margin-bottom: 13px;
  line-height: 1.75;
}

.desc-line i {
  color: var(--purple);
  margin-top: 6px;
  font-size: .6rem;
  flex-shrink: 0;
}

#descExtra {
  display: none;
}

.show-more-btn {
  background: none;
  border: none;
  color: var(--purple);
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 0 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.show-more-btn:hover {
  color: var(--purple-dark);
}

.show-more-btn i {
  transition: transform .25s;
}

/* ============ RIGHT COLUMN — light blue "nila" wrapper ============ */
.right-col-wrap {
  background: linear-gradient(180deg, var(--nila-1) 0%, var(--nila-2) 100%);
  border: 1px solid var(--nila-line);
  border-radius: 22px;
  padding: 26px;
}

.course-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy-1);
  line-height: 1.35;
  position: relative;
  padding-left: 16px;
}

.course-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--purple), var(--blue-msg));
}

@media (min-width:992px) {
  .course-title {
    font-size: 2rem;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -12px rgba(16, 29, 63, .14);
}

.feature-card h6 {
  font-weight: 700;
  color: var(--navy-1);
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card h6 i {
  color: var(--purple);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  font-size: .97rem;
  line-height: 1.55;
  color: #313a4f;
}

.feature-list i {
  color: var(--green);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -12px rgba(16, 29, 63, .14);
}

.contact-card h6 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: var(--navy-1);
}

.contact-card .sub-text {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 8px;
  text-decoration: none;
  color: var(--ink);
  transition: .2s;
  background: #fcfdff;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -8px rgba(16, 29, 63, .22);
  border-color: transparent;
}

.contact-btn .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, .25);
}

.contact-btn span {
  font-size: .85rem;
  font-weight: 600;
}

.icon-messenger {
  background: var(--blue-msg);
}

.icon-whatsapp {
  background: var(--green);
}

.icon-call {
  background: var(--purple);
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 8px 20px -12px rgba(16, 29, 63, .14);
}

.video-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.video-card h6 {
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
  color: var(--navy-1);
}

.video-card .see-all {
  font-size: .8rem;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
}

.video-card .see-all:hover {
  color: var(--purple-dark);
}

.video-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: .15s;
}

.video-item:hover {
  background: var(--purple-soft);
}

.video-item:last-child {
  border-bottom: none;
}

.video-thumb {
  position: relative;
  width: 92px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0f172a;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.video-thumb .play-ic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.video-thumb .duration {
  position: absolute;
  bottom: 4px;
  right: 5px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: .64rem;
  padding: 1px 5px;
  border-radius: 4px;
}

.video-info .v-title {
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--ink);
}

.video-info .v-link {
  font-size: .78rem;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

/* Price bar */
.price-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px -16px rgba(16, 29, 63, .28);
  padding: 16px 24px;
  margin-top: 22px;
}

.price-bar .p-label {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 3px;
}

.price-bar .p-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--price);
}

.price-bar .p-old {
  font-size: .9rem;
  color: #9aa0ac;
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 8px;
}

.price-bar .p-off {
  font-size: .72rem;
  background: #ecfdf3;
  color: #15803d;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  margin-left: 6px;
}

.buy-btn {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 12px;
  font-size: .96rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 22px -8px rgba(91, 75, 224, .55);
  transition: .2s;
}

.buy-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width:575px) {
  .price-bar {
    padding: 14px 16px;
  }

  .price-bar .p-value {
    font-size: 1.05rem;
  }

  .buy-btn {
    padding: 11px 18px;
    font-size: .85rem;
  }

  .banner-overlay h2 {
    font-size: 1.4rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid var(--line);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .right-col-wrap {
    padding: 18px;
    border-radius: 18px;
  }
}

/* course-details end css */


/* our-courses start css */
/* ================= Class 7 GRID section (collision-free) ================= */
.c7grid-section {
  background: var(--c7-bg);
  font-family: 'Hind Siliguri', 'Poppins', sans-serif;
  padding: 40px 0;
}

.c7grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header ---- */
.c7grid-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.c7grid-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--c7-navy-text);
  margin: 0;
}

/* ---- Grid ---- */
.c7grid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- Card (same visual language as c7-card) ---- */
.c7grid-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(17, 24, 39, .07), 0 1px 3px rgba(17, 24, 39, .05);
  border: 1px solid #eef0f4;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.c7grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, .14), 0 4px 10px rgba(17, 24, 39, .06);
}

/* ---- Banner ---- */
.c7grid-card-banner {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c7grid-card-banner.purple {
  background: linear-gradient(160deg, #8b5cf6, #5b21b6);
}

.c7grid-card-banner.blue {
  background: linear-gradient(160deg, #2563eb, #1e3a8a);
}

.c7grid-card-banner.green {
  background: linear-gradient(160deg, #22c55e, #14532d);
}

.c7grid-card-banner.orange {
  background: linear-gradient(160deg, #f97316, #9a3412);
}

.c7grid-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.c7grid-banner-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.c7grid-card:hover .c7grid-banner-img {
  transform: scale(1.06);
}

/* ---- Body ---- */
.c7grid-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c7grid-card-heading {
  font-weight: 700;
  font-size: 16px;
  color: var(--c7-navy-text);
  margin: 0 0 8px;
}

.c7grid-card-desc {
  font-size: 13px;
  color: var(--c7-gray-text);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.c7grid-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  border-radius: 9px;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.c7grid-card-btn:hover {
  filter: brightness(1.08);
  color: #fff;
  transform: translateY(-1px);
}

.c7grid-card-btn svg {
  transition: transform .2s ease;
}

.c7grid-card-btn:hover svg {
  transform: translateX(3px);
}

.c7grid-card-btn.purple {
  background: var(--c7-purple);
}

.c7grid-card-btn.blue {
  background: var(--c7-blue);
}

.c7grid-card-btn.green {
  background: var(--c7-green);
}

.c7grid-card-btn.orange {
  background: var(--c7-orange);
}

/* ---- Responsive ---- */

/* Tablet — 3 per row */
@media (max-width: 991.98px) {
  .c7grid-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Small tablets — 2 per row */
@media (max-width: 768px) {
  .c7grid-title {
    font-size: 22px;
  }

  .c7grid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .c7grid-card-banner {
    height: 160px;
  }
}

/* Mobile — 2 per row, sizes tuned down */
@media (max-width: 480px) {
  .c7grid-grid {
    gap: 10px;
  }

  .c7grid-card-banner {
    height: 130px;
  }

  .c7grid-card-body {
    padding: 12px 12px 14px;
  }

  .c7grid-card-heading {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .c7grid-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
    /* clamp to 2 lines so card heights stay even */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .c7grid-card-btn {
    font-size: 12.5px;
    padding: 9px 0;
  }
}

/* our-courses end css */


/* cours start css */
/* ================= SSC courses section ================= */

.ssc-section {
  padding: 60px 20px;
  background: #fafaff;
}

.ssc-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.ssc-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  margin-bottom: 14px;
}

.ssc-icon-badge svg {
  width: 24px;
  height: 24px;
}

.ssc-title {
  font-weight: 800;
  font-size: 34px;
  color: #1e1b3a;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}

.ssc-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: #7c3aed;
  margin: 8px auto 0;
}

.ssc-subtitle {
  font-size: 14.5px;
  color: #6b7280;
  margin: 14px 0 0;
}

/* ---- Cards ---- */
.ssc-cards-row {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ssc-card {
  background: #fff;
  border: 1.5px solid #ece9f7;
  border-radius: 20px;
  padding: 44px 30px;
  text-align: center;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 16px rgba(30, 27, 75, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ssc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 27, 75, 0.1);
}

.ssc-card--active {
  border: 2px solid #7c3aed;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.ssc-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ssc-card-icon svg {
  width: 34px;
  height: 34px;
}

.ssc-card-icon--purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #7c3aed;
}

.ssc-card-icon--blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}

.ssc-card-icon--violet {
  background: linear-gradient(135deg, #ede9fe, #e0d4fc);
  color: #8b5cf6;
}

.ssc-card-title {
  font-weight: 800;
  font-size: 21px;
  color: #1e1b3a;
  margin: 0 0 14px;
}

.ssc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.ssc-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ssc-badge--green {
  background: #dcfce7;
  color: #16a34a;
}

.ssc-badge--blue {
  background: #dbeafe;
  color: #2563eb;
}

.ssc-badge--violet {
  background: #ede9fe;
  color: #7c3aed;
}

.ssc-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0 0 28px;
  flex-grow: 1;
  max-width: 240px;
}

.ssc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.ssc-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.ssc-btn--dark {
  background: linear-gradient(135deg, #2b2350, #4c3a8f);
}

.ssc-btn--blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.ssc-btn--violet {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* ---- Info bar ---- */
.ssc-info-bar {
  max-width: 1000px;
  margin: 40px auto 0;
  background: #fff;
  border: 1.5px solid #ece9f7;
  border-radius: 16px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ssc-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #ede9fe;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssc-info-icon svg {
  width: 20px;
  height: 20px;
}

.ssc-info-text {
  flex: 1;
  min-width: 200px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.ssc-info-illustration {
  width: 60px;
  min-width: 60px;
}

.ssc-info-illustration svg {
  width: 100%;
  height: auto;
}

/* ================= Responsive ================= */

@media (max-width: 767px) {
  .ssc-title {
    font-size: 26px;
  }

  .ssc-card {
    padding: 36px 24px;
    min-height: auto;
    /* মোবাইলে ফিক্সড height লাগবে না, content অনুযায়ী stretch হবে */
  }

  .ssc-info-bar {
    text-align: center;
    justify-content: center;
  }

  .ssc-info-illustration {
    display: none;
  }
}

@media (max-width: 420px) {
  .ssc-title {
    font-size: 22px;
  }

  .ssc-subtitle {
    font-size: 13px;
  }

  .ssc-card-title {
    font-size: 18px;
  }
}

/* cours end css */

/* free-course section start */

.fc-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 20px 90px;
}

.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--c7);
  background: var(--c7-soft);
  padding: 6px 16px;
  border-radius: 999px;
}

.fc-heading {
  font-family: 'Baloo Da 2', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  margin: 18px 0 10px;
}

.fc-heading .dot {
  color: var(--c6);
}

.fc-sub {
  color: var(--fc-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.fc-rule {
  width: 64px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--c6), var(--c7));
  margin: 22px auto 0;
}

.fc-header {
  text-align: center;
  margin-bottom: 46px;
}

/* CARD */
.fc-card {
  background: #fff;
  border: 1px solid var(--fc-card-line);
  border-radius: 20px;
  padding: 28px 22px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .25s ease;
}

.fc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(20, 20, 50, .18);
  border-color: transparent;
}

.fc-card:hover::before {
  opacity: 1;
}

.fc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 26px;
  transition: transform .25s ease;
}

.fc-card:hover .fc-icon {
  transform: scale(1.08) rotate(-4deg);
}

.fc-title {
  font-family: 'Baloo Da 2', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 6px;
}

.fc-desc {
  font-size: 13.5px;
  color: var(--fc-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 42px;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 18px -8px var(--accent);
  transition: filter .2s ease, transform .2s ease;
}

.fc-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff;
}

.fc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}

@media (max-width: 575px) {
  .fc-section {
    padding: 48px 14px 60px;
  }

  .fc-card {
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .fc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 21px;
    margin-bottom: 14px;
  }

  .fc-title {
    font-size: 16px;
  }

  .fc-desc {
    font-size: 12.5px;
    min-height: auto;
    margin-bottom: 16px;
  }

  .fc-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* free section end */



/* start float  */

/* ===== WhatsApp Floating Button ===== */

/* ===== WhatsApp Floating Button ===== */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.wa-float__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wa-green), var(--wa-green-dark));
  box-shadow: 0 6px 18px var(--wa-shadow), 0 2px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float__link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px var(--wa-shadow), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wa-float__link svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 2;
}

/* Pulse ring animation */
.wa-float__ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.6;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: 1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Tooltip label (desktop) */
.wa-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #111b21;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wa-float__tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111b21;
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .wa-float__ring {
    animation: none;
    opacity: 0;
  }

  .wa-float__link {
    transition: none;
  }
}

/* Mobile: smaller, no tooltip clutter */
@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
  }

  .wa-float__link {
    width: 52px;
    height: 52px;
  }

  .wa-float__link svg {
    width: 26px;
    height: 26px;
  }

  .wa-float__tooltip {
    display: none;
  }
}

/* end */

/* footer start */
/*  */
/* ================= FOOTER ================= */
.site-footer {
  font-family: var(--font-body);
}

/* ---- Main section (dark/black base) ---- */
.footer-main {
  background: #0a0a0a;
  padding: 28px 0 20px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 65px;
  width: auto;
  display: block;
}

.footer-follow-label {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 10px;
  opacity: .85;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.footer-social a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Contact info boxes */
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 18px;
}

.footer-info-box {
  background: #161616;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.footer-info-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.footer-info-text {
  font-size: 12px;
  line-height: 1.4;
  color: #c7cbd6;
}

.footer-info-text a {
  color: #c7cbd6;
  text-decoration: none;
}

.footer-info-text a:hover {
  color: var(--white);
}

/* Important line */
.footer-important {
  padding-top: 14px;
  border-top: 1px solid #262626;
}

.footer-important-title {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  margin: 0 0 8px;
}

.footer-important-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-important-links a {
  color: #9aa1b5;
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-important-links a:hover {
  color: var(--white);
}

/* Bottom bar - payment methods + copyright */
.footer-bottom {
  background: #050505;
  border-top: 1px solid #1c1c1c;
  padding: 18px 0;
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-payments img {
  height: auto;
  width: 100%;
  max-width: 1100px;
  display: block;
}

.footer-copy {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-payments img {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .footer-bottom-row {
    flex-direction: column;
    gap: 10px;
    position: static;
  }

  .footer-copy {
    position: static;
    transform: none;
    order: 2;
    white-space: normal;
  }

  .footer-payments {
    order: 1;
    justify-content: center;
  }

  .footer-payments img {
    max-width: 100%;
    height: auto;
  }
}

/*  */
/*  footer end */





.ebkcat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}




  .ebk-modal-overlay {
      position: fixed; inset: 0; background: rgba(15,15,20,.55);
      display: none; align-items: center; justify-content: center;
      z-index: 2000; padding: 16px; backdrop-filter: blur(2px);
  }
  .ebk-modal-overlay.active { display: flex; }
  .ebk-modal {
      background: #fff; border-radius: 20px; width: 100%; max-width: 460px;
      max-height: 90vh; overflow-y: auto; position: relative;
      box-shadow: 0 24px 60px rgba(0,0,0,.25);
  }
  .ebk-modal-close {
      position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
      border-radius: 50%; border: none; background: #f3f4f6; color: #374151;
      display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5;
  }
  .ebk-modal-close:hover { background: #e5e7eb; }
  .ebk-modal-header {
      display: flex; gap: 14px; align-items: center; padding: 22px 22px 16px;
      border-bottom: 1px solid #f0f0f0;
  }
  .ebk-modal-cover { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; flex-shrink: 0; background: #f3f4f6; }
  .ebk-modal-header h5 { font-weight: 700; font-size: 1rem; color: #111827; }
  .ebk-modal-body { padding: 18px 22px 24px; }
  .ebk-field { margin-bottom: 14px; }
  .ebk-field label { display: block; font-size: .82rem; font-weight: 700; color: #374151; margin-bottom: 5px; }
  .ebk-input {
      width: 100%; padding: 10px 13px; border: 1.5px solid #e5e7eb; border-radius: 10px;
      font-size: .9rem; outline: none; transition: all .15s ease;
  }
  .ebk-input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
  .ebk-pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ebk-pay-opt {
      border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 10px; text-align: center;
      cursor: pointer; font-size: .8rem; font-weight: 600; color: #374151;
      display: flex; flex-direction: column; align-items: center; gap: 4px; transition: all .15s ease;
  }
  .ebk-pay-opt.sel { border-color: #2563eb; background: #eff6ff; color: #2563eb; }
  .ebk-pay-b { color: #db2777; font-weight: 800; }
  .ebk-pay-n { color: #ea580c; font-weight: 800; }
  .ebk-summary { background: #f9fafb; border-radius: 12px; padding: 14px; margin: 14px 0; }
  .ebk-summary-row { display: flex; justify-content: space-between; font-size: .85rem; color: #6b7280; margin-bottom: 6px; }
  .ebk-summary-row.total { border-top: 1px dashed #e5e7eb; padding-top: 8px; margin-top: 4px; font-weight: 800; color: #111827; font-size: .95rem; }
  .ebk-free-note {
      display: flex; align-items: center; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0;
      color: #166534; border-radius: 12px; padding: 12px 14px; font-size: .85rem; margin: 14px 0;
  }
  .ebk-submit-btn {
      width: 100%; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; border: none;
      padding: 13px; border-radius: 50px; font-weight: 700; font-size: .95rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: 0 10px 24px rgba(37,99,235,.28); transition: transform .15s ease;
  }
  .ebk-submit-btn:hover { transform: translateY(-2px); }
  .ebk-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

