:root {
  --primary-radial-gradient: radial-gradient(circle at top right, #1b2540, #0b1220);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  background: #0b1220;
  color: #fff;
  line-height: 1.6;
  scroll-padding-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  /* above content, below menu */
  background: #13124B;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  will-change: transform;
}



.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}


/* LOGO FIX */


.logo img {
  max-height: 48px;
  /* 🔥 KEY: controls logo size */
  width: auto;
  object-fit: contain;
  display: block;
}


/* NAV */
.nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav a {
  color: #cbd5f0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #f5b301;
  left: 0;
  bottom: -6px;
  transition: .3s;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

/* HEADER BUTTON */
.header-btn {
  display: block;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

/* ================= MOBILE ================= */
@media(max-width:991px) {
  .nav {
    position: fixed;
    inset: 0;
    background: #0b1220;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: .4s;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .header-btn {
    display: none;
  }
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.35s ease;
}

/* HAMBURGER */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE = CLOSE ICON */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ================= MOBILE MENU ================= */
@media(max-width:991px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: #0b1220;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.4s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

/* ================= HERO ================= */
.hero {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #1b2540, #0b1220);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.badge {
  display: inline-block;
  background: #f5b301;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.hero h1 {

  font-size: 42px;
  line-height: 1.2;
}

.hero h1 span {
  color: #f5b301;
}

.hero p {
  margin: 20px 0;
  color: #cbd5f0;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.btn-primary {
  background: #f5b301;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #f5b301;
  color: #f5b301;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.hero-stats h3 {
  color: #f5b301;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ================= HERO IMAGE (PREMIUM CARD) ================= */

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 130px;
}

.hero-image-card {
  position: relative;
  background: linear-gradient(180deg, #1b2540, #0b1220);
  padding: 12px;
  border-radius: 26px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-image-card img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* GOLD OUTLINE GLOW */
.hero-image-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f5b301, transparent 40%);
  opacity: 0.35;
  z-index: -1;
}

/* BADGE ON IMAGE */
.image-badge {
  position: absolute;
  bottom: 18px;
  right: -20px;
  background: #0b1220;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-badge strong {
  color: #f5b301;
  font-weight: 600;
}

.hero,
.banner-section,
.hero-grid,
.hero-image-wrap {
  overflow: visible !important;
}



/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}

.dark {
  background: #0b1220;
}

.light {
  background: #f7f8fc;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.dark-text {
  color: #0b1220;
}

/* ================= CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #121b33;
  padding: 30px;
  border-radius: 18px;
}

.card h4 {
  margin-bottom: 10px;
  color: #f5b301;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* ================= PROCESS ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.step {
  background: #fff;
  color: #0b1220;
  padding: 30px;
  border-radius: 18px;
}

.step span {
  font-size: 28px;
  font-weight: 700;
  color: #f5b301;
}

/* ================= CTA ================= */
.cta {
  background: #121b33;
  text-align: center;
  padding: 80px 0;
}

.cta p {
  margin: 15px 0 30px;
  color: #cbd5f0;
}

/* ================= FOOTER ================= */
.footer {
  background: #13124B;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer a {
  color: #cbd5f0;
  text-decoration: none;
}

.footer ul {
  list-style: none;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* ================= DESKTOP ================= */
@media(min-width:992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .hero h1 {
    font-size: 52px;
  }
}


@media(max-width:991px) {

  body.menu-open {
    position: fixed;
    width: 100%;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at top, #1b2540, #0b1220);
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 120px;
    overflow-y: auto;
    /* 🔥 IMPORTANT */
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    width: 100%;
  }

  .nav ul li a {
    font-size: 18px;
  }

  /* CTA inside mobile menu */
  .nav .mobile-cta {
    margin-top: 40px;
  }

}

.mobile-cta {
  display: none;
  background: #f5b301;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}


@media(max-width:991px) {

  .header-btn {
    display: none;
  }

  .mobile-cta {
    display: block;
    margin-top: 40px;
    text-align: center;

  }

}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.hero h1 span {
  color: #f5b301;
  font-weight: 700;
}

/* ================= LOGO SLIDER ================= */



.logo-strip-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9fb0d9;
  margin-bottom: 35px;
}

/* SLIDER */
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}



/* HIGHLIGHTED LOGO */
.logo.highlight {
  background: #1b2540;
  color: #f5b301;
  font-weight: 600;
}


/* ANIMATION */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= PHILOSOPHY SECTION ================= */

.philosophy-section {
  padding: 120px 0;
  background: radial-gradient(circle at top left, #1b2540, #0b1220);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.section-eyebrow {
  font-size: 30px;
  letter-spacing: 2px;
  color: #f5b301;
  margin-bottom: 18px;
  display: inline-block;
}

.philosophy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 25px;
}

.philosophy-content h2 span {
  color: #f5b301;
}

.philosophy-content p {
  color: #cbd5f0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 560px;
}

/* QUOTE */
.philosophy-content blockquote {
  margin: 35px 0;
  padding-left: 22px;
  border-left: 3px solid #f5b301;
  font-style: italic;
  color: #ffffff;
  font-size: 17px;
  max-width: 520px;
}

/* BUTTON */
.philosophy-btn {
  margin-top: 10px;
  box-shadow: 0 10px 40px rgba(245, 179, 1, 0.35);
}

/* RIGHT VALUES */
.philosophy-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #f5b301;
  margin-bottom: 10px;
}

.value-card p {
  color: #cbd5f0;
  font-size: 14px;
  line-height: 1.6;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

@media(max-width:991px) {

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .philosophy-content h2 {
    font-size: 36px;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
  }
}


/* ================= PROBLEM SECTION ================= */

.problem-section {
  padding: 120px 0;
  background: #f7f8fc;
  text-align: center;
}

.problem-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a017;
  display: inline-block;
  margin-bottom: 16px;
}

.problem-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  color: #0b1220;
  max-width: 760px;
  margin: 0 auto 20px;
}

