:root {
  /* Brand Colors */
  /* --primary: #90CAF9; */
  --primary: #0052ff;

  /* Light Theme */
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --card: #ffffff;

  --text: #111827;
  --text-secondary: #64748b;

  --border: rgba(17, 24, 39, 0.08);

  /* Effects */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(17, 24, 39, 0.08);

  /* Buttons */
  --btn-text: #ffffff;

  /* Misc */
  --white: #ffffff;
  --transition: 0.35s ease;
}

[data-theme="dark"] {
  --bg: #050816;
  --bg-secondary: #0d1323;
  --card: #111827;

  --text: #f8fafc;
  --text-secondary: #94a3b8;

  --border: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);

  --glass-bg: rgba(17, 24, 39, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);

  --btn-text: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  /* font-family: Inter, sans-serif; */
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
  overflow-x: hidden;
}

/* website Loader  */

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #031e4b, #04060a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* hide */
.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.15));
}

/* letters */
.loader-text {
  display: flex;
  gap: 6px;
}

/* calm letter style */
.letter {
  font-size: 44px;
  font-weight: 600;
  color: #cfd6dd;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  animation: letterIn 0.9s ease forwards;
}

/* subtle blue accent (only slight highlight, no disco) */
.letter:nth-child(1),
.letter:nth-child(3),
.letter:nth-child(6) {
  color: #8fd3ff;
}

/* stagger */
.letter:nth-child(1) {
  animation-delay: 0.1s;
}
.letter:nth-child(2) {
  animation-delay: 0.15s;
}
.letter:nth-child(3) {
  animation-delay: 0.2s;
}
.letter:nth-child(4) {
  animation-delay: 0.25s;
}
.letter:nth-child(5) {
  animation-delay: 0.3s;
}
.letter:nth-child(6) {
  animation-delay: 0.35s;
}
.letter:nth-child(7) {
  animation-delay: 0.4s;
}
.letter:nth-child(8) {
  animation-delay: 0.45s;
}

/* sub text */
.loader-sub {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #7c8a99;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.9s;
}

/* animations */
@keyframes letterIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* website Loader Ends */

/* dark theme TOGGLE */
.theme-toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.toggle-track {
  position: relative;
  width: 64px;
  height: 32px;
  border-radius: 30px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease;
}

[data-theme="dark"] .toggle-track {
  background: #1e293b;
  border-color: #334155;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.25);
}

.sun,
.moon {
  font-size: 13px;
  z-index: 2;
  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.sun {
  color: #f59e0b; /* Vibrant Yellow */
}

.moon {
  color: #94a3b8; /* Muted Blue-gray */
}

[data-theme="dark"] .sun {
  color: #475569; /* Muted */
}

[data-theme="dark"] .moon {
  color: #60a5fa; /* Vibrant Light Blue */
}

.toggle-thumb {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s ease;
  z-index: 1;
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(30px);
  background: #0f172a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  margin: auto;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.computer-screen-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .logo img {
  margin-top: 4px;
  height: 140px;
  position: absolute;
}

.header .logo {
  position: relative;
  display: inline-block;
  height: 140px; /* same as logo height */
}

.logo-dark {
  opacity: 0;
}

[data-theme="dark"] .logo-light {
  opacity: 0;
}

[data-theme="dark"] .logo-dark {
  opacity: 1;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0 !important;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.cta-btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;

  background: var(--primary);
  color: #ffffff;

  font-weight: 600;

  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(172, 221, 222, 0.45);
}

.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 10px;
  transition: 0.4s;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--bg);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul.nav-list {
  list-style: none;
  text-align: left;
  padding-bottom: 2rem !important;
}

.mobile-menu li {
  margin: 1rem 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation */
.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu.active li:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-menu.active li:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-menu a i {
  color: var(--primary);
  width: 30px;
  text-align: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(0, 82, 255, 0.08);
  color: var(--primary);
  transform: translateX(10px);
}

.mobile-menu a:hover i {
  transform: scale(1.2);
}

[data-theme="dark"] .mobile-menu a:hover {
  background: rgba(0, 82, 255, 0.15);
}

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

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

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

/* Responsive */

@media (max-width: 992px) {
  .computer-screen-toggle {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===================================
   BACK TO TOP
=================================== */

.back-to-top {
  position: fixed;

  right: 30px;
  bottom: 30px;

  width: 56px;
  height: 56px;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: var(--card);

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.25rem;

  cursor: pointer;

  box-shadow: var(--shadow-md);

  backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px) scale(0.9);

  transition: var(--transition);

  z-index: 999;
}

/* SHOW */

.back-to-top.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0) scale(1);
}

