:root {
  --bg: #061c17;
  --bg-2: #082820;
  --bg-3: #0b332a;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --gold: #d7aa4b;
  --gold-2: #f4d58d;
  --emerald: #0f8a69;
  --emerald-2: #22c99a;
  --black: #040707;
  --text: #f7f4ea;
  --muted: rgba(247, 244, 234, 0.72);
  --muted-2: rgba(247, 244, 234, 0.56);
  --border: rgba(244, 213, 141, 0.22);
  --danger: #ff6b6b;
  --success: #42d991;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0.5px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(15, 138, 105, 0.36), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(215, 170, 75, 0.16), transparent 25rem),
    linear-gradient(180deg, var(--bg) 0%, var(--black) 52%, var(--bg) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--gold-2);
}

.section-pad {
  padding: 96px 0;
}

.top-line {
  background: rgba(4, 7, 7, 0.66);
  border-bottom: 1px solid rgba(244, 213, 141, 0.12);
}

.text-muted-gold {
  color: var(--muted);
}

.glass-nav {
  background: rgba(4, 7, 7, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 213, 141, 0.14);
}

.navbar-toggler {
  border-color: rgba(244, 213, 141, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(215, 170, 75, 0.24);
}

.navbar-toggler-icon {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--black);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 28px rgba(215, 170, 75, 0.28);
}

.brand-text {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-2);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(244, 213, 141, 0.24);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.lang-btn.active {
  color: var(--black);
  background: var(--gold-2);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:active,
.btn.btn-clicked {
  transform: scale(0.97);
}

.btn-gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(244, 213, 141, 0.45);
  box-shadow: 0 14px 34px rgba(215, 170, 75, 0.24);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--black);
  background: linear-gradient(135deg, #ffe4a5, #e0b553);
  box-shadow: 0 18px 44px rgba(215, 170, 75, 0.34);
}

.btn-outline-gold {
  color: var(--gold-2);
  border: 1px solid rgba(244, 213, 141, 0.4);
  background: rgba(255, 255, 255, 0.045);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  color: var(--black);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.hero-section {
  position: relative;
  /* min-height: 720px; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  left: -180px;
  top: 110px;
  background: rgba(34, 201, 154, 0.16);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 80px;
  background: rgba(215, 170, 75, 0.13);
}

.badge-soft,
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold-2);
  background: rgba(215, 170, 75, 0.1);
  border: 1px solid rgba(244, 213, 141, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-section h1,
.section-head h2,
.education-card h2,
.industries-card h2,
.contact-section h2,
.section-dark h2 {
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-lead,
.section-head p,
.education-card p,
.industries-card p,
.contact-section p,
.section-dark p {
  color: var(--muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  display: inline-flex;
  padding: 8px 13px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero-card,
.education-card,
.industries-card,
.lead-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at top right, rgba(215, 170, 75, 0.13), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 220px;
  height: 220px;
  background: rgba(34, 201, 154, 0.15);
  border-radius: 999px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald-2);
  box-shadow: 0 0 0 8px rgba(34, 201, 154, 0.12);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-box {
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(4, 7, 7, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--gold-2);
  background: rgba(215, 170, 75, 0.1);
}

.metric-box small,
.hero-card-footer,
.partner-card small {
  color: var(--muted-2);
}

.hero-card-footer {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(15, 138, 105, 0.14);
  border: 1px solid rgba(34, 201, 154, 0.18);
}

.partners-strip {
  background: rgba(4, 7, 7, 0.46);
  border-block: 1px solid rgba(244, 213, 141, 0.12);
}

.partner-pill {
  min-width: 116px;
  text-align: center;
  padding: 10px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-weight: 900;
}

.partner-pill.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.section-head {
  max-width: 780px;
}

.service-card,
.timeline-item,
.partner-card,
.industry-pill {
  height: 100%;
  border: 1px solid rgba(244, 213, 141, 0.16);
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.service-card {
  padding: 28px;
}

.service-card:hover,
.partner-card:hover,
.timeline-item:hover,
.industry-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 213, 141, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.service-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 25px;
}

.service-card h3,
.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

.service-card p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(4, 7, 7, 0.58), rgba(8, 40, 32, 0.5)),
    radial-gradient(circle at 80% 35%, rgba(215, 170, 75, 0.09), transparent 24rem);
  border-block: 1px solid rgba(244, 213, 141, 0.1);
}

.partner-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

.partner-card.featured {
  background:
    linear-gradient(145deg, rgba(215, 170, 75, 0.16), rgba(15, 138, 105, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.logo-text {
  color: var(--gold-2);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.education-card {
  padding: 42px;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 201, 154, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

.education-points {
  display: grid;
  gap: 14px;
}

.education-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(4, 7, 7, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.education-points i {
  color: var(--emerald-2);
  font-size: 22px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--gold-2);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
}

.industries-card {
  padding: 34px;
}

.industry-pill {
  min-height: 100px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.industry-pill i {
  color: var(--gold-2);
  font-size: 26px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 170, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(4, 7, 7, 0.26), rgba(4, 7, 7, 0.65));
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.contact-list i {
  color: var(--gold-2);
}

.lead-form {
  padding: 34px;
}

.form-head h3 {
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.form-head p {
  color: var(--muted);
  margin-bottom: 0;
}

.form-label,
.form-check-label {
  color: var(--muted);
  font-weight: 700;
}

.form-control,
.form-select {
  color: var(--text);
  background-color: rgba(4, 7, 7, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  min-height: 52px;
}

.form-control:focus,
.form-select:focus {
  color: var(--text);
  background-color: rgba(4, 7, 7, 0.62);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.22rem rgba(215, 170, 75, 0.18);
}

.form-control::placeholder {
  color: rgba(247, 244, 234, 0.42);
}

.form-select option {
  color: #111;
}

.form-check-input {
  background-color: rgba(4, 7, 7, 0.5);
  border-color: rgba(244, 213, 141, 0.36);
}

.form-check-input:checked {
  background-color: var(--emerald);
  border-color: var(--emerald);
}

.invalid-feedback {
  color: var(--danger);
}

.form-message {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
  background: rgba(66, 217, 145, 0.11);
  border: 1px solid rgba(66, 217, 145, 0.25);
}

.form-message.error {
  color: var(--danger);
  background: rgba(255, 107, 107, 0.11);
  border: 1px solid rgba(255, 107, 107, 0.25);
}

.footer {
  background: rgba(4, 7, 7, 0.8);
  border-top: 1px solid rgba(244, 213, 141, 0.12);
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.float-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .navbar-collapse {
    padding: 18px 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 70px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 58px 0;
  }

  .hero-section h1,
  .section-head h2,
  .education-card h2,
  .industries-card h2,
  .contact-section h2,
  .section-dark h2 {
    line-height: 1.04;
  }

  .metric-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .education-card,
  .industries-card,
  .lead-form {
    padding: 24px;
    border-radius: 22px;
  }

  .partner-pill {
    min-width: auto;
    width: calc(50% - 8px);
  }

  .float-contact {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .partner-pill {
    width: 100%;
  }

  .badge-soft,
  .eyebrow {
    align-items: flex-start;
    border-radius: 18px;
  }
}