.problem-subtitle {
  color: #4a5a7a;
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* CARDS */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.problem-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(15, 30, 80, 0.08);
  border: 1px solid rgba(15, 30, 80, 0.06);
  transition: 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(15, 30, 80, 0.12);
}

.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff4df;
  color: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.problem-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #0b1220;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 15px;
  color: #4a5a7a;
  line-height: 1.6;
}

/* CTA */
.problem-cta {
  text-align: center;
}

@media(max-width:991px) {

  .problem-title {
    font-size: 34px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* ================= SOLUTION SECTION ================= */

.solution-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
  text-align: center;
}

.solution-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 16px;
}

.solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.solution-title span {
  color: #f5b301;
}

.solution-subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #cbd5f0;
  line-height: 1.6;
}

/* GRID */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* CARD BASE */
.solution-card {
  padding: 40px 36px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* GENERIC CARD */
.solution-card.generic {
  border-color: rgba(255, 80, 80, 0.35);
}

.solution-card.generic h4 {
  color: #fff;
}

/* LEOSUTRA CARD */
.solution-card.leosutra {
  border-left: 4px solid #f5b301;
}

.solution-card.leosutra h4 {
  color: #f5b301;
}

/* HEADINGS */
.solution-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 22px;
}

/* LIST */
.solution-card ul {
  list-style: none;
  padding: 0;
}

.solution-card li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #cbd5f0;
}

/* ICONS */
.solution-card.generic li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ff5b5b;
  font-weight: 600;
}

.solution-card.leosutra li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5b301;
  font-weight: 600;
}

/* CTA */
.solution-cta {
  text-align: center;
}

@media(max-width:991px) {

  .solution-title {
    font-size: 34px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

}


/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 120px 0;
  background: #f7f8fc;
  text-align: center;
}

.process-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a017;
  display: inline-block;
  margin-bottom: 16px;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  color: #0b1220;
  margin-bottom: 18px;
}

.process-title span {
  color: #d4a017;
}

.process-subtitle {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #4a5a7a;
  line-height: 1.6;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}

/* CARD */
.process-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 48px 34px 38px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(15, 30, 80, 0.08);
  border: 1px solid rgba(15, 30, 80, 0.06);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: #d4a017;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* ICON */
.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff4df;
  color: #d4a017;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* TEXT */
.process-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #0b1220;
  margin-bottom: 6px;
}

.process-tag {
  display: block;
  font-size: 14px;
  color: #d4a017;
  margin-bottom: 18px;
}

/* LIST */
.process-card ul {
  list-style: none;
  padding: 0;
}

.process-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4a5a7a;
  line-height: 1.6;
}

.process-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a017;
  font-size: 18px;
}

/* FOOTER */
.process-footer-text {
  font-size: 16px;
  color: #4a5a7a;
  margin-bottom: 18px;
}

.process-cta {
  text-align: center;
}

@media(max-width:991px) {

  .process-title {
    font-size: 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

}


/* ================= ENTERPRISE SECTION ================= */

.enterprise-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CARD */
.enterprise-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 42px 36px;
  border: 1px solid rgba(245, 179, 1, 0.35);
}

.enterprise-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 30px;
}

.enterprise-card h4 span {
  color: #f5b301;
}

/* STATS */
.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #f5b301;
}

.stat p {
  margin-top: 6px;
  font-size: 14px;
  color: #cbd5f0;
}

/* RIGHT CONTENT */
.enterprise-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 16px;
}

.enterprise-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.enterprise-content h2 span {
  color: #f5b301;
}

.enterprise-content p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f0;
  margin-bottom: 40px;
}

/* LIST */
.enterprise-list {
  list-style: none;
  padding: 0;
}

.enterprise-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.enterprise-list .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.12);
  color: #f5b301;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.enterprise-list h5 {
  font-size: 17px;
  margin-bottom: 4px;
}

