/*
Theme Name: Digital Encraft Premium Theme
Theme URI: https://digitalencraft.com/
Author: Digital Encraft
Author URI: https://digitalencraft.com/
Description: A premium, state-of-the-art corporate theme built with rich animations, glassmorphism, orbit effects, marquee loop sliders, and responsive layouts.
Version: 2.0.0
Text Domain: digital-encraft
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #2563eb; /* Electric Blue */
  --secondary: #7c3aed; /* Deep Violet */
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --secondary-gradient: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  --glow-primary: rgba(37, 99, 235, 0.25);
  --glow-secondary: rgba(124, 58, 237, 0.25);
  
  --bg-dark: #0a0e1a;
  --bg-dark-card: rgba(17, 24, 39, 0.7);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-muted-dark: #94a3b8;
  
  --border-color-light: #e2e8f0;
  --border-color-dark: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.2);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 20px 40px -10px rgba(37, 99, 235, 0.25), 0 0 20px 0 var(--glow-primary);
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 99px;
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ----------------- HEADER & NAVIGATION ----------------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color-light);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  padding: 0.15rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item-wrapper {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.75rem 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-item-wrapper:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* ----------------- MEGA MENU SYSTEM ----------------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 820px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-light);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12), 0 0 40px rgba(37, 99, 235, 0.05);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.nav-item-wrapper:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 0.5rem;
}

.mega-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
}

.mega-item:hover {
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.mega-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.mega-item:hover .mega-item-icon {
  background: var(--primary-gradient);
  color: white;
}

.mega-item-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.mega-item-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Burger Mobile Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
  padding: 0.25rem;
}

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: white !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color-light);
}

.btn-outline:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ----------------- HERO SECTION ----------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 5rem;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
              #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.hero-section .container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: float-tag 4s ease-in-out infinite;
}

.hero-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

@keyframes float-tag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-review {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-review span {
  color: #fbbf24; /* Star gold */
  font-size: 1.1rem;
}

/* ----------------- ORBIT GRAPHIC ENGINE ----------------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.orbit-container {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.08);
}

.ring-outer {
  width: 100%;
  height: 100%;
}

.ring-middle {
  width: 74%;
  height: 74%;
  border-style: dashed;
  border-color: rgba(124, 58, 237, 0.15);
}

.ring-inner {
  width: 48%;
  height: 48%;
}

/* Rotation Core */
.orbit-rotation {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit-spin 45s linear infinite;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-service {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Individual Angles and Radius offsets */
.s1 { transform: rotate(0deg) translate(220px); }
.s2 { transform: rotate(45deg) translate(220px); }
.s3 { transform: rotate(90deg) translate(220px); }
.s4 { transform: rotate(135deg) translate(220px); }
.s5 { transform: rotate(180deg) translate(220px); }
.s6 { transform: rotate(225deg) translate(220px); }
.s7 { transform: rotate(270deg) translate(220px); }
.s8 { transform: rotate(315deg) translate(220px); }

/* Anchor content structure */
.orbit-service-inner {
  width: 52px;
  height: 52px;
  background: white;
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  transition: var(--transition);
  position: relative;
  /* Counter-rotate icon to keep upright */
  animation: orbit-unspin 45s linear infinite;
}

@keyframes orbit-unspin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Service Info Label (hidden by default, expands on hover) */
.orbit-service-label {
  position: absolute;
  bottom: -22px;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
  pointer-events: none;
}

.orbit-service-inner:hover {
  transform: scale(1.22);
  color: white;
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
  cursor: pointer;
}

.orbit-service-inner:hover .orbit-service-label {
  opacity: 1;
  transform: translateY(0);
}

/* Centerpiece Logo */
.orbit-center {
  position: absolute;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.1),
              0 0 25px rgba(37, 99, 235, 0.08);
  border: 1px solid var(--border-color-light);
  z-index: 11;
  transition: var(--transition);
}

.orbit-center:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.2);
}

.orbit-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ----------------- SECTION COMMON MODULES ----------------- */
.section {
  padding: 7rem 2rem;
}

.section-bg-white {
  background: var(--bg-white);
}

.section-bg-light {
  background: var(--bg-light);
}

.section-bg-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

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

.badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 99px;
  margin-bottom: 1.2rem;
}

.section-bg-dark .badge {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 4.5rem;
  line-height: 1.6;
}

.section-bg-dark .section-subtitle {
  color: var(--text-muted-dark);
}