/* HOVER */

.back-to-top:hover {
  background: var(--primary);

  color: var(--btn-text);

  border-color: var(--primary);

  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);
}

/* ACTIVE */

.back-to-top:active {
  transform: translateY(-2px) scale(0.96);
}

/* ICON ANIMATION */

.back-to-top i {
  transition: 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* ===================================
   DARK MODE
=================================== */

[data-theme="dark"] .back-to-top {
  background: var(--glass-bg);

  border-color: var(--glass-border);

  backdrop-filter: blur(14px);
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;

    right: 20px;
    bottom: 20px;

    font-size: 1.1rem;
  }
}

.back-to-top::before {
  content: "";

  position: absolute;

  inset: -6px;

  border-radius: inherit;

  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary) 30%, transparent),
    transparent 70%
  );

  opacity: 0;

  transition: 0.4s ease;

  z-index: -1;
}

.back-to-top:hover::before {
  opacity: 1;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;

  padding-top: 59px;
  background:
    radial-gradient(
      circle at top right,
      rgba(144, 202, 249, 0.15),
      transparent 40%
    ),
    var(--bg);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;

  /* min-height: calc(100vh - 80px); */
}

/* =========================
   LEFT CONTENT
========================= */

.hero-left {
  flex: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(172, 221, 222, 0.15);
  border: 1px solid rgba(172, 221, 222, 0.4);

  color: #4f9ea1;
  font-weight: 600;
  font-size: 0.9rem;

  margin-bottom: 1.5rem;
  margin-top: 1.9rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;

  color: var(--text);

  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  color: var(--primary);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;

  color: var(--text-secondary);

  max-width: 580px;
  margin-bottom: 1.5rem;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary {
  padding: 16px 28px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  background: linear-gradient(135deg, var(--primary), #4f9ea1);

  color: #fff;

  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(172, 221, 222, 0.45);
}

.btn-secondary {
  padding: 16px 28px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  border: 1px solid var(--border);

  color: var(--text);

  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(172, 221, 222, 0.1);
}

/* =========================
   RIGHT VISUAL
========================= */

/* =========================
   HERO RIGHT
========================= */

.hero-right {
  flex: 1;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.animated-tech-icon {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 150px;
  height: auto;
  opacity: 0.8;
  z-index: 10;
  pointer-events: none;
  animation: float-tech 4s ease-in-out infinite;
}

@keyframes float-tech {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =========================
   DASHBOARD CARD
========================= */

.dashboard-window {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 28px;

  overflow: hidden;

  box-shadow: var(--shadow-lg);

  backdrop-filter: blur(20px);

  min-height: 420px;
}

.dashboard-header {
  height: 55px;

  display: flex;
  align-items: center;

  gap: 8px;

  padding: 0 20px;

  border-bottom: 1px solid var(--border);
}

.dashboard-header span {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: var(--primary);
}

/* =========================
   DASHBOARD BODY
========================= */

.dashboard-body {
  padding: 24px;
}

.dashboard-chart {
  height: 220px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(144, 202, 249, 0.2),
    rgba(144, 202, 249, 0.05)
  );

  margin-bottom: 24px;

  position: relative;

  overflow: hidden;
}

.dashboard-chart::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: translateX(-100%);

  animation: shimmer 4s linear infinite;
}

.dashboard-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}

.stat {
  padding: 20px;

  border-radius: 16px;

  background: var(--bg-secondary);

  text-align: center;
}

.stat h3 {
  color: var(--primary);

  font-size: 1.4rem;

  margin-bottom: 5px;
}

.stat p {
  color: var(--text-secondary);

  font-size: 0.85rem;
}

/* =========================
   FLOATING CARDS
========================= */

.floating-card {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;

  border-radius: 18px;

  background: var(--card);

  border: 1px solid var(--border);

  box-shadow: var(--shadow-md);

  z-index: 10;

  font-weight: 600;
}

.floating-card i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Card Positions */

.code-card {
  top: 40px;
  left: -40px;
}

.growth-card {
  bottom: 50px;
  right: -30px;
}

.design-card {
  top: 180px;
  right: -60px;
}

/* Dashboard chat */

.website-preview {
  padding: 20px;

  background: var(--bg-secondary);
}

.fake-navbar {
  display: flex;

  justify-content: space-between;

  margin-bottom: 25px;
}

.fake-logo {
  width: 90px;
  height: 12px;

  background: var(--primary);

  border-radius: 999px;
}

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

.fake-links span {
  width: 50px;
  height: 8px;

  border-radius: 999px;

  background: rgba(144, 202, 249, 0.4);
}

.fake-hero {
  margin-bottom: 25px;
}

.hero-line {
  height: 10px;

  border-radius: 999px;

  background: rgba(144, 202, 249, 0.4);

  margin-bottom: 10px;
}

.hero-line.long {
  width: 80%;
}

.hero-line.short {
  width: 50%;
}

.hero-button {
  width: 120px;
  height: 35px;

  border-radius: 999px;

  background: var(--primary);

  margin-top: 15px;
}

.fake-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}

