/* DLS Vidya landing page base build v5 */

:root {
  --green: #0C6C1C;
  --pink: #F03C70;
  --leaf: #74B61D;
  --white: #FFFFFF;
  --soft-green: #EEF6EA;
  --soft-pink: #FDEAF0;
  --text: #202820;
  --shadow: 0 14px 34px rgba(12, 108, 28, 0.075);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Montserrat", "Avenir", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}

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

.page {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  background: var(--white);
  overflow: visible;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px clamp(22px, 4.8vw, 76px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(12, 108, 28, 0.06);
  
  
  
  backdrop-filter: blur(10px);

  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 350px;
}

.brand-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-wordmark {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav { display: none; }




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(12, 108, 28, 0.16);
}

.btn-primary { background: var(--green); color: var(--white); }
.btn-outline { color: var(--pink); border: 2px solid var(--pink); background: var(--white); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
  padding: 52px clamp(34px, 5vw, 76px) 42px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 300px;
  height: 300px;
  left: -215px;
  top: 100px;
  background: rgba(116, 182, 29, 0.045);
}

.hero::after {
  width: 560px;
  height: 560px;
  right: -350px;
  top: 28px;
  background: rgba(240, 60, 112, 0.023);
}

.hero > * { position: relative; z-index: 1; }

.eyebrow {
  color: var(--pink);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--green);
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 4.65vw, 70px);
  letter-spacing: -0.02em;
  max-width: 720px;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: #3f453f;
  font-size: 16px;
  line-height: 1.75;
}

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

.logo-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 108, 28, 0.07);
  min-height: 255px;
  max-width: 560px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 36px;
}

.logo-card img {
  width: min(100%, 420px);
  display: block;
}

.principles {
  margin: 0 clamp(26px, 4vw, 46px) 34px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 108, 28, 0.07);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.principle {
  text-align: center;
  padding: 28px 44px 31px;
  position: relative;
}

.principle-divider {
  position: absolute;
  left: -1px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--green);
  opacity: 0.72;
}

.principle-divider .flower {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--pink);
  background: var(--white);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: var(--soft-green);
}

.principle:nth-child(2) .icon-circle { background: var(--soft-pink); }

.icon-circle svg {
  width: 34px;
  height: 34px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

.principle:nth-child(2) svg { stroke: var(--pink); }

.principle h3 {
  font-size: 31px;
  margin-bottom: 8px;
}

.principle p {
  margin: 0 auto;
  max-width: 290px;
  font-size: 14px;
  color: #333833;
  line-height: 1.62;
}

.initiative {
  margin: 24px clamp(30px, 4.2vw, 54px) 34px;
  display: grid;
  grid-template-columns: 390px 1fr 270px;
  align-items: center;
  gap: 34px;
  padding: 22px 32px;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFEFA 100%);
  border: 1px solid rgba(12, 108, 28, 0.12);
  box-shadow: 0 12px 28px rgba(12, 108, 28, 0.055);
  border-radius: 18px;
}

.initiative-art {
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.initiative-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.initiative-label {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  margin-bottom: 8px;
}

.initiative h2 { font-size: 38px; }

.initiative p {
  margin: 10px 0 0;
  color: #3f453f;
  font-size: 15px;
}

.offerings {
  padding: 0 clamp(30px, 4.2vw, 54px) 34px;
}

.section-title {
  text-align: center;
  margin: 0 auto 28px;
}

.section-title h2 { font-size: clamp(36px, 3.4vw, 48px); }

.floral-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 340px);
  margin: 12px auto 0;
  color: var(--pink);
}

.floral-divider::before,
.floral-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  background: var(--pink);
}

.floral-divider span {
  transform: rotate(45deg);
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
}

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

.offer-card {
  background: var(--white);
  border: 1px solid rgba(12, 108, 28, 0.08);
  box-shadow: 0 12px 28px rgba(12, 108, 28, 0.055);
  border-radius: 18px;
  text-align: center;
  padding: 28px 24px 26px;
  min-height: 230px;
}

.offer-card:nth-child(even) .icon-circle { background: var(--soft-pink); }
.offer-card:nth-child(even) .icon-circle svg { stroke: var(--pink); }