.enterprise-list p {
  font-size: 14px;
  color: #cbd5f0;
  line-height: 1.6;
}

@media(max-width:991px) {

  .enterprise-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .enterprise-content h2 {
    font-size: 34px;
  }

}

/* ================= METRICS SECTION ================= */

.metrics-section {
  padding: 120px 0;
  background: #f7f8fc;
  text-align: center;
}

.metrics-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a017;
  display: inline-block;
  margin-bottom: 16px;
}

.metrics-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #0b1220;
  margin-bottom: 16px;
}

.metrics-subtitle {
  font-size: 17px;
  color: #4a5a7a;
  margin-bottom: 40px;
}

/* TOGGLE */
.metrics-toggle {
  display: inline-flex;
  background: #eef0f6;
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 60px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  color: #4a5a7a;
  transition: 0.3s;
}

.toggle-btn.active {
  background: #d4a017;
  color: #000;
  font-weight: 600;
}

/* CARDS */
.metrics-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.metric-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 26px;
  box-shadow: 0 20px 50px rgba(15, 30, 80, 0.08);
  border: 1px solid rgba(15, 30, 80, 0.06);
  animation: fadeUp .4s ease;
}

.metric-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #d4a017;
}

.metric-card h4 {
  font-size: 16px;
  margin: 10px 0 6px;
  color: #0b1220;
}

.metric-card p {
  font-size: 14px;
  color: #4a5a7a;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
.metrics-footer {
  font-size: 16px;
  color: #4a5a7a;
  margin-bottom: 18px;
}

@media(max-width:991px) {
  .metrics-title {
    font-size: 34px;
  }

  .metrics-cards {
    grid-template-columns: 1fr;
  }
}


/* ================= EXPERTISE SECTION ================= */

.expertise-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
  text-align: center;
}

.expertise-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 16px;
}

.expertise-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.expertise-title span {
  color: #f5b301;
}

.expertise-subtitle {
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #cbd5f0;
  line-height: 1.6;
}

/* GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}

/* CARD */
.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 46px 34px 42px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
}

/* ICON */
.expertise-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(245, 179, 1, 0.15);
  color: #f5b301;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

/* TEXT */
.expertise-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 15px;
  color: #cbd5f0;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */
.expertise-card ul {
  list-style: none;
  padding: 0;
}

.expertise-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5f0;
}

.expertise-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5b301;
  font-size: 18px;
}

/* CTA */
.expertise-cta {
  text-align: center;
}

@media(max-width:991px) {

  .expertise-title {
    font-size: 34px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials-section {
  padding: 120px 0;
  background: #f7f8fc;
  text-align: center;
}

.testimonials-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a017;
  display: inline-block;
  margin-bottom: 16px;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #0b1220;
  margin-bottom: 70px;
}

.testimonials-title span {
  color: #d4a017;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 60px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 42px 38px;
  text-align: left;
  box-shadow: 0 30px 70px rgba(15, 30, 80, 0.08);
  border: 1px solid rgba(15, 30, 80, 0.06);
}

/* STARS */
.stars {
  color: #d4a017;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* QUOTE */
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #0b1220;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* PROFILE */
.testimonial-profile {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-profile h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.role {
  font-size: 14px;
  color: #4a5a7a;
}

.meta {
  font-size: 13px;
  color: #d4a017;
}

/* DIVIDER */
.testimonial-card hr {
  border: none;
  height: 1px;
  background: #e5e7ef;
  margin: 20px 0 14px;
}

/* CLIENT TYPE */
.client-type {
  font-size: 12px;
  letter-spacing: 1px;
  color: #4a5a7a;
}

/* CTA */
.testimonials-cta {
  text-align: center;
}

@media(max-width:991px) {

  .testimonials-title {
    font-size: 34px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

/* ================= INDIA EXPERTISE SECTION ================= */

.india-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
}

.india-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.india-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 16px;
}

.india-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.india-title span {
  color: #f5b301;
}

.india-intro {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f0;
  margin-bottom: 40px;
}

/* FEATURES */
.india-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.india-feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.15);
  color: #f5b301;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.india-feature h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.india-feature p {
  font-size: 14px;
  color: #cbd5f0;
  line-height: 1.6;
}

/* RIGHT CARD */
.india-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 44px 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.india-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 28px;
}

/* STATS */
.india-stats {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.india-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #cbd5f0;
}

.india-stats strong {
  color: #f5b301;
  font-weight: 600;
}

/* CTA */
.india-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
}

@media(max-width:991px) {

  .india-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .india-title {
    font-size: 34px;
  }

}

/* ================= WISDOM FRAMEWORK ================= */

.framework-section {
  padding: 120px 0;
  background: #f7f8fc;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CARD */
.framework-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 30px 70px rgba(15, 30, 80, 0.08);
  border: 1px solid rgba(15, 30, 80, 0.06);
}

.framework-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 30px;
  color: #0b1220;
}

