
/* ============================================================
   HELIOS GROUP OF COMPANIES â€” style.css  (Complete Rebuild)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #1053f3;
  --primary-dark: #0a3fc0;
  --accent: #f97316;
  --dark: #0f1117;
  --dark2: #1a1d27;
  --nav-dark: #061153;
  --light: #f5f7fa;
  --light2: #eef1f6;
  --text: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-white: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  cursor: auto !important;
  overflow-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

/* ============================================================
   MAGNETIC CURSOR
   ============================================================ */
.cursor-dot,
.cursor-outline {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  left: 0;
  top: 0;
  transition: transform 0s, opacity .3s, width .3s, height .3s !important;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(16, 83, 243, 0.5);
}

.cursor-hidden .cursor-dot,
.cursor-hidden .cursor-outline {
  opacity: 0;
}

.cursor-active .cursor-outline {
  transform: translate(-50%, -50%) scale(1.6);
  opacity: .5;
}

@media (max-width:1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.container-preloader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-preloader.loaded .preloader-area {
  transform: scaleY(0);
}

.container-preloader.loaded .preloader-anim {
  opacity: 0;
}

.preloader-anim {
  position: relative;
  z-index: 1;
  transition: opacity .5s ease .4s;
}

.loading {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 16px;
  color: var(--white);
  font-family: var(--font-body);
}

.loading::after {
  content: attr(data-loading-text);
  position: absolute;
  inset: 0;
  color: var(--primary);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: preloaderReveal 2s ease forwards;
}

@keyframes preloaderReveal {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.preloader-area {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background: var(--dark);
  transition: transform .8s cubic-bezier(.85, 0, .15, 1) .8s;
  transform-origin: bottom;
}

.area-left {
  left: 0;
}

.area-right {
  right: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header-topbar {
  background: #0d6efd;
  padding: 2px 0;
  font-size: 13px;
  color: var(--white);
}

.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.topbar-info-item i {
  color: var(--primary);
  font-size: 12px;
}

.topbar-info-item a,
.topbar-info-item span {
  color: inherit;
  transition: color .2s;
}

.topbar-info-item a:hover,
.topbar-info-item span:hover {
  color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, background .3s;
}

.tj-header-area {
  background: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled .header-topbar {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Header sticky positioning - no body padding needed */

.header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
}

.logo-icon-svg {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.brand-name {
  color: var(--dark);
}

.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--primary);
  background: rgba(16, 83, 243, .06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tf-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  border-radius: 99px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 24px;
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, var(--primary), var(--primary));
  box-shadow:
    0px -3px 0px 0px var(--primary-dark) inset,
    0px 1px 0px 0px rgba(255, 255, 255, 0.3) inset,
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.12),
    0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.13),
    0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.13),
    0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.14),
    0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.15),
    0px 100px 80px 0px rgba(0, 0, 0, 0.15),
    0px 3px 3px 0px rgba(0, 0, 0, 0.14),
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  white-space: nowrap;
  border: none;
  transition: all 0.3s ease;
}

.tf-btn:hover {
  color: var(--white);
  box-shadow:
    0px -3px 0px 0px var(--primary-dark) inset,
    0px 1px 0px 0px rgba(255, 255, 255, 0.3) inset,
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.12),
    0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.13),
    0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.14),
    0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.14),
    0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.15),
    0px 100px 80px 0px rgba(0, 0, 0, 0.15),
    0px 3px 3px 0px rgba(0, 0, 0, 0.14),
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(62.56% 62.56% at 50% -13%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, var(--primary), var(--primary));
}

.d-lg-flex {
  display: flex;
}

.d-none {
  display: none;
}

@media (min-width: 1025px) {
  .d-lg-flex {
    display: flex;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .3s;
}

.mobile-overlay.show {
  opacity: 1;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: right .4s cubic-bezier(.77, 0, .18, 1);
    box-shadow: var(--shadow-lg);
  }

  .header-nav.open {
    right: 0;
  }

  .mobile-overlay {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .d-none {
    display: none !important;
  }
}

/* ============================================================
   BUTTONS (global)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(90deg, #1053f3 0%, #4a80ff 100%);
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(16, 83, 243, 0.4);
  border: none;
  font-weight: 700;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: 0.6s;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 83, 243, 0.5);
  color: var(--white) !important;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right,
.text-reveal-auto {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.text-reveal-auto.visible {
  opacity: 1;
  transform: none;
}

/* Character-by-Character Reveal (Inotek Style) */
.char-reveal-inner {
  display: inline-block;
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
  transition-delay: calc(var(--char-index) * 0.03s);
}

.text-reveal-auto.visible .char-reveal-inner {
  transform: scale(1);
  opacity: 1;
}

/* Prevent layout shift during split */
.text-reveal-auto:not(.visible) {
  /* opacity: 0;  -- Optional: keep hidden until split is done */
}

/* ============================================================
   SECTION LABEL / TITLE
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(16, 83, 243, .08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  /* margin-top: 3em; */
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-header.center {
  text-align: center;
}

.section-subtitle {
  margin-top: 14px;
  color: var(--text);
  max-width: 560px;
}

.section-header.center .section-subtitle {
  margin: 14px auto 0;
}

.modern-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 40px;
  background: var(--dark2);
  height: 80vh;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: rgba(16, 83, 243, .15);
}

.blob-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: rgba(249, 115, 22, .1);
}

.hero-shape-star {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-1 {
  top: 25%;
  left: 8%;
  animation: starFloat 6s ease-in-out infinite;
}

.star-2 {
  bottom: 30%;
  right: 8%;
  animation: starFloat 8s ease-in-out infinite reverse;
  opacity: .5;
}

@keyframes starFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-15px) rotate(20deg)
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(16, 83, 243, .35);
  transition: transform .25s, box-shadow .25s;
}

.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16, 83, 243, .45);
}

.icon-circle {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots,
.hero-dots2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .3;
}

.hero-dots {
  bottom: -20px;
  right: -30px;
}

.hero-dots2 {
  top: -20px;
  left: -30px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px);
}

.floating-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 83, 243, 0.3);
}

.card-text strong {
  display: block;
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 2px;
}

.card-text span {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  opacity: 0.8;
}

.card-top-left {
  top: 10%;
  left: -60px;
  animation: cardFloat 5s ease-in-out infinite;
}

.card-bottom-right {
  bottom: 10%;
  right: -60px;
  animation: cardFloat 5s ease-in-out infinite 2.5s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* Play overlay */
.hero-circle {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.circle-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotate-image {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSvg 12s linear infinite;
}

.hero-circle .circle {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 15px rgba(16, 83, 243, 0.3);
}

.hero-circle .circle:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    padding: 100px 0 70px;
    min-height: auto;
  }
}

/* ============================================================
   FEATURES STRIP â€” Premium Enhanced
   ============================================================ */
.features-strip {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.features-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.f-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.f-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.f-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  right: -50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  perspective: 1000px;
  height: 100%;
}

.feature-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 83, 243, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(16, 83, 243, 0.15);
  background: var(--white);
}

.feature-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: rgba(16, 83, 243, 0.1);
  color: var(--primary);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.icon-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(360deg);
}

.feature-card:hover .icon-bg-glow {
  opacity: 0.3;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  transition: color 0.3s ease;
}

/* Shine effect */
.card-glow-path {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: all 0.7s;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover .card-glow-path {
  top: -50%;
  left: 150%;
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-strip {
    padding: 80px 0;
  }

  .features-grid {
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-inner {
    padding: 30px 25px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about.section-pad {
  padding: 100px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-collage {
  position: relative;
}

.collage-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-sub {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}

.collage-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(16, 83, 243, .1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 16px;
}

.badge-content strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}

.badge-content span {
  font-size: 12px;
  color: var(--text);
}

.about-content .section-label {
  margin-bottom: 14px;
}

.about-content .section-title {
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text);
  margin-bottom: 28px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--light);
  transition: background .2s;
}

.about-feature-card:hover {
  background: rgba(16, 83, 243, .06);
}

.afc-icon {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.afc-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.btn-premium-about {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #1053f3 0%, #4a80ff 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(16, 83, 243, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-premium-about:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 83, 243, 0.5);
}

.btn-premium-about i {
  transition: transform 0.3s ease;
}

.btn-premium-about:hover i {
  transform: translateX(5px);
}

.btn-premium-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-premium-about:hover::before {
  left: 100%;
}

/* About Section 2 */
.about-deco-star {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--accent);
  opacity: .08;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  right: 10%;
  top: 10%;
}

.about.section-pad {
  position: relative;
  overflow: hidden;
}

.about-visuals img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.about-circle-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.about-circle-float img {
  width: 100%;
}

.about-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.about-label-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.about-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}

.about-desc {
  color: var(--text);
  margin-bottom: 24px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
}

.about-check-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 83, 243, .1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
}

.about-bottom-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--dark);
  transition: gap .2s;
}

.about-read-more:hover {
  gap: 16px;
  color: var(--primary);
}

.about-btn-circle {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.about-clients-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-avatars {
  display: flex;
}

.about-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--light2);
  overflow: hidden;
  margin-left: -10px;
}

.about-avatar:first-child {
  margin-left: 0;
}

