/* Top header bar (purple) */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #6b4a73;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 6px 0;                 /* ✅ gives space so logo won't touch edges */
}

.topbar-inner{
  height: auto;                   /* ✅ don't force 64px */
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar-brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.topbar-logo{
  height: 76px;                   /* ✅ safe height for mobile */
  width: auto;
  display:block;
  object-fit: contain;            /* ✅ ensures no cropping */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

.footer{
  background: #6b4a73; /* same purple as header */
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 16px 22px;
}

.footer-inner{
  max-width: 1000px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  text-align:center;
}

.footer-logo{
  height: 104px;   /* adjust if needed */
  width: auto;
  display:block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); /* improves visibility */
}

.footer-copy{
  color: rgba(255,255,255,.88);
  font-size: 13px;
}


/* Hamburger icon */
.menu-btn{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 6px;
  cursor:pointer;
}

.menu-btn span{
  height: 2px;
  width: 22px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  display:block;
}

/* Optional: remove the white logo plate if you used it earlier */
.logo-plate{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


:root{
  --purple:#6d28d9;
  --purple2:#8b5cf6;
  --ink:#111827;
  --muted:#6b7280;
  --card:rgba(255,255,255,.78);
  --stroke:rgba(255,255,255,.65);
  --shadow: 0 18px 50px rgba(17, 24, 39, .18);
  --radius: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(109,40,217,.20), transparent 60%),
    radial-gradient(700px 500px at 80% 0%, rgba(139,92,246,.18), transparent 55%),
    radial-gradient(700px 500px at 70% 95%, rgba(109,40,217,.14), transparent 60%),
    linear-gradient(180deg, #f7f3ff 0%, #eef2ff 45%, #ffffff 100%);
  overflow-x:hidden;
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.card{
  width:min(920px, 100%);
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

/* subtle decorative blob */
.card::before{
  content:"";
  position:absolute;
  inset:auto -120px -120px auto;
  width:340px;
  height:340px;
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.35), rgba(109,40,217,.08) 60%, transparent 70%);
  filter: blur(2px);
  transform: rotate(12deg);
  pointer-events:none;
}

header{
  padding:34px 22px 12px;
  text-align:center;
}

.logo{
  width:120px;
  height:120px;
  border-radius:24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(109,40,217,.18);
  box-shadow: 0 14px 30px rgba(109,40,217,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 16px;
  overflow:hidden;
}

.logo img{
  width: 88%;
  height: 88%;
  object-fit: contain;
  display:block;
}

.brand{
  font-weight:800;
  letter-spacing:.2px;
  font-size: clamp(22px, 3.4vw, 34px);
  margin: 8px 0 6px;
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.tag{
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight:800;
  margin: 8px 0 10px;
}

.subtag{
  font-size: clamp(15px, 2.1vw, 20px);
  color: var(--muted);
  margin: 0 0 20px;
  line-height:1.5;
  font-weight:600;
}

.quote{
  margin: 8px auto 0;              /* ✅ reduced from 18px */
  width: min(720px, 100%);
  padding: 12px 14px;              /* ✅ slightly tighter */
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px dashed rgba(255,255,255,.55);  /* ✅ softer on purple */
  color: #2f2a45;
  line-height: 1.55;
  font-size: 15px;
}

.quote strong{
  color: #6d28d9; /* or keep var(--purple) if defined */
}


.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,.22), transparent);
  margin: 18px 0 0;
}

main{
  padding: 22px 22px 26px;
}

/* Placeholder area for future sections */
.next{
  margin-top: 18px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(17,24,39,.06);
}

.next h2{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing:.2px;
}

.next p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  font-size: 14.5px;
}

footer{
  padding: 0 22px 22px;
  text-align:center;
  color: rgba(107,114,128,.9);
  font-size: 13px;
}

/* Mobile spacing */
@media (max-width: 480px){
  header{ padding-top: 26px; }
  .logo{ width:108px; height:108px; }
  .quote{ font-size: 14px; }
}


/* ---------------------------
   OUR SERVICES SECTION
---------------------------- */
.services{
  position: relative;
  padding: 64px 16px 54px;
  background: #ffffff;
  overflow: hidden;
}

/* optional leaf background like your screenshot */
.services::before{
  content:"";
  position:absolute;
  left:-90px;
  top:40px;
  width: 360px;
  height: 420px;
  opacity: .16;
  background-repeat:no-repeat;
  background-size: contain;
  background-image: url("assets/leaf.png"); /* optional; remove if not using */
  pointer-events:none;
}