.section-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------------- CORE MARQUEE SLIDER ----------------- */
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 40s linear infinite;
  gap: 1.5rem;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.6rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}

.logo-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

@keyframes scroll-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------- SERVICES GRID ----------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08),
              0 0 25px rgba(37, 99, 235, 0.06);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.08) rotate(6deg);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.card-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.card:hover .card-link i {
  transform: translateX(3px);
}

/* ----------------- ABOUT SPLIT / BENEFITS ----------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

.split-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.split-graphic img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.8rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-feature-item i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ----------------- WHY CHOOSE US (STATS/GRID) ----------------- */
.choose-card {
  text-align: left;
}

.choose-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* ----------------- STAGES / HOW WE WORK ----------------- */
.stages-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.stages-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.stage-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stage-item:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.stage-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.stage-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.stage-item:hover .stage-body h4 {
  color: var(--primary);
}

.stage-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Visual Stage Engine */
.graphics-engine {
  background: var(--bg-light);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  height: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.graphics-engine-hub {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  animation: hub-spin 20s linear infinite;
}

@keyframes hub-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hub-center {
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.15));
  animation: hub-float 3s infinite ease-in-out;
}

@keyframes hub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.engine-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--border-color-light);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  animation: hub-float 3.5s infinite ease-in-out;
}

.eb-1 { top: 40px; left: 30px; animation-delay: 0.5s; }
.eb-2 { bottom: 50px; right: 35px; animation-delay: 1.2s; }
.eb-1 i { color: var(--primary); }
.eb-2 i { color: var(--secondary); }

/* ----------------- PRICING LAYOUT ----------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12);
  transform: scale(1.03);
}

.pricing-card.popular::after {
  content: 'POPULAR';
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.pricing-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-price span.currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-price span.period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: #10b981; /* Green check */
  font-size: 0.95rem;
}

/* ----------------- TESTIMONIAL SLIDER ----------------- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3.5rem;
  color: rgba(37, 99, 235, 0.05);
}

.test-stars {
  color: #fbbf24;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.testimonial-card p.test-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 2rem;
}

.test-profile {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.test-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.test-info h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.test-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ----------------- PROJECTS / CASE STUDIES ----------------- */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.92) 20%, rgba(10, 14, 26, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  opacity: 0.95;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.95) 20%, rgba(37, 99, 235, 0.4) 100%);
}

.project-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.project-overlay h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.project-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.project-card:hover .project-link-icon {
  opacity: 1;
  transform: translateY(0);
  background: white;
  color: var(--primary);
}

/* ----------------- ACCORDION / FAQ ----------------- */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -10px rgba(37, 99, 235, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 1.4rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.accordion-header i {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.4s ease;
}

.accordion-item.active .accordion-header h4 {
  color: var(--primary);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
  padding: 0 2rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ----------------- LATEST BLOG GRID ----------------- */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.blog-thumb {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-meta span i {
  margin-right: 0.35rem;
}

.blog-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

.blog-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ----------------- FOOTER STYLING ----------------- */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color-light);
  padding: 6.5rem 0 3rem;
  color: var(--text-dark);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-logo-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  transform: translateY(-3px);
  color: white;
}

.footer-socials a.fb:hover { background: #1877f2; }
.footer-socials a.ig:hover { background: #e4405f; }
.footer-socials a.ln:hover { background: #0a66c2; }
.footer-socials a.tw:hover { background: #000000; }
.footer-socials a.yt:hover { background: #ff0000; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
  transform: translateX(3px);
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-contact-item i {
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 4.5rem auto 0;
  padding: 1.8rem 2rem 0;
  border-top: 1px solid var(--border-color-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----------------- WHATSAPP FLOAT BUTTON ----------------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 998;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Mobile Quick Contacts Bar */
.mobile-contacts-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color-light);
  display: none;
  justify-content: space-around;
  padding: 0.6rem 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 997;
}

.mobile-contact-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
}

.mobile-contact-tab i {
  font-size: 1.15rem;
  color: var(--primary);
}

.mobile-contact-tab.wa i {
  color: #25d366;
}

/* ----------------- ANIMATION / REVEAL ON SCROLL ----------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------- SUBPAGES / BREADCRUMB & HERO ----------------- */
.subpage-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%), #ffffff;
  border-bottom: 1px solid var(--border-color-light);
  text-align: center;
}

.subpage-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 0.5rem;
}

.breadcrumb-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.breadcrumb-links span.sep {
  opacity: 0.5;
}

.breadcrumb-links span.current {
  color: var(--text-dark);
}

/* ----------------- ABOUT PAGE DIRECTORIES ----------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-item {
  background: white;
  border: 1px solid var(--border-color-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.value-item i {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  padding-bottom: 1.5rem;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.team-avatar-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.team-card:hover .team-avatar-wrapper img {
  transform: scale(1.05);
}

.team-socials {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-socials {
  opacity: 1;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-socials a:hover {
  transform: scale(1.1);
  background: var(--primary);
  color: white;
}

.team-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----------------- SERVICES PAGE CATALOG ----------------- */
.service-details {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  scroll-margin-top: 100px;
}

.service-block:nth-child(even) .service-desc-content {
  order: 2;
}

.service-block:nth-child(even) .service-graphic-wrap {
  order: 1;
}

.service-graphic-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.service-graphic-wrap i {
  font-size: 4rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.15));
  margin-bottom: 1.25rem;
}