.av1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.av2 {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.av3 {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.about-avatar-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 2px solid white;
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.about-counter-text {
  line-height: 1.2;
}

.about-counter-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  display: block;
}

.about-counter-label {
  font-size: 12px;
  color: var(--text);
}

@media (max-width:1024px) {
  .about-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-feature-grid {
    grid-template-columns: 1fr !important;
  }

  .collage-sub {
    display: none;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services.section-pad {
  background: var(--light);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.modern-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all .3s;
  text-align: center;
}

.modern-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(16, 83, 243, .2);
}

.mf-svg-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.draw-icon {
  width: 85px;
  height: 85px;
}

.draw-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s ease;
}

.modern-feature-card:hover .draw-path,
.modern-feature-card.visible .draw-path {
  stroke-dashoffset: 0;
}

.modern-feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.modern-feature-card p {
  font-size: 14px;
  color: var(--text);
}

@media (max-width:1024px) {
  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .feature-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(98, 133, 207, 0.9) 0%, rgba(16, 83, 243, 0.95) 100%);
  z-index: 0;
}

/* ============================================================
   ANIMATED BACKGROUND SHAPES FOR STATS SECTION
   ============================================================ */

/* Floating animated orbs */
.stats-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
  pointer-events: none;
}

.stats-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  top: -100px;
  left: -50px;
  animation: floatOrb1 12s ease-in-out infinite;
}

.stats-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 83, 243, 0.8);
  bottom: -50px;
  right: -30px;
  animation: floatOrb2 15s ease-in-out infinite;
}

.stats-orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(98, 133, 207, 0.6);
  top: 50%;
  right: 10%;
  animation: floatOrb3 18s ease-in-out infinite;
}

/* Animated glows */
.stats-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.stats-glow-1 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  top: 20%;
  left: 15%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.stats-glow-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.5) 0%, transparent 70%);
  bottom: 20%;
  right: 20%;
  animation: pulseGlow 5s ease-in-out infinite 1s;
}

/* Floating animations */
@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }

  75% {
    transform: translate(40px, 20px) scale(1.02);
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-30px, -50px) scale(1.08);
  }

  66% {
    transform: translate(50px, 40px) scale(0.92);
  }
}

@keyframes floatOrb3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-40px, 30px) scale(1.06);
  }

  80% {
    transform: translate(30px, -50px) scale(0.98);
  }
}

/* Pulse animations */
@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats .section-label {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.stats .section-title {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: none;
}

.stat-box:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, .2);
}

.stat-icon {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 14px;
}

.stat-value {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  font-weight: 500;
}

/* Skills */
.skills-wrap {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  box-shadow: none;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.skill-bar {
  height: 6px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: white;
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width:500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   OUR GROUP SECTION â€” grp-section
   ============================================================ */
@keyframes grpSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grp-section {
  position: relative;
  background: #eef1f6;
  overflow: hidden;
}

.grp-shape-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  width: 100%;
  max-width: 900px;
  opacity: 0.12;
}

.grp-shape-top img {
  width: 100%;
}

.grp-inner {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, rgba(98, 133, 207, 0.9) 0%, rgba(16, 83, 243, 0.95) 100%);
  padding: 80px 0 40px;
  /* Increased top padding for better spacing */
  border-radius: 0 0 40px 40px;
}

/* grid overlay */
.grp-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  border-radius: 0 0 40px 40px;
  pointer-events: none;
}

/* glowing orb */
.grp-inner::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

/* Header */
.grp-header {
  text-align: center;
  margin-bottom: 20px;
  /* Further reduced from 30px */
}

.grp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6ea5ff;
  background: rgba(110, 165, 255, .12);
  border: 1px solid rgba(110, 165, 255, .3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.grp-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}

.grp-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto;
}

/* Cards */
.grp-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  /* V-Centered */
  justify-content: center;
  position: relative;
  min-height: 400px;
  /* Compacted height to fit laptop viewports */
  width: 100%;
}

.grp-card {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  align-items: stretch;
  background: #f5f7fa;
  border: 1px solid rgba(16, 83, 243, .15);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color .4s, background .4s, box-shadow .4s;
}

.grp-card:hover {
  border-color: rgba(16, 83, 243, .3);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 83, 243, .15);
}

.grp-card.visible:hover {
  transform: translateY(-4px);
}

/* Number badge */
.grp-num {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 22px 0 30px;
  z-index: 5;
  letter-spacing: -1px;
}

/* Image col */
.grp-card-img {
  position: relative;
  width: 360px;
  min-width: 360px;
  min-height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
}

.grp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.grp-card:hover .grp-card-img img {
  transform: scale(1.06);
}

/* Play button */
.grp-play {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 4;
  opacity: 0;
  transform: scale(0.6);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 rgba(16, 83, 243, 0.4);
}

.grp-card:hover .grp-play {
  opacity: 1;
  transform: scale(1);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 83, 243, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(16, 83, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 83, 243, 0);
  }
}

/* Body */
.grp-card-body {
  padding: 24px 40px 24px 40px;
  /* More compact padding for full readability */
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.grp-badge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6ea5ff;
  background: rgba(110, 165, 255, .12);
  border: 1px solid rgba(110, 165, 255, .25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.grp-card-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.grp-card-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 520px;
}

.grp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1053f3 0%, #4a80ff 100%);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(16, 83, 243, 0.4);
}

.grp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: 0.6s;
  z-index: -1;
}

.grp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 83, 243, 0.5);
  color: var(--white) !important;
}

.grp-btn:hover::before {
  left: 100%;
}

.grp-btn i {
  transition: transform 0.3s ease;
}

.grp-btn:hover i {
  transform: translateX(4px);
}

.grp-hr {
  border: none;
  border-top: 1px solid rgba(16, 83, 243, .1);
  margin: 0 0 18px;
}

.grp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.grp-tags span {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(16, 83, 243, .2);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

.grp-tags span:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .grp-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .grp-card {
    grid-area: auto;
    flex-direction: column;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .grp-card-img {
    width: 100%;
    min-width: 100%;
    height: 240px;
  }

  .grp-card-body {
    padding: 30px 24px;
  }

  .grp-num {
    width: 60px;
    height: 60px;
    font-size: 18px;
    border-radius: 0 22px 0 20px;
  }
}

@media (max-width: 576px) {
  .grp-inner {
    padding: 60px 0;
    border-radius: 0 0 24px 24px;
  }

  .grp-title {
    font-size: 26px;
  }

  .grp-card-title {
    font-size: 22px;
  }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content .section-label {
  margin-bottom: 14px;
}

.why-content .section-title {
  margin-bottom: 14px;
}

.why-content>p {
  color: var(--text);
  margin-bottom: 32px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why-feat {
  display: flex;
  gap: 14px;
}

.why-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 83, 243, .1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.why-feat h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-feat p {
  font-size: 14px;
  color: var(--text);
}

.why-visual {
  position: relative;
}

.why-img-wrap {
  position: relative;
}

.why-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-accent-card {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.why-accent-card i {
  font-size: 22px;
  color: var(--primary);
}

.why-accent-card strong {
  display: block;
  font-weight: 800;
  color: var(--dark);
}

.why-accent-card span {
  font-size: 12px;
  color: var(--text);
}

.why-shape-1,
.why-shape-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.why-shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(16, 83, 243, .1);
  top: -30px;
  right: -30px;
}

.why-shape-2 {
  width: 150px;
  height: 150px;
  background: rgba(249, 115, 22, .1);
  bottom: -20px;
  left: -20px;
}

@media (max-width:1024px) {
  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }
}

/* ============================================================
   INDUSTRIES â€” Premium Enhanced Version
   ============================================================ */
.bg-dark {
  background: var(--dark);
}

.industries {
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(98, 133, 207, 0.9) 0%, rgba(16, 83, 243, 0.95) 100%);
  /* Deep Navy */
  padding: 100px 0 120px;
}

.industries .section-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.industries .section-title {
  color: #fff;
}

.industries .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Decorative background elements - Softer & More Modern */
.industries::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -5%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.industries .container {
  position: relative;
  z-index: 1;
}

/* Background Shapes */
.ind-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ind-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.ind-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  right: -5%;
  animation: floatInd 10s ease-in-out infinite;
}

.ind-shape-2 {
  width: 250px;
  height: 250px;
  background: #f97316;
  bottom: 10%;
  left: -5%;
  animation: floatInd 8s ease-in-out infinite alternate;
}

@keyframes floatInd {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, 30px) rotate(5deg);
  }
}

.industries-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.ind-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ind-tab i {
  font-size: 20px;
  opacity: 0.8;
}

.ind-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ind-tab.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(16, 83, 243, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ind-tab.active i {
  color: #fff;
  opacity: 1;
  transform: scale(1.1);
}

.ind-panel {
  display: none;
  animation: panelFadeUp 0.6s ease forwards;
}

.ind-panel.active {
  display: block;
}

@keyframes panelFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ind-panel-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.ind-panel-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 83, 243, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ind-panel-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 83, 0.4), transparent);
}

.ind-panel-img img {
  transition: transform 0.8s ease;
}

.ind-panel-inner:hover .ind-panel-img img {
  transform: scale(1.05);
}