.mini-card {
  height: 70px;

  border-radius: 16px;

  background: rgba(144, 202, 249, 0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .hero-right {
    margin-top: 4rem;
  }

  .floating-card {
    display: none;
  }

  .dashboard-window {
    min-height: auto;
  }

  .dashboard-chart {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .dashboard-body {
    padding: 20px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-device img {
    transform: scale(0.6) !important;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;

    padding-top: 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 46px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-card {
    width: 280px;
    height: 280px;
  }
  .animated-tech-icon {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 120px;
    height: auto;
    opacity: 0.8;
    z-index: 10;
    pointer-events: none;
    animation: float-tech 4s ease-in-out infinite;
  }
}

/* qrdueee SECTION */

/* =========================
   TECH STACK MARQUEE
========================= */

.tech-marquee {
  padding-top: 5%;
  overflow: hidden;
  position: relative;
  margin-bottom: -1%;
}

.tech-marquee-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}

/* marquee container */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* track */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;

  animation: marqueeScroll 30s linear infinite;
}

/* pause on hover */
.marquee-track:hover {
  animation-play-state: paused;
}

/* tech pill */
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  padding: 14px 22px;

  background: var(--glass-bg);
  backdrop-filter: blur(12px);

  border: 1px solid var(--glass-border);
  border-radius: 999px;

  white-space: nowrap;

  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);

  /* transition: .3s ease; */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.marquee-track span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(172, 221, 222, 0.25);
}

/* icons */
.marquee-track span i {
  font-size: 1.2rem;
  color: var(--primary);
}