/* STEPS */
.framework-step {
  display: flex;
  gap: 16px;
  background: #f1f3f8;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d4a017;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.framework-step h4 {
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  color: #0b1220;
}

.framework-step p {
  font-size: 14px;
  color: #4a5a7a;
}

/* RIGHT CONTENT */
.framework-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a017;
  display: inline-block;
  margin-bottom: 16px;
}

.framework-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  color: #0b1220;
  margin-bottom: 20px;
}

.framework-title span {
  color: #d4a017;
}

.framework-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5a7a;
  margin-bottom: 30px;
  max-width: 520px;
}

/* BULLETS */
.framework-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.framework-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4a5a7a;
}

.framework-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a017;
  font-size: 18px;
}

@media(max-width:991px) {

  .framework-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .framework-title {
    font-size: 34px;
  }

}


/* ================= PRICING SECTION ================= */

.pricing-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
  text-align: center;
}

.pricing-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pricing-title span {
  color: #f5b301;
}

.pricing-subtitle {
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #cbd5f0;
  line-height: 1.6;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 44px 36px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.pricing-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 6px;
}

.plan-note {
  font-size: 14px;
  color: #cbd5f0;
  margin-bottom: 18px;
}

/* PRICE */
.price {
  margin: 20px 0;
}

.price strong {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #f5b301;
}

.price span {
  font-size: 14px;
  color: #cbd5f0;
}

.price.custom strong {
  font-size: 32px;
}

/* DESCRIPTION */
.plan-desc {
  font-size: 15px;
  color: #cbd5f0;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* FEATURES */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #cbd5f0;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5b301;
  font-weight: 600;
}

/* POPULAR */
.pricing-card.popular {
  border: 2px solid #f5b301;
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5b301;
  color: #000;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

@media(max-width:991px) {

  .pricing-title {
    font-size: 34px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-card.popular {
    transform: none;
  }

}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 120px 0;
  background: #f6f7fb;
  text-align: center;
}

.faq-eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4a11e;
  display: inline-block;
  margin-bottom: 14px;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 60px;
  color: #0b1220;
}

/* FAQ LIST */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #0b1220;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-question .icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid #d4a11e;
  border-bottom: 2px solid #d4a11e;
  transform: rotate(45deg);
  transition: .3s;
}

/* ANSWER */
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  transition: max-height .35s ease, padding .35s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  padding: 0 28px 24px;
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(-135deg);
}

/* FOOTER */
.faq-footer-text {
  margin-top: 40px;
  font-size: 16px;
  color: #374151;
}

.faq-cta {
  margin-top: 20px;
  display: inline-block;
}

/* ================= RESOURCES ================= */

.resources-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1b2540, #0b1220);
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f5b301;
  display: inline-block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.section-title span {
  color: #f5b301;
}

.section-subtitle {
  color: #cbd5f0;
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* GRID */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.resource-card {
  background: #121b33;
  padding: 32px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: .35s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* META */
.resource-meta {
  font-size: 13px;
  color: #f5b301;
  display: block;
  margin-bottom: 14px;
}

/* TITLE */
.resource-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}

/* TEXT */
.resource-card p {
  color: #cbd5f0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LINK */
.resource-link {
  color: #f5b301;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.resource-link:hover {
  text-decoration: underline;
}

/* ================= FINAL CTA ================= */

.final-cta {
  padding: 120px 0;
  background: #f7f8fc;
  text-align: center;
}

/* Eyebrow */
.cta-eyebrow {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 14px;
}

/* Title */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #0b1220;
  margin-bottom: 18px;
}

.cta-title span {
  color: #d4a017;
}

/* Subtitle */
.cta-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #4a5680;
  line-height: 1.7;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5b301, #d4a017);
  color: #000;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(213, 165, 20, 0.35);
  transition: .35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(213, 165, 20, 0.45);
}

/* Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.cta-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #d4a017;
  margin-bottom: 6px;
}

.cta-stat p {
  font-size: 14px;
  color: #4a5680;
}

/* Mobile */
@media(max-width:768px) {
  .cta-title {
    font-size: 36px;
  }

  .cta-stats {
    flex-direction: column;
    gap: 28px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #13124B;
  padding: 100px 0 30px;
  color: #cbd5f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 42px;
}

.footer-logo h3 {
  font-family: 'Playfair Display', serif;
  color: #f5b301;
  font-size: 22px;
}

.footer-tagline {
  margin: 10px 0;
  font-size: 14px;
  color: #9fb0e0;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 380px;
}

/* SOCIAL */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #121b33;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5f0;
  font-size: 14px;
  transition: .3s;
}

.footer-social a:hover {
  background: #f5b301;
  color: #000;
}

/* COLUMNS */
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cbd5f0;
  font-size: 14px;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f5b301;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9fb0e0;
}