.ind-panel-text {
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.ind-panel-text h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ind-panel-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ind-panel-text .btn {
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 50px;
  background: #ffffff;
  color: #1053f3 !important;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.ind-panel-text .btn:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #0b40c2 !important;
}

@media (max-width: 1100px) {
  .ind-panel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-panel-text {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .ind-panel-img {
    aspect-ratio: 3/2;
  }

  .ind-panel-text h3 {
    font-size: 26px;
  }

  .industries {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .ind-tab {
    padding: 10px 20px;
    font-size: 13px;
  }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #edecec;
}

.accordion-asked-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-asked-title {}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-button .right-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 83, 243, .1);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s;
}

.accordion-button .right-icon::before {
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.accordion-button:not(.collapsed) .right-icon {
  transform: rotate(45deg);
}

.accordion-collapse {
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

.accordion-collapse.show {
  height: auto;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-item {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn .5s ease;
}

.testimonial-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light2);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--text);
}

.star-rating {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--dark);
  transition: all .2s;
}

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

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-about {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.footer-logo .logo-icon-svg {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-list i {
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .7);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all .2s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width:1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.svg-content {
  fill: none;
}

.svg-content path {
  stroke: var(--primary);
  stroke-width: 4;
}

.scroll-top::after {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary);
}

/* ============================================================
   CONTACT (index.html quick form strip)
   ============================================================ */
.contact-strip {
  background: var(--primary);
  padding: 60px 0;
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-strip h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.contact-strip p {
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
}

/* ============================================================
   MISC
   ============================================================ */
.fw-semibold {
  font-weight: 600;
}

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

.accordion-button .right-icon {
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s;
}

.accordion-button .right-icon::before {
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.accordion-button:not(.collapsed) .right-icon {
  transform: rotate(45deg);
}

.accordion-collapse {
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

.accordion-collapse.show {
  height: auto;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-item {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn .5s ease;
}

.testimonial-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light2);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--text);
}

.star-rating {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--dark);
  transition: all .2s;
}

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

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-about {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.footer-logo .logo-icon-svg {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-list i {
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .7);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all .2s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width:1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.svg-content {
  fill: none;
}

.svg-content path {
  stroke: var(--primary);
  stroke-width: 4;
}

.scroll-top::after {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--primary);
}

/* ============================================================
   CONTACT (index.html quick form strip)
   ============================================================ */
.contact-strip {
  background: var(--primary);
  padding: 60px 0;
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-strip h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.contact-strip p {
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
}

/* ============================================================
   MISC
   ============================================================ */
.fw-semibold {
  font-weight: 600;
}

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

/* ============================================================
   CTA SECTION â€” AIOR Inspired
   ============================================================ */
.aior-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #061153 0%, #1c276a 100%);
  background-image: url('../images/home-infotechno-contact-bg (1).webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aior-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 17, 83, 0.6) 0%, rgba(6, 17, 83, 0.2) 100%);
  z-index: 0;
}

.aior-cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(110, 165, 255, 0.2) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2 {
  left: -10%;
  right: auto;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.15) 0%, transparent 70%);
}

.cta-shape {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

.cta-shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 15%;
  animation: float-cta 6s ease-in-out infinite;
}

.cta-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 10%;
  animation: float-cta 9s ease-in-out infinite reverse;
}

@keyframes float-cta {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.aior-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-left {
  flex: 1;
  min-width: 300px;
}

.aior-cta-title {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.aior-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, var(--primary) 0%, #4a80ff 100%);
  color: var(--white);
  padding: 12px 12px 12px 28px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(16, 83, 243, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.aior-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 83, 243, 0.4);
}

.aior-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
  z-index: -1;
}

.aior-btn:hover::before {
  left: 100%;
}

.aior-btn-arrow {
  width: 38px;
  height: 38px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aior-btn:hover .aior-btn-arrow {
  transform: translateX(5px);
  background: var(--white);
}



@media (max-width: 991px) {
  .aior-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .aior-cta-title {
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }

  .cta-right {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .aior-cta-section {
    padding: 60px 0;
  }

  .aior-subscribe-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 20px;
    gap: 20px;
  }

  .aior-input {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .aior-btn {
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    padding: 10px 10px 10px 30px;
    font-size: 15px;
  }

  .aior-btn-arrow {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   TOPBAR SOCIAL ICONS
   ============================================================ */
.topbar-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
}

.topbar-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .topbar-social-icons {
    display: none;
  }
}

/* ============================================================
   CONTACT PAGE â€” contact.html
   ============================================================ */

/* ---- Mobile Nav Drawer ---- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #061153;
  z-index: 100000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
  padding: 4px;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav-logo {
  margin-bottom: 30px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-list li a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active a {
  color: #fff;
  padding-left: 8px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ---- Contact Page Hero ---- */
.contact-page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nav-dark, #061153);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #061153 0%, #1c276a 55%, #0a3fc0 100%);
  z-index: 0;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(16, 83, 243, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(6, 17, 83, 0.5) 0%, transparent 60%);
  z-index: 1;
}

/* Hero decorative floating shapes */
.contact-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 1;
  animation: contactShapeFloat 8s ease-in-out infinite;
}

.contact-hero-shape.shape-1 {
  width: 350px;
  height: 350px;
  top: -80px;
  right: 5%;
  animation-duration: 10s;
}

.contact-hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 20%;
  animation-duration: 7s;
  animation-delay: -3s;
}

.contact-hero-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 38%;
  animation-duration: 12s;
  animation-delay: -5s;
}

@keyframes contactShapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(15deg);
  }
}

.contact-page-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 680px;
  padding: 80px 0 60px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1053f3;
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 83, 243, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 83, 243, 0);
  }
}

.contact-hero-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.contact-hero-highlight {
  position: relative;
  color: #fff;
  display: inline-block;
}

.contact-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.contact-hero-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-breadcrumb a:hover {
  color: #fff;
}

.bc-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.bc-current {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-hero-content {
    padding: 60px 0 40px;
  }

  .contact-hero-shape.shape-1 {
    width: 200px;
    height: 200px;
    right: -30px;
    top: -40px;
  }

  .contact-hero-shape.shape-2 {
    display: none;
  }
}

/* ---- Contact Info Cards ---- */
.contact-info-section {
  padding: 80px 0 0;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
  border-radius: var(--radius-lg, 24px);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16, 83, 243, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(16, 83, 243, 0.12);
  border-color: rgba(16, 83, 243, 0.2);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.cic-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 83, 243, 0.12) 0%, rgba(16, 83, 243, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-info-card:hover .cic-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.cic-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.cic-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
}

.cic-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.cic-text a:hover {
  color: var(--primary);
}

.cic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}

.cic-link:hover {
  gap: 10px;
}

.cic-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

/* ---- Contact Main Section ---- */
.contact-main-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ---- Form Side ---- */
.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 12px 0 14px;
}

.text-gradient-blue {
  background: linear-gradient(95deg, #1053f3 0%, #0a3fc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-subtitle {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Contact Form Heading sub badge */
.contact-form-header .heading-section .heading-sub {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Form Elements ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req {
  color: var(--primary);
  margin-left: 2px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 20px !important;
  color: var(--text-light);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}

.textarea-icon {
  top: 16px;
  align-self: flex-start;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 14px 18px 14px 60px !important;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--light, #f5f7fa);
  border: 2px solid transparent;
  border-radius: var(--radius, 16px);
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
}

.input-wrap textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
  padding-top: 14px;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 83, 243, 0.08);
}

.input-wrap input:focus+.input-icon,
.input-wrap select:focus+.input-icon {
  color: var(--primary);
}

.input-wrap:focus-within .input-icon {
  color: var(--primary);
}

/* Input error state */
.input-wrap.has-error input,
.input-wrap.has-error select,
.input-wrap.has-error textarea {
  border-color: #e53e3e;
  background: #fff5f5;
}

.field-error {
  font-size: 12px;
  color: #e53e3e;
  font-weight: 600;
  display: none;
  margin-top: 2px;
}

.field-error.show {
  display: block;
}

/* Select arrow */
.select-wrap {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 16px;
  font-size: 12px;
  color: var(--text-light);
  pointer-events: none;
}

/* Checkbox */
.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin-top: 10px;
  margin-bottom: 5px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  user-select: none;
}

.checkbox-text {
  flex: 1;
  padding-top: 1px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1px;
}

.checkbox-label:hover .checkbox-custom {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 83, 243, 0.05);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit Button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 83, 243, 0.3);
  align-self: flex-start;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(16, 83, 243, 0.4);
}

.contact-submit-btn:hover::before {
  opacity: 1;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Form success message */
.form-success-msg {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #16a34a;
  font-size: 15px;
  font-weight: 600;
  animation: fadeInUp 0.5s ease;
}

.form-success-msg i {
  font-size: 22px;
}

.form-success-msg p {
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Map / Right Side ---- */
.contact-map-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.contact-side-panel {
  background: var(--nav-dark, #061153);
  border-radius: var(--radius-lg, 24px);
  padding: 36px 32px;
  color: #fff;
}

.side-panel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 26px;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
}

.side-panel-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.why-helios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-helios-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.whl-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(16, 83, 243, 0.2);
  border: 1px solid rgba(16, 83, 243, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6ea8ff;
  transition: all 0.3s;
}

.why-helios-list li:hover .whl-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.whl-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whl-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.whl-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.contact-social-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.csb-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.csb-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.csb-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
}

.csb-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ---- Map Embed ---- */
.contact-map-embed {
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 280px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ---- Reveal animations ---- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 767px) {
  .contact-main-section {
    padding: 60px 0 80px;
  }

  .contact-info-section {
    padding: 60px 0 0;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .contact-map-side {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-info-card {
    padding: 28px 20px;
  }

  .contact-side-panel {
    padding: 28px 22px;
  }
}

/* ============================================================
   ABOUT PAGE (about.html) â€” All Styles
   ============================================================ */

/* ---- About Mobile Drawer ---- */
.ab-mobile-drawer {
  position: fixed;
  top: 0;
  right: -310px;
  width: 290px;
  height: 100vh;
  background: #061153;
  z-index: 100000;
  padding: 28px 22px 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.ab-mobile-drawer.open {
  right: 0;
}

.ab-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.ab-drawer-close:hover {
  color: #fff;
}

.ab-drawer-logo {
  margin-bottom: 28px;
}

.ab-drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ab-drawer-nav li a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.ab-drawer-nav li a:hover,
.ab-drawer-nav li.active a {
  color: #fff;
  padding-left: 8px;
}

.ab-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ab-mobile-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ---- About Hero ---- */
.ab-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--nav-dark);
}

.ab-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(6, 17, 83, 0.97) 0%, rgba(16, 83, 243, 0.12) 60%, rgba(6, 17, 83, 0.85) 100%);
  z-index: 1;
}

