/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
:root {
  --pc-blue: #69b7ff;
  --pc-purple: #c57bff;
  --pc-body: #d8dde6;
}
/* Body */
body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}
.container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= HEADER ================= */
header {
  background: #111;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1512px;
  margin: 0 auto;
}
.logo img {
  height: 42px;
}

/* Nav */
nav ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111;
  flex-direction: column;
  display: none;
  list-style: none;
  border-top: 1px solid #333;
}
nav ul.show {
  display: flex;
}
nav ul li {
  border-bottom: 1px solid #333;
  display: none;
}
nav ul li a {
  display: block;
  padding: 15px 20px;
  color: white;
  font-weight: 500;
}
nav ul li a:hover {
  color: #00e0d6;
}

/* Dropdown */
.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}
.dropdown ul {
  background: #222;
  display: none;
  list-style: none;
}
.dropdown.active ul {
  display: block;
}
.dropdown ul li a {
  padding: 12px 20px;
}
.dropdown ul li a:hover {
  background: #00e0d6;
  color: #111;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger div {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Desktop Nav */
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
  nav {
    flex: 1;
  }
  nav ul {
    position: static;
    flex-direction: row;
    justify-content: center;
    display: flex;
    gap: 30px;
    background: none;
    border: none;
  }
  nav ul li {
    border: none;
    display: none;
  }
  nav ul li a {
    padding: 10px 0;
  }
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  padding: 32px 20px 50px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* text left, form right */
  align-items: center; /* vertically centers */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; /* centers whole section */
}

.hero-text h1 {
  font-family: "sora";
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
  flex: 1;
}
.hero-text .first-text {
  color: #77f2e4;
}
.hero-text .second-text {
  color: #d45bff;
}
.hero-text .tagline {
  font-size: 20px; /* desktop default */
  font-weight: 400;
  /* margin: 10px 0 20px; */
  color: #ddd; /* light gray, change if needed */
  max-width: 600px; /* keeps text readable */
}

/* CTA Button */
.hero-text .cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 16px 48px; /* bigger button */
  border-radius: 40px;
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
}

/* SEBI */
.sebi {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 26px; /* spacing below button */
  padding: 10px 4px;
  border-radius: 30px;
  width: fit-content;
}
.sebi img {
  width: 44.78px;
  height: 42.47px;
}

/* Hero Form */
.hero-form {
  border: 3px solid #77f2e4;
  background: #1f1f1f;
  padding: 40px;
  border-radius: 12px;
  max-width: 420px;
  min-width: 360px;
  min-height: 360px;
}
.hero-form h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-form input,
.hero-form textarea {
  border: 2px solid aqua;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #333;
  color: white;
  font-size: 14px;
}
.hero-form textarea {
  min-height: 100px;
  resize: none;
}
.submit-btn {
  border: 1px solid #00f0ff;
  display: block; /* makes it take full line */
  margin: 15px auto; /* centers it horizontally */
  padding: 12px 32px; /* size of button */
  width: auto; /* keeps button width to fit content */
  font-size: 20px;
  background: white; /* blue background */
  color: black; /* white text */
  border-radius: 21px;
  cursor: pointer;
}

.hero-form .sebi-note {
  font-size: 14px; /* desktop default */
  color: white; /* light gray */
  margin: 10px 0;
  text-align: center;
}