/* MOBILE */
@media(max-width:992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
    gap: 10px;
    justify-content: center;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #f5b301, #d4a017);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(213, 165, 20, 0.35);
  transition: 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 55px rgba(213, 165, 20, 0.5);
}

.btn-outline {
  border: 1.5px solid #f5b301;
  color: #f5b301;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
}

.btn-outline:hover {
  background: rgba(245, 179, 1, 0.1);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* Order fix */
  .hero-actions .btn-primary {
    order: 1;
  }

  .hero-actions .btn-outline {
    order: 2;
  }
}


/* ===============================
   ABOUT HERO
================================ */
.about-hero {
  padding: 140px 0 100px;
  background: var(--primary-radial-gradient)
}

.badge {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin: 20px 0;
}

.about-hero span {
  color: #EFB005;
}

.about-hero p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 18px;
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 100px 0;
}

.section.dark {
  background: #19233D
}

.section.light {
  background: radial-gradient(circle at top left, #1b2540, #0b1220);
  ;
  color: var(--dark-text);
}

.section-eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 16px 0 20px;
}

.section-title span {
  color: var(--gold);
}

.section-text {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.dark-text {
  color: var(--dark-text);
}

/* ===============================
   PHILOSOPHY
================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-quote {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: #10182e;
  padding: 30px;
  border-radius: var(--radius);
}

/* ===============================
   MISSION / VISION
================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mv-card {
  background: #10182e;
  padding: 40px;
  border-radius: var(--radius);
}

/* ===============================
   FOUNDER
================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}



.founder-points {
  list-style: none;
  margin: 20px 0;
}

.founder-points li {
  margin-bottom: 8px;
}

/* ===============================
   WHY LEOSUTRA
================================ */
.center {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* ===============================
   FINAL CTA
================================ */
.final-cta {
  padding: 120px 0;
  background: radial-gradient(circle, var(--navy), #050914);
  text-align: center;
}



.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 20px 0 40px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:900px) {

  .about-grid,
  .mission-vision-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }
}

.section-eyebrow {
  color: #f4b400;
  /* LEOSUTRA gold */
  font-size: 30px;
  margin-left: 80px;
  margin-bottom: 8px;
}


/* IMAGE CONTAINER */
.founder-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  /* control size */
  aspect-ratio: 3 / 4;
  /* rectangle (portrait) */
  border-radius: 16px;
  /* premium soft corners */
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(244, 180, 0, 0.25),
      rgba(11, 18, 32, 0.9));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* IMAGE */
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps image perfect */
  object-position: center;
  display: block;
}

/* GOLD BORDER ACCENT */
.founder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid rgba(244, 180, 0, 0.45);
  pointer-events: none;
}

/* IMAGE CONTAINER (already shared, keep this) */
.founder-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(244, 180, 0, 0.25),
      rgba(11, 18, 32, 0.9));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* IMAGE */
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GOLD BORDER */
.founder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid rgba(244, 180, 0, 0.45);
  pointer-events: none;
}

/* OVERLAY */
.founder-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;

  background: linear-gradient(to top,
      rgba(11, 18, 32, 0.95),
      rgba(11, 18, 32, 0.55),
      transparent);

  text-align: left;
}

/* NAME */
.founder-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #f4b400;
  margin-bottom: 4px;
}

/* TITLE */
.founder-overlay span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #d1d7ea;
  text-transform: uppercase;
}

/* HOVER (SUBTLE LUXURY) */
.founder-image:hover img {
  transform: scale(1.03);
  transition: 0.6s ease;
}

/* ================= WHY LEOSUTRA ================= */

.why-leosutra-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 38px 34px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  backdrop-filter: blur(6px);
}

/* Gold top accent */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f3c969);
  border-radius: 2px;
}

/* Heading */
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #f3c969;
  margin-bottom: 16px;
}

/* Text */
.why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #d1d7e0;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(243, 201, 105, 0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .why-leosutra-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 30px 26px;
  }
}

.section-text {
  max-width: 760px;
  margin: 0 auto 18px;
}

.section-text strong {
  color: #f3c969;
  font-weight: 500;
}


/* ================= OUR VALUES SECTION ================= */

.values-section {
  background: #f7f9fc;
  padding: 100px 0;
  text-align: center;
}

.values-eyebrow {
  display: block;
  color: #d4a017;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.values-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #0b1220;
  line-height: 1.25;
}

.values-title span {
  color: #0b1220;
}

.values-subtext {
  max-width: 760px;
  margin: 20px auto 70px;
  font-size: 16px;
  color: #5a6475;
  line-height: 1.7;
}

/* Grid */
.values-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* Cards */
.values-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 32px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
  transition: all .35s ease;
  position: relative;
}

/* Hover */
.values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(212, 160, 23, .18);
}

/* Icon Badge */
.values-icon {
  width: 44px;
  height: 44px;
  background: #fff4dc;
  color: #d4a017;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 600;
}

/* Headings */
.values-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #0b1220;
  margin-bottom: 10px;
}