/* Floating geometric shapes */
.ab-geo {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.ab-geo-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.18) 0%, transparent 70%);
  animation: abGeoPulse 8s ease-in-out infinite;
}

.ab-geo-2 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: -60px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.1) 0%, transparent 70%);
  animation: abGeoPulse 11s ease-in-out infinite reverse;
}

.ab-geo-3 {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 30%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  animation: abGeoRotate 20s linear infinite;
}

.ab-geo-4 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 20%;
  border: 1px solid rgba(16, 83, 243, 0.25);
  background: rgba(16, 83, 243, 0.06);
  border-radius: 16px;
  animation: abGeoRotate 14s linear infinite reverse;
}

@keyframes abGeoPulse {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08) translateY(-20px);
    opacity: 1;
  }
}

@keyframes abGeoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ab-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 24px 80px;
}

@media (max-width: 991px) {
  .ab-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 24px 60px;
  }
}

/* Hero Content */
.ab-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.ab-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: abDotPulse 2s ease-in-out infinite;
}

@keyframes abDotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 83, 243, 0.5);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(16, 83, 243, 0);
  }
}

.ab-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.ab-hero-accent {
  display: inline-block;
  position: relative;
  color: transparent;
  background: linear-gradient(90deg, #6ea8ff 0%, #a5c4ff 50%, #1053f3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ab-hero-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.ab-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ab-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.ab-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Visual */
.ab-hero-visual {
  position: relative;
}

.ab-hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.ab-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  animation: abImgFloat 6s ease-in-out infinite;
}

@keyframes abImgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .ab-hero-img {
    height: 340px;
  }
}

/* Floating badges on hero image */
.ab-hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  min-width: 170px;
  animation: abBadgeFloat 5s ease-in-out infinite;
}

.ab-badge-1 {
  bottom: -20px;
  left: -24px;
  animation-delay: 0s;
}

.ab-badge-2 {
  top: 20px;
  right: -24px;
  animation-delay: -2.5s;
}

@keyframes abBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ab-hero-badge-float strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.ab-hero-badge-float span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.ab-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(16, 83, 243, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ab-badge-icon-green {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

@media (max-width: 767px) {
  .ab-badge-1 {
    left: 0;
    bottom: -15px;
  }

  .ab-badge-2 {
    right: 0;
    top: 10px;
    min-width: 150px;
    padding: 10px 14px;
  }
}

/* Animated rings behind image */
.ab-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 83, 243, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.ab-ring-1 {
  width: 110%;
  height: 110%;
  animation: abRingPulse 4s ease-in-out infinite;
}

.ab-ring-2 {
  width: 130%;
  height: 130%;
  animation: abRingPulse 4s ease-in-out infinite 1s;
}

@keyframes abRingPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

/* Scroll cue */
.ab-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s;
}

.ab-scroll-cue:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ab-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: abScrollLine 2s ease-in-out infinite;
}

@keyframes abScrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* Breadcrumb */
.ab-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
  padding-top: 0;
}

.ab-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.ab-breadcrumb a:hover {
  color: #fff;
}

.ab-breadcrumb span {
  font-size: 10px;
}

.ab-bc-current {
  color: var(--primary);
  font-weight: 600;
}

/* ---- Reveal Animations (About page) ---- */
.ab-reveal-up,
.ab-reveal-left,
.ab-reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.ab-reveal-up {
  transform: translateY(48px);
}

.ab-reveal-left {
  transform: translateX(-56px);
}

.ab-reveal-right {
  transform: translateX(56px);
}

.ab-reveal-up.ab-visible,
.ab-reveal-left.ab-visible,
.ab-reveal-right.ab-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {

  .ab-reveal-up,
  .ab-reveal-left,
  .ab-reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---- Bento Story Section ---- */
/* ====================================================
   CONBIX STORY SECTION
   ==================================================== */
.conbix-story-section {
  position: relative;
  background: #fff;
}

.conbix-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 991px) {
  .conbix-story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

/* Left: Staggered Image Stack */
.conbix-img-stack {
  position: relative;
  height: 520px;
}

@media (max-width: 991px) {
  .conbix-img-stack {
    height: 380px;
    width: 100%;
    margin-bottom: 20px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

@media (max-width: 575px) {
  .conbix-img-stack {
    height: 300px;
  }
}

.cs-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cs-img:hover img {
  transform: scale(1.04);
}

.cs-img-main {
  width: 68%;
  height: 100%;
  top: 0;
  left: 0;
}

.cs-img-secondary {
  width: 52%;
  height: 72%;
  bottom: -6%;
  right: 0;
  border: 5px solid #fff;
}

/* Badge on secondary image */
.cs-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-badge-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-body);
}

.cs-badge-num span {
  font-size: 24px;
}

.cs-badge-txt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

@media (max-width: 575px) {
  .cs-badge {
    padding: 8px 12px;
    gap: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 8px;
  }

  .cs-badge-num {
    font-size: 22px;
  }

  .cs-badge-num span {
    font-size: 16px;
  }

  .cs-badge-txt {
    font-size: 9px;
    letter-spacing: 0;
  }
}

/* Right: Content */
.conbix-story-content {
  padding-left: 10px;
}

@media (max-width: 991px) {
  .conbix-story-content {
    padding-left: 0;
  }
}

.cs-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.cs-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.cs-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 22px;
  font-family: var(--font-display);
}

.cs-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Stat Row */
.cs-stat-row {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-bottom: 36px;
  padding: 28px 32px;
  background: #f8faff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 83, 243, 0.08);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .cs-stat-row {
    gap: 40px;
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .cs-stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.cs-stat {
  display: flex;
  flex-direction: column;
}

.cs-stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-body);
}

.cs-stat-num span {
  font-size: 28px;
}

.cs-stat-txt {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.5;
}

.cs-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(16, 83, 243, 0.15);
  flex-shrink: 0;
}

/* CTA Row */
.cs-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 83, 243, 0.25);
}

.cs-btn:hover {
  background: #0a2bcc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 83, 243, 0.35);
}

.cs-founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(16, 83, 243, 0.2);
}

.cs-founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-founder-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.cs-founder-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ====================================================
   VISION & MISSION SECTION
   ==================================================== */
.vm-section {
  background: #f8faff;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

@media (max-width: 767px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1px solid rgba(16, 83, 243, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 83, 243, 0.1);
}

.vm-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary) 0%, #6ea8ff 100%);
  border-radius: 0 4px 4px 0;
}

.vm-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(16, 83, 243, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon-box {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 83, 243, 0.3);
}

.vm-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.vm-card>p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.vm-list li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- Numbers Section ---- */
.ab-numbers-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.ab-numbers-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061153 0%, #0a1f7a 50%, #061153 100%);
  z-index: 0;
}

.ab-numbers-bg::after {
  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='%231053f3' fill-opacity='0.06'%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");
}

.ab-numbers-section .container {
  position: relative;
  z-index: 1;
}

.ab-numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .ab-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ab-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ab-num-card {
  text-align: center;
  padding: 36px 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  backdrop-filter: blur(6px);
}

.ab-num-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.ab-num-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ab-num-card:hover::before {
  opacity: 1;
}

.ab-num-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 83, 243, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: #6ea8ff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.ab-num-card:hover .ab-num-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 0 25px rgba(16, 83, 243, 0.5);
  border-color: transparent;
}

.ab-num-value {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-body);
  margin-bottom: 10px;
}

.ab-num-value .counter {
  color: #fff;
}

.ab-num-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ab-num-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 1.5s ease;
  border-radius: 2px;
}

.ab-num-card.ab-visible .ab-num-bar {
  width: 100%;
}

/* ---- What We Stand For Section (Animated Background) ---- */
.ab-values {
  position: relative;
  background: linear-gradient(120deg, #f0f4ff 0%, #ffffff 50%, #e6f0ff 100%);
  background-size: 200% 200%;
  animation: valuesGradientShift 12s ease infinite;
  overflow: hidden;
  z-index: 1;
}

@keyframes valuesGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ab-values::before,
.ab-values::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: valuesOrbFloat 15s ease-in-out infinite alternate;
}

.ab-values::before {
  width: 400px;
  height: 400px;
  background: rgba(16, 83, 243, 0.08);
  top: -100px;
  left: -100px;
}

.ab-values::after {
  width: 300px;
  height: 300px;
  background: rgba(110, 168, 255, 0.06);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

@keyframes valuesOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 40px) scale(1.1);
  }
}

.ab-values .container {
  position: relative;
  z-index: 1;
}

/* ---- Timeline Section ---- */
.ab-timeline-section {
  position: relative;
}

.ab-timeline-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--light);
  background-image: radial-gradient(rgba(16, 83, 243, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

.ab-timeline-section .container {
  position: relative;
  z-index: 1;
}

.ab-timeline {
  position: relative;
  margin-top: 60px;
  padding: 0 0 20px;
}

.ab-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(16, 83, 243, 0.3) 10%, rgba(16, 83, 243, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .ab-timeline-line {
    left: 20px;
  }
}

.ab-timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 52px;
}

.ab-tl-left {
  left: 0;
  text-align: right;
}

.ab-tl-right {
  left: 55%;
  text-align: left;
}

@media (max-width: 767px) {
  .ab-timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 54px;
  }

  .ab-tl-dot {
    left: 12px !important;
    right: auto !important;
  }
}