.service-graphic-wrap h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.service-graphic-wrap span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.5rem;
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
}

.service-feature i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ----------------- CONTACT US PAGE ELEMENTS ----------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-body h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact-card-body a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-title p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

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

.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Map Wrap */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-md);
  height: 400px;
  width: 100%;
  margin-top: 4.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------- RESPONSIVE DESIGN BREAKPOINTS ----------------- */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.25rem;
  }
  
  .mega-menu {
    width: 720px;
  }
  
  .hero-section .container {
    gap: 2rem;
  }
  
  .orbit-container {
    width: 380px;
    height: 380px;
  }
  
  .s1 { transform: rotate(0deg) translate(190px); }
  .s2 { transform: rotate(45deg) translate(190px); }
  .s3 { transform: rotate(90deg) translate(190px); }
  .s4 { transform: rotate(135deg) translate(190px); }
  .s5 { transform: rotate(180deg) translate(190px); }
  .s6 { transform: rotate(225deg) translate(190px); }
  .s7 { transform: rotate(270deg) translate(190px); }
  .s8 { transform: rotate(315deg) translate(190px); }
  
  .split-layout, .stages-layout, .contact-grid {
    gap: 3rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-section .container, .split-layout, .stages-layout, .service-block, .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content, .service-desc-content {
    max-width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-features {
    justify-content: center;
  }
  
  .stage-item {
    text-align: left;
  }
  
  .service-block:nth-child(even) .service-desc-content {
    order: 1;
  }
  
  .service-block:nth-child(even) .service-graphic-wrap {
    order: 2;
  }
  
  .contact-info-cards {
    margin-bottom: 3rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  /* Navigation Mobile Responsive Toggler */
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    gap: 1.5rem;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    display: none; /* In mobile toggled through click */
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .nav-item-wrapper.active .mega-menu {
    display: grid;
    pointer-events: auto;
    opacity: 1;
  }
  
  .nav-item-wrapper:hover .mega-menu {
    display: none;
  }
  
  .nav-item-wrapper.active:hover .mega-menu {
    display: grid;
  }
  
  .nav-cta {
    display: none; /* Hide Start project button on tablet/mobile header */
  }
  
  .logo-marquee {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  
  .stages-layout .graphics-engine {
    order: -1;
    margin-bottom: 2.2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 4rem 0 5rem; /* bottom padding for mobile quick contacts bar */
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 3rem;
  }
  
  .whatsapp-float {
    bottom: 74px;
    right: 18px;
  }
  
  .mobile-contacts-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .orbit-container {
    width: 280px;
    height: 280px;
  }
  
  .orbit-center {
    width: 100px;
    height: 100px;
    padding: 0.75rem;
  }
  
  .orbit-service {
    width: 48px;
    height: 48px;
    margin: -24px;
  }
  
  .orbit-service-inner {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  
  .s1 { transform: rotate(0deg) translate(140px); }
  .s2 { transform: rotate(45deg) translate(140px); }
  .s3 { transform: rotate(90deg) translate(140px); }
  .s4 { transform: rotate(135deg) translate(140px); }
  .s5 { transform: rotate(180deg) translate(140px); }
  .s6 { transform: rotate(225deg) translate(140px); }
  .s7 { transform: rotate(270deg) translate(140px); }
  .s8 { transform: rotate(315deg) translate(140px); }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .stage-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .service-features-list {
    grid-template-columns: 1fr;
  }
}