/* Text */
.values-card p {
  font-size: 15.5px;
  color: #5a6475;
  line-height: 1.6;
}

/* Mobile */
@media(max-width:768px) {
  .values-section {
    padding: 70px 0;
  }

  .values-title {
    font-size: 34px;
  }
}

/* ================= MISSION & VISION (WHITE THEME) ================= */

.mv-white-section {
  background: #F7F8FC;
  padding: 100px 0;
}

.mv-white-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* Card */
.mv-white-card {
  background: #ffffff;
  padding: 48px 42px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
  transition: all .35s ease;
  position: relative;
}

/* Hover effect */
.mv-white-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(212, 160, 23, .18);
}

/* Eyebrow */
.mv-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #E8AB09;
}

/* Text */
.mv-white-card p {
  font-size: 19px;
  line-height: 1.75;
  color: #0b1220;
}

/* Mobile */
@media(max-width:768px) {
  .mv-white-section {
    padding: 70px 0;
  }

  .mv-white-card {
    padding: 38px 28px;
  }
}


/* ================= TRUST STRIP SLIDER ================= */

.trust-strip {
  padding: 70px 0;
  background: radial-gradient(circle at top, #121b33, #060b17);
  text-align: center;
  overflow: hidden;
}

.trust-strip__title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9fb0d9;
  margin-bottom: 35px;
}

/* SLIDER */
.trust-strip__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.trust-strip__track {
  display: flex;
  width: max-content;
  animation: trustScrollLeft 35s linear infinite;
}

/* LOGO BOX */
.trust-strip__logo {
  min-width: 160px;
  margin: 0 18px;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

/* HIGHLIGHTED LOGO */
.trust-strip__logo.is-highlight {
  background: #1b2540;
  color: #f5b301;
  font-weight: 600;
}

/* HOVER */
.trust-strip__logo:hover {
  color: #EFAF05;
  background: #1b2540;
}

/* ANIMATION */
@keyframes trustScrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= SERVICES PAGE ================= */

.services-hero {
  background: var(--primary-radial-gradient);
  padding: 110px 0;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-gold);
}

