/* ================== RESET & BASE ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 15px;
  color: #2a2a40;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --purple-900: #031e30;
  --purple-800: #062f47;
  --purple-700: #0a4868;
  --purple-600: #0c5b85;
  --purple-500: #1085b8;
  --purple-400: #16b8e0;
  --brand-deep: #031e30;
  --brand-mid: #0a4d70;
  --brand-bright: #16b8e0;
  --brand-glow: #00e0ff;
  --brand-mint: #5dffec;
  --navy: #051a3a;
  --navy-2: #062648;
  --text: #4d5a68;
  --muted: #7a8a9a;
  --light: #f0f7fb;
  --border: #d8e6ee;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  text-align: center;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #0a4d70 0%, #073651 100%);
  color: #fff;
}
.btn-primary:hover { background: #062f47; }
.btn-light {
  background: #fff;
  color: var(--purple-700);
}
.btn-light:hover { background: #e6f4fa; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-dark {
  background: #021824;
  color: #fff;
}
.btn-dark:hover { background: #031e30; }
.btn-block { width: 100%; }

/* ================== TOPBAR ================== */
.topbar {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #e6f0f5;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #4d5a68;
  font-weight: 500;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4d5a68;
  transition: color 0.2s ease;
}
.topbar-link i {
  color: var(--brand-bright);
  font-size: 11px;
}
.topbar-link:hover { color: var(--brand-bright); }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: #d8e0e8;
}
.topbar-country {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.topbar-region {
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.topbar-country .flag-circle { width: 18px; height: 18px; }
.flags { display: flex; gap: 8px; align-items: center; }
.flag-circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid #ddd;
  transition: transform 0.2s;
}
.flag:hover .flag-circle { transform: scale(1.15); }
.flag.selected .flag-circle { box-shadow: 0 0 0 2px var(--purple-600); }
.flag-us { background-image: url('https://flagcdn.com/w40/us.png'); }
.flag-uk { background-image: url('https://flagcdn.com/w40/gb.png'); }
.flag-pk { background-image: url('https://flagcdn.com/w40/pk.png'); }
.flag-sg { background-image: url('https://flagcdn.com/w40/sg.png'); }

/* ================== HEADER ================== */
.site-header {
  background: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.logo:hover .logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(0, 224, 255, 0.45));
}
.footer-logo .logo-img { height: 48px; filter: brightness(0) invert(1); }
.footer-logo:hover .logo-img { filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 224, 255, 0.4)); }

.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 13px;
  color: #2c2c46;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--purple-600);
}
.main-nav a i { font-size: 9px; }

.header-cta { padding: 12px 26px; font-size: 14px; border-radius: 6px; }

.nav-toggle {
  display: none;
  font-size: 22px;
  color: var(--purple-700);
}

/* ================== HERO ================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #031e30 0%, #073651 40%, #0a4d70 70%, #1085b8 100%);
  color: #fff;
  padding: 130px 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(22,184,224,0.25), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(60,20,120,0.4), transparent 60%);
  pointer-events: none;
}
#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 620px;
}
.welcome-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  opacity: 0;
  animation: slideInUp 0.7s ease 0.1s forwards;
}
.welcome-line .line {
  width: 50px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.hero h1 {
  font-size: 92px;
  font-weight: 800;
  line-height: 1.03;
  margin-bottom: 32px;
  letter-spacing: -1.5px;
  color: #fff;
  opacity: 0;
  animation: slideInUp 0.8s ease 0.3s forwards;
}
.hero p {
  font-size: 15px;
  color: #a5d4e8;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  animation: slideInUp 0.8s ease 0.5s forwards;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideInUp 0.8s ease 0.7s forwards;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-light, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-light::before, .btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}
.btn-light:hover::before, .btn-outline:hover::before { left: 100%; }
.btn-light:hover, .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Globe */
.hero-visual { display: flex; justify-content: center; position: relative; }
.globe-wrap {
  position: relative;
  width: 540px;
  height: 540px;
  display: grid;
  place-items: center;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

#globeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(22, 184, 224, 0.45));
}