.services-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.services-head{
  text-align:center;
  margin-bottom: 34px;
}

.services-kicker{
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #6b4a73; /* your purple tone */
  margin-bottom: 10px;
}

.services-title{
  margin: 0 auto 12px;
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.12;
  color: #1f1b2e;
  max-width: 950px;
}

.services-subtitle{
  margin: 0 auto;
  max-width: 900px;
  color: rgba(31,27,46,.68);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.6;
}

/* grid */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items:start;
}

/* card */
.service-card{
  text-align:left;
}

.service-img{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow:hidden;
  border-radius: 34px;
  /* pill-ish corners like screenshot */
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  box-shadow: 0 18px 45px rgba(17,24,39,.14);
  background: #f3f4f6;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.service-name{
  margin: 18px 0 8px;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 500;
  color: #2a2438;
}

.service-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(31,27,46,.75);
}

/* responsive */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 560px;
    margin: 0 auto;
  }
  .service-name{ text-align:left; }
}

/* if you don't have leaf.png, disable the background easily */
@media (prefers-reduced-data: reduce){
  .services::before{ background-image:none; }
}

.hero{
  background: #6b4a73;
  padding: 14px 16px 8px;   /* ✅ reduced top space */
  text-align:center;
}

.hero-inner{
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title{
  margin: 0 0 8px;          /* was 12px */
}

.hero-subtitle{
  margin: 0 0 10px;         /* was 18px */
}

/* ---------------------------
   STUDIO TIMINGS (like image-1)
---------------------------- */
.studio-timings{
  background: #fff;
  padding: 36px 16px;
}

.timings-wrap{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.timings-row{
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
}

.timings-icon{
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}

/* Color themes similar to screenshot */
.timings-row.morning .timings-icon{
  background: #fde9c2;
  color: #d08a00;
}

.timings-row.evening .timings-icon{
  background: #dcecff;
  color: #5b55b6;
}

.timings-row.noon .timings-icon{
  background: #e9fff1;
  color: #1f8a4c;
}

.timings-row.weekend .timings-icon{
  background: #f1e8ff;
  color: #6d28d9;
}

.timings-title{
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.15;
}

.timings-row.morning .timings-title{ color: #d08a00; }
.timings-row.evening .timings-title{ color: #6b4a73; } /* purple */
.timings-row.noon .timings-title{ color: #1f8a4c; }
.timings-row.weekend .timings-title{ color: #6d28d9; }

.timings-text{
  font-size: 26px;
  color: #111;
  line-height: 1.35;
}

/* Mobile */
@media (max-width: 600px){
  .timings-title{ font-size: 22px; }
  .timings-text{ font-size: 18px; }
  .timings-row{ grid-template-columns: 66px 1fr; }
  .timings-icon{ width: 56px; height: 56px; font-size: 22px; }
}

/* ---------------------------
   WHY CHOOSE (2 rows like screenshot)
---------------------------- */
.why-choose{
  background:#fff;
  padding: 70px 16px 60px;
}

.why-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

.why-head{
  text-align:center;
  margin-bottom: 52px;
}

.why-title{
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
  color:#2a1f1f;
  letter-spacing:.2px;
}

.why-accent{
  color:#f59e0b; /* orange highlight like screenshot */
}

.why-subtitle{
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(0,0,0,.55);
}

.why-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
  margin-top: 34px;
}

.why-card{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items:center;
  position: relative;
  min-height: 240px;
}

.why-card.reverse{
  grid-template-columns: 1fr 260px;
}

.why-card.reverse .why-content{ order: 1; }
.why-card.reverse .why-media{ order: 2; }

.why-media{
  position: relative;
  width: 260px;
  height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.why-media img{
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 999px;
  display:block;
  background:#f3f4f6;
  z-index: 2;
  box-shadow: 0 18px 45px rgba(17,24,39,.14);
}

/* If image not present, still show blob nicely */
.why-media.noimg{
  width: 260px; height: 260px;
}
.why-media.noimg::after{
  content:"Image";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color: rgba(17,24,39,.35);
  z-index:3;
}

.why-blob{
  position:absolute;
  width: 260px;
  height: 260px;
  border-radius: 40px;
  transform: rotate(10deg);
  z-index: 1;
  opacity: .25;
}

/* colored blobs behind image like screenshot */
.blob-calm{ background: #f59e0b; }      /* yellow/orange */
.blob-active{ background: #fb7185; }    /* pink/red */
.blob-wellness{ background: #22c55e; }  /* green */
.blob-wisdom{ background: #3b82f6; }    /* blue */

.why-content{
  padding-top: 6px;
}

.why-card-title{
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.why-ico{
  font-size: 22px;
  line-height: 1;
}

/* title colors */
.why-card-title.calm{ color:#f59e0b; }
.why-card-title.active{ color:#fb3f3f; }
.why-card-title.wellness{ color:#06b6d4; }
.why-card-title.wisdom{ color:#2563eb; }

.why-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}

.why-list li{
  position: relative;
  padding-left: 28px;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(0,0,0,.62);
}

/* checkmarks like screenshot */
.why-list li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: rgba(0,0,0,.55);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 980px){
  .why-row{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .why-card,
  .why-card.reverse{
    grid-template-columns: 180px 1fr;
  }
  .why-media,
  .why-media img{
    width: 180px;
    height: 180px;
  }
  .why-blob{
    width: 180px;
    height: 180px;
  }
  .why-card-title{ font-size: 24px; }
  .why-list li{ font-size: 18px; }
}


/* ---------------------------
   KEY HIGHLIGHTS (diagram style)
---------------------------- */
.highlights{
  background:#fff;
  padding: 70px 16px 60px;
}

.highlights-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-head{
  text-align:center;
  margin-bottom: 44px;
}

.hi-kicker{
  font-weight: 700;
  letter-spacing: 2px;
  color:#6b4a73;
  font-size: 16px;
  margin-bottom: 10px;
}

.hi-title{
  margin:0 0 10px;
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 800;
  color:#2a2438;
}

.hi-sub{
  margin:0;
  font-size: clamp(15px, 1.6vw, 20px);
  color: rgba(17,24,39,.62);
  line-height: 1.6;
}

/* Layout */
.hi-layout{
  display:grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 28px;
  align-items:center;
}

/* columns */
.hi-col{
  display:grid;
  gap: 32px;
}

.hi-col.left .hi-item{
  grid-template-columns: 1fr 64px;
  text-align:right;
}

.hi-col.right .hi-item{
  grid-template-columns: 64px 1fr;
  text-align:left;
}

.hi-item{
  display:grid;
  align-items:center;
  gap: 18px;
}

/* text */
.hi-h{
  font-size: 28px;
  font-weight: 800;
  color:#2a2438;
  margin-bottom: 6px;
}

.hi-p{
  font-size: 20px;
  color: rgba(17,24,39,.62);
  line-height: 1.35;
}

/* check badge */
.hi-badge{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:#6b4a73;
  color:#fff;
  display:grid;
  place-items:center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(107,74,115,.22);
}

/* center */
.hi-center{
  position: relative;
  display:grid;
  place-items:center;
  min-height: 420px;
}

/* floating logo (up/down like ~1cm) */
.hi-logo{
  width: 280px;
  height: 280px;
  object-fit: contain;
  display:block;
  animation: floatY 2.8s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 18px 40px rgba(17,24,39,.18));
}

@keyframes floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); } /* ~1cm feel on mobile */
  100% { transform: translateY(0); }
}

/* simple dotted “guide lines” behind the center */
.hi-center-lines{
  position:absolute;
  inset: 0;
  margin:auto;
  width: 100%;
  height: 100%;
  pointer-events:none;
  opacity: .55;
  background:
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) left 14% top 18%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) left 20% top 34%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) left 25% top 50%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) left 18% top 66%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) left 12% top 82%/14px 14px no-repeat,

    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) right 14% top 18%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) right 20% top 34%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) right 25% top 50%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) right 18% top 66%/14px 14px no-repeat,
    radial-gradient(circle, rgba(107,74,115,.55) 1.1px, transparent 1.2px) right 12% top 82%/14px 14px no-repeat;
}

/* Mobile */
@media (max-width: 980px){
  .hi-layout{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hi-center{
    order: -1;
    min-height: 260px;
  }
  .hi-logo{
    width: 220px;
    height: 220px;
  }
  .hi-col.left .hi-item,
  .hi-col.right .hi-item{
    grid-template-columns: 54px 1fr;
    text-align:left;
  }
  .hi-col.left .hi-item .hi-badge{ order: 1; }
  .hi-col.left .hi-item .hi-text{ order: 2; }
}

/* ---------------------------
   TEAM / TRAINERS (mobile-first)
---------------------------- */
.team{
  background: #ffffff;
  padding: 64px 16px 60px;
}

.team-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.team-head{
  text-align: center;
  margin-bottom: 26px;
}

.team-kicker{
  font-weight: 700;
  letter-spacing: 3px;
  color: #6b4a73; /* your purple */
  font-size: 14px;
  margin-bottom: 10px;
}

.team-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 800;
  color: #2a2438;
}

.team-sub{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(17,24,39,.62);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.65;
}

/* Grid: perfect for mobile app */
/* ✅ 2 in a row on mobile */
.team-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

/* Card */
.trainer-card{
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(17,24,39,.10);
}

/* ✅ Circle photo */
.trainer-photo{
  width: 100%;
  aspect-ratio: 1 / 1;     /* square box */
  border-radius: 999px;    /* circle */
  overflow: hidden;
  background: #35b9d6;     /* your blue background */
  display: grid;
  place-items: center;
}

.trainer-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;    /* circle image */
  display: block;
}