/* Hero Layout Desktop */
@media (min-width: 1025px) {
  .hero {
    padding: 150px 50px 50px;
  }
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .hero-text {
    flex: 1;
    max-width: 600px;
  }
  .hero-text h1 {
    font-size: 50px;
  }
  .hero-form {
    flex: 1;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text h1 {
    font-family: "sora";
    font-size: 32px; /* smaller text for mobile */
    line-height: 1.4;
    text-align: left; /* keep aligned left (change to center if you want centered) */
  }

  /* Hide Book a Call button on mobile */
  .hero-text .cta {
    display: none;
  }

  .hero-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  /* Order for mobile: Text → Form → SEBI */
  .hero-text .sebi {
    order: 3;
    align-self: flex-start; /* keep left aligned (change to center if needed) */
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .hero-text .tagline {
    font-size: 16px; /* smaller font for mobile */
    text-align: center; /* center align on small screens */
    /* padding: 0 15px; */
  }
}

@media (max-width: 768px) {
  .hero-form .sebi-note {
    /* font-weight: bold; */
    font-size: 12px;
    text-align: center; /* center align on small screens */
    padding: 0 1px;
  }
}

.returns-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.returns-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card style (both chart & text) */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Chart Box */
.chart-box h4 {
  font-size: 14px;
  margin-bottom: 30px;
  color: #777;
}

.bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
  min-height: 260px; /* chart height area */
}

.bar-item {
  text-align: center;
  position: relative;
}

.bar {
  width: 100px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 10px;
}

.bar.grey {
  background: #c9c9c9;
  height: 160px;
}

.bar.blue {
  background: linear-gradient(180deg, #73f1dd 0%, #4ac4ff 100%);
  height: 240px;
}

.value {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 26px;
  color: #000;
}

.bar-item p {
  font-weight: bold;
  font-size: 15px;
  color: #333;
  margin-top: 8px;
  line-height: 1.3;
}

.chart-box .footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

.chart-box .footer a {
  color: #666;
  text-decoration: underline;
}

/* Text Box */
.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  line-height: 1.4;
}

.text-box h2 .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  margin-left: 10px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #4facfe, #43e97b);
  border-radius: 2px;
  vertical-align: middle;
}

.text-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 420px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat span {
  font-size: 18px;
  color: #666;
}

.stat strong {
  padding-left: 3px;
  font-size: 18px;
  color: #287bff;
  font-weight: 700;
}

/* Desktop */
@media (min-width: 992px) {
  .returns-container {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Mobile/Tablet */
@media (max-width: 991px) {
  .returns-container {
    flex-direction: column;
    gap: 20px;
  }

  .bars {
    gap: 50px;
    min-height: 200px;
  }

  .bar {
    width: 70px;
  }

  .bar.grey {
    height: 120px;
    width: 100px;
  }

  .bar.blue {
    height: 200px;
    width: 120px;
  }

  .value {
    font-size: 20px;
  }

  .text-box h2 {
    font-size: 22px;
  }

  .stat strong {
    font-size: 20px;
  }
  .states-mob {
    display: none;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }
}
.glimpse-section {
  background: #fff;
  padding: 80px 20px;
}

.glimpse-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.glimpse-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #000;
}

.glimpse-section h2::before,
.glimpse-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #ff00cc);
}

.glimpse-section h2::before {
  right: 100%;
  margin-right: 15px;
}

.glimpse-section h2::after {
  left: 100%;
  margin-left: 15px;
}

/* Cards Grid */
.glimpse-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.glimpse-card {
  background: #0a0a0a;
  color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.glimpse-card h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
}

