@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f5f9;
  --color-card: #fff;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-accent: #3b82f6;
  --color-accent-soft: rgba(59, 130, 246, 0.1);
  --color-accent-2: #10b981;
  --color-accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --color-accent-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --color-accent-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --color-dark-surface: #0f172a;
  --color-hero-start: #1e3a8a;
  --color-hero-end: #0c1222;
  --top-bar-height: 36px;
  --site-head-offset: clamp(140px, 18vh, 190px);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

html[data-theme="dark"] {
  --color-bg: #040918;
  --color-surface: #0f172a;
  --color-surface-alt: #101a33;
  --color-card: #111b33;
  --color-text: #f5f7ff;
  --color-muted: #b8c3d9;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-accent: #7ab8ff;
  --color-accent-soft: rgba(122, 184, 255, 0.12);
  --color-dark-surface: #050915;
  --color-hero-start: #050915;
  --color-hero-end: #02040a;
}

@media (max-width: 991.98px) {
  :root {
    --site-head-offset: clamp(175px, 24vh, 230px);
  }
}

body {
  padding-top: var(--site-head-offset);
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
}

.landing-page,
.career-page {
  background: var(--color-bg);
}

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(4, 7, 18, 0.95);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(3, 5, 15, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-head.is-condensed {
  box-shadow: 0 12px 24px rgba(3, 5, 15, 0.35);
  background: rgba(4, 7, 18, 0.98);
}

.site-head.is-condensed .navbar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.site-head.is-condensed .top-bar {
  display: none;
}

.site-head.is-condensed .header-alert {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
}

.top-bar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6e3ff;
  font-size: 0.85rem;
  padding: 0.35rem 0;
}

.top-bar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #fff;
  align-items: center;
}

.top-bar a {
  color: #fff;
  font-weight: 500;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-meta i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
}

.top-bar .badge {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
}

.navbar {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  background: transparent;
}

.navbar .navbar-brand {
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
}

.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link:hover {
  color: var(--color-accent-2) !important;
}

.header-alert {
  background: rgba(255, 193, 7, 0.08);
  border-bottom: 1px solid rgba(255, 193, 7, 0.25);
  padding: 0.65rem 0;
  color: #ffd66e;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.header-alert .alert-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.header-alert .alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1rem;
}

