/* /Reset & Base/ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #041018;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; object-fit: cover; }
a   { text-decoration: none; }
ul  { list-style: none; }


/* /Scrollbar/ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }


/* /Shared Labels & Titles/ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.section-title span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
}


/* /Buttons/ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #0e8bc7 100%);
  border: none;
  border-radius: 10px;
  color: #041018;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30,200,255,0.38);
  color: #041018;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary i { font-size: 0.82rem; transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 10px;
  color: #1ec8ff;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(30,200,255,0.10);
  border-color: #1ec8ff;
  color: #4fd6ff;
  transform: translateY(-2px);
}

.btn-commitment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-commitment i { font-size: 0.88rem; }
.btn-commitment:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30,200,255,0.38);
  color: #041018;
}


/* /Hero Section/ */
.about-hero-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* .about-hero {
  width: 100%;
  position: relative;
  min-height: 620px;
  padding: 60px 0;
  overflow: hidden;
  background-image: url("/newsite/images/OverlayImg/Overlayimg.webp");
    right center / cover no-repeat;
  display: flex;
  align-items: center;
} */


.about-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-color: #03111a;
  background-image: url("/newsite/images/OverlayImg/Overlayimg.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -2px top 82px;
}




.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4,16,24,0.97)  0%,
    rgba(4,16,24,0.88)  30%,
    rgba(4,16,24,0.50)  55%,
    rgba(4,16,24,0.18)  75%,
    rgba(4,16,24,0.04) 100%
  );
  z-index: 1;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(30,200,255,0.10);
  filter: blur(90px);
  top: -120px; left: -80px;
  pointer-events: none;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 80px;
  max-width: 100%;
  width: 100%;
  color: #ffffff;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 0.38rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.breadcrumb-pill span { opacity: 0.80; }

.about-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 18px;
}

.about-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 55%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1ec8ff;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-link:hover { opacity: 0.80; transform: translateX(4px); }

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (min-width: 1600px) {
  .about-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}
@media (max-width: 1100px) {
  .about-hero-content { padding: 60px 48px; }
}
@media (max-width: 992px) {
  .about-hero         { min-height: 460px; }
  .about-hero-content { padding: 60px 50px; }
  .about-hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .about-hero { min-height: 400px; background-position: center center; }
  .about-hero-content { padding: 60px 36px; }
  .about-hero-content h1 { font-size: 2.4rem; }
}
@media (max-width: 576px) {
  .about-hero         { min-height: 360px; }
  .about-hero-content { padding: 75px 24px 60px; }
  .about-hero-content h1 { font-size: 2.0rem; letter-spacing: -0.02em; }
  .about-hero-content p  { font-size: 0.96rem; max-width: 100%; }
}
@media (max-width: 375px) {
  .about-hero-content    { padding: 70px 18px 55px; }
  .about-hero-content h1 { font-size: 1.8rem; }
}


/* /Stats Section/ */
.stats-section {
  background: #000000;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,162,231,0.30), transparent);
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,162,231,0.30), transparent);
}

.stats-section .stats-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.stats-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.stats-header { text-align: center; margin-bottom: 60px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 44px 24px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 2px;
}
.stat-item:hover::before { opacity: 1; }

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(30,200,255,0.05);
  border-color: rgba(30,200,255,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.50), 0 0 0 1px rgba(30,200,255,0.12);
}

.stat-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(22,162,231,0.12);
  border: 1px solid rgba(30,200,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}
.stat-item:hover .stat-icon {
  background: rgba(22,162,231,0.22);
  box-shadow: 0 0 28px rgba(30,200,255,0.22);
}

.stat-icon i {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #16A2E7, #4fd6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.stat-item:hover .stat-icon i {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px rgba(30,200,255,0.50));
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(22,162,231,0.25);
}

.stat-plus {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #16A2E7;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.3s;
  text-align: center;
}
.stat-item:hover .stat-label { color: rgba(255,255,255,0.80); }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .stats-section .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-number { font-size: 2.6rem; }
}
@media (max-width: 380px) {
  .stat-number { font-size: 2.2rem; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}


/* /Journey Section/ */
.journey-section {
  padding: 120px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.journey-section::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(22,162,231,0.08);
  filter: blur(90px);
  bottom: -100px; right: -80px;
  pointer-events: none;
}

.journey-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.journey-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.journey-rating { display: inline-flex; align-items: center; gap: 12px; }
.stars { display: flex; gap: 5px; }
.stars i { color: #1ec8ff; font-size: 1.1rem; }
.stars { display: flex; gap: 5px; }
.stars i { color: #1ec8ff; font-size: 1.1rem; }
.rating-text { font-size: 0.92rem; color: rgba(255,255,255,0.72); font-weight: 500; }

.journey-heading {
  font-family: 'Syne', sans-serif;
  font-size: 3.0rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.journey-heading span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
}

.journey-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.76;
  font-weight: 400;
}

.journey-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.journey-right { position: relative; }

.journey-image {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.60),
    0 0 0 1px rgba(30,200,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transition: box-shadow 0.4s ease;
  background: #060d1f;
}

.journey-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(30,200,255,0.55), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.journey-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,24,0.55) 0%, rgba(4,16,24,0.08) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.journey-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.journey-image:hover img { transform: scale(1.04); }
.journey-image:hover {
  box-shadow:
    0 50px 100px rgba(0,0,0,0.65),
    0 0 0 1px rgba(30,200,255,0.22);
}

@media (max-width: 900px) {
  .journey-content { grid-template-columns: 1fr; gap: 40px; padding: 0 36px; }
  .journey-heading { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .journey-content { padding: 0 20px; gap: 32px; }
  .journey-heading { font-size: 2rem; }
}


/* /Founders Section/ */
.founders-section {
  padding: 120px 0;
  background: radial-gradient(circle at top center, #0b1430 0%, #041018 60%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.032) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.founders-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.founders-header {
  max-width: 620px;
  margin-bottom: 64px;
}

.founders-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 16px;
}
.founders-header h2 span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
}
.founders-header p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.founder-card:hover::before { opacity: 1; }
.founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30,200,255,0.22);
  box-shadow: 0 36px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(30,200,255,0.14);
}