.glimpse-returns {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.glimpse-returns svg {
  width: 20px;
  height: 20px;
  fill: #00e68a;
  margin-right: 6px;
  flex-shrink: 0;
}

.glimpse-returns strong {
  font-size: 26px;
  font-weight: bold;
  color: #00e68a;
  margin-right: 8px;
}

.glimpse-returns span {
  font-size: 14px;
  font-weight: normal;
  color: #ccc;
}

/* Description */
.glimpse-section p {
  max-width: 800px;
  margin: 0 auto 45px;
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

/* Button */
.glimpse-section .btn {
  background: transparent;
  border: 1.5px solid #000;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* .glimpse-section .btn:hover {
  background: #000;
  color: #fff;
} */

/* Responsive CSS */
@media (max-width: 1199px) {
  .glimpse-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .glimpse-section {
    padding: 50px 15px;
  }
  .glimpse-section h2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .glimpse-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .glimpse-card {
    width: 100%;
  }
  .glimpse-section p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
/* ================= FOUNDER ================= */
.founder-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
}
.founder-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.founder-title {
  font-size: 32px;
  font-weight: 600;
  color: rgb(28, 28, 30);
}
.gradient-line {
  flex: 1;
  height: 8px;
  max-width: 230px;
  border-radius: 4px;
  background: linear-gradient(to right, #3ae0d9, #8e54e9, #ffb347, #ffcc33);
}
.founder-video-wrapper {
  max-width: 1122px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.founder-video-wrapper video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ================= PHILOSOPHY ================= */
* {
  box-sizing: border-box;
}

/* SECTION */
.philosophy-section {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* header with gradient lines */
.philosophy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.gradient-line {
  flex: 1;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(to right, #4facfe, #f093fb, #f6d365, #43e97b);
  max-width: 120px;
}
.philosophy-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 12px;
}

/* container grid (each .row will place text in col1 and icon in col2 on desktop) */
.philosophy-grid {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;

  /* tweak the three vars below to nudge alignment */
  --icon-col: 180px; /* width reserved for icon column */
  --icon-size: 80px; /* icon box size */
  --spine-offset: 40px; /* distance from right edge of container to vertical spine */
}

/* row shared styles (mobile default: stacked) */
.row {
  display: block;
  margin-bottom: 28px;
  position: relative;
}
.text h3 {
  color: #000;
  font-size: 18px;
  margin: 6px 0 8px;
}
.text p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* icon box */
.icon {
  margin-bottom: 12px;
  text-align: left;
} /* mobile: icon above text, left-aligned */
.icon-box {
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: calc(var(--icon-size) * 0.5);
  height: calc(var(--icon-size) * 0.5);
  display: block;
}

/* background colors for icons */
.icon-blue {
  background: #dbeafe;
}
.icon-purple {
  background: #f3e8ff;
}
.icon-orange {
  background: #fff1e6;
}
.icon-green {
  background: #e0f7f5;
}

/* button */
.philosophy-button {
  text-align: center;
  margin-top: 30px;
}
.view-more {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #111;
  border-radius: 25px;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* ------------------ DESKTOP (pixel-aligned grid) ------------------ */
@media (min-width: 1025px) {
  /* each row becomes a two-column grid: text | icon-column */
  .row {
    display: grid;
    grid-template-columns: 1fr var(--icon-col);
    column-gap: 24px;
    align-items: start;
    padding: 12px 0;
  }

  /* place icon into 2nd column, align to right edge of that column */
  .icon {
    grid-column: 2;
    align-self: start;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* push icon to the right edge of its column */
    position: relative;
    margin-bottom: 0;
  }

  .icon-box {
    /* reinforce size */
    width: var(--icon-size);
    height: var(--icon-size);
    flex: 0 0 var(--icon-size);
  }

  /* vertical spine placed inside the container at the correct column position */
  .philosophy-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 72px;
    left: calc(100% - var(--icon-col) + var(--spine-offset));
    width: 2px;
    background: #e6e6e6;
    border-radius: 2px;
  }
  /* .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(var(--icon-col) - var(--spine-offset));
    width: calc(var(--icon-col) - var(--spine-offset) - (var(--icon-size) / 2));
    height: 2px;
    background: #e6e6e6;
  } */

  /* center-left text alignment on desktop */
  .text {
    text-align: left;
  }
}

/* ------------------ MOBILE rules (keep icon above text) ------------------ */
@media (max-width: 1024px) {
  .philosophy-grid {
    padding-right: 0;
  }
  .row {
    display: block;
  }
  .icon {
    text-align: center;
  } /* center the icon horizontally on mobile */
  .icon-box {
    margin: 0 auto 12px auto;
  }
  .text {
    text-align: center;
  } /* matches your mobile screenshot where text is centered under icon */
  .icon::before {
    display: none;
  } /* hide connectors on mobile */
  .philosophy-grid::before {
    display: none;
  }
}

.pc-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px;
}
.pc-card {
  background: #111;
  border-radius: 28px;
  padding: 54px 64px 56px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  max-width: 960px;
  width: 100%;
}
.pc-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 32px;
}

/* Chart */
.pc-chart {
  position: relative;
  width: 720px;
  height: 340px;
  margin: 0 auto 48px;
}

/* Gradient Arc */
.pc-arc {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 560px;
  height: 280px;
  border-radius: 560px 560px 0 0;
  background: conic-gradient(
    from 180deg,
    #6fe4d1 0deg 252deg,
    /* 70% */ #6bb6f3 252deg,
    #edb168 276deg,
    #e4929f 300deg,
    #d45bff 360deg
  );
}

/* Arc glow shadow */
.pc-arc-shadow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 580px;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(90, 180, 255, 0.35) 0%,
    rgba(120, 90, 255, 0.25) 40%,
    rgba(0, 0, 0, 0) 80%
  );
  filter: blur(28px);
  z-index: -1;
}

/* Inner hub shadow */
.pc-hub {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 340px;
  height: 170px;
  border-radius: 340px 340px 0 0;
  background: radial-gradient(
    0px 80px at 50% 60%,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.9)
  );
}