/* animation */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* mobile */
@media (max-width: 768px) {
  .tech-marquee {
    padding: 42px 0;
  }

  .tech-marquee-title {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .marquee-track span {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* ==========================================
ADD THESE VARIABLES TO YOUR ROOT
========================================== */

:root {
  /* Brand Colors */
  --primary: #0052ff;

  /* Light Theme */
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --card: #ffffff;

  --text: #111827;
  --text-secondary: #64748b;

  --border: rgba(17, 24, 39, 0.08);

  /* Effects */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(17, 24, 39, 0.08);

  /* Buttons */
  --btn-text: #ffffff;

  /* Misc */
  --white: #ffffff;
  --transition: 0.35s ease;

  /* Services */
  --service-overlay: rgba(255, 255, 255, 0.75);
  --service-overlay-2: rgba(255, 255, 255, 0.45);

  --service-glow: rgba(0, 82, 255, 0.12);
  --service-glow-hover: rgba(0, 82, 255, 0.18);

  --service-accent: rgba(0, 82, 255, 0.15);
  --service-accent-border: rgba(0, 82, 255, 0.25);

  --service-number: rgba(17, 24, 39, 0.08);

  --shine: rgba(255, 255, 255, 0.18);

  --accent-light: #7aa7ff;
}

[data-theme="dark"] {
  --bg: #050816;
  --bg-secondary: #0d1323;
  --card: #111827;

  --text: #f8fafc;
  --text-secondary: #94a3b8;

  --border: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);

  --glass-bg: rgba(17, 24, 39, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Services */
  --service-overlay: rgba(255, 255, 255, 0.06);
  --service-overlay-2: rgba(255, 255, 255, 0.02);

  --service-glow: rgba(0, 82, 255, 0.18);
  --service-glow-hover: rgba(0, 82, 255, 0.25);

  --service-accent: rgba(0, 82, 255, 0.2);
  --service-accent-border: rgba(0, 82, 255, 0.35);

  --service-number: rgba(255, 255, 255, 0.08);

  --shine: rgba(255, 255, 255, 0.06);

  --accent-light: #8ab4ff;
}

/* ==========================================
SERVICES - PREMIUM SAAS DESIGN 2026
========================================== */

.section-header {
  margin-bottom: 3%;
}

.services {
  position: relative;
  padding: 42px 0 52px 0;
  /* overflow: hidden; */
}

.services::before {
  content: "";
  position: absolute;

  width: 700px;
  height: 700px;

  top: -250px;
  right: -250px;

  background: radial-gradient(circle, var(--service-glow), transparent 70%);

  filter: blur(100px);
  pointer-events: none;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 28px;

  position: relative;
  z-index: 2;
}

/* ==========================================
CARD
========================================== */

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;

  position: relative;
  padding: 2rem;
  min-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(
    180deg,
    var(--service-overlay),
    var(--service-overlay-2)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(143, 210, 255, 0.353);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

/* Gradient Border */

.service-card::before {
  content: "";

  position: absolute;

  inset: 0;

  padding: 1px;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(0, 82, 255, 0.4),
    transparent,
    var(--service-accent)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  opacity: 0;

  transition: 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Top Accent Line */

.service-card::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: linear-gradient(90deg, var(--primary), var(--accent-light));

  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);

  border-color: var(--service-accent-border);

  box-shadow:
    var(--shadow-md),
    0 0 0 1px var(--border),
    0 40px 120px var(--service-glow);
}

/* ==========================================
GLOW
========================================== */

.card-glow {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at var(--x) var(--y),
    var(--service-glow-hover),
    transparent 35%
  );

  opacity: 0;

  transition: opacity 0.3s;

  z-index: -1;
}

.service-card:hover .card-glow {
  opacity: 1;
}

/* ==========================================
SHINE EFFECT
========================================== */

.shine {
  position: absolute;

  top: -50%;
  left: -100%;

  width: 60%;
  height: 200%;

  background: linear-gradient(90deg, transparent, var(--shine), transparent);

  transform: rotate(25deg);

  transition: 0.8s ease;

  pointer-events: none;
}

.service-card:hover .shine {
  left: 150%;
}

/* ==========================================
TOP ROW
========================================== */

.service-top {
  grid-column: 1 / -1;

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 2rem;
}

.service-badge {
  padding: 0.5rem 1rem;

  border-radius: 999px;

  background: color-mix(in srgb, var(--primary) 10%, transparent);

  color: var(--primary);

  border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.5px;
}

/* ==========================================
NUMBER
========================================== */

.service-number {
  position: absolute;

  top: 20px;
  right: 20px;

  font-size: 5rem;

  font-weight: 900;

  line-height: 1;

  letter-spacing: -4px;

  background: linear-gradient(180deg, var(--service-number), transparent);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  pointer-events: none;
}

/* ==========================================
ICON
========================================== */

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.service-icon i {
  font-size: 2rem;

  color: var(--primary);
}

.service-card:hover .service-icon {
  transform: translateY(-6px) rotate(-5deg) scale(1.08);
}

/* ==========================================
CONTENT
========================================== */

.service-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.96rem;
  margin-top: 0;
  flex-grow: 1;
}

/* ==========================================
FOOTER
========================================== */

.service-footer {
  grid-column: 1 / -1;

  margin-top: 2rem;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.service-cta {
  color: var(--primary);

  font-weight: 600;

  letter-spacing: 0.2px;
}

.service-arrow {
  font-size: 1.3rem;

  color: var(--primary);

  transition: transform 0.35s ease;
}

.service-card:hover .service-arrow {
  transform: translate(8px, -4px) rotate(-45deg);
}

/* ==========================================
RESPONSIVE
========================================== */

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

@media (max-width: 768px) {
  .services {
    padding: 42px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section {
  padding: 42px 0;
  background: var(--bg);
  transition: var(--transition);
}

.experience-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

/* LEFT */

.experience-left {
  flex: 1;
  margin-top: 1.5rem;
}

.experience-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.experience-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 15px 0;
  color: var(--text);
}

.experience-left h2 span {
  color: var(--primary);
}

.experience-left p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}

/* LIST */

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 500;
}

.experience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* RIGHT */

.experience-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 24px; */
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.image-wrapper img {
  width: 100%;
  display: block;
  /* border-radius: 24px; */
  position: relative;
  z-index: 2;
}

/* Glow Background */

.glow-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 30px;
  background: radial-gradient(
    circle at center,
    rgba(0, 82, 255, 0.15),
    transparent 70%
  );
  filter: blur(40px);
}

