/* ============================================================
   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: hidden;
}

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: hidden;
  width: 100%;
  cursor: auto !important;
}

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: relative;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, background .3s;
}

.tj-header-area {
  background: var(--white);
  position: fixed;
  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;
}

/* Offset for fixed header */
body {
  padding-top: 105px;
}

@media (max-width: 991px) {
  body { padding-top: 90px; }
}

.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;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
}

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

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

.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;
}

/* Word reveal */
.word-reveal-parent {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .6s ease;
  transition-delay: calc(var(--word-index) * 0.06s);
}

.text-reveal-auto.visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   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: 120px 0 80px;
  background: var(--dark2);
  min-height: 90vh;
  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(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}

.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: 900px) {
  .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;
  }
}

/* ============================================================
   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);
}

.btn-premium-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: background .2s, transform .2s;
}

.btn-premium-about:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* 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:900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .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;
}

.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;
}

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

.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:900px) {
  .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;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--nav-dark) 100%);
  z-index: 0;
}

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

.stats .section-label {
  color: rgba(255, 255, 255, .7);
  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;
}

.stat-box:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 28px;
  color: var(--primary);
  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, .55);
  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;
}

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

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

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

@media (max-width:900px) {
  .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(145deg, #040e3b 0%, #061a5c 40%, #0a2472 100%);
  padding: 10px 0 40px; /* Reduced top padding to lift content */
  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.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 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: #ffffff;
  margin-bottom: 14px;
}

.grp-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  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: rgba(6, 18, 65, 0.95);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color .4s, background .4s, box-shadow .4s;
}

.grp-card:hover {
  border-color: rgba(110, 165, 255, .5);
  background: rgba(10, 26, 80, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.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;
  flex-shrink: 0;
  overflow: hidden;
}

.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 .35s ease;
}

.grp-card:hover .grp-play {
  opacity: 1;
  transform: scale(1);
}

/* 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: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.grp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border-color .3s, color .3s;
}

.grp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.grp-btn:hover {
  border-color: var(--primary);
}

.grp-btn:hover::before {
  transform: scaleX(1);
}

.grp-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .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(255, 255, 255, .18);
  color: rgba(255, 255, 255, .6);
  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-card {
    flex-direction: column;
  }

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

  .grp-card-body {
    padding: 28px;
  }

  .grp-num {
    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:900px) {
  .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: radial-gradient(circle at 20% 30%, #0a1f5e 0%, #061153 100%) !important;
  padding: 120px 0;
}

/* Decorative background elements */
.industries::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(16, 83, 243, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  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: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ind-tab i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.ind-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.ind-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(16, 83, 243, 0.4);
}

.ind-tab.active i {
  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: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.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: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
}

.ind-panel-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.3;
}

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

@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:900px) {
  .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: "↑";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  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;
}

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:900px) {
  .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: "↑";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  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: 60px 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(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -2px;
  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: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 12px 12px 30px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(16, 83, 243, 0.3), 0 0 0 0 rgba(16, 83, 243, 0.4);
}

.aior-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(16, 83, 243, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
  background: #2b63ff;
}

.aior-btn-arrow {
  width: 44px;
  height: 44px;
  background: white;
  color: var(--dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.aior-btn:hover {
  background: #fff;
  color: var(--primary);
}

.aior-btn:hover .aior-btn-arrow {
  transform: translateX(3px);
}

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

@media (max-width: 575px) {
  .aior-cta-section { padding: 80px 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: 100%;
    justify-content: space-between;
    padding: 10px 10px 10px 25px;
  }
}

/* ============================================================
   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: 100%;
  background: var(--nav-dark, #061153);
  z-index: 9999;
  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; }
}