/* ---------- shared keyframes (page-scoped, harmless if unused) ---------- */
@keyframes sg-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes sg-pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,189,248,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(56,189,248,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
}
@keyframes sg-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sg-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section *, .about-section *, .trust-section *, .services-section *,
  .security-section *, .industries-section *, .process-section *, .tech-section *,
  .whychoose-section *, .locations-section *, .cost-section *, .faq-section *,
  .finalcta-section * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ================= HERO SECTION (Plain light theme) ================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: #F5F8FF;
  color: #0A1128;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-top-row { margin-bottom: 10px; }
.hero-copy { margin: 0; text-align: left; }
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  background: linear-gradient(100deg, #0A1128 10%, #1E3A8A 55%, #3B82F6 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sg-fade-up 0.8s ease both 0.05s;
}
.hero-desc {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 560px;
  animation: sg-fade-up 0.8s ease both 0.1s;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 34px; }
/* ================= HERO VISUAL + FLOATING BADGES ================= */
.hero-bottom-row { margin-top: 10px; }

.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-inner {
  position: relative;
  max-width: 480px;
  width: 100%;
  animation: sg-fade-up 0.9s ease both 0.15s;
}
.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(30,58,138,0.25));
}
.hero-para-badge{color: #1b5ef7!important; font-size: 1.3rem; font-weight: 500;}
/* Small app-icon badges (Flutter / Android / Apple) */
.hero-badge {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E7ECF7;
  box-shadow: 0 14px 26px -12px rgba(10,17,40,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  animation: sg-float-y 6s ease-in-out infinite;
}
.hero-badge img { width: 100%; height: 100%; object-fit: contain; }

.hero-badge--flutter { top: 4%; left: 0%; animation-delay: 0s; }
.hero-badge--android { top: 46%; left: -8%; width: 50px; height: 50px; animation-delay: 1.2s; }
.hero-badge--apple   { top: 66%; left: 2%; width: 50px; height: 50px; animation-delay: 2.4s; }

/* Floating info cards (API Integration / App Performance) */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #E7ECF7;
  box-shadow: 0 18px 34px -16px rgba(10,17,40,0.3);
  animation: sg-float-y 7s ease-in-out infinite;
}
.hero-float-card-title { font-size: 0.82rem; font-weight: 700; color: #0A1128; margin: 0; }
.hero-float-card-sub { font-size: 0.72rem; color: #5B6478; margin: 2px 0 0; }
.hero-float-card-dot {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #38BDF8, #3B82F6);
}
.hero-float-card-badge {
  margin-left: auto;
  font-size: 0.74rem; font-weight: 800; color: #16A34A;
  background: rgba(22,163,74,0.12);
  padding: 3px 8px; border-radius: 999px;
}

.hero-float-card--api {
  bottom: 4%; left: -10%;
  animation-delay: 0.6s;
}
.hero-float-card--performance {
  top: 6%; right: -6%;
  animation-delay: 1.8s;
}

@media (max-width: 991px) {
  .hero-visual-inner { max-width: 340px; margin-top: 30px; }
  .hero-badge { width: 44px; height: 44px; }
  .hero-float-card { padding: 10px 12px; }
  .hero-float-card-title { font-size: 0.74rem; }
  .hero-float-card-sub { font-size: 0.66rem; }
}
@media (max-width: 767px) {
  .hero-copy { text-align: left; }
  .hero-badge--flutter { left: -2%; }
  .hero-badge--android { left: -4%; }
  .hero-badge--apple { left: 4%; }
  .hero-float-card--api { left: -4%; }
  .hero-float-card--performance { right: -2%; }
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-btn--primary {
  color: #FFFFFF;
  background: linear-gradient(120deg, #1E3A8A, #3B82F6 60%, #38BDF8);
  box-shadow: 0 14px 30px -10px rgba(59,130,246,0.45);
  cursor: pointer;
}
.hero-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -10px rgba(59,130,246,0.6); color: #fff; text-decoration: none; }
.hero-trust-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #0A1128;
  margin: 8px 0 16px;
}
.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 32px;
  width: 100%;
}
.hero-trust-list--center { text-align: left; }
@media (max-width: 767px) {
  .hero-trust-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
  .hero-trust-list li {
    white-space: normal;
  }
}
.hero-trust-list li {
  position: relative;
  padding-left: 22px;
  color: #5B6478;
  font-size: 0.9rem;
  white-space: nowrap;
}
.hero-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8, #3B82F6);
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-trust-list li { white-space: normal; }
}
/* ================= ABOUT / WHY UAE SECTION ================= */
.about-section { padding: 30px 0; background: #FFFFFF; }
.about-eyebrow, .trust-eyebrow, .services-eyebrow, .security-eyebrow, .industries-eyebrow,
.process-eyebrow, .tech-eyebrow, .whychoose-eyebrow, .locations-eyebrow, .cost-eyebrow, .faq-eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(59,130,246,0.1); color: #1E3A8A;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  margin-bottom: 14px;
}
.about-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #0A1128; margin-bottom: 16px;
  background: linear-gradient(100deg, #0A1128, #1E3A8A 60%, #3B82F6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-intro { color: #475569; font-size: 1.02rem; line-height: 1.75; margin-bottom: 10px; }
.about-grid { margin-top: 20px; }
.about-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-top: 20px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.about-grid > .about-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  padding: 26px 22px;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E7ECF7;
  box-shadow: 0 10px 30px -18px rgba(10,17,40,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-card--highlight {
  background: linear-gradient(160deg, #0A1128, #14265E);
  border-color: #24357E;
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
  .about-grid { grid-template-columns: 1fr !important; }
}
.about-grid .about-card--highlight {
  background: linear-gradient(160deg, #EAF2FF, #DCEAFF) !important;
  border-color: #BFD6FA !important;
}
.about-grid .about-card--highlight .about-card-title {
  color: #0A1128 !important;
}
.about-grid .about-card--highlight .about-card-text {
  color: #475569 !important;
}
.about-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(30,58,138,0.3); border-color: #C7D9FB; }
.about-card--highlight { background: linear-gradient(160deg, #0A1128, #14265E); border-color: #24357E; }
.about-card--highlight .about-card-title, .about-card--highlight .about-card-text { color: #E7ECFB; }
.about-card--highlight .about-card-text { color: rgba(231,236,251,0.75); }
.about-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: linear-gradient(150deg, rgba(56,189,248,0.14), rgba(59,130,246,0.08));
  border: 1px solid rgba(59,130,246,0.18);
}
.about-card-title { font-size: 1.08rem; font-weight: 700; color: #0A1128; margin-bottom: 10px; line-height: 1.35; }
.about-card-text { font-size: 0.92rem; color: #5B6478; line-height: 1.65; }
.about-closing { text-align: center; margin-top: 10px; }
.about-closing p { font-size: 1.08rem; color: #0A1128; font-weight: 600; margin-bottom: 20px; }
.about-cta, .trust-cta, .services-cta, .security-cta-link, .industries-cta,
.process-cta, .whychoose-cta, .cost-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px;
  background: linear-gradient(120deg, #1E3A8A, #3B82F6);
  color: #fff; font-weight: 600; font-size: 0.92rem; text-decoration: none;
  box-shadow: 0 14px 26px -12px rgba(59,130,246,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.about-cta:hover, .trust-cta:hover, .services-cta:hover, .security-cta-link:hover, .industries-cta:hover,
.process-cta:hover, .whychoose-cta:hover, .cost-cta:hover {
  transform: translateY(-3px); color: #fff; text-decoration: none; box-shadow: 0 18px 30px -12px rgba(59,130,246,0.7);
}

/* ================= TRUST SECTION ================= */
.trust-section { padding: 30px 0; background: #F5F8FF; }
.trust-heading { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; line-height: 1.25; }
.trust-lead { color: #475569; font-size: 0.98rem; line-height: 1.75; margin-bottom: 16px; }
.trust-glasscard {
  margin-top: 16px; padding: 22px; border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(59,130,246,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px -22px rgba(30,58,138,0.35);
}
.trust-glasscard p { color: #1E3A8A; font-weight: 600; font-size: 0.96rem; line-height: 1.65; margin: 0; }
.trust-principles-title { font-size: 1.05rem; font-weight: 700; color: #0A1128; margin-bottom: 22px; }
.trust-principle { display: flex; gap: 18px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed #D7E1FA; }
.trust-principle:last-of-type { border-bottom: none; }
.trust-principle-num {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: #fff;
  background: linear-gradient(140deg, #1E3A8A, #38BDF8);
}
.trust-principle-title { font-size: 1.05rem; font-weight: 700; color: #0A1128; margin-bottom: 6px; }
.trust-principle p { color: #5B6478; font-size: 0.92rem; line-height: 1.65; margin: 0; }
.trust-extra { color: #475569; font-size: 0.92rem; line-height: 1.7; margin: 6px 0 22px; }

/* ================= SERVICES SECTION ================= */
.services-section { padding: 30px 0; background: #FFFFFF; }
.services-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(100deg, #0A1128, #1E3A8A 60%, #3B82F6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.services-intro { color: #475569; font-size: 1rem; line-height: 1.75; margin-bottom: 6px; }
.services-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 26px 0 8px;
}
.services-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; border: 1px solid #DCE5FB;
  background: #F5F8FF; color: #1E3A8A; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.services-tab:hover { transform: translateY(-2px); }
.services-tab.is-active {
  background: linear-gradient(120deg, #1E3A8A, #3B82F6);
  border-color: transparent; color: #fff;
  box-shadow: 0 14px 26px -14px rgba(59,130,246,0.7);
}
.services-panels { margin-top: 30px; }
.services-panel {
  padding: 30px; border-radius: 20px;
  background: linear-gradient(160deg, #F5F8FF, #FFFFFF);
  border: 1px solid #E7ECF7;
  animation: sg-fade-up 0.5s ease both;
}
.services-panel-title { font-size: 1.35rem; font-weight: 800; color: #0A1128; margin-bottom: 14px; }
.services-panel-text { color: #475569; font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.services-panel-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.services-panel-list li {
  position: relative; padding: 14px 16px 14px 42px; border-radius: 12px;
  background: #FFFFFF; border: 1px solid #E7ECF7; color: #3A4358; font-size: 0.9rem; line-height: 1.6;
  box-shadow: 0 8px 20px -16px rgba(10,17,40,0.3);
}
.services-panel-list li::before {
  content: "✓"; position: absolute; left: 14px; top: 14px;
  width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #38BDF8, #3B82F6);
}
.services-cta { margin-top: 30px; }

/* ================= SECURITY SECTION ================= */
.security-section { position: relative; padding: 30px 0; overflow: hidden; background: #0A1128; color: #E7ECFB; }
.security-bg { position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(59,130,246,0.22), transparent 55%), radial-gradient(circle at 85% 80%, rgba(56,189,248,0.16), transparent 55%); }
.security-section .container { position: relative; z-index: 1; }
.security-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.security-intro { color: #fff; font-size: 0.98rem; line-height: 1.75; }
.security-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 26px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.security-grid > .security-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 991px) {
  .security-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
  .security-grid { grid-template-columns: 1fr !important; }
}
.security-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); border-color: rgba(56,189,248,0.4); }
.security-card-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.25);
}
.security-card-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.security-card-text { font-size: 0.85rem; color: #fff; line-height: 1.6; }
.security-card--cta {
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(150deg, rgba(59,130,246,0.22), rgba(56,189,248,0.1));
  border: 1px solid rgba(56,189,248,0.35);
}
.security-card-cta-text { font-size: 0.85rem; color: rgba(231,236,251,0.88); line-height: 1.65; margin-bottom: 16px; }
.security-cta-link { align-self: flex-start; }

/* ================= INDUSTRIES SECTION (Tabs Layout) ================= */
.industries-section { padding: 30px 0; background: #F5F8FF; }
.industries-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; }
.industries-intro { color: #475569; font-size: 1rem; line-height: 1.75; }

.industries-tabs-wrap {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  align-items: flex-start;
}
.industries-tabs-scroll {
  flex: 0 0 260px;
  max-width: 260px;
}
.industries-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.industries-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: 12px; border: 1px solid #DCE5FB;
  background: #FFFFFF; color: #1E3A8A; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; text-align: left; width: 100%;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.industries-tab:hover { border-color: #B9CDFA; }
.industries-tab.is-active {
  background: linear-gradient(120deg, #1E3A8A, #3B82F6);
  border-color: transparent; color: #fff;
  box-shadow: 0 14px 26px -14px rgba(59,130,246,0.7);
}

.industries-panels { flex: 1; min-width: 0; }
.industries-panel {
  padding: 32px; border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E7ECF7;
  box-shadow: 0 10px 30px -20px rgba(10,17,40,0.25);
  animation: sg-fade-up 0.5s ease both;
}
.industries-panel-title { font-size: 1.35rem; font-weight: 800; color: #0A1128; margin-bottom: 16px; }
.industries-panel-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #3B82F6; margin: 14px 0 6px; }
.industries-panel-label:first-of-type { margin-top: 0; }
.industries-panel-text { font-size: 0.94rem; color: #5B6478; line-height: 1.7; margin: 0; }
.industries-panel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  color: #1E3A8A; font-weight: 700; font-size: 0.9rem; text-decoration: none;
}
.industries-panel-cta:hover { color: #1E3A8A; text-decoration: underline; }
.industries-cta { margin-top: 30px; }

/* ---- Mobile: tabs become horizontally scrollable row above content ---- */
@media (max-width: 991px) {
  .industries-tabs-wrap { flex-direction: column; }
  .industries-tabs-scroll {
    flex: none;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .industries-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .industries-tab {
    flex: none;
    width: auto;
    white-space: nowrap;
  }
  .industries-panel { padding: 24px; }
}

/* ================= PROCESS / FLOW DIAGRAM ================= */
.process-section { padding: 30px 0; background: linear-gradient(170deg, #0A1128 0%, #0F1D52 100%); color: #E7ECFB; }
.process-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.process-intro { color: rgba(231,236,251,0.75); font-size: 1rem; line-height: 1.7; }
.process-flow { position: relative; margin-top: 46px; margin-bottom: 40px; }
.process-flow-line { display: none; }
@media (min-width: 992px) {
  .process-flow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; position: relative; }
  .process-flow-line { display: block; position: absolute; top: 30px; left: 0; width: 100%; height: 4px; z-index: 0; }
  .process-flow-line-fill { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.6s ease; }
  .process-flow-line-fill.is-visible { stroke-dashoffset: 0; }
}
.process-step {
  position: relative; z-index: 1;
  padding: 54px 16px 20px; border-radius: 16px; text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}
.process-step.is-visible { opacity: 1; transform: translateY(0); }
.process-step:hover { background: rgba(255,255,255,0.08); }
.process-step-dot {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8, #3B82F6);
  animation: sg-pulse 2.4s infinite;
}
.process-step-num { position: absolute; top: 44px; left: 50%; transform: translateX(-50%); font-size: 0.68rem; font-weight: 800; color: #38BDF8; letter-spacing: 0.1em; }
.process-step-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin: 20px 0 10px; }
.process-step-text { font-size: 0.8rem; color: #fff; line-height: 1.6; }
.process-cta { margin-top: 10px; }

/* ================= TECH STACK ================= */
.tech-section { padding: 30px 0; background: #FFFFFF; overflow: hidden; }
.tech-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; }
.tech-intro { color: #475569; font-size: 1rem; line-height: 1.75; }
.tech-marquee { overflow: hidden; margin: 26px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tech-marquee-track { display: flex; gap: 14px; width: max-content; animation: sg-marquee 32s linear infinite; }
.tech-chip {
  flex: none; padding: 10px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  background: linear-gradient(120deg, #F5F8FF, #EAF1FF); color: #1E3A8A; border: 1px solid #DCE5FB;
}
.tech-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 12px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tech-grid > .tech-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  background: #F8FAFF;
  border: 1px solid #E7ECF7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 991px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 575px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 20px 34px -20px rgba(30,58,138,0.35); }
.tech-card-icon { width: 52px; height: 52px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: #fff; border: 1px solid #E7ECF7; }
.tech-card-title { font-size: 0.98rem; font-weight: 800; color: #0A1128; margin-bottom: 8px; }
.tech-card-text { font-size: 0.78rem; color: #5B6478; line-height: 1.55; }
/* Tab bar */
.stack-tabs-scroll {
  margin: 30px 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #3B82F6 #E7ECF7; /* Firefox: thumb color, track color */
}

/* Chrome, Edge, Safari */
.stack-tabs-scroll::-webkit-scrollbar {
  height: 8px;
}
.stack-tabs-scroll::-webkit-scrollbar-track {
  background: #E7ECF7;
  border-radius: 999px;
}
.stack-tabs-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #1E3A8A, #3B82F6, #38BDF8);
  border-radius: 999px;
}
.stack-tabs-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #1E3A8A, #2563EB, #38BDF8);
}
.stack-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  min-width: max-content;
  padding-bottom: 4px;
}
.stack-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid #DCE5FB;
  background: #F5F8FF;
  color: #1E3A8A;
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.stack-tab:hover { transform: translateY(-2px); border-color: #B9CDFA; }
.stack-tab.is-active {
  background: linear-gradient(120deg, #1E3A8A, #3B82F6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 26px -14px rgba(59, 130, 246, 0.7);
}

/* Panels */
.stack-panels { margin-top: 30px; }
.stack-panel {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(160deg, #F5F8FF, #FFFFFF);
  border: 1px solid #E7ECF7;
  animation: sg-fade-up 0.5s ease both;
}
.stack-panel-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A1128;
  margin-bottom: 22px;
}
.stack-panel-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.stack-panel-title a:hover,
.stack-panel-title a:focus {
  color: #3B82F6;
  text-decoration: underline;
}

/* Groups within a panel */
.stack-group { margin-bottom: 26px; }
.stack-group:last-child { margin-bottom: 0; }
.stack-group-title {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3B82F6;
  margin-bottom: 14px;
}

/* Chip grid */
.stack-chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stack-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E7ECF7;
  color: #3A4358;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 6px 16px -14px rgba(10, 17, 40, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stack-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px -16px rgba(30, 58, 138, 0.35);
  border-color: #C7D9FB;
}
.stack-chip img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: none;
  border-radius: 4px;
}

/* Mobile: horizontal-scrolling tab strip */
@media (max-width: 767px) {
  .stack-tabs-scroll {
    margin: 22px -12px 8px;
    padding: 0 12px 6px;
  }
  .stack-tabs {
    flex-wrap: nowrap;
  }
  .stack-tab {
    flex: none;
  }
  .stack-panel { padding: 22px; }
  .stack-panel-title { font-size: 1.1rem; }
  .stack-chip { padding: 8px 12px; font-size: 0.8rem; }
}

/* ================= WHY CHOOSE US ================= */
.whychoose-section { padding: 30px 0; background: #F5F8FF; }
.whychoose-heading { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; line-height: 1.28; }
.whychoose-intro { color: #475569; font-size: 0.98rem; line-height: 1.75; margin-bottom: 22px; }
.whychoose-note {
  padding: 22px; border-radius: 16px; background: #0A1128; color: #E7ECFB;
  box-shadow: 0 20px 40px -22px rgba(10,17,40,0.5);
}
.whychoose-note p { font-size: 0.92rem; line-height: 1.65; color: rgba(231,236,251,0.85); margin-bottom: 16px; }
.whychoose-list { display: grid; gap: 20px; }
.whychoose-item { display: flex; gap: 16px; padding: 18px; border-radius: 14px; background: #FFFFFF; border: 1px solid #E7ECF7; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.whychoose-item:hover { transform: translateX(6px); box-shadow: 0 14px 30px -20px rgba(30,58,138,0.35); }
.whychoose-check {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 0.85rem;
  background: linear-gradient(135deg, #38BDF8, #3B82F6);
}
.whychoose-item-title { font-size: 0.98rem; font-weight: 700; color: #0A1128; margin-bottom: 6px; }
.whychoose-item p { font-size: 0.86rem; color: #5B6478; line-height: 1.6; margin: 0; }

/* ================= LOCATIONS ================= */
.locations-section { padding: 30px 0; background: #FFFFFF; }
.locations-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; }
.locations-intro { color: #475569; font-size: 1rem; line-height: 1.75; }
.locations-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 20px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.locations-grid > .locations-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  padding: 24px;
  border-radius: 16px;
  background: #F8FAFF;
  border: 1px solid #E7ECF7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 991px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
  .locations-grid { grid-template-columns: 1fr !important; }
}
.locations-grid > .locations-card--cta {
  background: linear-gradient(140deg, #1E3A8A, #3B82F6) !important;
  border: none !important;
}
.locations-grid > .locations-card--cta p {
  color: rgba(255,255,255,0.9) !important;
}
.locations-card:hover { transform: translateY(-5px); box-shadow: 0 18px 30px -20px rgba(30,58,138,0.3); }
.locations-card-title { display: flex; align-items: center; gap: 8px; font-size: 1.02rem; font-weight: 800; color: #1E3A8A; margin-bottom: 10px; }
.locations-card p { font-size: 0.88rem; color: #5B6478; line-height: 1.65; margin: 0; }
.locations-card--cta {
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(140deg, #1E3A8A, #3B82F6); border: none;
}
.locations-card--cta p { color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.locations-cta-link { color: #fff; font-weight: 700; font-size: 0.9rem; text-decoration: none;cursor: pointer; }
.locations-cta-link:hover { color: #fff; text-decoration: underline; }

/* ================= COST ================= */
.cost-section { padding: 30px 0; background: #F5F8FF; }
.cost-heading { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #0A1128; margin-bottom: 16px; line-height: 1.28; }
.cost-intro { color: #475569; font-size: 0.98rem; line-height: 1.75; margin-bottom: 14px; }
.cost-note {
  padding: 18px; border-radius: 14px; font-size: 0.88rem; line-height: 1.65; color: #1E3A8A; font-weight: 600;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18); margin-bottom: 22px;
}
.cost-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid #E1E9FA; }
.cost-item:last-child { border-bottom: none; }
.cost-item-num {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff;
  background: linear-gradient(140deg, #1E3A8A, #38BDF8);
}
.cost-item-title { font-size: 1rem; font-weight: 700; color: #0A1128; margin-bottom: 6px; }
.cost-item p { font-size: 0.88rem; color: #5B6478; line-height: 1.65; margin: 0; }

/* ================= FAQ ================= */
.faq-section { padding: 30px 0; background: #FFFFFF; }
.faq-heading { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #0A1128; margin-bottom: 6px; }
.faq-accordion { margin-top: 24px; }
.faq-item { border: 1px solid #E7ECF7; border-radius: 14px; margin-bottom: 14px; overflow: hidden; background: #F8FAFF; }
.faq-question { margin: 0; }
.faq-question button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; background: transparent; border: none; text-align: left;
  font-size: 0.98rem; font-weight: 700; color: #0A1128; cursor: pointer;
}
.faq-question button:focus { outline: 2px solid #3B82F6; outline-offset: -2px; }
.faq-chevron { flex: none; transition: transform 0.3s ease; color: #3B82F6; }
.faq-question button[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px; }
.faq-answer p { font-size: 0.9rem; color: #5B6478; line-height: 1.7; margin: 0; }

/* ================= FINAL CTA ================= */
.finalcta-section { position: relative; padding: 30px 0; overflow: hidden; background: linear-gradient(150deg, #060B1E 0%, #0A1748 50%, #123a8f 100%); color: #fff; }
.finalcta-bg { position: absolute; inset: 0; z-index: 0; }
.finalcta-shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.4; }
.finalcta-shape--one { width: 320px; height: 320px; background: #38BDF8; top: -100px; left: -60px; animation: sg-float-y 10s ease-in-out infinite; }
.finalcta-shape--two { width: 280px; height: 280px; background: #818CF8; bottom: -100px; right: -60px; animation: sg-float-y 12s ease-in-out infinite; }
.finalcta-section .container { position: relative; z-index: 1; padding-top: 20px; padding-bottom: 20px; }
.finalcta-heading { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 20px; line-height: 1.25; }
.finalcta-text { font-size: 1rem; color: #fff; line-height: 1.75; margin-bottom: 14px; }
.finalcta-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
  padding: 16px 30px; border-radius: 14px; font-weight: 700; font-size: 1rem;
  background: linear-gradient(120deg, #FFFFFF, #DCEBFF); color: #0A1128; text-decoration: none;
  box-shadow: 0 20px 40px -14px rgba(255,255,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.finalcta-btn:hover { transform: translateY(-3px); color: #0A1128; text-decoration: none; box-shadow: 0 26px 46px -14px rgba(255,255,255,0.5); }
.finalcta-footnote { margin-top: 22px; font-size: 0.84rem; color: #fff; }

/* ================= REVEAL-ON-SCROLL (generic, section-scoped) ================= */
.about-card, .industries-card-link, .security-card, .tech-card, .whychoose-item, .locations-card {
  will-change: transform, opacity;
}
.sg-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sg-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 991px) {
  .hero-section .container { padding-top: 20px; }
  .hero-visual { max-width: 320px; margin-top: 30px; }
  .hero-cta-row { justify-content: flex-start; }
  .trust-principle { flex-direction: column; }
  .whychoose-item:hover { transform: none; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .services-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .services-tab { flex: none; }
  .services-panel { padding: 22px; }
  .cost-item, .trust-principle { gap: 14px; }
}
@media (max-width: 575px) {
  .hero-float { display: none; }
  .hero-stats-row { text-align: left; }
  .hero-stat { align-items: flex-start; }
}
/* --- Added: sizing for real logo images inside tech chips and tech cards --- */
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tech-chip-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: none;
}
.tech-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
/* --- Added: heading acts as the CTA link now (replaces old CTA button) --- */
.industries-panel-title a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease;
}
.industries-panel-title a:hover,
.industries-panel-title a:focus {
  color: #3B82F6;
  text-decoration: underline;
}