.trainer-info{
  padding-top: 10px;
}

.trainer-name{
  font-weight: 800;
  font-size: 14.5px;
  color: #111827;
  line-height: 1.2;
}

.trainer-role{
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(17,24,39,.65);
  line-height: 1.3;
}

/* Desktop: 4 in a row */
@media (min-width: 900px){
  .team-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .trainer-name{ font-size: 16px; }
  .trainer-role{ font-size: 13.5px; }
}
.team-grid{ display:grid !important; }
.trainer-card{ width:auto !important; }

 /* =========================
     WHAT WE OFFER – Section Styles
     (clean, mobile-first)
     ========================= */
  .offer{
    background:#ffffff;
    padding:64px 16px;
  }
  .offer-wrap{
    max-width:1100px;
    margin:0 auto;
  }
  .offer-head{
    text-align:center;
    margin-bottom:28px;
  }
  .offer-kicker{
    margin:0 0 10px;
    letter-spacing:3px;
    font-weight:700;
    font-size:13px;
    color:#7a6a86;
  }
  .offer-title{
    margin:0;
    font-size:40px;
    line-height:1.1;
    color:#1f1f1f;
    font-weight:800;
  }
  .offer-caption{
    margin:14px auto 0;
    max-width:820px;
    font-size:16px;
    line-height:1.7;
    color:#6b6b6b;
  }
  .offer-oneliner{
    margin:10px 0 0;
    font-weight:700;
    color:#2a2a2a;
  }

  .offer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin-top:20px;
  }

  .offer-card{
    border:1px solid #ececec;
    border-radius:16px;
    padding:18px;
    background:#fff;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
  }
  .offer-card-title{
    margin:0 0 10px;
    font-size:18px;
    font-weight:800;
    color:#1f1f1f;
  }

  .offer-list{
    margin:0;
    padding-left:18px;
    color:#4a4a4a;
    line-height:1.8;
    font-size:15px;
  }
  .offer-text{
    margin:0 0 12px;
    color:#4a4a4a;
    line-height:1.7;
    font-size:15px;
  }

  .offer-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
  }
  .offer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
    color:#fff;
    background:#4b2e83;
  }
  .offer-btn:hover{ filter:brightness(1.05); }

  .offer-link{
    color:#4b2e83;
    font-weight:800;
    text-decoration:none;
    padding:10px 6px;
  }
  .offer-link:hover{ text-decoration:underline; }

  @media (min-width: 900px){
    .offer{ padding:72px 16px; }
    .offer-title{ font-size:54px; }
    .offer-grid{
      grid-template-columns: 1.2fr 0.8fr;
      gap:16px;
      margin-top:26px;
    }
    .offer-card{ padding:22px; }
  }