.experience-right .image-wrapper {
  will-change: transform;
}

.experience-right img {
  filter: drop-shadow(0 20px 40px rgba(0, 82, 255, 0.15));
}

/* =========================
   BOTTOM STRIP
========================= */
.experience-bottom {
  width: 100%;
  /* max-width: 650px; */

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 10px 10px;

  background: var(--card);
  /* border: 1px solid var(--border); */
  /* border-radius: 20px; */

  /* box-shadow: var(--shadow-sm); */
}

.countries {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.country {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.country:hover {
  transform: translateY(-2px);
}

.flag {
  font-size: 1.5rem;
  line-height: 1;
}

.global-text {
  border-left: 1px solid var(--border);

  padding-left: 25px;

  display: flex;
  flex-direction: column;

  color: var(--text);
  font-weight: 600;

  white-space: nowrap;
}

/* =========================
   DARK MODE ENHANCEMENTS
========================= */

[data-theme="dark"] .experience-bottom {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

[data-theme="dark"] .glow-bg {
  background: radial-gradient(
    circle at center,
    rgba(0, 82, 255, 0.25),
    transparent 70%
  );
}

[data-theme="dark"] .experience-list li::before {
  background: rgba(0, 82, 255, 0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .experience-grid {
    flex-direction: column;
    gap: 35px;
  }

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

  .experience-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .experience-list {
    display: inline-block;
    text-align: left;
  }

  .experience-bottom {
    flex-direction: column;
    text-align: center;
  }

  .countries {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .experience-section {
    padding: 42px 0;
  }

  .experience-bottom {
    padding: 20px;
  }

  .countries {
    gap: 16px;
  }

  .country {
    font-size: 0.9rem;
  }

  .global-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .experience-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .countries {
    justify-content: center;
    flex-wrap: wrap;
  }

  .global-text {
    border-left: none;
    border-top: 1px solid var(--border);

    padding-left: 0;
    padding-top: 15px;
  }
}

/* SAMPLE WORK SECTION */
.solutions-section {
  padding: 42px 0;
  background: var(--bg);
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.section-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.solutions-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-top: 10px;
}

.solutions-header h2 span {
  color: var(--primary);
}

.solutions-header p {
  max-width: 420px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.solution-card {
  background: var(--card);
  border: 1px solid rgba(143, 210, 255, 0.353);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.solution-card img {
  width: 100%;
  display: block;
}

.solution-card h3 {
  padding: 24px 24px 10px;
  color: var(--text);
}

.solution-card p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* .solutions-grid {
    perspective: 1200px;
}

.solution-card {
    transform-style: preserve-3d;
    will-change: transform;
} */

.solution-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

@media (max-width: 992px) {
  .solutions-header {
    flex-direction: column;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================
   PROCESS / OUR APPROACH SECTION
========================= */

/* Desktop: left-aligned */
.process-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  background: var(--card);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.process-left {
  flex: 0 0 350px;
  text-align: left;
}

.process-left .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  text-align: left;
}

.step-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.step-content {
  text-align: left;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

[data-theme="dark"] .step-icon {
  background: rgba(0, 82, 255, 0.15);
}

.process-step:hover .step-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.15);
}

.step-arrow {
  position: absolute;
  left: calc(50% + 40px);
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 82, 255, 0.3);
  font-size: 18px;
  z-index: 1;
}

.step-content h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text);
  white-space: nowrap;
}

.step-content p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Mobile: horizontally centred */
@media (max-width: 1200px) {
  .process-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .process-left {
    flex: 0 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }

  .process-left .section-title {
    text-align: center;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .process-step {
    flex: 0 0 auto;
    width: 140px;
    align-items: center;
  }

  .step-header {
    justify-content: center;
  }

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

  .step-content h3 {
    white-space: normal;
  }

  .step-arrow {
    display: none;
  }
}

/* CTA SECTION */

.cta-section {
  padding-bottom: 52px;
}

.cta-card {
  background: var(--primary);

  color: var(--btn-text);

  border-radius: 28px;

  padding: 30px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  position: relative;
  overflow: hidden;

  box-shadow: var(--shadow-lg);
}

/* Optional glow effect */

.cta-card::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -120px;
  top: -120px;

  border-radius: 50%;

  background: color-mix(in srgb, var(--white) 12%, transparent);

  pointer-events: none;
}

.cta-icon {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: color-mix(in srgb, var(--white) 15%, transparent);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;

  flex-shrink: 0;
}

.cta-content h2 {
  margin-bottom: 10px;

  color: var(--btn-text);
}

.cta-content p {
  margin: 0;

  color: color-mix(in srgb, var(--btn-text) 85%, transparent);
}

.cta-card .cta-btn {
  background: #ffffff;

  color: var(--primary);

  padding: 16px 26px;

  border-radius: 50px;

  font-weight: 700;

  text-decoration: none;

  transition: var(--transition);

  white-space: nowrap;
}

.cta-card .cta-btn:hover {
  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

/* FOOTER SECTION */

/* ===================================
   FOOTER
=================================== */

.footer {
  position: relative;

  padding: 35px 0 0;

  background: var(--bg);

  border-top: 1px solid var(--border);

  overflow: hidden;
}

.container-desing {
  margin-bottom: 24px;
}
/* Background Glow */

.footer::before {
  content: "";

  position: absolute;

  /* top: -250px; */
  left: 50%;

  transform: translateX(-50%);

  width: 700px;
  height: 700px;

  background: radial-gradient(circle, rgba(0, 82, 255, 0.08), transparent 70%);

  pointer-events: none;
}

/* ===================================
   COLUMNS
=================================== */

.footer-col {
  position: relative;

  height: 100%;
}

@media (min-width: 992px) {
  .footer-col {
    padding-left: 30px;
  }

  .footer-col::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 1px;
    height: 100%;

    background: var(--border);
  }

  .footer-about::before {
    display: none;
  }
}

/* ===================================
   LOGO
=================================== */

.footer-logo {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 45px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 200px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.footer-about p {
  color: var(--text-secondary);

  line-height: 1.8;

  margin-bottom: 25px;
}

/* ===================================
   SOCIAL
=================================== */

.footer-social {
  display: flex;

  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  border: 1px solid var(--border);

  background: var(--card);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text);

  transition: var(--transition);
}

.footer-social a:hover {
  transform: translateY(-5px);

  background: var(--primary);

  color: var(--btn-text);

  border-color: var(--primary);

  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.25);
}

/* ===================================
   HEADINGS
=================================== */

.footer-col h4 {
  position: relative;

  display: inline-block;

  color: var(--text);

  font-size: 1.15rem;

  font-weight: 700;

  margin-bottom: 25px;
}

.footer-col h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 35px;
  height: 3px;

  border-radius: 50px;

  background: var(--primary);
}

/* ===================================
   LINKS
=================================== */

.footer-col ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  position: relative;

  color: var(--text-secondary);

  text-decoration: none;

  transition: var(--transition);
}

.footer-col ul li a::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.35s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);

  padding-left: 5px;
}