.founder-image {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #060d1f;
}
.founder-image img { height: 100%; transition: transform 0.6s ease; object-fit: cover; }
.founder-card:hover .founder-image img { transform: scale(1.05); }

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,24,0.88) 0%, rgba(4,16,24,0.20) 50%, transparent 100%);
}

.founder-socials {
  position: absolute;
  top: 18px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.founder-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(4,16,24,0.88);
  border: 1px solid rgba(30,200,255,0.22);
  color: #1ec8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.90rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.founder-socials a:hover {
  background: rgba(30,200,255,0.22);
  border-color: #1ec8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,200,255,0.30);
}

.founder-content { padding: 32px 30px 36px; }
.founder-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.founder-role {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.22);
  border-radius: 2rem;
  padding: 0.25rem 0.85rem;
  margin-bottom: 16px;
}

.founder-content p { font-size: 0.92rem; line-height: 1.70; color: rgba(255,255,255,0.65); }

@media (max-width: 991px) {
  .founders-grid          { grid-template-columns: 1fr; }
  .founders-header h2     { font-size: 2.4rem; }
  .founders-container     { padding: 0 24px; }
}
@media (max-width: 900px) {
  .founders-grid          { grid-template-columns: 1fr; }
  .founders-container     { padding: 0 36px; }
  .founders-header h2     { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .founders-container     { padding: 0 20px; }
  .founders-header h2     { font-size: 2rem; }
  .founder-image          { height: 280px; }
  .founder-content        { padding: 26px 22px 30px; }
}
@media (max-width: 576px) {
  .founder-socials        { top: 16px; right: 14px; }
  .founder-socials a      { width: 34px; height: 34px; font-size: 0.9rem; }
}


/* /Commitment Section/ */
.commitment-section {
  padding: 120px 0;
  background: radial-gradient(circle at top center, #0b1430 0%, #060d1f 55%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.030) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.commitment-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.commitment-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 64px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(30,200,255,0.22);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.commitment-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
}

.commitment-card::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(30,200,255,0.07);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.commitment-badge {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.22);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
}

.commitment-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.commitment-title span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
}

.commitment-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.80;
  color: rgba(255,255,255,0.70);
  max-width: 680px;
  margin: 0 auto 2.2rem;
}

.commitment-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .commitment-card  { padding: 52px 40px; }
  .commitment-title { font-size: 2rem; }
}
@media (max-width: 768px) {
  .about-hero            { min-height: 520px;  background-size: auto 75%;}
  .commitment-section { padding: 90px 0; }
  .commitment-card    { padding: 44px 28px; }
  .commitment-title   { font-size: 2.1rem; }
  .commitment-text    { font-size: 1rem; }
  .btn-commitment     { padding: 13px 26px; font-size: 0.9rem; }
}
@media (max-width: 640px) {
  .commitment-container { padding: 0 16px; }
  .commitment-card      { padding: 40px 24px; border-radius: 20px; }
  .commitment-title     { font-size: 1.8rem; }
  .commitment-text      { font-size: 0.92rem; }
  .commitment-actions   { flex-direction: column; align-items: center; }
}
@media (max-width: 380px) {
  .commitment-title { font-size: 1.6rem; }
}


/* /Shared Responsive/ */
@media (max-width: 1100px) {
  .section-title      { font-size: 2.6rem; }
  .founders-header h2 { font-size: 2.6rem; }
  .commitment-title   { font-size: 2.4rem; }
  .founders-container,
  .stats-section .container { padding-left: 36px; padding-right: 36px; }
  .stats-grid         { gap: 20px; }
  .journey-content    { gap: 52px; }
  .about-hero            {min-height: 520px;  background-size: auto 100%;}
}
@media (max-width: 900px) and (min-width: 641px){
  .about-hero-content h1 { font-size: 2.8rem; }

  /* .about-hero            { min-height: 520px;  background-size: auto 75%;} */

  .about-hero {
  min-height: 520px;
  background-size: auto 112%;
  background-position: right -155px top 55px; /* keeps doctor visible & this is changes for tablet to responsiveness*/
  background-repeat: no-repeat;
}
  .section-title,
  .journey-heading,
  .founders-header h2    { font-size: 2.4rem; }
}

@media (max-width: 640px) {
  .about-hero-actions    { flex-direction: column; align-items: flex-start; }

  .about-hero {
    min-height: 560px;
    padding: 110px 0 60px;              /*this is done to make to mobile responsiveness*/
    background-repeat: no-repeat;
    background-size: auto 96%;
    background-position: right -225px top 78px;
  }

  .section-title         { font-size: 2rem; }
  .btn-primary,
  .btn-secondary,
  .btn-ghost             { padding: 12px 22px; font-size: 0.88rem; }
}