.offer-media{
  width: 100%;
  margin: 18px auto 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  background: #fff;
}

.offer-media-link{
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Single-page friendly: fixed height on mobile so page doesn't become too long */
.offer-img{
  width: 100%;
  height: 340px;          /* mobile banner height */
  object-fit: cover;      /* crops tall poster nicely */
  object-position: center;
  display: block;
}

/* ---------------------------
   TTC Carousel + Lightbox
---------------------------- */
.ttc{
  background:#fff;
  padding: 70px 16px 60px;
}

.ttc-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.ttc-head{
  text-align:center;
  margin-bottom: 22px;
}

.ttc-title{
  margin:0 0 10px;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 1px;
  color: #a21caf; /* purple-magenta */
}

.ttc-sub{
  margin:0 auto;
  max-width: 850px;
  color: rgba(17,24,39,.62);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
}

/* carousel shell */
.ttc-carousel{
  position: relative;
  margin-top: 18px;
}

/* track */
.ttc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 6px 16px;
  -webkit-overflow-scrolling: touch;
}

.ttc-track::-webkit-scrollbar{
  height: 8px;
}
.ttc-track::-webkit-scrollbar-thumb{
  background: rgba(107,74,115,.25);
  border-radius: 999px;
}

/* slide */
.ttc-slide{
  scroll-snap-align: start;
  margin: 0;
}