/* Percent labels */
.pc-side {
  position: absolute;
  top: 90px;
  width: 200px;
  text-align: center;
  font-weight: 800;
}
.pc-left {
  left: -10px;
  color: var(--pc-blue);
}
.pc-right {
  right: -10px;
  color: var(--pc-purple);
}
.pc-num {
  font-size: 56px;
  line-height: 1;
}
.pc-sub {
  font-size: 20px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 8px;
}

/* Copy text */
.pc-copy {
  margin-top: 20px;
  color: var(--pc-body);
  font-size: 16px;
  line-height: 1.9;
  max-width: 720px; /* match screenshot text width */
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* align left, not justified */
}
.pc-copy p {
  margin: 22px 0;
}
.pc-core {
  color: var(--pc-blue);
  font-weight: 700;
}
.pc-sat {
  color: var(--pc-purple);
  font-weight: 700;
}
.pc-bold {
  font-weight: 700;
}
/* ===== Tablet Styles ===== */
@media (max-width: 1024px) {
  .pc-card {
    padding: 40px 32px 48px;
    border-radius: 24px;
    max-width: 90%;
  }

  .pc-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .pc-chart {
    width: 100%;
    max-width: 520px;
    height: 260px;
    margin: 0 auto 36px;
  }

  .pc-arc {
    width: 420px;
    height: 210px;
  }

  .pc-arc-shadow {
    width: 440px;
    height: 100px;
    bottom: -32px;
  }

  .pc-hub {
    width: 260px;
    height: 130px;
  }

  .pc-side {
    top: 70px;
    width: 150px;
  }

  .pc-num {
    font-size: 42px;
  }

  .pc-sub {
    font-size: 16px;
  }

  .pc-copy {
    font-size: 15px;
    line-height: 1.85;
    max-width: 90%;
    text-align: center;
  }
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .pc-card {
    padding: 32px 20px 40px;
    border-radius: 20px;
    max-width: 100%;
  }

  .pc-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .pc-chart {
    width: 100%;
    max-width: 320px;
    height: 200px;
    margin: 0 auto 28px;
  }

  .pc-arc {
    width: 300px;
    height: 150px;
  }

  .pc-arc-shadow {
    width: 320px;
    height: 80px;
    bottom: -30px;
  }

  .pc-hub {
    width: 180px;
    height: 90px;
  }

  .pc-side {
    top: 9px;
    width: 120px;
  }

  .pc-left {
    left: -19px;
  }
  .pc-right {
    right: -20px;
  }

  .pc-num {
    font-size: 32px;
  }

  .pc-sub {
    font-size: 14px;
  }

  .pc-copy {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    max-width: 100%;
  }

  .pc-copy p {
    margin: 18px 0;
  }
}
.testimonials {
  text-align: center;
  padding: 50px 20px;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  gap: 25px;
}

.testimonial {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.stars {
  color: #00b067;
  font-size: 18px;
  margin: 5px 0;
}

.testimonial-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background: #e8e8e8;
}

/* Desktop Layout */
@media (min-width: 769px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* Mobile: Show only first 2 */
@media (max-width: 768px) {
  /* .testimonial:nth-child(n + 3) {
    display: none;
  } */
}

.expert-call-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  /* max-width: 1200px; */
  margin: auto;
  background-color: white;
}

.expert-call-section .content {
  flex: 1;
  padding-right: 50px;
}

