:root {
  --bg-900: #ffffff;
  --bg-800: #f5fbff;
  --bg-700: #e8f4ff;
  --blue-500: #1976d2;
  --blue-400: #35a3ff;
  --blue-200: #b8dfff;
  --text-light: #0f3554;
  --text-soft: rgba(15, 53, 84, 0.72);
  --panel: rgba(255, 255, 255, 0.9);
  --border: rgba(25, 118, 210, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(53, 163, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 48%, #eef7ff 100%);
  color: var(--text-light);
}

a {
  text-decoration: none;
}

.fw-black {
  font-weight: 800;
}

.text-white-75 {
  color: var(--text-soft);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate].animate__animated {
  opacity: 1;
  transform: none;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25, 118, 210, 0.1);
  box-shadow: 0 8px 30px rgba(15, 53, 84, 0.06);
}

.nav-link {
  color: rgba(15, 53, 84, 0.8) !important;
}

.nav-link:hover {
  color: var(--blue-500) !important;
}

.hero-section {
  min-height: 100vh;
  padding-top: 5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 247, 255, 0.86)),
    url("assets/hero-bg.svg") center/cover no-repeat;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-1 {
  width: 240px;
  height: 240px;
  top: 14%;
  right: 7%;
  background: rgba(53, 163, 255, 0.18);
}

.hero-glow-2 {
  width: 180px;
  height: 180px;
  left: 4%;
  bottom: 8%;
  background: rgba(25, 118, 210, 0.12);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-200);
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-400), transparent);
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.98));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 24px 70px rgba(15, 53, 84, 0.1);
}

.hero-image {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.hero-card-badge {
  position: absolute;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-500);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(25, 118, 210, 0.14);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-top {
  top: 1.2rem;
  right: 1.2rem;
}

.badge-bottom {
  bottom: 1.2rem;
  left: 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div,
.feature-card,
.product-card,
.info-panel,
.quote-card,
.job-card,
.contact-panel,
.service-list,
.gallery-grid img {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  border-radius: 20px;
  padding: 1rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  color: var(--blue-500);
}

.hero-stats span,
.feature-card p,
.product-card p,
.info-panel p,
.quote-card,
.contact-panel p {
  color: var(--text-soft);
}

.section-pad {
  padding: 6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.98), rgba(235, 247, 255, 0.82));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.info-panel h3,
.contact-panel h3 {
  font-weight: 800;
  color: var(--text-light);
}

.section-heading p {
  color: var(--text-soft);
}

.feature-card,
.product-card,
.info-panel,
.quote-card,
.job-card,
.contact-panel,
.service-list {
  border-radius: 24px;
  padding: 1.5rem;
  height: 100%;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card h3,
.product-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.product-card {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.product-card img {
  width: 96px;
  flex: 0 0 auto;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(25, 118, 210, 0.12);
  padding-bottom: 1rem;
}

.service-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-list span {
  color: var(--blue-200);
  font-weight: 700;
}

.service-list strong {
  color: var(--text-light);
  text-align: right;
}

.quote-card ul {
  color: var(--text-soft);
}

.form-control,
.form-select {
  background: #ffffff;
  border: 1px solid rgba(25, 118, 210, 0.16);
  color: var(--text-light);
}

.form-control::placeholder {
  color: rgba(15, 53, 84, 0.42);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(57, 160, 255, 0.62);
  box-shadow: 0 0 0 0.2rem rgba(57, 160, 255, 0.14);
  background: #ffffff;
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(25, 118, 210, 0.12);
}

.contact-item span {
  color: var(--text-soft);
}

.contact-item strong {
  text-align: right;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border: 0;
  box-shadow: 0 16px 32px rgba(53, 163, 255, 0.24);
}

.btn-outline-primary {
  color: var(--blue-500);
  border-color: rgba(25, 118, 210, 0.4);
}

.btn-outline-primary:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
}

footer {
  border-top: 1px solid rgba(25, 118, 210, 0.1);
  color: rgba(15, 53, 84, 0.62);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .service-list div,
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-list strong,
  .contact-item strong {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .display-4 {
    font-size: 2.7rem;
  }
}