.ttc-slide img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 26px;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  box-shadow: 0 18px 45px rgba(17,24,39,.14);
  background: #f3f4f6;
  display:block;
}

.ttc-slide figcaption{
  margin-top: 14px;
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  text-align:center;
  font-family: Georgia, "Times New Roman", serif;
}

/* arrows */
.ttc-nav{
  position:absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.85);
  box-shadow: 0 12px 26px rgba(17,24,39,.14);
  cursor:pointer;
  font-size: 26px;
  line-height: 1;
  display:none; /* hidden on mobile; shown on desktop */
}

.ttc-nav.prev{ left: -6px; }
.ttc-nav.next{ right: -6px; }

@media (min-width: 980px){
  .ttc-nav{ display:grid; place-items:center; }
  .ttc-track{ grid-auto-columns: minmax(280px, 1fr); }
  .ttc-slide img{ height: 330px; }
}

/* dots */
.ttc-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.ttc-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(107,74,115,.25);
  cursor:pointer;
}

.ttc-dot.is-active{
  background: rgba(107,74,115,.95);
  width: 18px;
}

/* lightbox */
.ttc-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.ttc-lightbox.open{
  display:flex;
}

.ttc-full{
  max-width: 96vw;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.ttc-close{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor:pointer;
}


/* ---------------------------
   TESTIMONIALS MARQUEE
---------------------------- */
.testimonials{
  position: relative;
  padding: 70px 16px 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  overflow: hidden;
}

/* decorative leaves (optional) */
.testimonials::before,
.testimonials::after{
  content:"";
  position:absolute;
  width: 320px;
  height: 320px;
  opacity: .22;
  background-size: contain;
  background-repeat:no-repeat;
  pointer-events:none;
}
.testimonials::before{
  left: -120px;
  top: 40px;
  background-image: url("assets/leaf.png"); /* optional */
}
.testimonials::after{
  right: -120px;
  bottom: 30px;
  transform: rotate(180deg);
  background-image: url("assets/leaf.png"); /* optional */
}

.test-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.test-head{
  text-align:center;
  margin-bottom: 24px;
}

.test-kicker{
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 13px;
  color:#6b4a73;
  margin-bottom: 10px;
}

.test-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 900;
  color:#2a2438;
}

.test-sub{
  margin: 0 auto;
  max-width: 860px;
  color: rgba(17,24,39,.62);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
}

/* marquee */
.test-marquee{
  position: relative;
  overflow: hidden;
  padding: 12px 0 8px;
  user-select: none;
}

.test-track{
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testScroll 48s linear infinite;
  will-change: transform;
}

.test-marquee:hover .test-track,
.test-marquee.paused .test-track{
  animation-play-state: paused;
}