.expert-call-section .content h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #000;
}

.expert-call-section .steps {
  position: relative;
  margin-bottom: 40px;
}

.expert-call-section .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 65px;
  position: relative;
}

.expert-call-section .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  z-index: 1;
}

.expert-call-section .step-icon img,
.expert-call-section .step-icon svg {
  width: 20px;
  height: 20px;
  fill: white; /* Works if inline SVG */
}

.expert-call-section .step-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.expert-call-section .step-content p {
  font-size: 14px;
  color: #555;
}

.expert-call-section .steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, #ff4d4d, #ff9933, #00ccff, #66ff66);
  z-index: 0;
}

.expert-call-section .button {
  background: #111;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.expert-call-section .image {
  flex: 1;
  text-align: center;
  position: relative;
  height: 405px;
  width: 430px;
}

.expert-call-section .gradient-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 265px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edb168, #c172f1);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.expert-call-section .image img {
  position: relative;
  max-width: 280px;
  z-index: 1;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
  .expert-call-section {
    flex-direction: column;
    padding: 30px 16px;
    text-align: center;
  }

  /* Right side image comes first */
  .expert-call-section .image {
    order: -1; /* moves image above content */
    margin-bottom: 20px;
  }

  .expert-call-section .ellipse {
    width: 260px;
    height: 180px;
  }

  .expert-call-section .image img {
    max-width: 220px;
  }

  /* Content after image */
  .expert-call-section .content {
    padding-right: 0;
  }

  .expert-call-section .content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Steps stacked without icons or connector */
  .expert-call-section .steps {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .expert-call-section .steps::before {
    display: none; /* remove connector line */
  }

  .expert-call-section .step-icon {
    display: none; /* hide icons */
  }

  .expert-call-section .step {
    margin-bottom: 16px;
    text-align: center;
  }

  .expert-call-section .step-content {
    margin-left: 0;
  }

  .expert-call-section .step-content h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .expert-call-section .step-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Button same as screenshot (centered pill) */
  .expert-call-section .button {
    margin: 10px auto 0 auto; /* center horizontally */
    padding: 12px 36px;
    font-size: 15px;
    border-radius: 30px;
    display: inline-block;
  }
}

/* PMS Section */
/* PMS Section */
/* PMS Section */
.pms-section {
  background: linear-gradient(
    120deg,
    #005566 0%,
    #7c4b8d 40%,
    #6c3b26 75%,
    #000000 100%
  );
  color: white;
  padding: 80px 0;
}

.pms-section .container {
  text-align: center;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.pms-section .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Default (Desktop) */
.pms-section .schemes {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
}

.pms-section .scheme {
  flex: 1;
  padding: 20px;
}

.pms-section .scheme h3 {
  font-size: 16px;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 20px;
}

.pms-section .scheme p {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.pms-section .scheme:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .pms-section {
    padding: 50px 0;
  }

  .pms-section .schemes {
    display: block;
  }

  .pms-section .scheme {
    padding: 0;
    margin-bottom: 25px;
    border-right: none;
  }

  /* Card style with animated gradient border */
  .scheme-card {
    background: #111;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    position: relative;

    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-image: linear-gradient(#111, #111),
      linear-gradient(270deg, #00f0ff, #ff00ff, #ffb400, #00f0ff);
    background-size: 200% 200%;
    animation: borderAnimation 6s ease infinite;
  }

  @keyframes borderAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .scheme-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 10px;
  }

  .scheme-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 10px 0 20px;
  }

  .scheme-card p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
  }
}

/* ✅ Grey background only for FAQ section */
.faq-section-wrapper {
  background: #f2f2f2;
  padding: 60px 20px;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.faq-section h2 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}

.faq-left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
}

.faq-number {
  font-size: 48px; /* Bigger numbers */
  font-weight: bold;
  color: #888;
  width: 70px; /* fixed width */
  flex-shrink: 0;
  line-height: 1;
}

.faq-question {
  font-size: 24px;
  font-weight: 600;
  margin-top: 6px; /* align with number */
  color: #000;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-left: 10px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  margin-left: 90px; /* aligns under question */
  display: block; /* ✅ visible initially */
}