.footer-col ul li a:hover::before {
  width: 100%;
}

/* ===================================
   TECH GRID
=================================== */

.footer-tech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 6px;
}

.footer-tech span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition);
}

.footer-tech span:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* ===================================
   CONTACT
=================================== */

.footer-contact li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color: var(--text-secondary);

  line-height: 1.8;
}

.footer-contact i {
  color: var(--primary);

  margin-top: 5px;
}

/* ===================================
   NEWSLETTER
=================================== */

.newsletter-form {
  margin-top: 25px;

  display: flex;
}

.newsletter-form input {
  flex: 1;

  height: 54px;

  padding: 0 18px;

  background: var(--card);

  color: var(--text);

  border: 1px solid var(--border);

  border-right: none;

  outline: none;

  border-radius: 14px 0 0 14px;

  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  width: 60px;

  border: none;

  background: var(--primary);

  color: var(--btn-text);

  border-radius: 0 14px 14px 0;

  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateX(2px);

  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.25);
}

/* ===================================
   FOOTER BOTTOM
=================================== */

.footer-bottom {
  /* margin-top: 46px; */
  padding: 46px 0;

  border-top: 1px solid var(--border);

  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;

  gap: 25px;
}

.footer-bottom-links a {
  color: var(--text-secondary);

  text-decoration: none;

  transition: var(--transition);
}

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