.globe-aura {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,184,224,0.35) 0%, rgba(10,77,112,0.15) 50%, transparent 70%);
  filter: blur(20px);
  animation: pulseAura 4s ease-in-out infinite;
}
.globe-aura.ring2 {
  width: 95%;
  height: 95%;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  animation: spinSlow 30s linear infinite;
  filter: none;
}
.globe-aura.ring2::before,
.globe-aura.ring2::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #fff, 0 0 20px rgba(22,184,224,0.8);
}
.globe-aura.ring2::before { top: -3px; left: 50%; transform: translateX(-50%); }
.globe-aura.ring2::after { bottom: -3px; left: 50%; transform: translateX(-50%); background: #7ad5f0; }

@keyframes pulseAura {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.orbit-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: spinReverse 40s linear infinite;
}
@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

.globe-text {
  position: relative;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  z-index: 5;
  text-shadow:
    0 0 20px rgba(255,255,255,0.6),
    0 0 40px rgba(22,184,224,0.8);
  animation: textGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(22,184,224,0.6); }
  50% { text-shadow: 0 0 30px rgba(255,255,255,0.9), 0 0 60px rgba(125,213,240,1); }
}

.globe-tag {
  position: absolute;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #a5d4e8;
  line-height: 1.3;
  z-index: 4;
  opacity: 0;
  animation: fadeInTag 1s ease forwards;
}
.globe-tag span { display: block; }
.globe-tag strong { display: block; font-size: 16px; color: #fff; font-weight: 700; margin-top: 2px; }
.tag-top {
  top: 22%;
  left: 0;
  text-align: right;
  animation-delay: 0.6s;
}
.tag-top .tag-line {
  position: absolute;
  right: -55px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}
.tag-top .tag-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #fff;
  animation: pulseDot 2s ease-in-out infinite;
}
.tag-bottom {
  bottom: 22%;
  right: 0;
  background: linear-gradient(135deg, rgba(16, 133, 184, 0.55), rgba(10, 77, 112, 0.4));
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  animation-delay: 1s;
}
.tag-bottom strong { font-size: 14px; }

@keyframes fadeInTag {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 8px #fff, 0 0 14px rgba(255,255,255,0.6); transform: scale(1); }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px rgba(125,213,240,1); transform: scale(1.4); }
}

/* Floating dots */
.floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(22,184,224,0.8);
  z-index: 3;
}
.floating-dot.d1 { top: 18%; right: 18%; animation: floatDot 5s ease-in-out infinite; }
.floating-dot.d2 { bottom: 28%; left: 14%; animation: floatDot 7s ease-in-out infinite 1s; background: #7ad5f0; }
.floating-dot.d3 { top: 50%; left: 4%; animation: floatDot 6s ease-in-out infinite 0.5s; }
.floating-dot.d4 { bottom: 14%; right: 30%; animation: floatDot 8s ease-in-out infinite 2s; background: #5dffec; }

@keyframes floatDot {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(8px, -10px) scale(1.4); opacity: 1; }
}

/* Hero feature pills */
.hero-features {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
}
.feature-pill {
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.feature-pill i {
  color: #fff;
  background: transparent;
  font-size: 12px;
}

/* Fixed social rail — attached to right edge, visible on every section */
.social-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 95;
  background: linear-gradient(180deg, #062f47 0%, #021824 100%);
  padding: 14px 10px;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(0, 224, 255, 0.25);
  border-right: none;
  box-shadow:
    -6px 8px 24px rgba(3, 30, 48, 0.45),
    0 0 0 1px rgba(0, 224, 255, 0.15),
    -2px 0 30px rgba(0, 224, 255, 0.18);
  animation: railSlideIn 0.7s cubic-bezier(.2,.8,.2,1) both 0.4s;
}
@keyframes railSlideIn {
  from { transform: translate(60px, -50%); opacity: 0; }
  to   { transform: translate(0,    -50%); opacity: 1; }
}
.social-rail::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 16%;
  bottom: 16%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--brand-glow), transparent);
  border-radius: 2px;
  filter: blur(0.5px);
  animation: railEdgePulse 3s ease-in-out infinite;
}
@keyframes railEdgePulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.social-rail li { list-style: none; }
.social-rail a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
  position: relative;
}
.social-rail a:hover {
  background: rgba(0, 224, 255, 0.2);
  color: var(--brand-glow);
  transform: translateX(-3px) scale(1.12);
  box-shadow: 0 4px 14px rgba(0, 224, 255, 0.4);
}

