/* ============================================================
   NexaCore Technologies â€” Main Stylesheet
   css/style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:      #0052cc;
  --secondary:    #00b4d8;
  --accent:       #1a3a6b;
  --dark:         #0a0e1a;
  --light-bg:     #f8faff;
  --white:        #ffffff;
  --gray:         #6c757d;
  --light-gray:   #e9ecef;
  --card-shadow:  0 10px 30px rgba(0,82,204,0.10);
  --hover-shadow: 0 20px 50px rgba(0,82,204,0.20);
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
  --border-radius:12px;
  --section-padding: 90px 0;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px; /* offset for sticky header */
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
  background: var(--white);
  line-height: 1.7;
}

a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }
button { border: none; cursor: pointer; font-family: 'Poppins', sans-serif; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity:0; visibility:hidden; }

.loader-ring {
  width: 60px; height: 60px;
  border: 5px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinRing 0.85s linear infinite;
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 998; opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,82,204,0.4);
}
.scroll-top-btn.show  { opacity:1; visibility:visible; }
.scroll-top-btn:hover { background: var(--accent); transform: translateY(-3px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition);
}
.btn-primary-custom {
  background: var(--accent); color: var(--white);
  box-shadow: 0 6px 20px rgba(26,58,107,0.35);
}
.btn-primary-custom:hover {
  background: #142d54; color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,58,107,0.45);
}
.btn-outline-custom {
  border: 2px solid var(--white); color: var(--white); background: transparent;
}
.btn-outline-custom:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

.btn-outline-primary-custom {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); }

.btn .ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: rippleEffect 0.6s linear;
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title     { font-size: 2.2rem; font-weight:700; color:var(--dark); line-height:1.25; margin-bottom:12px; }
.section-subtitle  { font-size: 0.95rem; color:var(--gray); max-width:580px; margin:0 auto 50px; }
.section-badge {
  display: inline-block;
  background: rgba(0,82,204,0.08); color: var(--primary);
  font-size: 0.78rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom:14px;
}
.title-underline {
  width:55px; height:4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius:2px; margin:14px auto 0;
}
.title-underline-left { margin:14px 0 0; }

/* ============================================================
   SITE HEADER  â€” b2b style
   Layout: Logo | Pill Nav (center) | Badge + CTA + Hamburger (right)
   ============================================================ */

/* â”€â”€ Outer header bar â”€â”€ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;   /* Always transparent â€” glass effect is on the pill only */
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease, transform 0.35s ease;
}
/* .scrolled only applies on regular (non-FP) pages */
.site-header.scrolled {
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  height: 62px;
}
/* Hide header on scroll-down, reveal on scroll-up */
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* â”€â”€ Logo â”€â”€ */
.site-header__logo { flex-shrink: 0; }
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  height: 40px;
}

/* â”€â”€ Dual logo switching â”€â”€ */
.logo-white,
.logo-dark {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity 0.4s ease;
  display: block;
  position: absolute;
  top: 0; left: 0;
}

/* Default state: white logo visible, dark logo hidden */
.logo-white { opacity: 1; }
.logo-dark  { opacity: 0; }

/* Scrolled / solid header: keep white logo (dark bg header) */
.site-header.scrolled .logo-white { opacity: 1; }
.site-header.scrolled .logo-dark  { opacity: 0; }

/* Inner pages always use scrolled (dark bg header = white logo visible) */
.site-header.page-header .logo-white { opacity: 1; }
.site-header.page-header .logo-dark  { opacity: 0; }

/* FP mode: light section = show dark logo, dark section = show white logo */
.site-header.on-light .logo-white { opacity: 0; }
.site-header.on-light .logo-dark  { opacity: 1; }

/* â”€â”€ Centre Glassmorphism Pill Nav â”€â”€ */
.header-pill-nav {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10,14,26,0.45);      /* dark tint so links stay white on any bg */
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 50px;
  padding: 10px 28px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.22),
    0 4px 12px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.12);
  flex: 0 1 auto;
  position: relative;
}

/* Plain links */
.pill-link {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 4px 14px;
  border-radius: 50px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
}
.pill-link:hover,
.pill-link.active {
  color: #fff;
  background: rgba(255,255,255,0.10);
}
.pill-link.active { color: var(--accent); }

/* Dividers */
.pill-div {
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  user-select: none;
  padding: 0 2px;
  flex-shrink: 0;
}

/* Caret icon */
.pill-caret {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* â”€â”€ Pill Dropdown â”€â”€ */
.pill-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Invisible hover bridge â€” fills the gap so mouse doesn't leave on the way down */
.pill-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px; right: -10px;
  height: 20px; /* covers the gap to the menu */
  background: transparent;
}

.pill-drop-menu {
  position: absolute;
  top: calc(100% + 10px); /* reduced gap */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px 0;
  min-width: 250px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 500;
  /* Extra top padding acts as a hover buffer inside the menu */
  padding-top: 14px;
}

/* Arrow indicator */
.pill-drop-menu::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: none;
  border-bottom-color: rgba(255,255,255,0.10);
}

