/* ═══════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════ */
:root {
  --navy: #010f33;
  --navy-mid: #0d1f5c;
  --navy-light: #1a2f7a;
  --gold: #daaa4c;
  --gold-light: #f0b80f;
  --gold-pale: #ffc209;
  --white: #ffffff;
  --off-white: #f5f7ff;
  --text-dark: #d7def0;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --orb-blue: #3a7fd5;

  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --ease: 0.22s ease;
  --radius-pill: 50px;
  --radius-card: 16px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mobile-sticky {
  position: sticky !important;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  overflow-x: hidden;
}

section,
footer {
  overflow: hidden !important;
}

/* TYPOGRAPHY */
.heading-display {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.heading-display.on-dark {
  color: var(--white);
}

.heading-display.on-light {
  color: var(--navy);
}

.accent {
  color: var(--gold-light);
}

.text-gold {
  color: var(--gold-pale) !important;
}

.text-muted-dark {
  color: var(--text-dark) !important;
}

.text-muted-light {
  color: var(--text-muted) !important;
}

/* LAYOUT */
.section-pad {
  padding: 80px 0;
}

.divider-v {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-label.on-light {
  border: 1px solid rgba(1, 18, 74, 0.15);
  background: rgba(1, 18, 74, 0.06);
  color: var(--navy);
}

.section-label.on-dark {
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-light);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

/* BUTTONS */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    transform var(--ease),
    background var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 10px 32px rgba(201, 162, 39, 0.42);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform var(--ease);
}

.btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

/* Default (transparent or no bg) */
.site-nav {
  position: fixed;
  top: 0;
  z-index: 20;
  padding: 20px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: background 0.3s ease;
}

/* On scroll */
.site-nav.scrolled {
  background: var(--navy-mid);
}

.brand-logo {
  width: 150px;
  display: flex;
  align-items: center;
  transform:scale(1.5);
}

.brand-logo img {
  width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 8px 16px;
  display: block;
  transition: color var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 50px;
  margin: 0 3px;
  transition: .2s all ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4),
    0 4px 14px rgba(212, 175, 55, 0.2);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 10px;
  min-width: 220px;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  color: var(--text-dark);
  font-size: 0.82rem;
  padding: 9px 18px;
}

.nav-dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Desktop */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

/* Mobile */
@media (max-width: 768px) {

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 8px;
    padding-left: 15px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
  }

  .nav-dropdown-header {
    display: flex;
    justify-content: center;
    color: white;
    align-items: center;

  }
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg,
      rgba(1, 15, 51, 0.9) 0%,
      rgba(1, 14, 61, 0.85) 45%,
      rgba(4, 11, 107, 0.9) 100%),
    url("/assets/images/bg1.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%,
      rgba(58, 127, 213, 0.15) 0%,
      transparent 60%),
    radial-gradient(ellipse at 20% 80%,
      rgba(218, 170, 76, 0.1) 0%,
      transparent 50%);
  z-index: 0;
}

.hero-section>* {
  position: relative;
  z-index: 1;
}

.grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  padding-top: 4rem;
  max-width: 820px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.hero-heading {
  font-size: clamp(2.8rem, 5vw, 4rem);
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.hero-sub {
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 38px;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.hero-actions {
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.9s 0.4s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.trust-item i {
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* STATS */
.stat-item {
  padding: 8px 32px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-pale);
  line-height: 1;
}

.stat-title {
  font-size: 0.95rem;
  margin: 10px 0 6px;
  color: var(--navy);
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ABOUT */
.about-section {
  background: var(--off-white);
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 18, 74, 0.18);
  animation: fadeRight 0.9s 0.1s cubic-bezier(0.22, 0.84, 0.44, 1) both;
  background: linear-gradient(135deg,
      var(--navy-light) 0%,
      var(--navy-mid) 100%);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.3);
  padding: 60px 40px;
  text-align: center;
}

.about-img-placeholder i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.about-img-placeholder p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.about-content {
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.avatar-stack {
  display: flex;
}

.avatar-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--white);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar-item:first-child {
  margin-left: 0;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.info-row p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.info-row strong {
  color: var(--navy);
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.google-g {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.spin-badge {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.spin-badge svg {
  position: absolute;
  inset: 0;
  animation: spinSlow 12s linear infinite;
}

.spin-badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin-badge-center span {
  width: 48px;
  height: 48px;
  background: var(--navy-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* SOLUTIONS */
.solutions-section {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%,
      rgba(58, 127, 213, 0.12) 0%,
      transparent 60%),
    radial-gradient(ellipse at 10% 80%,
      rgba(218, 170, 76, 0.08) 0%,
      transparent 50%);
}

.solutions-section .container {
  position: relative;
  z-index: 1;
}

.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.solution-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orb-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(218, 170, 76, 0.25);
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-emoji {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.solution-emoji i {
  color: var(--off-white);
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
}

/* SERVICES */
.services-section {
  background: var(--white);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-light), var(--orb-blue));
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(1, 18, 74, 0.14);
  border-color: rgba(1, 18, 74, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(58, 127, 213, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: rgba(58, 127, 213, 0.14);
}

.service-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--orb-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.service-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--orb-blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    transform var(--ease);
}

.service-arrow-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

/* WHY CHOOSE US */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(1, 18, 74, 0.12);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(1, 18, 74, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-light);
  font-size: 1.3rem;
  transition:
    background var(--ease),
    color var(--ease);
}

.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* APPROACH */
.approach-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%,
      rgba(58, 127, 213, 0.1) 0%,
      transparent 65%);
}

.approach-section .container {
  position: relative;
  z-index: 1;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.approach-step:last-child {
  border-bottom: none;
}

.approach-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(218, 170, 76, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: right;
}

.approach-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.approach-step p {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.approach-divider {
  width: 1px;
  background: rgba(218, 170, 76, 0.2);
  align-self: stretch;
  flex-shrink: 0;
  margin: 4px 0;
}

/* INDUSTRIES */
.industries-section {
  background: var(--white);
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: default;
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.industry-chip:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(1, 18, 74, 0.12);
  background: var(--off-white);
}

.industry-chip i {
  font-size: 1.3rem;
  color: var(--orb-blue);
}

/* ═══════════════════════════════════════════════
       TESTIMONIALS SWIPER
    ═══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-swiper {
  width: 100%;
  padding: 8px 4px 60px !important;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(1, 18, 74, 0.12);
}

.testimonial-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.testimonial-text::before {
  content: "\201C";
  color: var(--gold);
  font-size: 2rem;
  line-height: 0.5;
  vertical-align: -0.5rem;
  margin-right: 4px;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Swiper pagination dots */
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--navy-mid);
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Swiper nav buttons */
.swiper-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.swiper-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.95rem;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
  box-shadow: var(--shadow-card);
}

.swiper-nav-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
       PARTNERS / CLIENTS SWIPER
    ═══════════════════════════════════════════════ */
.partners-section-wrap {
  background: var(--white);
  padding: 72px 0;
}

.partners-swiper,
.clients-swiper {
  width: 100%;
  padding: 8px 0 16px;
  mask-image: linear-gradient(to right,
      transparent,
      black 80px,
      black calc(100% - 80px),
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 80px,
      black calc(100% - 80px),
      transparent);
}

.partners-swiper .swiper-slide,
.clients-swiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition:
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.partner-logo:hover {
  border-color: var(--orb-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 18, 74, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CONTACT */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(1, 18, 74, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-light);
  font-size: 1.2rem;
}

.contact-item h5 {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: var(--orb-blue);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--navy);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 600;
}

.response-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.87rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--off-white);
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(1, 18, 74, 0.08);
  outline: none;
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER */
.site-footer {
  background: var(--navy-mid);
  color: var(--text-dark);
}

.footer-top {
  padding: 70px 0 48px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.86rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);

  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .site-nav {
    padding: 16px 22px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding: 16px 22px 20px;
    gap: 4px;
    z-index: 50;
  }

  .brand-logo {
    width: 180px;
    transform:scale(1);
  }

  .hero-content {
    padding-top: 7rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-dropdown-menu {
    position: static;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-body {
    padding: 30px 22px 60px;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .section-pad {
    padding: 56px 0;
  }

  .trust-bar {
    gap: 18px;
  }

  .approach-number {
    font-size: 2rem;
    width: 44px;
  }
}




/* aboutus page */

/* ── Inner Hero ── */
.inner-hero {
  position: relative;
  height: 400px;
  background: url('../images/breadcrumb3.png') center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  margin: 8px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(1, 15, 51, 0.9) 0%,
      rgba(1, 14, 61, 0.85) 45%,
      rgba(4, 11, 107, 0.9) 100%);
}

.bread-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.bread-content h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ddd;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #c9a227;
}

.breadcrumb .active {
  color: #c9a227;
}

@media (max-width: 768px) {
  .inner-hero {
    height: 300px;
    margin: 10px;
  }

  .bread-content {
    padding: 20px;
  }

  .bread-content h1 {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* ── About Image ── */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 18, 74, 0.18);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Who We Are Section ── */
.cyber-section {
  background: var(--off-white);
  padding: 80px 0;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.cyber-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(58, 127, 213, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Card Grid ── */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .cyber-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Base Card ── */
.cyber-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}

/* ── Text Card ── */
.cyber-card.is-text {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cyber-card.is-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.cyber-card.is-text:hover {
  background: var(--navy-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(1, 18, 74, 0.2);
  border-color: rgba(218, 170, 76, 0.25);
}

/* Ensure text is readable on hover (dark bg) */
.cyber-card.is-text:hover .card-title,
.cyber-card.is-text:hover .card-title .accent {
  color: var(--white);
}

.cyber-card.is-text:hover .card-body-text {
  color: var(--text-dark);
  opacity: 1;
}

.cyber-card.is-text:hover .card-icon-chip {
  background: rgba(58, 127, 213, 0.3);
  border-color: rgba(58, 127, 213, 0.5);
}

/* ── Image Card ── */
.cyber-card.is-image {
  min-height: 320px;
}

.cyber-card.is-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(1.1);
  transition: filter var(--ease), transform 0.4s ease;
}

.cyber-card.is-image:hover img {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.03);
}

.card-number {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ── Card Inner Elements ── */
.card-icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(58, 127, 213, 0.12);
  border: 1px solid rgba(58, 127, 213, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease);
}

.card-icon-chip svg {
  width: 22px;
  height: 22px;
  stroke: var(--orb-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
  transition: color var(--ease);
}

.card-title .accent {
  color: var(--gold-light);
  transition: color var(--ease);
}

.card-body-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  transition: color var(--ease), opacity var(--ease);
}

@media (max-width: 768px) {
  .cyber-section {
    padding: 60px 0;
  }

  .cyber-card.is-image {
    min-height: 230px;
  }

  .cyber-card.is-text {
    padding: 32px 24px;
  }
}


/* solutions page */
/* ── Visual Section ───────────────────────────── */


.ds-visual {
  position: relative;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-wrap::after,
.ds-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(1, 15, 51, 0.614) 0%,
      rgba(1, 14, 61, 0.556) 45%,
      rgba(4, 11, 107, 0.533) 100%);
  z-index: 1;
}

/* ── Commitment Grid ──────────────────────────── */
.ds-commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 575px) {
  .ds-commit-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Section Backgrounds ─────────────────────── */
.sp-intro {
  background: var(--white);
}

.sp-why {
  background: var(--off-white);
}

.sp-commitment {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.sp-commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(58, 127, 213, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 85%, rgba(218, 170, 76, 0.08) 0%, transparent 50%);
}

.sp-commitment .container {
  position: relative;
  z-index: 1;
}

/* ── Intro Section ───────────────────────────── */
.sp-intro-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(58, 127, 213, 0.12), rgba(1, 31, 92, 0.08));
  border: 1px solid rgba(58, 127, 213, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.sp-intro-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.sp-intro-text strong {
  color: var(--navy);
}

/* ── Why Section ─────────────────────────────── */
.sp-why-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sp-why-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.sp-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  animation: ipFadeUp 0.7s cubic-bezier(0.22, 0.84, 0.44, 1) both;
}

.sp-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(1, 18, 74, 0.13);
  border-color: rgba(58, 127, 213, 0.25);
}

.sp-why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(58, 127, 213, 0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
  transition: color var(--ease);
}

.sp-why-card:hover .sp-why-num {
  color: rgba(58, 127, 213, 0.35);
}

.sp-why-card-body h4 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.sp-why-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Commitment Section ─────────────────────── */
.sp-commit-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sp-commit-heading .accent {
  color: var(--gold-light);
}

.sp-commit-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.85;
}

.sp-commit-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.45;
  transition: background var(--ease), border-color var(--ease);
}

