:root {
  --primary: #0a2458;
  --primary-deep: #061534;
  --primary-soft: #173f8a;
  --accent: #5bc0ff;
  --accent-soft: rgba(91, 192, 255, 0.18);
  --white: #ffffff;
  --text-main: #14304e;
  --text-muted: #60708a;
  --border-soft: rgba(255, 255, 255, 0.22);
  --bg-soft: #f2f7ff;
  --bg-alt: linear-gradient(180deg, rgba(237, 245, 255, 0.95), rgba(225, 236, 252, 0.95));
  --shadow-lg: 0 24px 60px rgba(5, 22, 52, 0.16);
  --shadow-md: 0 18px 40px rgba(6, 21, 52, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --nav-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(91, 192, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eaf2fd 100%);
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.35s ease;
}

body.is-loading {
  overflow: hidden;
}

body.is-transitioning main,
body.is-transitioning footer,
body.is-transitioning .annyx-navbar {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
  color: var(--primary-deep);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.page-shell {
  position: relative;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.section-space {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(10, 36, 88, 0.08);
  color: var(--primary-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glass-card,
.glass-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.glass-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 192, 255, 0.38);
}

.glass-panel {
  border-radius: var(--radius-lg);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.95rem 1.5rem;
}

.btn-brand {
  color: var(--white);
  background: linear-gradient(135deg, #0e3a87, #081f4d);
  border: 0;
  box-shadow: 0 16px 30px rgba(8, 31, 77, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-soft,
.btn-soft-dark {
  backdrop-filter: blur(10px);
}

.btn-soft-dark {
  border-color: rgba(10, 36, 88, 0.16);
  color: var(--primary);
}

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

.annyx-navbar {
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}

.annyx-navbar.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(4, 19, 48, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 35px rgba(4, 19, 48, 0.18);
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem;
  box-shadow: 0 10px 24px rgba(4, 19, 48, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding: 0.7rem 1rem !important;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 192, 255, 0), rgba(91, 192, 255, 1), rgba(91, 192, 255, 0));
}

.nav-cta {
  white-space: nowrap;
}

.hero-section,
.inner-hero {
  position: relative;
  padding: calc(var(--nav-height) + 3rem) 0 5.5rem;
  background:
    linear-gradient(135deg, rgba(4, 19, 48, 0.98), rgba(10, 36, 88, 0.88)),
    url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: var(--white);
}

.hero-section h1,
.hero-section p,
.hero-section h2,
.inner-hero h1,
.inner-hero p {
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

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

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-visual {
  padding: 1rem;
}

.hero-image {
  min-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.floating-insight {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  max-width: 280px;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.insight-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
}

.hero-orb-one {
  top: 6rem;
  left: -8rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(91, 192, 255, 0.48), transparent 65%);
}

.hero-orb-two {
  right: -8rem;
  bottom: 1rem;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 68%);
}

.feature-card,
.service-preview,
.value-card,
.team-card,
.strength-card,
.testimonial-card,
.process-card {
  overflow: hidden;
}

.feature-icon,
.service-preview-icon,
.value-icon,
.team-icon,
.service-block-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 36, 88, 0.95), rgba(23, 63, 138, 0.92));
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 14px 28px rgba(10, 36, 88, 0.18);
}

.mission-card {
  padding: 2.5rem;
}

.card-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--primary-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

.counter-value {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.75rem;
  background: linear-gradient(135deg, rgba(8, 31, 77, 0.96), rgba(18, 64, 140, 0.92));
  color: var(--white);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  background: linear-gradient(180deg, #071832, #051024);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  margin-bottom: 1.25rem;
}

.footer-copy {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.inner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.image-frame,
.image-stack {
  position: relative;
}

.image-frame img,
.image-stack img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.mini-panel,
.info-card,
.strength-card,
.consultation-card,
.contact-info-card,
.form-card,
.map-placeholder {
  height: 100%;
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(10, 36, 88, 0.18), rgba(91, 192, 255, 0.48), rgba(10, 36, 88, 0.18));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  width: 50%;
  padding: 1rem 2rem;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-end;
  margin-right: auto;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  top: 2.25rem;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(91, 192, 255, 0.5);
  background: var(--white);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-card h3 {
  font-size: 1.25rem;
}

.service-block-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.service-list li + li {
  margin-top: 0.75rem;
}

.process-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-soft);
  letter-spacing: 0.1em;
}

.testimonial-slider {
  position: relative;
  padding: 2.8rem;
  min-height: 300px;
  background: linear-gradient(145deg, rgba(8, 31, 77, 0.94), rgba(23, 63, 138, 0.9));
  color: var(--white);
}

.testimonial-track {
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide p {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.5;
}

.quote-mark {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.42);
}

.slider-controls {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.contact-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-details i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.social-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 36, 88, 0.08);
  color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  background: rgba(10, 36, 88, 0.16);
}

.form-control {
  min-height: 52px;
  border: 1px solid rgba(10, 36, 88, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

textarea.form-control {
  min-height: 160px;
}

.form-control:focus {
  border-color: rgba(23, 63, 138, 0.48);
  box-shadow: 0 0 0 0.25rem rgba(91, 192, 255, 0.15);
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 36, 88, 0.1), rgba(91, 192, 255, 0.12));
  color: var(--primary);
  text-align: center;
}

.map-box i {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.scroll-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1030;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e3a87, #081f4d);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(8, 31, 77, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #071832, #081f4d);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}

.loader-text {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 82px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(6, 21, 52, 0.92);
  }

  .hero-section,
  .inner-hero {
    padding-bottom: 4.5rem;
  }

  .floating-insight {
    right: 1rem;
    bottom: 1rem;
    max-width: 240px;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item {
    width: 100%;
    margin: 0 !important;
    padding: 0 0 1.5rem 2.8rem;
  }

  .timeline-item .timeline-dot {
    left: 5px !important;
    right: auto !important;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-image,
  .image-frame img,
  .image-stack img {
    min-height: 280px;
  }

  .glass-card,
  .mission-card,
  .cta-banner,
  .testimonial-slider {
    padding: 1.6rem;
  }

  .floating-insight {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .scroll-top-btn {
    right: 1rem;
    bottom: 1rem;
  }
}
