:root {
  --jgs-primary: #0b3d91;
  --jgs-secondary: #1e73be;
  --jgs-dark: #0f172a;
  --jgs-light: #f4f7fb;
  --jgs-muted: #64748b;
  --jgs-border: #dde5ef;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--jgs-dark);
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 8px 24px rgba(2, 18, 48, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: #ffffff;
}

.hero-carousel .carousel-item {
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 19, 46, 0.82), rgba(4, 19, 46, 0.48));
  pointer-events: none;
}

.carousel-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
  color: #ffffff;
}

.carousel-content h1 {
  font-size: clamp(1.8rem, 4.7vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.carousel-content p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 4;
}

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

.section-title {
  color: var(--jgs-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--jgs-muted);
  max-width: 740px;
}

.feature-card,
.service-card,
.job-card,
.value-card {
  border: 1px solid var(--jgs-border);
  border-radius: 1rem;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card {
  height: auto;
}

.feature-card:hover,
.service-card:hover,
.job-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 115, 190, 0.1);
  color: var(--jgs-primary);
  font-size: 1.25rem;
}

.badge-tech {
  background-color: #edf4ff;
  color: var(--jgs-primary);
  border: 1px solid #d7e5ff;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  margin: 0.3rem;
}

.cta-banner {
  background: linear-gradient(135deg, #0b3d91, #1e73be);
  color: #ffffff;
  border-radius: 1rem;
  padding: 2.4rem;
}

.form-section {
  background-color: var(--jgs-light);
}

.form-card {
  background-color: #ffffff;
  border: 1px solid var(--jgs-border);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(2, 21, 56, 0.07);
}

.contact-card {
  border: 1px solid var(--jgs-border);
  border-radius: 1rem;
  background-color: #ffffff;
}

.map-placeholder {
  border: 1px dashed #9ab1ce;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #f2f7ff, #ecf4ff);
  min-height: 240px;
}

.footer {
  background-color: #0b162b;
  color: #ced9ee;
}

.footer h6 {
  color: #ffffff;
  font-weight: 600;
}

.footer a {
  color: #ced9ee;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 991.98px) {
  .hero-carousel .carousel-item {
    min-height: 64vh;
  }

  .carousel-content {
    padding: 7rem 0 5rem;
  }

}