.faq-footer {
  text-align: center;
  margin-top: 40px;
}

.faq-footer button {
  color: black;
  border: 1px solid black;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

/* Mobile FAQ styles (only apply on screens ≤768px) */
@media (max-width: 768px) {
  .faq-section-wrapper {
    padding: 16px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .faq-section h2 {
    font-size: 18px;
    margin: 6px 0 14px;
    font-weight: 700;
    text-align: left;
  }

  .faq-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9e9e9;
  }

  .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-left {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
  }

  .faq-number {
    min-width: 32px;
    /* height: 32px;
    border-radius: 50%;
    background: #0f1724; */
    color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
  }

  .faq-question {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    word-break: break-word;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    font-size: 20px;
    color: #666;
  }

  .faq-answer {
    font-size: 13px;
    color: #333;
    line-height: 1.45;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease, padding 200ms ease;
    padding-top: 0;
  }

  .faq-item.open .faq-answer {
    max-height: 640px;
    padding-top: 8px;
  }

  .faq-item .faq-toggle::before {
    content: "+";
  }

  .faq-item.open .faq-toggle::before {
    content: "−";
  }
}

.page {
  margin: 0 auto;
  display: flex;
  min-height: 58vh;
  position: relative;
  padding-right: 6px;
  background: #1f1f1f;
  color: #dcdcdc;
  font-family: "Poppins", sans-serif;
}
/* .page::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #77e0d9, #3db8ff);
} */

/* LEFT (unchanged — icons won’t move) */
.page .left {
  width: 50%;
  min-width: 280px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page .logo img {
  width: 50px;
  height: auto;
}
.page .socials-wrap {
  margin-top: auto;
  display: none;
}
.page .follow {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}
.page .socials {
  display: flex;
  gap: 16px;
}
.page .socials img {
  width: 24px;
  height: 24px;
}

/* RIGHT */
.page .right {
  width: 50%;
  padding: 55px 50px 32px 40px;
  display: flex;
  flex-direction: column;
}

/* HEADLINE */
.page .headline {
  font-weight: 600;
  line-height: 1.2;
  font-size: 48px;
  margin: 0 0 16px;
}
.page .headline .blue {
  color: #7ddfd6;
}
.page .headline .purple {
  color: #c292ff;
}
.page .headline .pink {
  color: #f59ee1;
}

/* DESCRIPTION */
.page .muted-sub {
  font-weight: 300;
  color: #9aa0a0;
  max-width: 640px;
  margin: 12px 0 20px;
}

/* LINKS */
.page .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 24px;
}
.page .links a {
  color: #dcdcdc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page .links a::before {
  content: "•";
  margin-right: 8px;
  color: #fff;
  opacity: 0.9;
}
.page .links a:hover {
  color: #c292ff;
}

/* FOOTER BAR (independent, won’t move icons) */
.page .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 16px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page .bottom-right {
  display: flex;
  gap: 18px;
}
.page .bottom-right a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
/* .page .bottom-right a:hover {
  color: #c292ff;
} */
/* === MOBILE VIEW === */
@media (max-width: 768px) {
  .page {
    flex-direction: column; /* stack instead of side-by-side */
    padding: 0;
  }

  .page .left,
  .page .right {
    width: 100%;
    padding: 24px;
  }

  /* Headline smaller for mobile */
  .page .headline {
    font-size: 22px;
    text-align: center;
  }

  .page .muted-sub {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Links in 2 columns with top & bottom borders */
  .page .links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 20px 0;
    border-top: 1px solid #555; /* line above */
    border-bottom: 1px solid #555; /* line below */
    padding: 20px 0;
  }
  .page .links a {
    font-size: 13px;
  }

  /* Socials centered */
  .page .socials-wrap {
    text-align: center;
    margin: 20px 0;
  }
  .page .socials {
    justify-content: center;
  }

  /* Footer: stack and center */
  .page .bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px;
    background: #111;
  }
  .page .bottom-bar .right-links {
    justify-content: center;
  }
}