.ab-tl-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}

.ab-tl-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ab-tl-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.ab-tl-content:hover::before {
  opacity: 1;
}

.ab-tl-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(16, 83, 243, 0.08);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.ab-tl-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.ab-tl-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.ab-tl-dot {
  position: absolute;
  top: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 0 6px rgba(16, 83, 243, 0.15);
  z-index: 2;
  transition: transform 0.3s;
}

.ab-tl-left .ab-tl-dot {
  right: -50px;
}

.ab-tl-right .ab-tl-dot {
  left: -50px;
}

.ab-timeline-item:hover .ab-tl-dot {
  transform: scale(1.15);
}

/* ---- Premium Group Companies Section ---- */
.premium-group-section {
  position: relative;
  background-color: #061153;
  overflow: hidden;
}

.premium-group-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  /* bleed edge for animation */
  background-image: url('../images/home-infotechno-contact-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  /* Made fully opaque so it shows through */
  z-index: 0;
  animation: bgImagePan 25s ease-in-out infinite alternate;
}

.premium-group-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 17, 83, 0.85) 0%, rgba(16, 83, 243, 0.4) 100%);
  z-index: 0;
  pointer-events: none;
}

@keyframes bgImagePan {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(-3%, -2%);
  }
}

.premium-group-section .section-label {
  color: #6ea8ff;
  position: relative;
  z-index: 2;
}

.premium-group-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.premium-group-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

/* Floating Shapes Background */
.pg-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* Above bg image */
  overflow: hidden;
}

.pg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.pg-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(16, 83, 243, 0.15);
  top: -100px;
  right: -100px;
}

.pg-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 83, 243, 0.1);
  bottom: -50px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 60px) scale(1.1);
  }
}

/* Custom Decorative Image Shapes */
.pg-shape-img {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.pg-shape-img img {
  max-width: 100%;
  height: auto;
}

.pg-shape-img-1 {
  width: 250px;
  top: 5%;
  left: -50px;
  animation: geoSpin 40s linear infinite;
}

.pg-shape-img-2 {
  width: 320px;
  top: 5%;
  right: -50px;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

@keyframes geoSpin {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(180deg) translateY(-20px);
  }

  100% {
    transform: rotate(360deg) translateY(0);
  }
}

@keyframes geoSpinReverse {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(-180deg) translateY(20px);
  }

  100% {
    transform: rotate(-360deg) translateY(0);
  }
}


/* Container & Header z-index */
.premium-group-section .container,
.premium-group-section .section-header {
  position: relative;
  z-index: 2;
}

/* Marquee Auto-Scroll */
.pg-marquee-outer {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  overflow: hidden;
  /* Fade edges for premium look */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.pg-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.pg-marquee-outer:hover .pg-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* move exactly half (the duplicate) */
}

.pg-marquee-track .pg-card {
  flex: 0 0 340px;
  max-width: 340px;
}

@media (max-width: 767px) {
  .pg-marquee-track .pg-card {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

/* Cards */
.pg-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: hsla(0, 0%, 100%, 0.986);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(16, 83, 243, 0.3) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(16, 83, 243, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.pg-card:hover::before {
  opacity: 1;
}

.pg-card-inner {
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.pg-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(16, 83, 243, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s ease;
}

.pg-card:hover .pg-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(16, 83, 243, 0.3);
}

.pg-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(16, 83, 243, 0.08);
  font-family: var(--font-display);
  line-height: 1;
  transition: color 0.4s ease;
}

.pg-card:hover .pg-num {
  color: rgba(16, 83, 243, 0.15);
}

.pg-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pg-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pg-tags li {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: #fff;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid rgba(16, 83, 243, 0.15);
  transition: all 0.3s;
}

.pg-card:hover .pg-tags li {
  background: rgba(16, 83, 243, 0.05);
  border-color: rgba(16, 83, 243, 0.3);
}

.pg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}

.pg-link:hover {
  gap: 12px;
}

/* ---- Skills Section ---- */
.ab-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .ab-skills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ab-skills-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-skills-wrap .skill-header {
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 8px;
}

.ab-skills-wrap .skill-bar {
  background: rgba(16, 83, 243, 0.1);
  height: 8px;
}

.ab-skills-wrap .skill-fill {
  background: var(--primary);
}

/* ---- Conbix History Timeline ---- */
.conbix-history-section {
  position: relative;
  background-color: #f4f7ff;
}

#abParticleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.conbix-timeline {
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

.conbix-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 2px dashed rgba(16, 83, 243, 0.4);
  transform: translateX(-50%);
  z-index: 0;
}

.conbix-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.conbix-item:last-child {
  margin-bottom: 0;
}

.conbix-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 83, 243, 0.2);
  z-index: 2;
}

.conbix-img-box {
  width: calc(50% - 40px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.conbix-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 1;
  pointer-events: none;
}

.conbix-item:hover .conbix-img-box::before {
  left: 150%;
}

.conbix-img-box img {
  width: 100%;
  height: 300px;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  display: block;
}

.conbix-card-box {
  width: calc(50% - 40px);
  position: relative;
}

.conbix-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.conbix-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.conbix-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Ribbons / Flags */
.conbix-ribbon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* For left-img (card is on the right) */
.conbix-item.left-img .conbix-ribbon {
  left: -48px;
  /* Stick out to the left */
}

.conbix-item.left-img .conbix-ribbon::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 0;
  border-top: 22px solid var(--primary);
  border-bottom: 22px solid var(--primary);
  border-left: 14px solid transparent;
}

.conbix-item.left-img .conbix-ribbon::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--primary);
}

/* For right-img (card is on the left) */
.conbix-item.right-img .conbix-ribbon {
  right: -48px;
  /* Stick out to the right */
}

.conbix-item.right-img .conbix-ribbon::before {
  content: '';
  position: absolute;
  right: -14px;
  top: 0;
  border-top: 22px solid var(--primary);
  border-bottom: 22px solid var(--primary);
  border-right: 14px solid transparent;
}

.conbix-item.right-img .conbix-ribbon::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--primary);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .conbix-timeline-line {
    left: 20px;
  }

  .conbix-dot {
    left: 20px;
  }

  .conbix-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 50px;
  }

  .conbix-item.right-img {
    flex-direction: column-reverse !important;
  }

  .conbix-img-box,
  .conbix-card-box {
    width: 100%;
  }

  .conbix-img-box {
    margin-bottom: 20px;
  }

  .conbix-img-box img {
    height: 250px;
  }

  .conbix-item.right-img .conbix-img-box {
    margin-bottom: 0;
    margin-top: 20px;
  }

  .conbix-ribbon,
  .conbix-item.left-img .conbix-ribbon,
  .conbix-item.right-img .conbix-ribbon {
    left: 20px !important;
    right: auto !important;
    top: -22px !important;
    transform: none !important;
    padding: 0 16px !important;
  }

  .conbix-ribbon::before,
  .conbix-ribbon::after {
    display: none !important;
  }
}

/* ---- Testimonials ---- */
.ab-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

@media (max-width: 991px) {
  .ab-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ab-testi-grid {
    grid-template-columns: 1fr;
  }
}

.ab-testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s, background 0.35s;
}

.ab-testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.ab-testi-quote {
  font-size: 28px;
  color: rgba(16, 83, 243, 0.6);
  margin-bottom: 16px;
}

.ab-testi-card>p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.ab-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ab-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.ab-testi-author span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.ab-testi-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

/* ---- Responsive Global Tweaks (About) ---- */
@media (max-width: 991px) {
  .ab-hero {
    min-height: auto;
  }

  .ab-hero-container {
    min-height: auto;
  }

  .ab-story .ab-collage-main img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .ab-num-value {
    font-size: 36px;
  }

  .ab-tl-left,
  .ab-tl-right {
    text-align: left;
  }

  .ab-timeline {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .ab-hero-title {
    font-size: 36px;
  }

  .ab-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-sub-card,
  .ab-value-card {
    padding: 24px 18px;
  }
}

/* ============================================================
   SERVICES PAGE â€” services.html
   ============================================================ */

/* ---- Hero Banner ---- */
.svc-hero-banner {
  position: relative;
  background-color: var(--dark);
  background-image: url('../images/helios_inner_hero_bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.svc-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 18, 41, 0.9) 0%, rgba(5, 18, 41, 0.75) 60%, rgba(10, 36, 112, 0.6) 100%);
  z-index: 1;
}

.svc-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.svc-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.svc-hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 83, 243, 0.25);
  top: -200px;
  right: -100px;
}

.svc-hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(249, 115, 22, 0.12);
  bottom: -100px;
  left: 10%;
}

.svc-hero-banner .tv-breadcrumb-inner {
  position: relative;
  z-index: 2;
}

.svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.svc-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--light);
  border-radius: 50%;
  animation: svcDotPulse 1.8s ease-in-out infinite;
}

@keyframes svcDotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.svc-hero-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px auto 24px;
  max-width: 560px;
  line-height: 1.65;
}

/* Badge Group */
.svc-badge-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Floating badges */
.svc-float-badge {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  white-space: nowrap;
}

.svc-float-badge i {
  color: var(--light);
  font-size: 1.1em;
}

.svc-float-badge-1 {
  animation: svcBadgeFloat 4s ease-in-out infinite;
}

.svc-float-badge-2 {
  animation: svcBadgeFloat 4s ease-in-out infinite 0.8s;
}

.svc-float-badge-3 {
  animation: svcBadgeFloat 4s ease-in-out infinite 1.6s;
}