.pill-drop-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-size: 0.84rem; font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.pill-drop-menu a:hover {
  background: rgba(0,82,204,0.20);
  color: var(--secondary);
  padding-left: 26px;
}
.pill-drop-menu a i {
  width: 18px; font-size: 0.78rem; color: var(--secondary);
  flex-shrink: 0;
}

/* â”€â”€ Show on hover â€” with a generous safe zone â”€â”€ */
.pill-dropdown:hover .pill-drop-menu,
.pill-dropdown:focus-within .pill-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pill-dropdown:hover .pill-caret,
.pill-dropdown:focus-within .pill-caret {
  transform: rotate(180deg);
}

/* â”€â”€ Nested sub-menu (Digital Transformation) â”€â”€ */
.pill-drop-menu a.has-sub {
  position: relative;
  justify-content: space-between;
}

.pill-sub-arrow {
  display: inline-flex; align-items: center;
  margin-left: auto;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  pointer-events: none;
}

/* Sub-menu wrapper â€” owns the hover zone */
.pill-has-sub-wrap {
  position: relative;
}

/* Invisible bridge from parent item to sub-menu */
.pill-has-sub-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: -12px;
  width: 12px;
  height: 100%;
  background: transparent;
}

.pill-sub-menu {
  position: absolute;
  left: calc(100% + 2px);
  top: -8px; /* slight vertical overlap so no gap */
  min-width: 235px;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px 0;
  box-shadow: 20px 0 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 600;
}
.pill-sub-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-size: 0.83rem; font-weight: 400;
  color: rgba(255,255,255,0.72);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.pill-sub-menu a i {
  width: 18px; font-size: 0.77rem;
  color: var(--accent); flex-shrink: 0;
}
.pill-sub-menu a:hover {
  background: rgba(26,58,107,0.14);
  color: var(--accent);
  padding-left: 26px;
}

/* Show sub-menu on hover of the wrapper */
.pill-has-sub-wrap:hover .pill-sub-menu,
.pill-has-sub-wrap:focus-within .pill-sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.pill-has-sub-wrap:hover .pill-sub-arrow,
.pill-has-sub-wrap:focus-within .pill-sub-arrow {
  transform: rotate(90deg);
  color: var(--accent);
}

/* â”€â”€ Right section â”€â”€ */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Partner badge */
.header-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 16px 7px 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.badge-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #0078d4, #00b4d8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  flex-shrink: 0;
}
.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-label { font-size: 0.62rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; }
.badge-value { font-size: 0.78rem; font-weight: 600; color: #fff; }

/* Header CTA button */
.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent);
  color: #fff;
  font-size: 0.84rem; font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(26,58,107,0.35);
  white-space: nowrap;
}
.header-cta:hover {
  background: #142d54;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.45);
}
.header-cta i { font-size: 0.78rem; }