/* ================== ABOUT ================== */
.about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image .img-placeholder {
  border-radius: 14px;
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 77, 112, 0.25);
  transition: transform 0.5s ease;
}
.about-image .img-placeholder:hover { transform: scale(1.02); }
.img-monitor {
  background-image:
    linear-gradient(135deg, rgba(3,30,48,0.35), rgba(10,77,112,0.25)),
    url('https://images.unsplash.com/photo-1551808525-51a94da548ce?w=1000&q=80&auto=format&fit=crop');
}
.img-monitor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3,30,48,0.4));
}
.eyebrow {
  font-size: 16px;
  color: var(--purple-700);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.about-text h2,
.partners-text h2,
.advanced-text h2,
.testimonials-text h2 {
  font-size: 40px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.about-text p,
.partners-text p,
.advanced-text p {
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text .btn { margin-top: 12px; }

/* ================== PARTNERS ================== */
.partners { padding: 40px 0 80px; }
.partners-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.partners-card {
  background: linear-gradient(160deg, #062f47 0%, #031e30 100%);
  border-radius: 16px;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(10,77,112,0.25);
}
.card-eyebrow {
  font-size: 11px;
  color: #a5d4e8;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 8px 0;
  font-size: 22px;
  font-weight: 700;
}
.partner-logo i { font-size: 26px; }
.partner-logo.small { font-size: 13px; font-weight: 600; }
.partner-logo.small i { font-size: 18px; }
.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 18px 0;
}
.partner-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.logo-name.eagle em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 1.5px;
}

/* ================== EXPLORE ================== */
.explore { padding: 30px 0 60px; }
.explore-card {
  background:
    linear-gradient(135deg, rgba(10,77,112,0.88), rgba(7,54,81,0.92)),
    url('https://images.unsplash.com/photo-1573497019418-b400bb3ab074?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(22,184,224,0.15), transparent 50%);
}
.explore-card h2 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}
.explore-card p {
  position: relative;
  font-size: 13px;
  margin-bottom: 24px;
  color: #bce0ee;
}
.explore-buttons {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================== ADVANCED ================== */
.advanced { padding: 60px 0 80px; }
.advanced-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.advanced-image .img-placeholder {
  height: 290px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(10, 77, 112, 0.2);
  transition: transform 0.5s ease;
}
.advanced-image .img-placeholder:hover { transform: scale(1.02); }
.img-monitor2 {
  background-image:
    linear-gradient(135deg, rgba(3,30,48,0.3), rgba(10,77,112,0.2)),
    url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=1000&q=80&auto=format&fit=crop');
}

/* ================== SECTION HEADERS ================== */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 17px;
  color: #0a0a14;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}
.section-eyebrow .line {
  width: 56px;
  height: 3px;
  background: #0a0a14;
  border-radius: 2px;
}
.section-title {
  text-align: center;
  font-size: 46px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center;
  color: var(--text);
  font-size: 15px;
  max-width: 880px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.center-btn { text-align: center; margin-top: 30px; }

/* ================== SERVICES ================== */
.services { padding: 90px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(10,77,112,0.14);
  transform: translateY(-4px);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4d70, #073651);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 26px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.service-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

/* ================== INDUSTRIES ================== */
.industries { padding: 90px 0 80px; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry-card {
  height: 220px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(10, 77, 112, 0.25);
}
.industry-restaurant { background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=600&q=80&auto=format&fit=crop'); }
.industry-gym       { background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=600&q=80&auto=format&fit=crop'); }
.industry-warehouse { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=600&q=80&auto=format&fit=crop'); }
.industry-office    { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80&auto=format&fit=crop'); }
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3,30,48,0.5));
  border-radius: 6px;
  transition: background 0.4s ease;
}
.industry-card:hover::after {
  background: linear-gradient(180deg, rgba(10,77,112,0.2) 0%, rgba(3,30,48,0.65));
}

/* ================== OFFICES ================== */
.offices { padding: 70px 0 50px; }
.world-map { max-width: 800px; margin: 0 auto; }
.map-svg { width: 100%; height: auto; }
.map-svg text { font-family: 'Poppins', sans-serif; }

/* ================== BTS ================== */
.bts { padding: 80px 0 90px; }
.bts-image {
  max-width: 760px;
  margin: 30px auto 0;
}
.img-bts {
  height: 420px;
  border-radius: 6px;
  background: #0a0a1a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.bts-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bts-overlay { position: absolute; inset: 0; pointer-events: none; }
.bts-glow {
  position: absolute;
  height: 4px;
  border-radius: 4px;
  filter: blur(2px);
}
.bts-glow.blue {
  top: 38%;
  left: 8%;
  right: 50%;
  background: linear-gradient(90deg, transparent, #00b4ff, #00b4ff);
  box-shadow: 0 0 20px #00b4ff;
}
.bts-glow.pink {
  top: 50%;
  left: 50%;
  right: 8%;
  background: linear-gradient(90deg, #00d4ff, #00d4ff, transparent);
  box-shadow: 0 0 20px #00d4ff;
}
.bts-watermark {
  position: absolute;
  bottom: 20px;
  right: 24px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-style: italic;
}
.bts-watermark strong { color: rgba(255,255,255,0.6); }

/* ================== TESTIMONIALS ================== */
.testimonials {
  padding: 90px 0 50px;
  background: #fafbfc;
  overflow-x: clip;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.testimonials-head {
  position: sticky;
  top: 100px;
}
.t-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7785;
  display: block;
  margin-bottom: 18px;
}
.testimonials-head h2 {
  font-size: 34px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.t-controls {
  display: flex;
  gap: 14px;
}
.t-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.t-controls button:hover {
  background: #fff;
  border-color: var(--brand-bright);
  color: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 184, 224, 0.2);
}
.t-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials-viewport {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  padding-right: 24px;
}
.testimonials-track {
  display: flex;
  gap: 22px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.t-card {
  flex: 0 0 380px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 32px;
  box-shadow: 0 12px 32px rgba(20, 40, 60, 0.06);
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  position: relative;
}
.t-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-3deg);
  box-shadow: 0 24px 50px rgba(20, 40, 60, 0.14);
}
.t-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.t-avatar-1 { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&q=80&auto=format&fit=crop'); }
.t-avatar-2 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&q=80&auto=format&fit=crop'); }
.t-avatar-3 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80&auto=format&fit=crop'); }
.t-avatar-4 { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&q=80&auto=format&fit=crop'); }
.t-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.t-role {
  font-size: 12.5px;
  color: #7a8593;
  display: block;
}
.t-card p {
  font-size: 14px;
  color: #4f5b69;
  line-height: 1.65;
  margin: 0;
}

/* ================== CLIENTS LOGO STRIP ================== */
.clients {
  padding: 40px 0 70px;
  background: #fafbfc;
  border-top: 1px solid #eef1f4;
}
.clients-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 18px 0;
}
.client-logo {
  color: #98a2ac;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.client-logo i { font-size: 16px; }
.client-logo:hover {
  opacity: 1;
  color: var(--navy);
  transform: translateY(-2px);
}

/* ================== BLOGS ================== */
.blogs { padding: 80px 0 100px; }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.blog-img {
  height: 180px;
  border-radius: 6px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  position: relative;
}
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  border-radius: 6px;
}
.blog-gas        { background-image: url('https://images.unsplash.com/photo-1545459720-aac8509eb02c?w=600&q=80&auto=format&fit=crop'); }
.blog-restaurant { background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=600&q=80&auto=format&fit=crop'); }
.blog-car        { background-image: url('https://images.unsplash.com/photo-1567449303078-57ad995bd17f?w=600&q=80&auto=format&fit=crop'); }
.blog-card { transition: transform 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-img { transition: transform 0.4s ease; overflow: hidden; }
.blog-card h3 {
  font-size: 20px;
  color: var(--purple-700);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-meta {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.read-more {
  font-size: 13px;
  color: var(--purple-700);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.blog-img {
  height: 200px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ================== SUBSCRIBE ================== */
.subscribe {
  background: linear-gradient(135deg, #0a4d70, #062f47);
  padding: 50px 0;
  color: #fff;
}
.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.subscribe h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}
.subscribe-form .row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.subscribe-form input {
  padding: 12px 14px;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  background: #fff;
  font-family: inherit;
  outline: none;
}
.subscribe-form .btn-light { color: var(--purple-700); font-weight: 600; padding: 12px; }

/* ================== STATS ================== */
.stats { background: linear-gradient(135deg, #0a4d70, #062f47); padding: 0 0 30px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 22px;
  color: #fff;
  text-align: center;
  position: relative;
}
.stat-card i {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

/* ================== FOOTER ================== */
.site-footer {
  background: linear-gradient(135deg, #073651, #031e30);
  color: #a5d4e8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  font-size: 12.5px;
  color: #a5d4e8;
  margin: 18px 0;
  line-height: 1.7;
}
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text strong { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: #a5d4e8;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #a5d4e8;
  margin: 0;
}
.footer-bottom a { color: #a5d4e8; transition: color 0.2s ease; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom a.credit-link {
  color: var(--brand-glow);
  font-weight: 600;
  position: relative;
  padding-bottom: 1px;
}
.footer-bottom a.credit-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brand-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-bottom a.credit-link:hover { color: var(--brand-mint); }
.footer-bottom a.credit-link:hover::after { transform: scaleX(1); background: var(--brand-mint); }

/* ================== CHAT WIDGET ================== */
.chat-widget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
}
.chat-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  font-size: 12px;
  color: #2a2a40;
  max-width: 200px;
}
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.chat-options a,
.chat-options button {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-align: left;
}
.chat-options a:hover,
.chat-options button:hover { background: #f0f7fb; color: var(--brand-bright); }
.chat-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-700);
  font-size: 16px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff2e57;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ================== RESPONSIVE ================== */
/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service card icon spin on hover */
.service-card:hover .service-icon {
  animation: iconSpin 0.6s ease;
}
@keyframes iconSpin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 52px; }
  .section-title { font-size: 36px; }
  .about-text h2,
  .partners-text h2,
  .advanced-text h2,
  .testimonials-text h2 { font-size: 32px; }
  .globe-wrap { width: 360px; height: 360px; }
  .about-inner,
  .partners-inner,
  .advanced-inner,
  .testimonials-grid,
  .subscribe-inner,
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .blogs-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-head { position: static; margin-bottom: 24px; }
  .testimonials-head h2 { margin-bottom: 24px; font-size: 30px; }
  .testimonials-viewport { margin-right: -20px; padding-right: 20px; }
  .t-card { flex-basis: 300px; }
}
@media (max-width: 600px) {
  .social-rail { display: none; }
  .topbar-contact .topbar-divider { display: none; }
  .topbar-contact { gap: 10px; font-size: 11.5px; flex-wrap: wrap; }
  .topbar-inner { gap: 10px; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 0 0; }
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 28px; }
  .about-text h2,
  .partners-text h2,
  .advanced-text h2 { font-size: 26px; }
  .service-card h3 { font-size: 19px; }
  .blog-card h3 { font-size: 18px; }
  .section-eyebrow { font-size: 15px; }
  .section-eyebrow .line { width: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-features { gap: 14px; }
  .feature-pill { font-size: 12px; }
  .subscribe-form .row1 { grid-template-columns: 1fr; }
}

/* ================== 3D SCENE + ANIMATIONS ================== */
/* NOTE: don't put `perspective` on <body> — it would create a containing block
   for `position: fixed` descendants (the social rail, chat widget) and break
   their viewport-anchored layout. Each card uses its own perspective() in the
   transform function instead. */

/* Cards that get the 3D tilt (driven by JS via --rx / --ry / --mx / --my) */
.tilt-3d {
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.tilt-3d > * { transform: translateZ(0); }
.tilt-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 224, 255, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.tilt-3d:hover::after { opacity: 1; }

/* Lift the visible content above the glow */
.tilt-3d > *:not(.bts-overlay):not(.bts-watermark):not(.bts-video) { position: relative; z-index: 3; }

/* Service card 3D treatment */
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  transform-style: preserve-3d;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand-mint), var(--brand-mid));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.service-card:hover::before { opacity: 0.55; }
.service-card:hover {
  box-shadow:
    0 30px 60px rgba(10, 77, 112, 0.22),
    0 0 0 1px rgba(22, 184, 224, 0.25);
}
.service-icon {
  transform-style: preserve-3d;
  box-shadow:
    0 10px 22px rgba(10, 77, 112, 0.35),
    inset 0 -3px 8px rgba(0, 0, 0, 0.18),
    inset 0 3px 8px rgba(255, 255, 255, 0.18);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-icon {
  animation: icon3DSpin 0.9s cubic-bezier(.2,.8,.2,1);
}
@keyframes icon3DSpin {
  0%   { transform: rotateY(0)    translateZ(0); }
  60%  { transform: rotateY(360deg) translateZ(20px); }
  100% { transform: rotateY(360deg) translateZ(0); }
}

/* Industry cards 3D */
.industry-card {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 28px 50px rgba(10, 77, 112, 0.35);
}

/* Blog cards 3D */
.blog-card {
  transform-style: preserve-3d;
  border-radius: 10px;
  padding: 0;
  background: linear-gradient(180deg, #ffffff, #f4fafd);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 26px 50px rgba(10, 77, 112, 0.25);
}

/* Partners card 3D float */
.partners-card {
  transform-style: preserve-3d;
  animation: card3DFloat 7s ease-in-out infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.partners-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) translateZ(20px);
  box-shadow: 0 35px 60px rgba(3, 30, 48, 0.45);
}
@keyframes card3DFloat {
  0%, 100% { transform: rotateX(0)    rotateY(0)    translateY(0); }
  50%      { transform: rotateX(2deg) rotateY(-2deg) translateY(-8px); }
}

/* Stat cards 3D */
.stat-card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-6px) rotateX(8deg) scale(1.03);
  background: linear-gradient(180deg, rgba(22,184,224,0.18), rgba(22,184,224,0.05));
  box-shadow: 0 18px 36px rgba(0, 224, 255, 0.25);
}
.stat-card i {
  display: inline-block;
  animation: iconBob 3s ease-in-out infinite;
  color: var(--brand-glow);
  text-shadow: 0 0 12px rgba(0, 224, 255, 0.7);
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotateY(0); }
  50%      { transform: translateY(-3px) rotateY(180deg); }
}

/* About + advanced images 3D */
.about-image .img-placeholder,
.advanced-image .img-placeholder,
.img-bts {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease;
}
.about-image .img-placeholder:hover,
.advanced-image .img-placeholder:hover {
  transform: rotateY(-6deg) rotateX(4deg) scale(1.03) translateZ(20px);
  box-shadow: 0 35px 60px rgba(10, 77, 112, 0.35);
}
.img-bts:hover {
  transform: rotateX(3deg) scale(1.02);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(0, 224, 255, 0.25);
}

/* Hero h1 + globe parallax-friendly */
.hero h1 {
  text-shadow:
    0 1px 0 rgba(0,224,255,0.15),
    0 6px 24px rgba(0, 224, 255, 0.18);
}
.globe-wrap { transform-style: preserve-3d; }

/* Buttons get a subtle 3D press */
.btn {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.btn-primary {
  box-shadow:
    0 8px 18px rgba(10, 77, 112, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25),
    inset 0 2px 6px rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) rotateX(8deg);
  box-shadow:
    0 14px 28px rgba(0, 224, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25),
    inset 0 2px 6px rgba(255, 255, 255, 0.2);
}
.btn-primary:active { transform: translateY(0) rotateX(0); }

/* Section title — subtle 3D depth */
.section-title {
  text-shadow:
    0 1px 0 rgba(10, 77, 112, 0.06),
    0 2px 0 rgba(10, 77, 112, 0.04),
    0 8px 18px rgba(10, 77, 112, 0.08);
}

/* New shimmer for partner card */
.partners-card { position: relative; overflow: hidden; }
.partners-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(0, 224, 255, 0.18), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { left: -150%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* Glow ring for explore card */
.explore-card {
  border: 1px solid rgba(0, 224, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(22, 184, 224, 0.18),
    0 30px 60px rgba(3, 30, 48, 0.45),
    inset 0 0 60px rgba(0, 224, 255, 0.08);
  animation: explorePulse 5s ease-in-out infinite;
}
@keyframes explorePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(22, 184, 224, 0.18), 0 30px 60px rgba(3, 30, 48, 0.45), inset 0 0 60px rgba(0, 224, 255, 0.08); }
  50%      { box-shadow: 0 0 0 1px rgba(0, 224, 255, 0.45), 0 36px 80px rgba(0, 224, 255, 0.2),  inset 0 0 90px rgba(0, 224, 255, 0.18); }
}

/* Service icon — accent ring */
.service-icon {
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-bright));
  position: relative;
}
.service-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 224, 255, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon::after {
  opacity: 1;
  transform: scale(1);
}

/* Reveal — 3D version */
.reveal {
  transform: perspective(1000px) translateY(40px) rotateX(-8deg);
  transform-origin: center top;
}
.reveal.visible {
  transform: perspective(1000px) translateY(0) rotateX(0);
}


/* Floating dots — color refresh */
.floating-dot {
  background: var(--brand-glow);
  box-shadow: 0 0 12px var(--brand-glow), 0 0 24px rgba(0, 224, 255, 0.6);
}

/* BTS glow color refresh — pink → mint accent */
.bts-glow.pink {
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-mint), transparent);
  box-shadow: 0 0 20px var(--brand-mint);
}

/* ================== ALTERNATE BANNER: HERO CAROUSEL ================== */
.hero-carousel {
  position: relative;
    height: 820px;
  overflow: hidden;
  background: #021824;
  isolation: isolate;
}
.hc-track {
  position: absolute;
  inset: 0;
}
.hc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease-out;
  pointer-events: none;
}
.hc-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 24, 36, 0.85) 0%, rgba(3, 30, 48, 0.65) 45%, rgba(3, 30, 48, 0.25) 100%),
    linear-gradient(180deg, transparent 60%, rgba(2, 24, 36, 0.55));
}
.hc-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.hc-1 { background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=1800&q=80&auto=format&fit=crop'); }
.hc-2 { background-image: url('assets/banner-2.jpg'); }
.hc-3 { background-image: url('assets/banner-3.jpg'); }
.hc-4 { background-image: url('https://images.unsplash.com/photo-1614064548237-096f735f344f?w=1800&q=80&auto=format&fit=crop'); }

.hc-content {
    position: relative;
    z-index: 3;
    color: #fff;
}
.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--brand-glow);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
}
.hc-eyebrow .line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--brand-glow);
  border-radius: 2px;
}
.hc-content h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 224, 255, 0.25);
  opacity: 0;
  transform: translateY(30px);
}
.hc-content p {
  font-size: 16px;
  color: #cfe6f0;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
}
.hc-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}
.hc-slide.active .hc-eyebrow  { animation: hcEnter 0.7s ease 0.2s forwards; }
.hc-slide.active .hc-content h2 { animation: hcEnter 0.8s ease 0.35s forwards; }
.hc-slide.active .hc-content p  { animation: hcEnter 0.8s ease 0.5s forwards; }
.hc-slide.active .hc-buttons   { animation: hcEnter 0.8s ease 0.65s forwards; }
@keyframes hcEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* Arrows */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 16px;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hc-arrow:hover {
  background: rgba(0, 224, 255, 0.25);
  border-color: var(--brand-glow);
  color: var(--brand-glow);
}
.hc-prev { left: 28px; }
.hc-next { right: 28px; }
.hc-prev:hover { transform: translateY(-50%) translateX(-3px); }
.hc-next:hover { transform: translateY(-50%) translateX(3px); }