@keyframes svcBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .svc-badge-group {
    gap: 12px;
  }

  .svc-float-badge {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ---- Stats Strip ---- */
/* ---- Logo Slider Section (Enhanced) ---- */
.svc-logo-slider-section {
  background: #fdfdfd;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-top: -40px;
  /* Overlap effect */
}

/* Dot Grid Background */
.svc-logo-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 83, 243, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.8;
  pointer-events: none;
}

.svc-logo-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.svc-mini-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(16, 83, 243, 0.05);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(16, 83, 243, 0.1);
}

.svc-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  height: 85px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  animation: svcLogoFloat 4s ease-in-out infinite;
}

@keyframes svcLogoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Stagger floating animation */
.swiper-slide:nth-child(2n) .svc-logo-item {
  animation-delay: 0.5s;
}

.swiper-slide:nth-child(3n) .svc-logo-item {
  animation-delay: 1s;
}

.svc-logo-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
  background: #fff;
  animation-play-state: paused;
}

.svc-logo-item img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s ease;
}

.svc-logo-item:hover img {
  transform: scale(1.05);
}

.svc-logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

@media (max-width: 767px) {
  .svc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-stat-item:nth-child(2) {
    border-right: none;
  }

  .svc-stat-item:nth-child(3),
  .svc-stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .svc-stat-item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .svc-stat-num {
    font-size: 38px;
  }
}

/* ---- Services Categories Section ---- */
.svc-categories-section {
  position: relative;
  background: var(--white);
}

.svc-section-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 83, 243, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

/* Section header */
.svc-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.svc-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(16, 83, 243, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(16, 83, 243, 0.1);
}

.svc-label-tag span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.svc-label-white {
  color: rgba(255, 255, 255, 0.7) !important;
}

.svc-section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.svc-section-title em {
  font-style: italic;
  color: var(--primary);
}

.svc-section-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .svc-section-title {
    font-size: 32px;
  }
}

/* ---- Tabbed Services Layout (SEO7 Inspired) ---- */
.svc-tabs-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.svc-tabs-nav {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  background: #f8fafc;
  padding: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.svc-tab-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: var(--font-body);
}

.svc-tab-link .tab-icon-arrow {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.svc-tab-link:hover,
.svc-tab-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(16, 83, 243, 0.2);
  transform: translateX(10px);
}

.svc-tab-link:hover .tab-icon-arrow,
.svc-tab-link.active .tab-icon-arrow {
  background: var(--primary-dark);
  color: var(--white);
  transform: rotate(-45deg);
}

/* Content Area */
.svc-tabs-content {
  flex: 1;
  position: relative;
  min-height: 580px;
}

.svc-tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--border);
}

.svc-tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  height: 100%;
}

.svc-panel-visual {
  flex: 0 0 45%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}

.svc-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.svc-tab-panel:hover .svc-panel-visual img {
  transform: scale(1.08);
}

.svc-panel-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.svc-panel-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-panel-icon {
  width: 75px;
  height: 75px;
  background: rgba(16, 83, 243, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.svc-tab-panel:hover .svc-panel-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.svc-panel-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.svc-panel-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.svc-panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.svc-panel-features li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}

.svc-panel-features li i {
  color: var(--primary);
  font-size: 14px;
}

.svc-panel-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 16px 35px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(16, 83, 243, 0.25);
}

.svc-panel-btn:hover {
  background: var(--nav-dark);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .svc-tabs-nav {
    flex: 0 0 280px;
  }

  .svc-tab-panel {
    padding: 35px;
    gap: 30px;
  }

  .svc-panel-title {
    font-size: 26px;
  }

  .svc-panel-visual {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .svc-tabs-layout {
    flex-direction: column;
  }

  .svc-tabs-nav {
    flex: 1;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    padding: 0;
  }

  .svc-tab-link {
    flex: 1 1 calc(50% - 14px);
    min-width: 220px;
    padding: 18px 22px;
    transform: none !important;
  }

  .svc-tabs-content {
    min-height: auto !important;
  }

  .svc-tab-panel {
    flex-direction: column;
    padding: 30px;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    /* Hide inactive panels in JS logic */
  }

  .svc-tab-panel.active {
    display: flex;
  }

  .svc-panel-visual {
    flex: none;
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
  }

  .svc-panel-btn {
    margin-top: 30px !important;
  }
}

@media (max-width: 575px) {
  .svc-tab-link {
    flex: 1 1 100%;
  }

  .svc-tab-panel {
    padding: 20px;
  }

  .svc-panel-features {
    grid-template-columns: 1fr;
  }

  .svc-panel-title {
    font-size: 22px;
  }

  .svc-panel-visual {
    height: 250px;
  }
}

/* ---- Process Section (Inotek Exact Match) ---- */
.tv-process-section {
  background: var(--light2);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  /* Space below the rounded box */
}

/* ---- Process Section Background Animations ---- */
.proc-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  pointer-events: none;
}

/* Floating Orbs */
.proc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: procOrbFloat linear infinite;
}

.proc-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #1053f3 0%, transparent 70%);
  top: -120px;
  left: -100px;
  animation-duration: 18s;
  animation-name: procOrbFloat1;
}

.proc-orb-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #5b8df6 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  animation-duration: 22s;
  animation-name: procOrbFloat2;
}

.proc-orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #1053f3 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 14s;
  animation-name: procOrbFloat3;
  opacity: 0.10;
}

@keyframes procOrbFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(80px, 60px) scale(1.12);
  }

  66% {
    transform: translate(30px, 120px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes procOrbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-70px, -50px) scale(1.08);
  }

  80% {
    transform: translate(-20px, -100px) scale(0.92);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes procOrbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.10;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.18;
  }
}

/* Animated Dot Grid */
.proc-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: procDotsShift 30s linear infinite;
}

@keyframes procDotsShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 36px 36px;
  }
}

/* Light Streaks */
.proc-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 83, 243, 0.5), transparent);
  border-radius: 999px;
  opacity: 0;
}

.proc-streak-1 {
  width: 55%;
  top: 22%;
  left: -60%;
  transform: rotate(-12deg);
  animation: procStreak 6s ease-in-out infinite 0s;
}

.proc-streak-2 {
  width: 40%;
  top: 55%;
  left: -50%;
  transform: rotate(-8deg);
  animation: procStreak 6s ease-in-out infinite 2.2s;
}

.proc-streak-3 {
  width: 65%;
  top: 78%;
  left: -70%;
  transform: rotate(-15deg);
  animation: procStreak 6s ease-in-out infinite 4.1s;
}

@keyframes procStreak {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(-12deg);
  }

  10% {
    opacity: 0.7;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateX(170%) rotate(-12deg);
  }
}

/* Pulse Rings */
.proc-pulse {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 83, 243, 0.25);
  animation: procPulseRing 6s ease-out infinite;
}

.proc-pulse-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.proc-pulse-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 85%;
  transform: translate(-50%, -50%);
  animation-delay: 3s;
}

@keyframes procPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}

.tv-process-section .process-inner {
  background: #1a2f5e;
  position: relative;
  z-index: 2;
  margin: 0 30px;
  border-radius: 30px;
  padding: 60px 0;
}

@media (max-width: 991px) {
  .tv-process-section .process-inner {
    margin: 0;
    border-radius: 0;
  }
}

.tv-process-section .process-inner .process-title {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.tv-process-section .process-inner .process-title h2 {
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-display);
  text-align: center;
  color: var(--white);
  margin: 0;
}

.tv-process-section .process-inner .process-title h2 span {
  color: var(--primary);
}

@media (max-width: 1399px) {
  .tv-process-section .process-inner .process-title h2 {
    font-weight: 700;
  }
}

@media (max-width: 1199px) {
  .tv-process-section .process-inner .process-title h2 {
    font-size: 130px;
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .tv-process-section .process-inner .process-title h2 {
    font-size: 100px;
    font-weight: 700;
  }
}

@media (max-width: 540px) {
  .tv-process-section .process-inner .process-title h2 {
    font-size: 80px;
    font-weight: 700;
  }
}

@media (max-width: 414px) {
  .tv-process-section .process-inner .process-title h2 {
    font-size: 50px;
    font-weight: 700;
  }
}

.tv-process-section .process-inner .process-title::before {
  position: absolute;
  content: "";
  border-bottom: 2px dashed var(--primary);
  bottom: -90px;
  width: 100%;
  height: 100%;
  left: 0;
  background-size: cover;
}

@media (max-width: 1199px) {
  .tv-process-section .process-inner .process-title::before {
    all: unset;
  }
}

.tv-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.tv-process-grid {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

.tv-process-item {
  flex: 1 1 0;
  min-width: 0;
}

.tv-process-item .title-text {
  text-align: center;
  position: relative;
  margin-bottom: 70px;
  /* increased gap between line and cards */
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tv-process-item .title-text .step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 0;
  font-style: italic;
}

.tv-process-item .title-text::before {
  position: absolute;
  background-color: var(--nav-dark);
  border-radius: 50%;
  border: 5px solid var(--primary);
  content: "";
  bottom: -18px;
  /* positions circle center exactly on the dashed line */
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 20px;
}

@media (max-width: 1199px) {
  .tv-process-item .title-text::before {
    display: none;
  }

  .tv-process-item .title-text {
    margin-bottom: 16px;
  }
}

.tv-process-item .process-box {
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.10196) 80%, rgba(255, 255, 255, 0.10196) 100%);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.tv-process-item .process-box .icon {
  background: rgba(16, 83, 243, 0.30);
  border: 2px solid rgba(16, 83, 243, 0.70);
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin: 0 auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease 0s;
  font-size: 28px;
  color: #ffffff;
}

.tv-process-item .process-box .title {
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.tv-process-item .process-box p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  margin: 0;
}

.tv-process-item .process-box:hover {
  transform: translateY(-10px);
}

.tv-process-item .process-box:hover .icon {
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Override native reveal-right for tv-process-item â€” simple fade+up so overflow:hidden can't clip it */
.tv-process-item.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tv-process-item.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .tv-process-section .process-inner .process-title::before {
    all: unset;
  }

  .tv-process-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .tv-process-container {
    padding: 0 24px;
  }
}

@media (max-width: 991px) {
  .tv-process-grid {
    flex-wrap: wrap;
  }

  .tv-process-item {
    flex: 0 0 calc(50% - 10px);
  }

  .tv-process-section .process-inner {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 575px) {
  .tv-process-item {
    flex: 0 0 100%;
  }

  .tv-process-container {
    padding: 0 16px;
  }

  .tv-process-section .process-inner {
    padding: 60px 0;
  }
}

/* ---- Advantage Section ---- */
.svc-advantage-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9faff 100%);
  position: relative;
  overflow: hidden;
}

