@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary: #1e3a8a;
  --primary-dark: #0f1c4d;
  --accent: #3b82f6;
  --bg: #f3f4f6;
  --text: #1f2937;
  --white: #ffffff;
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 300ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

p {
  margin: 0 0 1.2rem;
  color: #3f4a5b;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.3rem;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-curved {
  border-radius: 48px;
  padding: 96px clamp(5vw, 80px, 120px);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

/* .section-heading.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
} */

.section-heading.align-left .section-subtitle {
  color: #94a3b8;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.eyebrow.dark {
  color: #6b7280;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #60a5fa);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.35);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-dark {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--primary-dark);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.05);
}

.service-card .btn-ghost,
.value-card .btn-ghost,
.mission-card .btn-ghost {
  color: #e5e7eb;
  border-color: rgba(148, 197, 255, 0.45);
}

.service-card .btn-ghost:hover,
.value-card .btn-ghost:hover,
.mission-card .btn-ghost:hover {
  background-color: rgba(59, 130, 246, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes logoGlow {
  0% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.45);
  }
  50% {
    transform: rotate(1deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
  }
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.45);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(18px);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
  padding: 24px 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.92));
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.25);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 197, 255, 0.35);
  animation: logoGlow 6s ease-in-out infinite;
}

.logo-img2 {
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 197, 255, 0.35);
  animation: logoGlow 6s ease-in-out infinite;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.05rem;
}

.logo-text span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #dee3ef;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  /* padding-bottom: 0.25rem; */
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta {
  padding-inline: 1.8rem;
  font-size: 0.9rem;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #dee3ef;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  transition: transform 200ms ease;
}

.has-dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-toggle.is-current {
  color: var(--accent);
}

.dropdown-toggle:focus-visible {
  outline: none;
  color: var(--accent);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 0.25rem;
  left: 0;
  min-width: 220px;
  background: rgba(2, 6, 23, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.dropdown-menu a:hover {
  color: var(--accent);
}

.dropdown-menu a.active {
  color: var(--accent);
}

.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (min-width: 769px) {
  .has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 200ms ease;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 14, 40, 0.78), rgba(30, 58, 138, 0.78)),
    url("/assets/images/bg1.png") center/cover;
  color: var(--white);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.35), transparent 45%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(30, 64, 175, 0.12));
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.layer-one {
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.7);
  top: 10%;
  left: 12%;
}

.layer-two {
  width: 460px;
  height: 460px;
  background: rgba(15, 23, 42, 0.6);
  bottom: -10%;
  right: 5%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-photo {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.4), rgba(30, 58, 138, 0.2)),
    url("/assets/images/bg1.png") center/cover;
  box-shadow: var(--shadow-soft);
  animation: photo-pan 16s ease-in-out infinite;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

.hero-intro p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-panel {
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.mini-badge {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-panel h3 {
  color: #ffffff;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.value-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  transform: translateY(0);
  transition: transform 300ms ease, box-shadow 300ms ease;
  color: #e5e7eb;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(2, 6, 23, 0.65);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.value-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

/* About preview */
.about-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.stat-grid {
  display: grid;
  gap: 18px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.92);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  color: #e5e7eb;
}

.stat-number {
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
}

.mission-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  color: #e5e7eb;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.target-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.5);
}

.target-card h3 {
  color: #f8fafc;
  margin-bottom: 0.8rem;
}

.target-card p {
  color: #c7d2fe;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-cloud span {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #e0f2fe;
  font-size: 0.85rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.timeline-year {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.6rem;
  display: inline-block;
}

/* Checklist blocks */
.checklist {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
  line-height: 1.6;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.card-dark .checklist li,
.panel .checklist li,
.value-card .checklist li,
.mission-card .checklist li {
  color: #e5e7eb;
}

/* Unified dark cards */
.value-card,
.service-card,
.mission-card,
.stat-card,
.process-card,
.panel,
.team-card,
.contact-card,
.about-card,
.service-detail,
.panel-body-inner,
.card-dark {
  background: linear-gradient(155deg, rgba(9, 17, 40, 0.94), rgba(15, 28, 68, 0.94));
  border: 1px solid rgba(148, 197, 255, 0.35);
  color: #f1f5f9;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
}

.panel {
  padding: 2.2rem 2.6rem;
}

.panel-body-inner {
  border-top: 1px solid rgba(148, 197, 255, 0.25);
  padding: 1.4rem 1.6rem 1.8rem;
}

.value-card h3,
.value-card p,
.service-card h3,
.service-card p,
.panel h2,
.panel h3,
.panel h4,
.panel p,
.panel ul,
.panel li,
.mission-card h3,
.mission-card p,
.stat-card p,
.process-card h3,
.process-card p,
.team-card h3,
.team-card p,
.contact-card h2,
.contact-card p,
.contact-card li,
.about-card h3,
.about-card p {
  color: #f8fafc;
}

.panel h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.panel h4:first-of-type {
  margin-top: 0;
}

.value-card svg,
.service-card svg,
.panel svg {
  stroke: var(--white);
}

.panel {
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
}

.panel-body {
  border-top: 1px solid rgba(59, 130, 246, 0.25);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.process-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #e5e7eb;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.process-card:hover::after {
  opacity: 1;
}

.step-number {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #b6c2ff;
  display: inline-block;
  margin-bottom: 0.6rem;
}

/* Services preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
}

.service-card:hover::after {
  border-color: rgba(59, 130, 246, 0.4);
}

.service-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  margin-bottom: 1.3rem;
}

/* CTA */
.cta-panel {
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
  max-width: 600px;
}

/* Footer */
.site-footer {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 40%), #020617;
  color: #c7d2fe;
  padding: 80px 0 36px;
}

.footer-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #bfc6e6;
  max-width: 320px;
}

.footer-brand .logo-img {
  width: 96px;
  height: 96px;
}

.footer-links h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #f8fafc;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #e2e8f0;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-cta {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
}