/* smooth fade edges */
.test-marquee::before,
.test-marquee::after{
  content:"";
  position:absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 3;
  pointer-events:none;
}
.test-marquee::before{
  left: 0;
  background: linear-gradient(90deg, #f7f3ff 0%, rgba(247,243,255,0) 100%);
}
.test-marquee::after{
  right: 0;
  background: linear-gradient(270deg, #f7f3ff 0%, rgba(247,243,255,0) 100%);
}

@keyframes testScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* because we duplicate content */
}

/* card */
.test-card{
  width: min(520px, 86vw);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(107,74,115,.18);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 45px rgba(17,24,39,.12);
  position: relative;
}

/* big quote mark */
.test-card::before{
  content:"“";
  position:absolute;
  top: -22px;
  left: 16px;
  font-size: 86px;
  font-weight: 900;
  color: rgba(107,74,115,.55);
  line-height: 1;
}

.test-quote{
  font-size: 18px;
  line-height: 1.65;
  color: rgba(17,24,39,.78);
  padding-top: 18px;
}

.test-person{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(107,74,115,.25);
  background: #e5e7eb;
}

.test-name{
  font-size: 18px;
  font-weight: 900;
  color:#2a2438;
  line-height: 1.2;
}

.test-role{
  font-size: 14px;
  color: rgba(17,24,39,.58);
  line-height: 1.25;
}


/* ✅ FORCE marquee to scroll (put at end of main.css) */
.test-marquee{
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
}

.test-track{
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  width: max-content !important;
  animation: testScroll 40s linear infinite !important;
  will-change: transform !important;
}

.test-card{
  flex: 0 0 auto !important;      /* prevents stacking */
  width: min(520px, 86vw) !important;
}

@keyframes testScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on touch/hover */
.test-marquee:hover .test-track{ animation-play-state: paused !important; }
.test-marquee.paused .test-track{ animation-play-state: paused !important; }


/* =========================
   FOUNDER SECTION (Fixed order + clean mobile)
========================= */
.founder{
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  padding: 70px 16px 60px;
}

.founder-wrap{ max-width: 1100px; margin: 0 auto; }

.founder-head{ text-align: left; margin-bottom: 16px; }

.founder-kicker{
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  color: #6b4a73;
  margin-bottom: 10px;
}

.founder-name{
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #111827;
}

.founder-tagline{
  margin: 0;
  color: rgba(17,24,39,.62);
  font-size: 15.5px;
  line-height: 1.5;
}

/* Card layout */
.founder-card{
  margin-top: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(107,74,115,.18);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(17,24,39,.12);
  padding: 18px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
}

.founder-photo{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid rgba(107,74,115,.22);
  background: #e9d5ff;
  box-shadow: 0 14px 30px rgba(17,24,39,.12);
}

.founder-photo img{ width:100%; height:100%; object-fit: cover; display:block; }

.founder-bio{
  margin: 0 0 14px;
  font-size: 15.8px;
  line-height: 1.75;
  color: rgba(17,24,39,.78);
}

/* ✅ Highlights arranged properly */
.founder-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.stat{
  padding: 12px;
  border-radius: 18px;
  background: rgba(107,74,115,.10);
  border: 1px solid rgba(107,74,115,.18);
}

.stat-label{
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(17,24,39,.62);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-value{
  font-size: 18px;
  font-weight: 900;
  color: #2a2438;
}

/* ✅ Guided by block */
.founder-guidedby{
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(17,24,39,.08);
  margin-bottom: 12px;
}

.gb-title{
  font-weight: 900;
  color: #6b4a73;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.gb-text{
  color: rgba(17,24,39,.74);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Credentials */
.founder-credentials{
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.75);
  border-radius: 18px;
  padding: 12px;
  margin: 0 0 14px;
}

.founder-credentials summary{
  cursor: pointer;
  font-weight: 900;
  color: #2a2438;
  list-style: none;
}
.founder-credentials summary::-webkit-details-marker{ display:none; }

.cred-text{
  margin-top: 10px;
  color: rgba(17,24,39,.70);
  line-height: 1.6;
  font-size: 14.5px;
}

.founder-btn{
  display: inline-block;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: #6b4a73;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(107,74,115,.22);
}

/* ✅ Affiliations horizontal straight line */
.founder-aff{ margin-top: 18px; }
.aff-title{
  font-weight: 900;
  color: #111827;
  margin-bottom: 10px;
}

/* Always single row (scroll horizontally) */
.aff-row{
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.aff-item{
  border: 0;
  background: transparent;
  padding: 0;
  flex: 0 0 auto;
  cursor: pointer;
}

.aff-item img{
  height: 54px;
  width: auto;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,24,39,.08);
  padding: 8px 10px;
  box-shadow: 0 12px 24px rgba(17,24,39,.08);
}

/* ✅ Logo full-screen lightbox */
.aff-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.aff-lightbox.open{ display:flex; }

.aff-full{
  max-width: 96vw;
  max-height: 90vh;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.aff-close{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Mobile stacking */
@media (max-width: 640px){
  .founder-card{ grid-template-columns: 1fr; }
  .founder-photo{ width: 110px; height: 110px; }
  .founder-stats{ grid-template-columns: 1fr; }
}