.svc-advantage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
  background-size: 40px 40px;
  opacity: 0.04;
  pointer-events: none;
}

.svc-adv-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.svc-adv-bg-glow-1 {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.08) 0%, transparent 70%);
}

.svc-adv-bg-glow-2 {
  bottom: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
}

.svc-adv-shape-left {
  position: absolute;
  bottom: -40px;
  right: -70px;
  width: 180px;
  height: 180px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
  animation: svcShapeRotate 20s linear infinite;
}

.svc-adv-shape-right {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 240px;
  height: 240px;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
  /* animation: svcShapeRotate 25s linear infinite reverse; */
  filter: drop-shadow(0 0 20px rgba(16, 83, 243, 0.15));
}

@keyframes svcShapeRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.svc-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .svc-advantage-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .svc-advantage-visual {
    order: -1;
  }
}

.svc-advantage-para {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.svc-advantage-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.svc-adv-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 83, 243, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.svc-adv-item:hover {
  background: var(--white);
  border-color: rgba(16, 83, 243, 0.3);
  transform: translateX(12px) translateY(-2px);
  box-shadow: 0 15px 45px rgba(16, 83, 243, 0.12);
}

.svc-adv-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  border: 1px solid rgba(16, 83, 243, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(16, 83, 243, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.svc-adv-item:hover .svc-adv-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.svc-adv-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.svc-adv-item span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}


/* ---- Orbit Visual ---- */
.svc-advantage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  perspective: 1000px;
}

.svc-adv-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: svcBlobPulse 8s ease-in-out infinite;
}

@keyframes svcBlobPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.svc-domain-orbit {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-orbit-center {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4cd4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 50px rgba(16, 83, 243, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
  animation: svcLogoPulse 3s ease-in-out infinite;
}

@keyframes svcLogoPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 83, 243, 0.4), 0 0 0 0px rgba(16, 83, 243, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(16, 83, 243, 0.6), 0 0 0 20px rgba(16, 83, 243, 0);
  }
}

.svc-orbit-logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.svc-orbit-center span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Multi-layered Orbit Rings */
.svc-orbit-rings-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(16, 83, 243, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.svc-orbit-ring-1 {
  width: 100%;
  height: 100%;
  animation: svcRotate 60s linear infinite;
}

.svc-orbit-ring-2 {
  width: 75%;
  height: 75%;
  border-style: dotted;
  animation: svcRotate 40s linear infinite reverse;
}

.svc-orbit-ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(16, 83, 243, 0.1);
}

@keyframes svcRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.svc-orbit-item {
  position: absolute;
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(16, 83, 243, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  font-size: 20px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 5;
}

.svc-orbit-item span {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  line-height: 1;
}

.svc-orbit-item i {
  transition: transform 0.4s ease;
}

.svc-orbit-item:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 15px 30px rgba(16, 83, 243, 0.15);
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.svc-orbit-item:hover i {
  transform: scale(1.1);
}

.svc-orbit-item:hover span {
  color: rgba(255, 255, 255, 0.8);
}

/* Improved Positioning with calc and floating animations */
.svc-orbit-it {
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 0s;
}

.svc-orbit-bpo {
  top: 25%;
  left: 93.3%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 0.5s;
}

.svc-orbit-agro {
  top: 75%;
  left: 93.3%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 1s;
}

.svc-orbit-solar {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 1.5s;
}

.svc-orbit-fitness {
  top: 75%;
  left: 6.7%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 2s;
}

.svc-orbit-consult {
  top: 25%;
  left: 6.7%;
  transform: translate(-50%, -50%);
  animation: svcItemFloat 6s ease-in-out infinite 2.5s;
}

@keyframes svcItemFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}


/* ---- Testimonials ---- */
.svc-testi-section {
  position: relative;
  overflow: hidden;
}

.svc-testi-bg {
  position: absolute;
  inset: 0;
  background: #1a2f5e;
  z-index: 0;
}

.svc-testi-section .container {
  position: relative;
  z-index: 2;
}

.svc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .svc-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .svc-testi-grid {
    grid-template-columns: 1fr;
  }
}

.svc-testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s ease, background 0.35s;
}

.svc-testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.svc-testi-quote-icon {
  font-size: 26px;
  color: rgba(16, 83, 243, 0.5);
  margin-bottom: 16px;
}

.svc-testi-card>p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.svc-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.svc-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.svc-testi-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.svc-testi-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.svc-testi-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

/* ---- FAQ Section ---- */
.svc-faq-section {
  background: var(--light2);
}

.svc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .svc-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.svc-faq-item {
  border-bottom: 1px solid var(--border);
}

.svc-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-body);
  text-align: left;
  transition: color 0.2s;
}

.svc-faq-q:hover {
  color: var(--primary);
}

.svc-faq-q[aria-expanded="true"] {
  color: var(--primary);
}

.svc-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--primary);
  transition: background 0.25s, transform 0.25s;
}

.svc-faq-q[aria-expanded="true"] .svc-faq-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.svc-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s;
}

.svc-faq-a.open {
  max-height: 300px;
}

.svc-faq-a p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  padding-bottom: 20px;
  margin: 0;
}

/* ---- Reveal animations (shared with rest of site) ---- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* position:relative helper */
.position-relative {
  position: relative !important;
}

.z-1 {
  z-index: 1 !important;
}

/* ---- Services page responsive tweaks ---- */
@media (max-width: 767px) {
  .svc-domain-orbit {
    width: 300px;
    height: 300px;
  }

  .svc-orbit-center {
    width: 80px;
    height: 80px;
  }

  .svc-orbit-logo {
    font-size: 22px;
  }

  .svc-orbit-item {
    width: 54px;
    height: 54px;
    font-size: 15px;
  }

  .svc-advantage-section .svc-advantage-grid {
    gap: 40px;
  }

  .svc-adv-shape-left {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
  }

  .svc-adv-shape-right {
    width: 140px;
    height: 140px;
    top: -30px;
    right: -30px;
  }
}

@media (max-width: 480px) {
  .svc-filter-tabs {
    gap: 8px;
  }

  .svc-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ============================================================
   OUR COMPANIES PAGE â€” style.css additions
   ============================================================ */

/* ---- Topbar Social Icons ---- */
.topbar-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s, color 0.2s;
}

.topbar-social:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 575px) {
  .topbar-social-icons {
    display: none;
  }

  .header-topbar_wrap {
    justify-content: center !important;
  }
}

/* ---- Mobile Drawer (Our Companies page) ---- */
.oc-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #061153;
  z-index: 100000;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.oc-mobile-drawer.open {
  right: 0;
}

.oc-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.oc-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.oc-drawer-logo {
  margin-bottom: 32px;
}

.oc-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oc-drawer-nav li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.oc-drawer-nav li a:hover,
.oc-drawer-nav li.active a {
  color: #fff;
  background: rgba(16, 83, 243, 0.18);
}

.oc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.oc-mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   OC HERO SECTION
   ============================================================ */
.oc-hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--nav-dark) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

#ocHeroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.oc-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.oc-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(16, 83, 243, 0.08);
}

.oc-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  animation: ocShapePulse 8s ease-in-out infinite;
}

.oc-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  background: rgba(249, 115, 22, 0.06);
  animation: ocShapePulse 10s ease-in-out infinite reverse;
}

.oc-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 40%;
  background: rgba(16, 83, 243, 0.05);
  animation: ocShapePulse 6s ease-in-out infinite 2s;
}

@keyframes ocShapePulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(15deg);
  }
}

.oc-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.oc-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.oc-label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.oc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.oc-title-accent {
  color: var(--primary);
  position: relative;
}

.oc-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: ocUnderline 1.5s ease forwards 0.8s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes ocUnderline {
  to {
    transform: scaleX(1);
  }
}

.oc-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.oc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}

.oc-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.oc-breadcrumb a:hover {
  color: var(--primary);
}

.oc-breadcrumb i {
  font-size: 10px;
}

.oc-breadcrumb span {
  color: var(--primary);
  font-weight: 600;
}

/* Scroll hint */
.oc-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.oc-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.oc-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: ocScrollWheel 1.8s ease-in-out infinite;
}

@keyframes ocScrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(12px);
    opacity: 0;
  }

  61% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .oc-hero-section {
    padding: 60px 0 40px;
    min-height: 320px;
  }

  .oc-hero-desc {
    font-size: 15px;
  }
}

/* ============================================================
   OC INTRO SECTION
   ============================================================ */
.oc-intro-section {
  padding: 100px 0;
  background: var(--light);
  overflow: hidden;
}