.header-alert .alert-link {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.brand-stack {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav-cta {
  margin-left: 1.5rem;
}

.nav-cta .btn {
  min-width: 170px;
}

.site-head.is-condensed .brand-pill {
  transform: scale(0.92);
}

.dropdown-item.active,
.dropdown-item:active {
  background: #0e5cad;
  color: #fff;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
  border: 1px solid rgba(14, 92, 173, 0.25);
  box-shadow: 0 6px 18px rgba(14, 92, 173, 0.25);
}

.brand-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #79f1a4, #0e5cad);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-weight: 600;
}

.hero {
  background: radial-gradient(circle at top left, var(--color-hero-start), var(--color-hero-end) 60%);
  padding-bottom: 5rem;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.1;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-grid.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 45%;
  opacity: 0.12;
  pointer-events: none;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(4, 10, 35, 0.6);
}

.floating-card {
  position: absolute;
  bottom: -18px;
  right: 16px;
  background: #0f172a;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.hero-tags span:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.mini-card {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  height: 100%;
  font-size: 0.9rem;
}

.glass-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.badge-text {
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-gradient {
  background: linear-gradient(120deg, var(--color-accent-2), var(--color-accent));
  border: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(12, 92, 173, 0.3);
}

.btn-gradient:hover {
  color: #fff;
  opacity: 0.9;
}

.section-padding {
  padding: 5rem 0;
}

.dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(14, 92, 173, 0.15);
  box-shadow: 0 20px 45px rgba(9, 13, 32, 0.2);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.about-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  box-shadow: 0 20px 40px rgba(5, 16, 54, 0.08);
}

.bg-soft-dark {
  background: #0f172a;
}

.mission-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card,
.stat-card,
.pricing-card,
.process-card,
.case-card,
.industry-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  box-shadow: 0 18px 40px rgba(14, 19, 32, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.pricing-card::after,
.case-card::after,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14, 92, 173, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.service-card > *,
.pricing-card > *,
.case-card > *,
.industry-card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(121, 241, 164, 0.15), rgba(14, 92, 173, 0.2));
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card-icon i {
  line-height: 1;
}

.industry-card {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.checkmark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e5cad, #79f1a4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(14, 92, 173, 0.3);
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.stat-label {
  color: var(--color-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.highlight {
  border: 2px solid #0e5cad;
  transform: translateY(-10px);
}

.plan-label {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.plan-list li {
  margin-bottom: 0.6rem;
}

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

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
  box-shadow: 0 25px 50px rgba(7, 10, 30, 0.15);
}

.gallery-card.large {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 20, 0.85));
  color: #fff;
  font-size: 0.95rem;
}

.case-card ul {
  padding-left: 1rem;
  color: #6c748d;
  font-size: 0.95rem;
}

.page-hero {
  background: linear-gradient(135deg, #0b1122, #0e5cad);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero .breadcrumb {
  --bs-breadcrumb-divider: "›";
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.content-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(12, 24, 63, 0.08);
  border: 1px solid var(--color-border);
}

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

.list-grid li {
  list-style: none;
  background: var(--color-surface-alt);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0e5cad;
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.info-grid .info-card {
  background: var(--color-card);
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 45px rgba(5, 11, 34, 0.06);
}

.badge-soft {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--color-surface-alt);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.cta-banner {
  background: linear-gradient(120deg, #0e5cad, #12244c);
  border-radius: 28px;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 35px 80px rgba(2, 8, 28, 0.4);
}

.cta-banner .btn {
  min-width: 180px;
}

.gallery-page .gallery-card {
  min-height: 220px;
}

.contact-page .contact-card {
  background: #0f172a;
  color: #fff;
  border: none;
}

.contact-page .contact-card .form-control,
.contact-page .contact-card .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
}
.process-card span {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(121, 241, 164, 0.15), rgba(14, 92, 173, 0.2));
  color: var(--color-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(14, 92, 173, 0.15);
  transition: transform 0.3s ease;
}

.process-card:hover span {
  transform: scale(1.1) rotate(5deg);
}

.contact-card {
  background: var(--color-card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-card .form-control,
.contact-card .form-select {
  border-radius: 14px;
  border-color: var(--color-border);
  padding: 0.85rem 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(14, 92, 173, 0.35), rgba(4, 7, 18, 0.95) 55%);
  padding: 4rem 0 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  position: relative;
}

.footer-segment {
  position: relative;
  padding-right: 1.5rem;
}

.footer-segment:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-segment h6 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 45px rgba(5, 9, 25, 0.55);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.65);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(121, 241, 164, 0.9);
  margin-bottom: 0.4rem;
}

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

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-links a {
  opacity: 0.85;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.footer-contact-list i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-social {
  margin-top: 1rem;
}

.footer-social .badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.footer-social p {
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a:hover {
  background: rgba(14, 92, 173, 0.6);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

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

  .footer-segment:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-segment::after {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.privacy-terms {
  background: #fff;
  border-top: 1px solid #e1e4ef;
}

.theme-toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle .theme-icon {
  font-size: 1rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.career-card,
.benefits-card,
.culture-card {
  background: var(--color-card);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(5, 16, 54, 0.08);
  height: 100%;
}

.career-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 1rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.career-list li {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.career-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.opening-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.opening-card h4 {
  margin-bottom: 0.6rem;
}

.opening-card p {
  color: rgba(255, 255, 255, 0.85);
}

.role-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.role-tags li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.hiring-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  background: var(--color-card);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  height: 100%;
  box-shadow: 0 18px 40px rgba(5, 16, 54, 0.08);
}

.timeline-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--color-surface-alt);
  color: var(--color-accent);
  font-weight: 600;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.talent-pool {
  font-size: 0.95rem;
}

.career-page .hero {
  min-height: auto;
}

.career-page main .bg-white,
.career-page main .bg-light {
  color: var(--color-text);
}

html[data-theme="dark"] body {
  color: var(--color-text);
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgba(122, 184, 255, 0.6);
  color: var(--color-text);
  background: rgba(122, 184, 255, 0.08);
}

html[data-theme="dark"] .top-bar {
  background: rgba(10, 16, 32, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .process-card,
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .industry-card,
html[data-theme="dark"] .about-card,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .info-grid .info-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .career-card,
html[data-theme="dark"] .benefits-card,
html[data-theme="dark"] .culture-card,
html[data-theme="dark"] .timeline-step {
  background: var(--color-card);
  border-color: var(--color-border);
  box-shadow: 0 25px 60px rgba(1, 3, 12, 0.8);
}

html[data-theme="dark"] .list-grid li,
html[data-theme="dark"] .timeline-step span {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

html[data-theme="dark"] .stat-number,
html[data-theme="dark"] .badge-soft,
html[data-theme="dark"] .section-eyebrow {
  color: var(--color-accent);
}

html[data-theme="dark"] .plan-label,
html[data-theme="dark"] .stat-label,
html[data-theme="dark"] .career-meta,
html[data-theme="dark"] .text-muted {
  color: var(--color-muted) !important;
}

html[data-theme="dark"] .bg-white {
  background-color: var(--color-surface) !important;
}

html[data-theme="dark"] .bg-light {
  background-color: var(--color-surface-alt) !important;
}

html[data-theme="dark"] .site-footer {
  background: #02060f !important;
}

html[data-theme="dark"] .privacy-terms {
  background: var(--color-surface);
  border-color: var(--color-border);
}

@media (max-width: 992px) {
  .hero {
    padding-bottom: 3rem;
  }
  .pricing-card.highlight {
    transform: none;
  }
}

@media (max-width: 576px) {
  .navbar .navbar-brand {
    font-size: 1rem;
  }
  .hero-card {
    margin-top: 2rem;
  }
  .section-padding {
    padding: 3.5rem 0;
  }
  .gallery-card.large {
    grid-column: span 1;
  }
}

/* Enhanced Professional Styling */
.service-card:hover,
.pricing-card:hover,
.case-card:hover,
.industry-card:hover,
.about-card:hover,
.content-card:hover,
.info-card:hover,
.career-card:hover,
.benefits-card:hover,
.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(14, 19, 32, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card,
.pricing-card,
.case-card,
.industry-card,
.about-card,
.content-card,
.info-card,
.career-card,
.benefits-card,
.culture-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Better spacing for all cards */
.service-card h5,
.pricing-card h5,
.case-card h5 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-card p,
.pricing-card p,
.case-card p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* Enhanced icon styling */
.card-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(121, 241, 164, 0.25), rgba(14, 92, 173, 0.3));
}

/* Better button styling */
.btn-gradient {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(12, 92, 173, 0.4);
}

.btn-outline-primary {
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 92, 173, 0.2);
}

/* Enhanced form controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem var(--color-accent-soft);
}

/* Better list styling */
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-left: 0;
}

.plan-list li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Enhanced responsive spacing */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .pricing-card,
  .case-card {
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding-bottom: 3rem;
  }
  
  .page-hero {
    padding: 3rem 0 2.5rem;
  }
}

/* Better grid responsiveness */
@media (max-width: 991.98px) {
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Enhanced gallery cards */
.gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(7, 10, 30, 0.25);
}

.gallery-card .overlay {
  transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* Better breadcrumb styling */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Enhanced process cards */
.process-card {
  text-align: center;
}

.process-card span {
  display: block;
  margin: 0 auto 1rem;
}

/* Better contact card */
.contact-card {
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

/* Enhanced footer links */
.footer-links a {
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
  color: #fff;
}

/* Better social links */
.social-links a {
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
}

/* Enhanced navbar */
.navbar-nav .nav-link {
  transition: color 0.2s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Better stat cards */
.stat-card {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Enhanced pricing highlight */
.pricing-card.highlight {
  position: relative;
}

.pricing-card.highlight::before {
  content: "POPULAR";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Better industry cards */
.industry-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

/* Enhanced mission cards */
.mission-card {
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

/* Better CTA banners */
.cta-banner {
  transition: transform 0.3s ease;
}

.cta-banner:hover {
  transform: translateY(-3px);
}

/* Enhanced floating card */
.floating-card {
  animation: float 3s ease-in-out infinite;
}

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

/* Better responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Enhanced text readability */
p {
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 600;
}

/* Better focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Enhanced loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Better spacing utilities */
.mb-section {
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .mb-section {
    margin-bottom: 2.5rem;
  }
}

/* Enhanced icon alignment */
.bi {
  vertical-align: middle;
}

/* Better pill styling */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14, 92, 173, 0.1);
  color: var(--color-accent);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(14, 92, 173, 0.2);
  transition: all 0.3s ease;
}

.pill:hover {
  background: rgba(14, 92, 173, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 92, 173, 0.2);
}

.page-hero .pill {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.page-hero .pill:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Better list styling with icons */
ul.list-unstyled li {
  line-height: 1.8;
}

/* Enhanced dropdown menu items */
.dropdown-item {
  transition: all 0.2s ease;
  padding: 0.6rem 1rem;
}

.dropdown-item:hover {
  background: var(--color-accent-soft);
  transform: translateX(4px);
}

.dropdown-item i {
  width: 20px;
  text-align: center;
}

/* Better form styling */
.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-control::placeholder,
.form-select::placeholder {
  opacity: 0.6;
}

/* Enhanced breadcrumb */
.breadcrumb-item a {
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Better card content spacing */
.content-card h4,
.content-card h5 {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.content-card ul,
.content-card ol {
  padding-left: 1.5rem;
}

/* Enhanced info card */
.info-card {
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h5 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

/* Better responsive text */
@media (max-width: 576px) {
  .display-5 {
    font-size: 2rem;
  }
  
  h1, h2, h3 {
    font-size: calc(1.5rem + 1vw);
  }
  
  .lead {
    font-size: 1rem;
  }
}

/* Enhanced button groups */
.btn-group,
.d-flex.gap-3 {
  flex-wrap: wrap;
}

/* Better overlay for gallery */
.gallery-card .overlay strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Enhanced floating card */
.floating-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Better stat number animation */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Enhanced contact info */
.contact-info a {
  transition: opacity 0.2s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

/* Better responsive grid */
@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced page hero */
.page-hero {
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("../img/hero-grid.svg") no-repeat top right;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

/* Better section spacing */
section + section {
  margin-top: 0;
}

/* Enhanced CTA buttons */
.cta-banner .btn {
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .cta-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Better icon sizes in cards */
.card-icon i {
  font-size: inherit;
}

/* Enhanced service card links */
.service-card .btn-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .btn-link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Better plan list styling */
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-list li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Enhanced timeline steps */
.timeline-step {
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

/* Better career cards */
.career-card .career-pill {
  margin-bottom: 1rem;
  display: inline-block;
}

/* Enhanced opening cards */
.opening-card .btn {
  margin-top: 1rem;
}

/* Better FAQ items */
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.faq-item summary::before {
  content: "▶";
  transition: transform 0.2s ease;
  font-size: 0.8rem;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

/* Enhanced social links spacing */
.social-links {
  margin-top: 1rem;
}

/* Better top bar responsive */
@media (max-width: 991.98px) {
  .top-bar {
    font-size: 0.75rem;
  }
  
  .top-bar-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .top-bar-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Enhanced navbar mobile */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* Better hero responsive */
@media (max-width: 768px) {
  .hero .display-5 {
    font-size: 2rem;
  }
  
  .hero .lead {
    font-size: 1rem;
  }
  
  .hero-tags {
    gap: 0.5rem;
  }
  
  .hero-tags span {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Enhanced floating card responsive */
@media (max-width: 768px) {
  .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
}