/* â”€â”€ Hamburger button â”€â”€ */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 9px;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.14); }
.ham-bar {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease,
              width 0.25s ease;
}
.bar1 { width: 100%; }
.bar2 { width: 75%; }
.bar3 { width: 55%; }
/* Active (open) state */
.hamburger-btn.is-open .bar1 { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger-btn.is-open .bar2 { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open .bar3 { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* ============================================================
   SIDE MENU (full-screen overlay, slides from right)
   ============================================================ */

/* Dark overlay */
.side-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.side-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Side panel */
.side-menu {
  position: fixed;
  top: 0; right: 0;
  width: 340px; max-width: 92vw;
  height: 100%;
  background: linear-gradient(160deg, #0a0e1a 0%, #0d1730 60%, #0a1428 100%);
  border-left: 1px solid rgba(255,255,255,0.06);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 28px 0 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.side-menu.is-open {
  transform: translateX(0);
}

/* Close button */
.side-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.side-menu__close:hover { background: rgba(26,58,107,0.2); color: var(--accent); }

/* Side menu logo */
.side-menu__logo {
  display: flex; align-items: center; gap: 10px;
  padding: 0 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}

/* Nav list */
.side-menu__nav { flex: 1; padding: 0 0; }
.side-nav-list  { list-style: none; margin: 0; padding: 0; }
.side-nav-item  { border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Top-level links / toggle buttons */
.side-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 14px 28px;
  font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.80);
  background: none; border: none;
  cursor: pointer; text-align: left;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  font-family: 'Poppins', sans-serif;
}
.side-nav-link:hover,
.side-nav-item.active > .side-nav-link {
  color: var(--secondary);
  background: rgba(0,180,216,0.06);
  padding-left: 34px;
}
.side-nav-item.active > .side-nav-link { color: var(--accent); }

/* Caret icon */
.side-caret {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.side-nav-toggle[aria-expanded="true"] .side-caret { transform: rotate(180deg); }
.side-nav-toggle[aria-expanded="true"] { color: var(--secondary); }

/* Sub nav list (accordion) */
.side-sub-nav {
  list-style: none; margin: 0; padding: 0;
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.side-sub-nav.is-open { max-height: 600px; }
.side-sub-nav li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 28px 10px 44px;
  font-size: 0.83rem; color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.side-sub-nav li a::before {
  content: '\203A';
  font-size: 1rem; color: var(--secondary);
  flex-shrink: 0;
}
.side-sub-nav li a:hover {
  color: var(--secondary);
  padding-left: 50px;
  background: rgba(0,180,216,0.06);
}

/* Footer inside side menu */
.side-menu__footer {
  padding: 24px 28px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.side-menu-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #fff; font-size: 0.85rem; font-weight: 600;
  padding: 11px 24px; border-radius: 50px;
  text-decoration: none; width: 100%; justify-content: center;
  transition: background 0.25s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(26,58,107,0.35);
}
.side-menu-cta:hover { background: #142d54; color: #fff; }

.side-menu-social {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 16px;
}
.side-menu-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.side-menu-social a:hover { background: var(--accent); color: #fff; }

.side-menu-copy {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
  text-align: center; margin: 0;
}

/* Keep old .navbar styles for other pages that still use them */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 0; background: transparent; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.35rem; font-weight:700; color: var(--white) !important;
}
.navbar-brand i {
  font-size:1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar-brand .brand-text span {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.88rem; font-weight:500; padding: 6px 14px !important;
  transition: var(--transition); position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }
.navbar-toggler { border:none; padding:4px 8px; }
.navbar-toggler:focus { box-shadow:none; }
.btn-get-quote {
  background: var(--accent); color: var(--white) !important;
  border-radius: 50px; padding: 8px 22px !important;
  font-weight:600; font-size:0.85rem !important; margin-left:8px;
}
.btn-get-quote:hover { background: #142d54; transform:translateY(-1px); }

/* ============================================================
   FULL-PAGE SCROLL CONTAINER
   ============================================================ */
html.fp-mode, html.fp-mode body {
  height: 100%;
  overflow: hidden;
}

.fp-container {
  position: fixed; inset: 0;
  overflow: hidden;
}

/* Each section becomes a full-viewport page */
.fp-section {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s cubic-bezier(0.77,0,0.18,1),
              transform 0.75s cubic-bezier(0.77,0,0.18,1);
  will-change: opacity, transform;
}

/* States */
.fp-section.is-active {
  opacity: 1; visibility: visible;
  transform: translateY(0) !important;
  z-index: 2;
}
.fp-section.slide-up   { transform: translateY(100%); }
.fp-section.slide-down { transform: translateY(-100%); }

/* Side dots navigation */
.fp-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fp-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: block;
  outline: none;
}

.fp-dot:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.25);
}

.fp-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(26,58,107,0.25);
}

/* Tooltip label on hover */
.fp-dot::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(10,14,26,0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fp-dot:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Scroll hint arrow (hero section) */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing:1px;
  animation: bounceDown 2s ease infinite;
  cursor: pointer; z-index: 10;
}
.scroll-hint i { font-size: 1.1rem; }
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg,#050b1a 0%,#0a1a3a 40%,#072040 70%,#0a2a50 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated background particles */
.hero-particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.particle { position:absolute; border-radius:50%; opacity:0.15; animation:floatParticle 8s ease-in-out infinite; }
.particle:nth-child(1) { width:300px;height:300px;background:radial-gradient(circle,var(--primary),transparent);top:-100px;right:-100px;animation-delay:0s; }
.particle:nth-child(2) { width:200px;height:200px;background:radial-gradient(circle,var(--secondary),transparent);bottom:50px;left:-50px;animation-delay:2s; }
.particle:nth-child(3) { width:150px;height:150px;background:radial-gradient(circle,var(--accent),transparent);top:40%;left:30%;animation-delay:4s; }
.particle:nth-child(4) { width:100px;height:100px;background:radial-gradient(circle,var(--secondary),transparent);top:20%;left:15%;animation-delay:1s; }
.particle:nth-child(5) { width:80px;height:80px;background:radial-gradient(circle,var(--primary),transparent);bottom:20%;right:20%;animation-delay:3s; }

/* Grid overlay */
.hero-grid {
  position:absolute;inset:0;
  background-image: linear-gradient(rgba(0,180,216,0.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(0,180,216,0.04) 1px,transparent 1px);
  background-size: 60px 60px;
  pointer-events:none;
}

.hero-shapes .shape {
  position:absolute; border-radius:4px; opacity:0.06;
  animation:rotateSlow 20s linear infinite;
}
.shape-1 { width:80px;height:80px;background:var(--secondary);top:15%;left:5%;animation-direction:reverse; }
.shape-2 { width:50px;height:50px;background:var(--accent);top:60%;left:8%;animation-duration:15s; }
.shape-3 { width:120px;height:120px;background:var(--primary);bottom:10%;right:5%;animation-duration:25s; }
.shape-4 { width:60px;height:60px;background:var(--secondary);top:10%;right:10%; }

.hero-content { position:relative; z-index:2; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,180,216,0.15); border:1px solid rgba(0,180,216,0.3);
  color:var(--secondary); padding:7px 18px; border-radius:50px;
  font-size:0.8rem; font-weight:600; letter-spacing:0.5px; margin-bottom:22px;
}
.hero-badge .badge-dot {
  width:8px; height:8px; border-radius:50%; background:var(--secondary);
  animation:pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight:800; color:var(--white); line-height:1.15; margin-bottom:20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-text { font-size:1rem; color:rgba(255,255,255,0.72); max-width:480px; margin-bottom:36px; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }

/* Tag pills */
.hero-tags { display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }
.hero-tag {
  font-size:0.78rem; font-weight:500; color:rgba(255,255,255,0.6);
  border:1px solid rgba(255,255,255,0.15); padding:5px 14px; border-radius:50px;
}

/* Hero illustration */
.hero-illustration {
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:center;
}
.hero-svg-wrap { width:100%; max-width:480px; position:relative; }
.hero-svg-wrap svg {
  width:100%; height:auto;
  filter: drop-shadow(0 20px 60px rgba(0,82,204,0.45));
}

/* Floating info cards around hero illustration */
.hero-float-card {
  position:absolute; background:rgba(255,255,255,0.07);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px; padding:12px 18px;
  display:flex; align-items:center; gap:10px;
  animation:floatCard 4s ease-in-out infinite;
  white-space:nowrap;
}
.hero-float-card i { font-size:1.3rem; }
.hero-float-card .fc-label { font-size:0.72rem; color:rgba(255,255,255,0.55); display:block; }
.hero-float-card .fc-value { font-size:0.95rem; font-weight:700; color:#fff; display:block; }
.float-card-1 { top:10%; left:-20px; animation-delay:0s; }
.float-card-2 { bottom:15%; right:-20px; animation-delay:1.5s; }
.float-card-3 { top:50%; left:-30px; animation-delay:0.8s; }

@keyframes floatCard {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background:var(--dark); padding:50px 0; position:relative; z-index:3; }
.stat-item {
  text-align:center; padding:20px;
  border-right:1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right:none; }
.stat-number {
  font-size:2.6rem; font-weight:800;
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1.1;
}
.stat-label { font-size:0.85rem; color:rgba(255,255,255,0.6); font-weight:400; margin-top:4px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding:var(--section-padding); background:var(--light-bg); }

.about-img-wrap {
  position:relative; height:460px; border-radius:16px; overflow:hidden;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex; align-items:center; justify-content:center;
}
.about-img-inner { text-align:center; color:var(--white); }
.about-img-inner h3 { font-size:2.5rem; font-weight:800; letter-spacing:-1px; }
.about-img-inner p  { font-size:0.9rem; opacity:0.8; }

.about-img-badge {
  position:absolute; bottom:24px; right:24px;
  background:var(--accent); color:var(--white);
  padding:12px 20px; border-radius:10px; text-align:center;
  box-shadow:0 8px 25px rgba(26,58,107,0.4);
}
.about-img-badge strong { display:block; font-size:1.5rem; font-weight:800; }
.about-img-badge span   { font-size:0.75rem; }

.about-content { padding-left:20px; }
.about-feature-item { display:flex; align-items:flex-start; gap:16px; margin-bottom:22px; }
.about-icon-wrap {
  width:48px; height:48px; min-width:48px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.1rem;
}
.about-feature-item h6 { font-size:0.95rem; font-weight:600; margin-bottom:3px; color:var(--dark); }
.about-feature-item p  { font-size:0.85rem; color:var(--gray); margin:0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding:var(--section-padding); background:var(--white); }

.service-card {
  background:var(--white); border-radius:var(--border-radius);
  padding:32px 26px; box-shadow:var(--card-shadow); transition:var(--transition);
  height:100%; border:1px solid rgba(0,82,204,0.06);
  position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:3px;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  transform:scaleX(0); transform-origin:left; transition:transform 0.35s ease;
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--hover-shadow); }
.service-card:hover::before { transform:scaleX(1); }

.service-icon-wrap {
  width:64px; height:64px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:16px; display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.4rem; margin-bottom:20px; transition:var(--transition);
}
.service-card:hover .service-icon-wrap {
  background:linear-gradient(135deg,var(--accent),#ff8f5e);
  transform:rotate(5deg) scale(1.05);
}
.service-card h4 { font-size:1.05rem; font-weight:700; color:var(--dark); margin-bottom:10px; }
.service-card p  { font-size:0.87rem; color:var(--gray); margin-bottom:16px; }
.service-card .read-more {
  font-size:0.85rem; font-weight:600; color:var(--primary);
  display:inline-flex; align-items:center; gap:6px;
}
.service-card .read-more:hover { color:var(--accent); gap:10px; }

/* ============================================================
   PRODUCTS SECTION â€” Glassmorphism style (b2bsoftech inspired)
   ============================================================ */
.products-section { padding:var(--section-padding); background:var(--dark); position:relative; overflow:hidden; }
.products-section::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,#0f0c29,#302b63,#0a0e1a);
  opacity:0.95;
}
.products-section > * { position:relative; z-index:1; }
.products-section .section-title { color:var(--white); }
.products-section .section-subtitle { color:rgba(255,255,255,0.55); }
.products-section .section-badge { background:rgba(0,180,216,0.15); color:var(--secondary); }

/* Glassmorphism product cards */
.product-glass-card {
  background:rgba(18,18,18,0.72);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-radius:16px; padding:28px 24px;
  border-top:6px solid transparent; /* coloured per card */
  transition:var(--transition); height:100%;
  position:relative; overflow:hidden;
}
.product-glass-card::after {
  content:''; position:absolute; inset:0; border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  pointer-events:none;
}
.product-glass-card:hover {
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.5);
}
.product-glass-card.color-1 { border-top-color:#D17DFE; }
.product-glass-card.color-2 { border-top-color:#90D0FE; }
.product-glass-card.color-3 { border-top-color:#04E1CB; }
.product-glass-card.color-4 { border-top-color:#FF538A; }
.product-glass-card.color-5 { border-top-color:#FE9339; }
.product-glass-card.color-6 { border-top-color:#41B658; }

.product-glass-card h4 { font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:14px; }
.product-glass-card p  { font-size:0.85rem; color:rgba(255,255,255,0.6); margin-bottom:20px; line-height:1.6; }

.product-glass-card .features li {
  display:flex; align-items:center; gap:8px;
  font-size:0.83rem; color:rgba(255,255,255,0.55); margin-bottom:8px;
}
.product-glass-card .features li i { color:var(--secondary); font-size:0.75rem; }

.product-card-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.85rem; font-weight:600; color:var(--secondary);
  margin-top:4px; transition:var(--transition);
}
.product-card-link:hover { color:var(--accent); gap:10px; }

/* Legacy product card (kept for other pages) */
.product-card { border-radius:var(--border-radius); overflow:hidden; box-shadow:var(--card-shadow); transition:var(--transition); background:var(--white); height:100%; }
.product-card:hover { transform:translateY(-8px); box-shadow:var(--hover-shadow); }
.product-card-header { padding:36px 28px 28px; position:relative; overflow:hidden; }
.product-card-header.blue  { background:linear-gradient(135deg,#0052cc,#0077e6); }
.product-card-header.cyan  { background:linear-gradient(135deg,#00b4d8,#0096b7); }
.product-card-header.green { background:linear-gradient(135deg,#00c897,#00a87d); }
.product-card-header i  { font-size:2.5rem; color:rgba(255,255,255,0.9); margin-bottom:12px; display:block; }
.product-card-header h4 { font-size:1.25rem; font-weight:700; color:var(--white); }
.product-card-header p  { font-size:0.85rem; color:rgba(255,255,255,0.75); margin:0; }
.product-card-body      { padding:28px; }
.product-features       { margin-bottom:22px; }
.product-features li    { display:flex; align-items:center; gap:10px; font-size:0.87rem; color:#444; margin-bottom:10px; }
.product-features li i  { color:var(--secondary); font-size:0.8rem; }

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section { padding:var(--section-padding); background:var(--white); }
.industry-card {
  background:var(--white); border-radius:var(--border-radius);
  padding:30px 20px; text-align:center;
  border:1px solid var(--light-gray); transition:var(--transition);
  cursor:pointer; height:100%;
}
.industry-card:hover {
  background:var(--primary); border-color:var(--primary);
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,82,204,0.25);
}
.industry-icon {
  width:70px; height:70px;
  background:linear-gradient(135deg,rgba(0,82,204,0.1),rgba(0,180,216,0.1));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-size:1.6rem; color:var(--primary); transition:var(--transition);
}
.industry-card:hover .industry-icon { background:rgba(255,255,255,0.15); color:var(--white); }
.industry-card h5 { font-size:1rem; font-weight:600; color:var(--dark); margin-bottom:8px; transition:var(--transition); }
.industry-card p  { font-size:0.82rem; color:var(--gray); margin:0; transition:var(--transition); }
.industry-card:hover h5,
.industry-card:hover p  { color:rgba(255,255,255,0.9); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding:var(--section-padding); background:var(--light-bg); }
.why-card {
  background:var(--white); border-radius:var(--border-radius);
  padding:30px 24px; text-align:center;
  box-shadow:var(--card-shadow); transition:var(--transition); height:100%;
}
.why-card:hover { transform:translateY(-6px); box-shadow:var(--hover-shadow); }
.why-icon {
  width:65px; height:65px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; color:var(--white); font-size:1.4rem;
}
.why-card h5 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:8px; }
.why-card p  { font-size:0.85rem; color:var(--gray); margin:0; }

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.statistics-section {
  padding:80px 0;
  background:linear-gradient(135deg,var(--dark),#0d1b35);
  position:relative; overflow:hidden;
}
.statistics-section::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-box { text-align:center; padding:20px; }
.stat-box .stat-icon { font-size:2rem; color:var(--secondary); margin-bottom:12px; }
.stat-box .counter {
  font-size:3rem; font-weight:800;
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1;
}
.stat-box .stat-suffix {
  font-size:1.8rem; font-weight:800;
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-box h6 { font-size:0.9rem; color:rgba(255,255,255,0.6); margin-top:8px; font-weight:400; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section { padding:var(--section-padding); background:var(--white); }
.process-timeline {
  display:flex; align-items:flex-start; gap:0; position:relative;
  overflow-x:auto; padding-bottom:20px;
}
.process-timeline::before {
  content:''; position:absolute; top:40px; left:40px; right:40px;
  height:2px; background:linear-gradient(90deg,var(--primary),var(--secondary)); border-radius:2px;
}
.process-step { flex:1; min-width:130px; text-align:center; position:relative; padding:0 10px; }
.step-number {
  width:60px; height:60px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:50%; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  margin:0 auto 14px; color:var(--white); font-size:0.7rem; font-weight:700;
  position:relative; z-index:2;
  box-shadow:0 4px 15px rgba(0,82,204,0.35);
  transition:var(--transition);
}
.step-number:hover { transform:scale(1.1); box-shadow:0 8px 25px rgba(0,82,204,0.5); }
.step-number .num { font-size:1.1rem; line-height:1; }
.process-step h6 { font-size:0.88rem; font-weight:700; color:var(--dark); margin-bottom:6px; }
.process-step p  { font-size:0.78rem; color:var(--gray); margin:0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding:var(--section-padding); background:var(--light-bg); }
.testimonials-carousel { position:relative; overflow:hidden; }
.testimonials-track { display:flex; transition:transform 0.55s cubic-bezier(0.77,0,0.18,1); }
.testimonial-slide  { min-width:100%; padding:0 15px; }
.testimonial-card {
  background:var(--white); border-radius:16px; padding:40px;
  max-width:780px; margin:0 auto; box-shadow:var(--card-shadow); position:relative;
}
.quote-icon { font-size:3rem; line-height:1; color:var(--secondary); opacity:0.25; margin-bottom:16px; }
.testimonial-text { font-size:1rem; color:#444; font-style:italic; line-height:1.85; margin-bottom:24px; }
.testimonial-stars { color:#fbbf24; font-size:0.9rem; margin-bottom:16px; }
.testimonial-author { display:flex; align-items:center; gap:16px; }
.author-avatar {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.2rem; font-weight:700; flex-shrink:0;
}
.author-info h6   { font-size:0.95rem; font-weight:700; color:var(--dark); margin-bottom:2px; }
.author-info span { font-size:0.82rem; color:var(--gray); }

.carousel-controls { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:32px; }
.carousel-btn {
  width:44px; height:44px; border-radius:50%;
  background:var(--white); color:var(--primary);
  border:2px solid var(--primary); display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; transition:var(--transition);
}
.carousel-btn:hover { background:var(--primary); color:var(--white); }
.carousel-dots  { display:flex; gap:8px; }
.carousel-dot {
  width:10px; height:10px; border-radius:50%; background:var(--light-gray);
  cursor:pointer; transition:var(--transition); border:none; padding:0;
}
.carousel-dot.active { background:var(--primary); transform:scale(1.2); }

/* ============================================================
   CLIENT LOGOS â€” Infinite Scroll
   ============================================================ */
.clients-section { padding:60px 0; background:var(--white); overflow:hidden; }
.logo-scroll-wrap { overflow:hidden; position:relative; }
.logo-scroll-wrap::before,
.logo-scroll-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2;
}
.logo-scroll-wrap::before { left:0; background:linear-gradient(90deg,var(--white),transparent); }
.logo-scroll-wrap::after  { right:0; background:linear-gradient(-90deg,var(--white),transparent); }
.logo-scroll-track {
  display:flex; gap:40px;
  animation:scrollLogos 28s linear infinite;
  width:max-content;
}
.logo-scroll-track:hover { animation-play-state:paused; }
.logo-item {
  display:flex; align-items:center; gap:8px;
  background:var(--light-bg); border:1px solid var(--light-gray); border-radius:10px;
  padding:14px 24px; min-width:160px; justify-content:center;
  color:var(--gray); font-size:0.85rem; font-weight:600;
  transition:var(--transition); white-space:nowrap; cursor:default;
}
.logo-item:hover { border-color:var(--primary); color:var(--primary); }
.logo-item i     { font-size:1.2rem; color:var(--secondary); }

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.news-section { padding:var(--section-padding); background:var(--light-bg); }
.news-card {
  background:var(--white); border-radius:var(--border-radius); overflow:hidden;
  box-shadow:var(--card-shadow); transition:var(--transition); height:100%;
}
.news-card:hover { transform:translateY(-6px); box-shadow:var(--hover-shadow); }
.news-img-placeholder {
  height:200px; background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex; align-items:center; justify-content:center; color:var(--white); font-size:2.5rem;
  overflow:hidden; position:relative;
}
.news-img-placeholder::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom,transparent 40%,rgba(0,0,0,0.25));
}
.news-body    { padding:24px; }
.news-meta    { display:flex; gap:12px; margin-bottom:12px; align-items:center; }
.news-badge   { background:rgba(0,82,204,0.1); color:var(--primary); font-size:0.75rem; font-weight:600; padding:3px 12px; border-radius:50px; }
.news-date    { font-size:0.78rem; color:var(--gray); }
.news-card h5 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:10px; line-height:1.4; }
.news-card p  { font-size:0.85rem; color:var(--gray); margin-bottom:16px; }
.news-read-more { font-size:0.85rem; font-weight:600; color:var(--primary); }
.news-read-more:hover { color:var(--accent); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding:var(--section-padding); background:var(--white); }
.contact-info-item { display:flex; gap:16px; margin-bottom:28px; align-items:flex-start; }
.contact-icon {
  width:50px; height:50px; min-width:50px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.1rem;
}
.contact-info-item h6 { font-size:0.9rem; font-weight:700; margin-bottom:4px; color:var(--dark); }
.contact-info-item p  { font-size:0.85rem; color:var(--gray); margin:0; }

.contact-form-card {
  background:var(--white); border-radius:16px; padding:40px;
  box-shadow:var(--card-shadow);
}
.form-control, .form-select {
  border:1px solid var(--light-gray); border-radius:10px;
  padding:12px 16px; font-size:0.9rem;
  font-family:'Poppins',sans-serif; transition:var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color:var(--primary); box-shadow:0 0 0 3px rgba(0,82,204,0.1); outline:none;
}
.form-label { font-size:0.85rem; font-weight:600; color:var(--dark); margin-bottom:6px; }

/* Map placeholder */
.map-placeholder {
  height:220px; background:var(--light-bg); border-radius:12px;
  border:1px solid var(--light-gray); overflow:hidden; margin-top:24px;
  display:flex; align-items:center; justify-content:center; color:var(--gray);
}
.map-placeholder iframe { width:100%; height:100%; border:0; }

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.social-links { display:flex; gap:10px; }
.social-link {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.7);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; transition:var(--transition);
  border:1px solid rgba(255,255,255,0.12);
}
.social-link:hover { background:var(--accent); color:var(--white); border-color:var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background:var(--dark); padding:80px 0 0; }
.footer-logo {
  display:flex; align-items:center; gap:10px;
  font-size:1.2rem; font-weight:700; color:var(--white); margin-bottom:16px;
}
.footer-logo i {
  font-size:1.4rem;
  background:linear-gradient(135deg,var(--secondary),var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.footer-desc { font-size:0.85rem; color:rgba(255,255,255,0.55); line-height:1.7; margin-bottom:24px; max-width:280px; }
.footer-heading {
  font-size:0.95rem; font-weight:700; color:var(--white);
  margin-bottom:20px; position:relative; padding-bottom:10px;
}
.footer-heading::after {
  content:''; position:absolute; bottom:0; left:0;
  width:30px; height:2px; background:var(--accent);
}
.footer-links li   { margin-bottom:10px; }
.footer-links a    { font-size:0.85rem; color:rgba(255,255,255,0.55); display:flex; align-items:center; gap:8px; }
.footer-links a:hover { color:var(--secondary); padding-left:4px; }
.footer-links a i  { font-size:0.7rem; color:var(--secondary); }

.newsletter-form   { display:flex; gap:0; }
.newsletter-input  {
  flex:1; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1);
  border-right:none; border-radius:8px 0 0 8px;
  padding:11px 16px; color:var(--white); font-size:0.85rem;
  font-family:'Poppins',sans-serif;
}
.newsletter-input:focus        { outline:none; border-color:var(--primary); }
.newsletter-input::placeholder { color:rgba(255,255,255,0.35); }
.newsletter-btn {
  background:var(--accent); color:var(--white); border:none;
  padding:11px 20px; border-radius:0 8px 8px 0;
  font-size:0.85rem; font-weight:600; cursor:pointer; transition:var(--transition);
}
.newsletter-btn:hover { background:#142d54; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06); padding:20px 0; margin-top:60px;
}
.footer-bottom p { font-size:0.82rem; color:rgba(255,255,255,0.4); margin:0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:linear-gradient(135deg,#050b1a 0%,#0a1a3a 60%,#072040 100%);
  padding:140px 0 80px; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(0,82,204,0.06) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,82,204,0.06) 1px,transparent 1px);
  background-size:60px 60px;
}
.page-hero-title {
  font-size:clamp(2rem,4vw,3rem); font-weight:800; color:var(--white);
  margin-bottom:12px; position:relative; z-index:1;
}
.page-hero-text  { font-size:0.95rem; color:rgba(255,255,255,0.65); max-width:550px; position:relative; z-index:1; }

/* When Products section is in a light-themed fp-section */
.fp-section[data-theme="light"] .products-section {
  background: #f8faff;
}
.fp-section[data-theme="light"] .products-section::before {
  display: none;
}
.fp-section[data-theme="light"] .products-section .section-title { color: #0a0e1a; }
.fp-section[data-theme="light"] .products-section .section-subtitle { color: #6c757d; }
.fp-section[data-theme="light"] .products-section .section-badge { background: rgba(0,82,204,0.08); color: #0052cc; }

/* Glass cards on light bg â€” use a softer style */
.fp-section[data-theme="light"] .product-glass-card {
  background: #fff;
  backdrop-filter: none;
  border: 1px solid rgba(0,82,204,0.08);
  box-shadow: 0 4px 24px rgba(0,82,204,0.08);
}
.fp-section[data-theme="light"] .product-glass-card::after { border-color: rgba(0,82,204,0.06); }
.fp-section[data-theme="light"] .product-glass-card h4 { color: #0a0e1a; }
.fp-section[data-theme="light"] .product-glass-card p { color: #5a6a85; }
.fp-section[data-theme="light"] .product-glass-card .features li { color: #555; }
.fp-section[data-theme="light"] .product-glass-card:hover {
  box-shadow: 0 16px 40px rgba(0,82,204,0.14);
}

/* Testimonials on light bg */
.fp-section[data-theme="light"] .testimonials-section { background: #f8faff; }
.fp-section[data-theme="light"] .testimonial-card { background: #fff; box-shadow: 0 4px 20px rgba(0,82,204,0.08); }
.fp-section[data-theme="light"] .testimonial-text { color: #444; }
.fp-section[data-theme="light"] .author-info h6 { color: #0a0e1a; }
.fp-section[data-theme="light"] .author-info span { color: #6c757d; }
.fp-section[data-theme="light"] .carousel-btn { background: #fff; color: #0052cc; border-color: #0052cc; }
.fp-section[data-theme="light"] .carousel-btn:hover { background: #0052cc; color: #fff; }
.fp-section[data-theme="light"] .carousel-dot { background: #e9ecef; }
.fp-section[data-theme="light"] .carousel-dot.active { background: #0052cc; }
   When fp-section has data-theme="dark", override child bg + colors
   ============================================================ */
.fp-section[data-theme="dark"] .services-section,
.fp-section[data-theme="dark"] .industries-section,
.fp-section[data-theme="dark"] .process-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1730 100%);
  color: #fff;
}
.fp-section[data-theme="dark"] .testimonials-section {
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #0a0e1a 100%);
  color: #fff;
}
/* Clients + News dark wrapper */
.fp-section[data-theme="dark"] > div {
  background: linear-gradient(135deg, #050b1a 0%, #0a1a3a 100%);
}
.fp-section[data-theme="dark"] .clients-section {
  background: transparent;
}
.fp-section[data-theme="dark"] .news-section {
  background: transparent;
}

/* â”€â”€ Text colors for dark sections â”€â”€ */
.fp-section[data-theme="dark"] .section-title,
.fp-section[data-theme="dark"] .service-card h4,
.fp-section[data-theme="dark"] .industry-card h5,
.fp-section[data-theme="dark"] .process-step h6,
.fp-section[data-theme="dark"] .testimonial-card,
.fp-section[data-theme="dark"] .news-card h5 {
  color: #fff;
}
.fp-section[data-theme="dark"] .section-subtitle,
.fp-section[data-theme="dark"] .service-card p,
.fp-section[data-theme="dark"] .industry-card p,
.fp-section[data-theme="dark"] .process-step p,
.fp-section[data-theme="dark"] .news-card p,
.fp-section[data-theme="dark"] .news-date {
  color: rgba(255,255,255,0.6);
}
.fp-section[data-theme="dark"] .section-badge {
  background: rgba(0,180,216,0.15);
  color: #00b4d8;
}

/* â”€â”€ Cards in dark sections â”€â”€ */
.fp-section[data-theme="dark"] .service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.fp-section[data-theme="dark"] .service-card:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.fp-section[data-theme="dark"] .service-card .read-more {
  color: #00b4d8;
}

.fp-section[data-theme="dark"] .industry-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.fp-section[data-theme="dark"] .industry-card:hover {
  background: #0052cc;
  border-color: #0052cc;
}
.fp-section[data-theme="dark"] .industry-icon {
  background: rgba(0,180,216,0.15);
  color: #00b4d8;
}

.fp-section[data-theme="dark"] .process-timeline::before {
  background: linear-gradient(90deg, #0052cc, #00b4d8);
}
.fp-section[data-theme="dark"] .step-number {
  box-shadow: 0 4px 20px rgba(0,82,204,0.5);
}

/* â”€â”€ Testimonials in dark â”€â”€ */
.fp-section[data-theme="dark"] .testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: none;
}
.fp-section[data-theme="dark"] .testimonial-text {
  color: rgba(255,255,255,0.75);
}
.fp-section[data-theme="dark"] .author-info h6 {
  color: #fff;
}
.fp-section[data-theme="dark"] .author-info span {
  color: rgba(255,255,255,0.5);
}
.fp-section[data-theme="dark"] .carousel-btn {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.fp-section[data-theme="dark"] .carousel-btn:hover {
  background: #0052cc;
  border-color: #0052cc;
}
.fp-section[data-theme="dark"] .carousel-dot {
  background: rgba(255,255,255,0.25);
}
.fp-section[data-theme="dark"] .carousel-dot.active {
  background: #1a3a6b;
}

/* â”€â”€ Logo scroll strip in dark â”€â”€ */
.fp-section[data-theme="dark"] .logo-scroll-wrap::before {
  background: linear-gradient(90deg, #0a0e1a, transparent);
}
.fp-section[data-theme="dark"] .logo-scroll-wrap::after {
  background: linear-gradient(-90deg, #0a0e1a, transparent);
}
.fp-section[data-theme="dark"] .logo-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.fp-section[data-theme="dark"] .logo-item:hover {
  border-color: #00b4d8;
  color: #00b4d8;
}

/* â”€â”€ News cards in dark â”€â”€ */
.fp-section[data-theme="dark"] .news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.fp-section[data-theme="dark"] .news-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.fp-section[data-theme="dark"] .news-read-more {
  color: #00b4d8;
}
.fp-section[data-theme="dark"] .news-badge {
  background: rgba(0,180,216,0.18);
  color: #00b4d8;
}

/* â”€â”€ Btn in dark â”€â”€ */
.fp-section[data-theme="dark"] .btn-primary-custom {
  background: #1a3a6b;
}