.footer-cta-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #93c5fd;
  margin-bottom: 0.4rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.6);
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Page hero */
.page-hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3), transparent 55%);
  opacity: 0.4;
  pointer-events: none;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
  max-width: 700px;
}

/* Services page */
.service-panels {
  display: grid;
  gap: 24px;
}

.panel {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-md);
  padding: 2rem 2.4rem;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #e5e7eb;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.panel-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}

.panel.open .panel-body {
  margin-top: 1rem;
}

.panel.open .panel-body-inner {
  padding-top: 0.5rem;
}

.panel-body-inner {
  padding-bottom: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.25);
}

.panel svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  margin-right: 1rem;
}

.panel-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(148, 197, 255, 0.45);
  background: rgba(59, 130, 246, 0.1);
  color: #e5e7eb;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform var(--transition);
}

.panel.open .panel-toggle {
  transform: rotate(45deg);
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.reason-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.5);
  color: #e2e8f0;
}

.reason-card h3 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.reason-card p {
  color: #cbd5f5;
}

.industry-panel {
  background: rgba(3, 7, 18, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 2.2rem;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
}

.industry-panel h3 {
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.industry-panel p {
  color: #cbd5f5;
  margin-bottom: 1.2rem;
}

.mission-card.white {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(59, 130, 246, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card h3,
.team-card .team-role {
  text-align: center;
}

.team-card p {
  text-align: left;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.65);
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.5rem;
}

.team-role {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.contact-info-block {
  margin-bottom: 1.4rem;
}

.contact-info-block h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #93c5fd;
  margin-bottom: 0.35rem;
}

.contact-info-block p {
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 1.4rem;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-list strong {
  color: #f8fafc;
  display: inline-block;
  min-width: 70px;
}

.contact-list a {
  color: #93c5fd;
}

.form-field {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(30, 58, 138, 0.2);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: calc(var(--radius-sm) + 4px);
  padding: 1.25rem 1.35rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  line-height: 1.5;
  color: var(--text);
  transition: border 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.form-field label {
  position: absolute;
  left: 1.35rem;
  top: 1.15rem;
  font-size: 0.95rem;
  color: #6b7280;
  transition: transform 200ms ease, font-size 200ms ease, color 200ms ease;
  pointer-events: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field input:not(:placeholder-shown),
.form-field textarea:not(:placeholder-shown) {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.form-field input:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px);
  font-size: 0.75rem;
  color: var(--accent);
}

.form-field .error-message {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.35rem;
  display: block;
}

textarea {
  resize: vertical;
  min-height: 160px;
  padding-top: 1.3rem;
}

.panel .form-field label,
.card-dark .form-field label {
  color: rgba(226, 232, 240, 0.85);
}

.panel .form-field input,
.panel .form-field textarea,
.card-dark .form-field input,
.card-dark .form-field textarea {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
}

.panel .form-field input:focus,
.panel .form-field textarea:focus,
.card-dark .form-field input:focus,
.card-dark .form-field textarea:focus {
  background: rgba(255, 255, 255, 1);
}

.career-application-form {
  margin-top: 1.5rem;
}

.map-placeholder {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.65));
  color: rgba(255, 255, 255, 0.8);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
}

.modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  width: min(420px, 92vw);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 30;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes photo-pan {
  0% {
    background-position: center;
  }
  50% {
    background-position: top;
  }
  100% {
    background-position: center;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .section-curved {
    border-radius: 32px;
    padding: 72px 48px;
  }

  .cta-panel {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(2, 6, 23, 0.9);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: calc(70px) 0 auto 0;
    background: rgba(2, 6, 23, 0.96);
    padding: 2rem 1.5rem;
    transform: translateY(-120%);
    transition: transform 300ms ease;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(15, 23, 42, 0.85);
    border: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
  }

  .has-dropdown.open > .dropdown-menu {
    max-height: 420px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding: 0.4rem 0;
  }

  .hero-inner {
    gap: 40px;
  }

  .section-curved {
    padding: 60px 32px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94vw, 640px);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .service-card,
  .value-card {
    padding: 1.6rem;
  }
}