/* Dots */
.hc-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hc-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.hc-dot:hover { background: rgba(255, 255, 255, 0.55); }
.hc-dot.active {
  background: var(--brand-glow);
  transform: scaleX(1.4);
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.7);
}

/* Auto-advance progress bar */
.hc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 5;
}
.hc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand-glow));
  width: 0;
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.7);
}

@media (max-width: 992px) {
  .hero-carousel { height: 520px; }
  .hc-content h2 { font-size: 44px; }
  .hc-arrow { width: 44px; height: 44px; }
  .hc-prev { left: 14px; } .hc-next { right: 14px; }
}
@media (max-width: 600px) {
  .hero-carousel { height: 460px; }
  .hc-content h2 { font-size: 32px; }
  .hc-content p  { font-size: 14px; }
  .hc-arrow { display: none; }
  .hc-dots { bottom: 22px; }
}

/* ================== SHARED INNER-PAGE HERO ================== */
.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(3,30,48,0.92) 0%, rgba(7,54,81,0.92) 50%, rgba(10,77,112,0.85) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0,224,255,0.15), transparent 60%);
  background-color: #031e30;
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(22,184,224,0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,224,255,0.12), transparent 50%);
  z-index: -1;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px);
  opacity: 0.5;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.page-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-shadow: 0 6px 24px rgba(0,224,255,0.18);
}
.page-hero p {
  font-size: 16px;
  color: #bce0ee;
  max-width: 620px;
  line-height: 1.7;
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a5d4e8;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}
.breadcrumb a {
  color: #a5d4e8;
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--brand-glow); }
.breadcrumb i { font-size: 9px; opacity: 0.6; }
.breadcrumb .current { color: #fff; font-weight: 600; }

@media (max-width: 992px) {
  .page-hero h1 { font-size: 44px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 60px 0 50px; }
  .page-hero h1 { font-size: 32px; }
}

/* Reduced-motion safety */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
