:root {
  --ab-blue: #0d6efd;
  --ab-blue-dark: #083d7c;
  --ab-gray-100: #f6f8fb;
  --ab-gray-200: #e9eef5;
  --ab-gray-500: #6b7280;
  --ab-gray-900: #111827;
  --ab-black: #0b0f19;
  --ab-white: #ffffff;
  --ab-radius-lg: 1.25rem;
  --ab-radius-xl: 1.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ab-gray-900);
  font-weight: 300;
  background: #fff;
}

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

.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .site-logo {
    height: 36px;
  }
}


.brand-primary {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ab-black);
  line-height: 1;
}


.navbar .nav-link {
  color: var(--ab-gray-900);
  font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--ab-blue);
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(247, 250, 255, 0.74) 0%, rgba(247, 250, 255, 0.62) 28%, rgba(225, 236, 251, 0.28) 52%, rgba(13, 110, 253, 0.08) 100%),
    url("../large_hero_banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-copy {
  display: inline-block;
  color: #2f3d50;
  max-width: 42rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(1px);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-blue);
}

.eyebrow-light {
  color: #9cc1ff;
}

.section-heading {
  max-width: 720px;
}

.hero-panel {
  background: white;
  border: 1px solid var(--ab-gray-200);
  border-radius: var(--ab-radius-xl);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-box,
.service-card,
.contact-card,
.stat-card {
  border-radius: var(--ab-radius-lg);
}

.hero-box {
  background: #f8fbff;
  border: 1px solid var(--ab-gray-200);
  padding: 1.5rem;
  min-height: 180px;
}

.hero-box h3,
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-box p,
.service-card p,
.contact-card p {
  color: var(--ab-gray-500);
}

.hero-box-primary {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(255, 255, 255, 0.95));
}

.hero-box-dark {
  background: linear-gradient(135deg, #111827, #1e3a5f);
  color: white;
  border-color: transparent;
}

.hero-box-dark p,
.hero-box-dark h3 {
  color: white;
}

.stats-row .stat-card {
  background: white;
  border: 1px solid var(--ab-gray-200);
  padding: 1rem;
  height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.stat-card span {
  display: block;
  color: var(--ab-gray-500);
  font-size: 0.9rem;
  line-height: 1.35;
}

.card-lift,
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-lift:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.product-heading {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.08);
  color: var(--ab-blue-dark);
  flex-shrink: 0;
}

.icon-wrap svg {
  width: 1.55rem;
  height: 1.55rem;
}

.feature-list {
  margin: 1.5rem 0;
  padding-left: 1.1rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: var(--ab-gray-500);
}

.product-card-thumb {
  width: clamp(6.25rem, 20vw, 8.5rem);
  max-height: 6.75rem;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.product-card-thumb-inline {
  float: right;
  margin: 0.15rem 0 0.75rem 1rem;
}

@media (max-width: 575.98px) {
  .product-card-thumb-inline {
    width: clamp(5.25rem, 30vw, 6.75rem);
    max-height: 5.5rem;
    margin-left: 0.75rem;
  }
}

.service-card {
  padding: 1.75rem;
  border: 1px solid var(--ab-gray-200);
  background: white;
}

.bg-deep {
  background: linear-gradient(135deg, #09111d 0%, #102642 100%);
}

.contact-card,
.contact-form {
  background: var(--ab-gray-100);
  border: 1px solid var(--ab-gray-200);
  padding: 1.5rem;
}

.contact-form-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  font-weight: 500;
}

.contact-form-status.is-success {
  background: #edf8f1;
  border-color: #b7e2c2;
  color: #165c2c;
}

.contact-form-status.is-error {
  background: #fff3f2;
  border-color: #f0c2bd;
  color: #8f1d14;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-control,
.form-select {
  border-radius: 0.85rem;
  border-color: #d3dae5;
  padding: 0.875rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(13, 110, 253, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
}

.site-footer {
  background: #fff;
}

.site-footer a {
  color: var(--ab-blue-dark);
  text-decoration: none;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--ab-blue);
  border-color: var(--ab-blue);
}

.btn-primary:hover {
  background-color: #0a5ad4;
  border-color: #0a5ad4;
}

.btn-outline-primary {
  color: var(--ab-blue);
  border-color: rgba(13, 110, 253, 0.35);
}

.product-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-box-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.product-hero-image {
  width: 100%;
  max-width: 22rem;
  max-height: 19rem;
  object-fit: contain;
}

.coming-soon-panel {
  padding: 2rem;
  border: 1px solid var(--ab-gray-200);
  border-radius: var(--ab-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.coming-soon-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--ab-blue-dark);
  text-transform: uppercase;
}

.coming-soon-list {
  margin: 0;
  padding-left: 1.2rem;
}

.coming-soon-list li {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: var(--ab-gray-900);
}

.coming-soon-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.coming-soon-image {
  width: 100%;
  max-width: 24rem;
  max-height: 20rem;
  object-fit: contain;
}

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

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

  .coming-soon-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .display-5 {
    font-size: 2.35rem;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  white-space: nowrap;
}

.about-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 2.5rem 0;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  flex: 1 1 0;
  display: flex;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.timeline-item.top {
  align-items: flex-start;
  padding-bottom: 7rem;
}

.timeline-item.top::before {
  top: 50%;
  margin-top: -5px;
}

.timeline-item.bottom {
  align-items: flex-end;
  padding-top: 7rem;
}

.timeline-item.bottom::before {
  top: 50%;
  margin-top: -5px;
}

.timeline-content {
  position: relative;
  max-width: 220px;
}

.timeline-item.top .timeline-content {
  margin: 0 auto;
  text-align: center;
}

.timeline-item.bottom .timeline-content {
  margin: 0 auto;
  text-align: center;
}

.timeline-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about-timeline {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }

  .about-timeline::before {
    left: 10px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: none;
  }

  .timeline-item,
  .timeline-item.top,
  .timeline-item.bottom {
    padding: 0 0 0 2.5rem;
    align-items: flex-start;
  }

  .timeline-item::before {
    left: 10px;
    top: 0.5rem;
    transform: translateX(-50%);
  }

  .timeline-content {
    max-width: none;
    text-align: left !important;
    margin: 0;
  }
}

.about-cta-wrap {
  margin-top: 2rem;
}

.gallery-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.gallery-grid .card {
  border-radius: var(--ab-radius-lg);
}

.gallery-image-link {
  display: block;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ab-gray-100);
}

.gallery-image-link:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.35);
  outline-offset: 3px;
}

.gallery-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-image-link:hover .gallery-card-image {
  transform: scale(1.03);
}

.gallery-card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-blue);
  margin-bottom: 0.75rem;
}

.gallery-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(8, 61, 124, 0.16)),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border: 1px solid var(--ab-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-blue-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gallery-note {
  color: var(--ab-gray-500);
}

.gallery-modal .modal-content {
  border-radius: var(--ab-radius-lg);
}

.gallery-modal-image {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 1rem;
  background: var(--ab-gray-100);
}



/***** PRODUCT PAGE *****/

.hero-image-wrap {
  text-align: center;
}

.hero-product-image {
  max-width: 100%;
  height: auto;
  width: 340px;
}