/* ===================================
   DARK MODE
=================================== */

[data-theme="dark"] .footer-social a {
  background: var(--glass-bg);

  backdrop-filter: blur(12px);

  border-color: var(--glass-border);
}

[data-theme="dark"] .newsletter-form input {
  background: var(--glass-bg);

  border-color: var(--glass-border);
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 25px;
  }

  .footer {
    padding-top: 46px;
  }

  .footer-col {
    padding-left: 0;
  }

  .footer-col::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }

  .footer-tech {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    width: 100%;
  }
  .services::before {
    display: none;
  }
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
  padding: 52px 0;
  background: var(--bg);
}

.process-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--card);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.process-left {
  flex: 0 0 350px;
}

.process-left .section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.process-left .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.process-left .section-title span {
  display: block;
  color: var(--primary);
}

.process-right {
  flex: 1;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

.step-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Icons left aligned */
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

[data-theme="dark"] .step-icon {
  background: rgba(0, 82, 255, 0.15);
}

.process-step:hover .step-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.15);
}

.step-arrow {
  position: absolute;
  /* Arrow centered perfectly between the left-aligned icons */
  /* Center of Icon 1 is 30px. Gap is 20px. Midpoint is W/2 + 30 + 10 = W/2 + 40px */
  left: calc(50% + 40px);
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 82, 255, 0.3);
  font-size: 18px;
  z-index: 1;
}

.step-content {
  text-align: left;
}

.step-content h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text);
  white-space: nowrap;
}

.step-content p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1200px) {
  .process-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  .process-left {
    flex: 0 0 auto;
    margin-bottom: 30px;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .process-step {
    flex: 0 0 auto;
    width: 140px;
  }
  .step-header {
    justify-content: center; /* Center icons on mobile */
  }
  .step-content {
    text-align: center; /* Center text on mobile */
  }
  .step-content h3 {
    white-space: normal;
  }
  .step-arrow {
    display: none;
  }
}

/* =========================
   FLOATING SOCIAL ICONS
========================= */
.floating-socials {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-socials.tucked {
  transform: translate(-100%, -50%);
}

.social-toggle {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 24px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 0;
  outline: none;
}

.social-toggle:hover {
  color: var(--primary);
  background: var(--card);
}

.social-toggle i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.floating-socials.tucked .social-toggle i {
  transform: scaleX(-1);
}

.floating-socials a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.floating-socials a:hover {
  transform: translateX(5px);
}

.social-fb {
  background: #1877f2;
}
.social-ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.social-x {
  background: #000000;
}
.social-yt {
  background: #ff0000;
}

[data-theme="dark"] .social-x {
  background: #ffffff;
  color: #000000;
}

/* =========================
   FOOTER SOCIAL ORIGINAL COLORS
========================= */
.footer-social .footer-social-fb {
  color: #1877f2;
  border-color: #1877f2;
}
.footer-social .footer-social-fb:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.footer-social .footer-social-ig {
  color: #e1306c;
  border-color: #e1306c;
}
.footer-social .footer-social-ig:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
  border-color: transparent;
}

.footer-social .footer-social-x {
  color: #000000;
  border-color: #000000;
}
.footer-social .footer-social-x:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.footer-social .footer-social-yt {
  color: #000000;
  border-color: #000000;
}
.footer-social .footer-social-yt:hover {
  background: #fd0909;
  color: #ffffff;
  border-color: #000000;
}

[data-theme="dark"] .footer-social .footer-social-x {
  color: #ffffff;
  border-color: #ffffff;
}
[data-theme="dark"] .footer-social .footer-social-x:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

[data-theme="dark"] .footer-social .footer-social-yt {
  color: #ffffff;
  border-color: #ffffff;
}
[data-theme="dark"] .footer-social .footer-social-yt:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Contact Form Validation Styles */
.error-message {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}
.contact-input.is-invalid {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.05) !important;
}
[data-theme="dark"] .error-message {
  color: #f87171;
}
[data-theme="dark"] .contact-input.is-invalid {
  border-color: #f87171 !important;
  background-color: rgba(248, 113, 113, 0.05) !important;
}