.sp-commit-pill:hover {
  background: rgba(218, 170, 76, 0.08);
  border-color: rgba(218, 170, 76, 0.28);
}

.sp-commit-pill i {
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Animation ─────────────────────────────── */
@keyframes ipFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
}


/* ════════════════════════════════════════════════
       NETWORK SWITCHING — PAGE-SPECIFIC STYLES
       (shared inner-page base: inner-pages.css)
    ════════════════════════════════════════════════ */

/* Why cards — staggered animation delays */
.sp-why-card:nth-child(1) {
  animation-delay: 0.05s;
}

.sp-why-card:nth-child(2) {
  animation-delay: 0.12s;
}

.sp-why-card:nth-child(3) {
  animation-delay: 0.19s;
}

.sp-why-card:nth-child(4) {
  animation-delay: 0.26s;
}

/* Commitment — icon grid */
.ns-commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

/* Feature highlight strip */
.ns-feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ns-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(58, 127, 213, 0.07);
  border: 1px solid rgba(58, 127, 213, 0.18);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.ns-badge i {
  color: var(--orb-blue);
  font-size: 0.9rem;
}

.ns-badge:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.ns-badge:hover i {
  color: var(--gold-light);
}

@media (max-width: 575px) {
  .ns-commit-grid {
    grid-template-columns: 1fr;
  }
}