.offer-card h3 {
  font-size: 23px;
  margin: 12px 0 8px;
}

.offer-card p {
  margin: 0;
  color: #3d433d;
  font-size: 14px;
  line-height: 1.62;
}

.contact-strip {
  margin: 0 clamp(36px, 5vw, 76px) 18px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(240, 60, 112, 0.25);
  border-bottom: 1px solid rgba(240, 60, 112, 0.25);
  gap: 18px;
  text-align: center;
  color: #2f362f;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-item + .contact-item { border-left: 1px solid rgba(12, 108, 28, 0.15); }

.contact-item svg {
  width: 25px;
  height: 25px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

.site-footer {
  text-align: center;
  padding: 0 40px 26px;
  color: #4d554d;
  font-size: 13px;
}

/* iPad / tablet */
@media (max-width: 1180px) {
  .quick-nav {
    display: none;
  }
  .site-header { padding: 14px 28px; }

  .header-brand {
    min-width: auto;
    gap: 12px;
  }

  .brand-icon {
    width: 62px;
    height: 62px;
  }

  .brand-wordmark { width: 205px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .logo-card {
    display: none;
  }

  h1 { font-size: clamp(40px, 5vw, 56px); }

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

  .initiative { grid-template-columns: 300px 1fr; }

  .initiative-btn {
    grid-column: 2;
    justify-self: start;
    margin-top: -8px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .header-brand {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
  }

  .brand-wordmark {
    width: clamp(126px, 38vw, 150px);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 22px 30px;
    gap: 24px;
  }

  .logo-card {
    display: none;
  }

  h1 { font-size: 36px; }

  .hero-copy { font-size: 15px; }

  .principles {
    grid-template-columns: 1fr;
    margin: 0 22px 30px;
  }

  .principle {
    padding: 26px;
  }

  .principle-divider {
    left: 24px;
    right: 24px;
    top: -1px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .principle-divider .flower {
    top: 50%;
    left: 50%;
  }

  .initiative {
    grid-template-columns: 1fr;
    margin: 24px 22px 34px;
    padding: 20px;
    text-align: center;
  }

  .initiative-art {
    height: 170px;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .initiative-btn {
    grid-column: auto;
    justify-self: center;
    margin-top: 0;
  }

  .offerings { padding: 0 22px 28px; }

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

  .contact-strip {
    grid-template-columns: 1fr;
    margin: 0 22px 18px;
    padding: 18px 0;
  }

  .contact-item + .contact-item { border-left: 0; }

  .site-footer { padding-bottom: 22px; }
}

@media (max-width: 420px) {
  .brand-wordmark { width: 118px; }
  .brand-icon { width: 38px; height: 38px; }
  h1 { font-size: 34px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: 12px; }
  .header-cta { padding: 9px 11px; font-size: 12px; }
}

/* ===== v9 fixes: fixed header, mobile overflow, and desktop-only Kichu & Leela link ===== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  overflow-x: clip;
  overflow-y: visible;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: min(100%, 1680px) !important;
  z-index: 99999 !important;
}

main {
  padding-top: 112px;
}

.quick-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.quick-nav a {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  text-decoration: none;
}

.quick-nav a:hover {
  color: var(--pink);
}

@media (max-width: 1180px) {
  .quick-nav {
    display: none !important;
  }

  main {
    padding-top: 96px;
  }
}

@media (max-width: 760px) {
  .quick-nav {
    display: none !important;
  }

  .site-header {
    display: flex;
    padding: 10px 14px !important;
    gap: 10px !important;
  }

  .header-brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 8px !important;
  }

  .brand-icon {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 auto !important;
  }

  .brand-wordmark {
    width: clamp(118px, 38vw, 150px) !important;
    max-width: 100% !important;
  }

  .header-cta {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    padding: 9px 11px !important;
    font-size: 12px !important;
  }

  main {
    padding-top: 78px;
  }

  .hero {
    overflow: hidden;
  }

  h1 {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .brand-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .brand-wordmark {
    width: 108px !important;
  }

  .header-cta {
    padding: 8px 9px !important;
    font-size: 11px !important;
  }
}