.hero-subtext {
  max-width: 720px;
  margin: 25px auto 0;
  color: var(--text-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.service-card p {
  color: #475569;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  margin-bottom: 8px;
  color: #0f172a;
}

/* ================= WHAT WE DO EYEBROW ================= */

.whatwedo-eyebrow{
  font-size: 26px;
  letter-spacing: 2px;
  margin-left: 500px;
  color: #f5b301;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1024px){
  .whatwedo-eyebrow{
    font-size: 24px;
    margin-left: 80px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .whatwedo-eyebrow{
    font-size: 20px;
    margin-left: 100px;
    letter-spacing: 1.5px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: var(--primary-radial-gradient);
  padding: 120px 0;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Info */
.contact-info .contact-box {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.contact-box i {
  font-size: 20px;
  color: var(--primary-gold);
  margin-top: 4px;
}

.contact-box i{
  font-size: 24px;
  color: #EEAF05; /* yellow / gold */
  min-width: 28px;
}
/* Form Card */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}


/* Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

/* Mobile */
@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.35s ease;
}

/* HAMBURGER */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE = CLOSE ICON */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ================= MOBILE MENU ================= */
@media(max-width:991px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: #0b1220;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.4s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ================= MOBILE MENU ================= */
@media(max-width:991px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #1b2540, #0b1220);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transform: translateX(100%);
    transition: 0.45s ease;
    z-index: 1100;
  }

  .nav.active {
    transform: translateX(0);
  }

  /* LOGO AREA */
  .mobile-menu-header {
    margin-bottom: 50px;
  }

  .mobile-menu-header img {
    height: 52px;
    width: auto;
  }

  /* MENU LIST */
  .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .nav ul li a {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .nav ul li a:hover {
    color: #f4b400;
  }

  /* CTA BUTTON */
  .mobile-cta {
    margin-top: 50px;
  }

  .mobile-cta .btn-primary {
    width: 240px;
    text-align: center;
    padding: 14px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f4b400, #d89b00);
    color: #0b1220;
    font-weight: 600;
  }
}

/* 📱 Mobile */
@media (max-width: 576px) {
  .btn-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* 💻 Large Screens */
@media (min-width: 1200px) {
  .btn-primary {
    font-size: 17px;
    padding: 16px 36px;
  }
}

/* CTA container */
.consult-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 16px;
}

/* Button */
.consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  width: auto;
  max-width: 420px;
  /* ✅ desktop control */

  background: #f2b705;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;

  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(242, 183, 5, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(242, 183, 5, 0.6);
  }
}

/* Tap */
.consult-btn:active {
  transform: scale(0.97);
}

/* 📱 Mobile fix */
@media (max-width: 480px) {
  .consult-btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* Hide by default (desktop) */
.hero-image {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
  }
}


.banner-section {
  height: 650px;
  background-image: url("./assets/banner2.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}


@media (max-width: 768px) {
  .banner-section {
    display: none;
    /* ❌ REMOVE */
  }
}



/* ================= FLOATING BUTTONS ================= */

.fab-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);

  z-index: 99999 !important;
  /* 🔥 Maximum visibility */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.1);
}

/* CALL — LEFT */
.fab-call {
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #f5b301, #d4a017);
  color: #000;
}

/* WHATSAPP — RIGHT */
.fab-whatsapp {
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
}

/* Hide FABs when mobile menu is open */
body.menu-open .fab-btn {
  opacity: 0;
  pointer-events: none;
}

/* Ensure sticky header on mobile matches desktop behavior */
@media (max-width: 991px) {
  .main-header {
    position: fixed;
    /* 🔥 Force fixed on mobile */
    top: 0;
    width: 100%;
    z-index: 1200;
    backdrop-filter: blur(10px);
    /* Ensure no overflow issues break stickiness */
  }

  /* Add padding to body to prevent content hiding behind fixed header */
  body {
    padding-top: 80px;
  }
}

/* service detail */

/* ================= DETAILED SERVICES (DARK / GLASS) ================= */

.detailed-services{
  background: radial-gradient(
      circle at top right,
      rgba(255, 200, 80, 0.08),
      transparent 45%
    ),
    linear-gradient(180deg, #0b1224 0%, #060b16 100%);
  padding: 110px 0;
}

/* Eyebrow */
.detailed-services .section-eyebrow{
  color: #f4b400;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Heading */


.detailed-services .section-title span{
  color: #f4b400;
}

/* Grid */
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 70px;
}

/* Glass Cards */
.service-card{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* Card Titles */
.service-card h3{
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

/* Selective Tag */
.service-card .tag{
  font-size: 12px;
  color: #f4b400;
  font-weight: 600;
  margin-left: 8px;
}

/* Description */
.service-card p{
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* List */
.service-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li{
  color: #e5e7eb;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

/* Gold Tick */
.service-card ul li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: #f4b400;
  font-size: 20px;
  top: -2px;
}
/* ================= RESPONSIVE SECTION HEADING ================= */



/* Desktop */
.section-title{
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 24px;
}

/* Highlight line */
.section-title span{
  display: inline-block;
}

/* Tablet */
@media (max-width: 1024px){
  .section-title{
    font-size: 40px;
    line-height: 1.3;
  }
}

/* Mobile */
@media (max-width: 768px){

  

  .section-title{
    font-size: 32px;
    line-height: 1.3;
  }

  .section-title span{
    display: block;   /* clean controlled line break */
  }
}

/* Small Mobile */
@media (max-width: 480px){
  .section-title{
    font-size: 28px;
    line-height: 1.25;
  }
}


/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px){

  .detailed-services.section-title dark-text{
    padding: 80px 0;
  }

  .detailed-services .section-title{
    font-size: 34px;
    text-align: left;
  }

  .service-grid{
    margin-top: 50px;
  }

  .service-card{
    padding: 26px;
  }

  .service-card h3{
    font-size: 20px;
  }
}


/* ================= WHITE APPROACH SECTION ================= */

.white-approach{
  background:#f9fafc;
  padding:100px 0;
}

.white-approach .section-eyebrow a{
  color:#F0B004;
  margin-left: 140px;
  /* Desktop (default) */

  font-size: 28px;
  letter-spacing: 2.5px;
  color: #f5b301;
  margin-bottom: 18px;
  display: inline-block;
  text-transform: uppercase;
}

/* Large Desktop */
@media (min-width: 1400px){
  .detailed-eyebrow{
    font-size: 30px;
    letter-spacing: 3px;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .detailed-eyebrow{
    font-size: 22px;
    letter-spacing: 2px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .detailed-eyebrow{
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}



.white-approach .section-title{
  color:#0b1b33;
}

.white-approach .section-title span{
  color:#0b1b33; /* premium gold accent */
}

.white-approach .section-text{
  color:#0b1b33;
  max-width:520px;
  line-height:1.7;
}

/* VALUE CARDS */

.white-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
}

.white-cards .value-card{
  background:#ffffff;
  border-radius:18px;
  padding:28px;
  box-shadow:0 20px 50px rgba(15, 23, 42, 0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.white-cards .value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(15, 23, 42, 0.12);
}

.white-cards .value-card h4{
  font-family:'Playfair Display', serif;
  font-size:20px;
  margin-bottom:8px;
  color:#F1B004;
}

.white-cards .value-card p{
  font-size:14.5px;
  color:#0b1b33;
  line-height:1.6;
}

/* ================= MOBILE FIX: OUR APPROACH ================= */
@media (max-width: 768px){

  /* Reduce top gap */
  .white-approach{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* OUR APPROACH label */
  .white-approach .section-eyebrow a{
    text-align: left;
    margin-left: 0;
    padding-left: 2px;
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  /* Main heading */
  .white-approach .section-title{
    text-align: left;
    font-size: 34px;
    line-height: 1.25;
  }

  .white-approach .section-title span{
    display: block;   /* forces clean line break */
  }

  /* Paragraphs */
  .white-approach .section-text{
    text-align: left;
    font-size: 15px;
  }

  /* Grid stack */
  .white-approach .about-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= SERVICES EYEBROW ================= */

.services-eyebrow{
  font-size: 30px;
  letter-spacing: 2px;
  color: #f5b301;
  margin-bottom: 18px;
  display: inline-block;
}

/* Tablet */
@media (max-width: 1024px){
  .services-eyebrow{
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .services-eyebrow{
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}

/* ================= DETAILED SERVICES EYEBROW ================= */

/* Desktop (default) */
.detailed-eyebrow{
  font-size: 28px;
  letter-spacing: 2.5px;
  color: #f5b301;
  margin-bottom: 18px;
  display: inline-block;
  text-transform: uppercase;
}

/* Large Desktop */
@media (min-width: 1400px){
  .detailed-eyebrow{
    font-size: 30px;
    letter-spacing: 3px;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .detailed-eyebrow{
    font-size: 22px;
    letter-spacing: 2px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .detailed-eyebrow{
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}

/* ================= CONTACT HERO TITLE ================= */

/* Desktop (default) */
.contact-hero-title{
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  color:#EEAF05;
}

.contact-hero-title span{
  display: inline-block;
}

/* Large Desktop */
@media (min-width: 1400px){
  .contact-hero-title{
    font-size: 62px;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .contact-hero-title{
    font-size: 46px;
    line-height: 1.2;
  }
}

/* Mobile */
@media (max-width: 768px){
  .contact-hero-title{
    font-size: 34px;
    line-height: 1.25;
  }

  .contact-hero-title span{
    display: block; /* clean line break */
  }
}

/* Small Mobile */
@media (max-width: 480px){
  .contact-hero-title{
    font-size: 28px;
    line-height: 1.25;
  }
}

.banner-section {
  height: 650px;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: flex-end;  /* push content to right */
  padding: 0 8%;
  position: relative;
}
.banner-content {
  position: relative;
  max-width: 620px;
  color: #fff;
  z-index: 2;

  text-align: right;
  margin-top: 40px; /* pulls text slightly down */
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.60;
  margin-bottom: 18px;
}

.banner-content h1 span {
  color: #F1B103;
}
.banner-content p {
  font-size: 25px;
  line-height: 1.6;
  opacity: 0.95;
  margin-right: 90px;
}

@media (max-width: 768px) {
  .banner-section {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero-stats {
    margin-bottom: 12px;   /* reduce space under stats */
  }

  .hero-content {
    gap: 12px;             /* controls spacing between sections */
  }

  .hero-image-wrap {
    margin-top: 0;        /* remove extra top space */
  }

}

@media (max-width: 768px) {

  .philosophy-section {
    padding-top: 40px;   /* reduce top space */
    padding-bottom: 40px;
  }

  .philosophy-content {
    gap: 16px;           /* tighten vertical spacing */
  }

  .section-eyebrow {
    margin-bottom: 8px;  /* REDUCE this (key fix) */
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  .problem-section {
    padding-top: 40px;     /* reduce top space */
    padding-bottom: 40px;  /* reduce bottom space */
  }
  .solution-section {
     padding-top: 40px;     /* reduce top space */
    padding-bottom: 40px; 

  }
  .process-section {
    padding-top: 40px;
    padding-bottom: 40px;

  }
  .enterprise-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .metrics-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .expertise-section{
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonials-section {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonial-card {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .india-section {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .framework-section {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .pricing-section {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .faq-section {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .final-cta {
     padding-top: 40px;
    padding-bottom: 40px;
  }
  .site-footer {
     
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .services-hero {
    padding-top: 40px;
    padding-bottom: 40px;

  }
  .section.light {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section white-approach {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section detailed-services dark {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mv-white-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section light {
    padding-top: 40px;
    padding-bottom: 40px;
  }

}


.detailed-services{
  padding: 100px 0;
  background: #0e0f13;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card{
  background: linear-gradient(180deg,#151720,#0f1117);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,215,0,0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.service-img{
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: 0.4s ease;
}

.service-card:hover img{
  transform: scale(1.05);
}

.service-card h3{
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p{
  color: #b9bcc6;
  font-size: 14.5px;
  line-height: 1.6;
}

.service-card ul{
  margin-top: 15px;
  padding-left: 18px;
}

.service-card ul li{
  color: #cfd2db;
  font-size: 13.8px;
  margin-bottom: 6px;
}


/* ================= MOBILE SPACING FIX ================= */
@media (max-width: 768px) {

  .section {
    padding: 50px 16px;   /* was 100px */
  }

  .section.detailed-services {
    padding-top: 20px;
    padding-bottom: 40px;
  }

}