.oc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .oc-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.oc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.oc-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.oc-section-title em {
  font-style: normal;
  color: var(--primary);
}

.oc-section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.7;
}

.oc-section-header.center {
  text-align: center;
}

.oc-section-header.center .oc-section-label {
  justify-content: center;
}

.oc-intro-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.oc-intro-stats-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.oc-stat-box {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.oc-stat-box:hover {
  transform: translateY(-5px);
}

.oc-stat-header {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.oc-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-body);
}

.oc-stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.oc-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

/* -- Mosaic Visual -- */
.oc-intro-visual-mosaic {
  position: relative;
  perspective: 1000px;
}

.oc-mosaic-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.oc-mosaic-main {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotateY(-5deg);
  transition: transform 0.5s ease;
}

.oc-mosaic-main img {
  width: 100%;
  height: auto;
  display: block;
}

.oc-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.oc-floating-card i {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.oc-floating-card h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark);
}

.oc-floating-card p {
  font-size: 12px;
  margin: 0;
  color: var(--text-light);
}

.oc-card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.oc-card-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .oc-intro-stats-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .oc-mosaic-container {
    max-width: 400px;
    margin-top: 40px;
  }

  .oc-card-1 {
    right: -10px;
  }

  .oc-card-2 {
    left: -10px;
  }
}

@media (max-width: 575px) {
  .oc-intro-stats-premium {
    grid-template-columns: 1fr;
  }

  .oc-mosaic-main {
    transform: none;
  }
}



/* ============================================================
   PORTFOLIO GRID — Premium Tilt Cards
   ============================================================ */

/* Entry animation */
@keyframes pfReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

/* ---------- Card Shell ---------- */
.pf-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
  transition: transform .4s cubic-bezier(.25, 1, .5, 1),
    box-shadow .4s ease;
  opacity: 0;
  height: 100%;
}

.pf-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .10);
}

/* Scroll-reveal: JS adds .pf-visible */
.pf-card.pf-visible {
  animation: pfReveal .7s ease forwards;
  animation-delay: var(--delay, 0ms);
}

/* ---------- Top Image Area + icon ---------- */
.pf-card-img {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 28px 28px;
  overflow: hidden;
}

.pf-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
  /* Remove inline gap */
}

.pf-card:hover .pf-card-img img {
  transform: scale(1.08);
}

.pf-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.pf-card:hover .pf-img-overlay {
  opacity: 1;
}

.pf-icon-ring {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: transform .4s cubic-bezier(.25, 1, .5, 1), background .3s;
}

.pf-card:hover .pf-icon-ring {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(255, 255, 255, .28);
}

.pf-num {
  position: relative;
  z-index: 2;
  font-size: 44px;
  font-weight: 900;
  color: rgba(255, 255, 255, .18);
  line-height: 1;
  font-family: var(--font-body);
  transition: color .3s;
}

.pf-card:hover .pf-num {
  color: rgba(255, 255, 255, .32);
}

/* ---------- Body ---------- */
.pf-card-body {
  padding: 28px 28px 20px;
  flex: 1;
}

.pf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 10%, transparent);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.pf-title {
  font-family: 'Outfit', 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  text-transform: none;
}

.pf-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

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

.pf-list li {
  font-size: 13px;
  color: #444;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pf-list li i {
  color: var(--c);
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- CTA button ---------- */
.pf-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: auto 28px 28px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--c);
  padding: 11px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
  align-self: flex-start;
}

.pf-cta i {
  font-size: 11px;
  transition: transform .3s;
}

.pf-cta:hover {
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--c) 35%, transparent);
}

.pf-cta:hover i {
  transform: translateX(4px);
}

/* ---------- Glow ---------- */
.pf-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -10%,
      color-mix(in srgb, var(--c) 8%, transparent) 0%,
      transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}

.pf-card:hover .pf-card-glow {
  opacity: 1;
}

/* ---------- Wide card (7th) ---------- */
.pf-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: stretch;
}

.pf-card-wide .pf-card-top {
  width: 220px;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px;
}

.pf-card-wide .pf-card-body {
  padding: 32px 32px 20px;
}

.pf-card-wide .pf-cta {
  margin: 0 32px 32px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-card-wide {
    grid-column: span 2;
    flex-direction: column;
  }

  .pf-card-wide .pf-card-img {
    width: 100%;
    flex-direction: row;
    padding: 28px;
    gap: 16px;
  }

  .pf-card-wide .pf-cta {
    margin: 0 28px 28px;
  }
}

@media (max-width: 767px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pf-card-wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .pf-card-wide .pf-card-img {
    flex-direction: row;
    align-items: center;
  }
}

/* ============================================================
   OC TIMELINE SECTION
   ============================================================ */
.oc-timeline-section {
  position: relative;
  overflow: hidden;
}

.oc-timeline-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--nav-dark) 100%);
}

.oc-timeline {
  position: relative;
  margin-top: 64px;
  padding-bottom: 16px;
}

.oc-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(16, 83, 243, 0.2);
  transform: translateX(-50%);
}

.oc-tl-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 40px;
  position: relative;
}

.oc-tl-left {
  flex-direction: row;
  padding-right: calc(50% + 40px);
}

.oc-tl-right {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}

.oc-tl-left .oc-tl-dot {
  right: calc(50% - 46px);
}

.oc-tl-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid rgba(16, 83, 243, 0.3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(16, 83, 243, 0.1);
}

.oc-tl-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
  flex: 1;
}

.oc-tl-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.oc-tl-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.oc-tl-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.oc-tl-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .oc-timeline-line {
    left: 16px;
  }

  .oc-tl-item {
    flex-direction: column !important;
    padding: 0 0 0 44px !important;
  }

  .oc-tl-dot {
    left: 16px;
    top: 14px;
    transform: translateX(-50%);
    position: absolute;
  }

  .oc-tl-left .oc-tl-dot,
  .oc-tl-right .oc-tl-dot {
    left: 16px;
    right: auto;
  }

  .oc-tl-card {
    width: 100%;
  }
}

/* ============================================================
   OC VALUES SECTION
   ============================================================ */
.oc-values-section {
  background: var(--light2);
}

.oc-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 1199px) {
  .oc-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .oc-values-grid {
    grid-template-columns: 1fr;
  }
}

.oc-value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oc-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.oc-value-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 83, 243, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: background 0.3s, transform 0.3s;
}

.oc-value-card:hover .oc-value-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-8deg);
}

.oc-value-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.oc-value-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   OC CLIENTS SECTION (Modern)
   ============================================================ */
.oc-clients-section {
  padding: 100px 0;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

.oc-clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(16, 83, 243, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(16, 83, 243, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.oc-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.oc-client-card {
  background: #fff;
  border-radius: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.oc-client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 83, 243, 0.08);
  border-color: rgba(16, 83, 243, 0.1);
}

.oc-client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s ease;
}

.oc-client-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .oc-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .oc-clients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oc-client-card {
    height: 90px;
  }
}

.oc-trust-logo i {
  font-size: 20px;
  color: var(--primary);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.oc-trust-logo:hover i {
  opacity: 1;
}

@media (max-width: 767px) {
  .oc-trust-inner {
    flex-direction: column;
    gap: 24px;
  }

  .oc-trust-logos {
    gap: 20px;
  }
}

/* Fix Hamburger Menu Color */
.tj-header-area .menu_btn,
.tj-header-area.header-1 .menu_btn {
  color: var(--tj-color-heading-primary) !important;
}

.tj-header-area .menu_btn .cubes span,
.tj-header-area.header-1 .menu_btn .cubes span {
  border-color: var(--tj-color-heading-primary) !important;
}

.tj-header-area .menu_btn .cubes span:nth-child(2),
.tj-header-area.header-1 .menu_btn .cubes span:nth-child(2) {
  box-shadow: inset 0 0 0 2px var(--tj-color-heading-primary) !important;
}

@media (max-width: 1024px) {
  .about-feature-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   HELIOS GLOBAL FLOATING PARTICLES SYSTEM
   Ambient background animation across all pages
   ============================================================ */

/* ---- Canvas Overlay ---- */
#helios-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* ---- CSS Floating Orbs (Decorative Background Blobs) ---- */
.helios-bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.helios-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: heliosOrbDrift linear infinite;
  will-change: transform, opacity;
}

.helios-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.07) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-duration: 28s;
  animation-delay: 0s;
}

.helios-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.05) 0%, transparent 70%);
  top: 40%;
  right: -5%;
  animation-duration: 34s;
  animation-delay: -10s;
}

.helios-orb:nth-child(3) {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-duration: 40s;
  animation-delay: -20s;
}

@keyframes heliosOrbDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }

  10% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    transform: translate(30px, -40px) scale(1.1);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }
}

/* ---- Ambient Pollen: canvas-only (CSS layer removed) ---- */

/* Canvas stays behind everything */
#helios-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Suppress the global CSS pollen layer — canvas handles ambient particles */
.helios-pollen-layer {
  display: none !important;
}

/* ---- Respect prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  #helios-particle-canvas {
    display: none !important;
  }
}

/* ---- Ensure page content renders above fixed particle canvas ---- */
.tv-hero-section,
.features-strip,
.about,
.stats,
.services,
.grp-section,
.why-us,
.partners-section,
.testimonials-section,
.industries,
.tv-team-section,
.section-faqs,
.aior-cta-section,
.footer-section,
.tv-breadcrumb-section,
.section-contact-main,
.contact-info-section,
.section-map,
.wg-map,
.svc-hero-section,
.oc-hero-section,
.oc-intro-section,
.about-hero-section {
  position: relative;
  z-index: 2;
}
