/* ==========================================================================
   TechPro Compsoft - Modern Enterprise 3D-Inspired UI/UX Framework
   ========================================================================== */

:root {
  /* Brand Core & 3D Palette */
  --corp-dark: #0B0F19;
  --corp-navy: #0F172A;
  --corp-surface: #1E293B;
  
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-light: #EEF2FF;
  --primary-glow: rgba(79, 70, 229, 0.4);
  --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  --accent-gradient: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
  --purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
  --emerald-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --sunset-gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  
  --cyan-accent: #38BDF8;
  --indigo-accent: #818CF8;
  --purple-accent: #C084FC;
  
  /* Slate Neutral Palette */
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  
  /* System Tokens */
  --body-bg: #FFFFFF;
  --text-main: #475569;
  --text-heading: #0F172A;
  
  /* Glassmorphic Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-dark-bg: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-dark-border: rgba(255, 255, 255, 0.12);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Elevations & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-3d: 0 25px 50px -12px rgba(79, 70, 229, 0.25), 0 12px 24px -8px rgba(15, 23, 42, 0.12);
  --shadow-3d-dark: 0 30px 60px -15px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Base Reset & Smooth Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--body-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* 3D Depth Utilities & Perspective Effects */
.card-3d,
.card-3d-v2 {
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card-3d:hover,
.card-3d-v2:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  box-shadow: var(--shadow-3d);
  border-color: rgba(79, 70, 229, 0.35);
}

.card-3d-dark {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-dark-border);
  color: #FFFFFF;
  box-shadow: var(--shadow-3d-dark);
}

.card-3d-dark:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.glow-orb-primary { background: radial-gradient(circle, #6366F1 0%, transparent 70%); }
.glow-orb-cyan { background: radial-gradient(circle, #06B6D4 0%, transparent 70%); }
.glow-orb-purple { background: radial-gradient(circle, #A855F7 0%, transparent 70%); }

/* ==========================================================================
   Enterprise Hero Swiper Slider Styles (Auto-sliding 3D Banners)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  position: relative;
}

.hero-swiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.hero-swiper .swiper-slide-active {
  opacity: 1 !important;
  pointer-events: auto;
}

.hero-pagination {
  position: static !important;
  width: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 0 !important;
  opacity: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 38px;
  background: linear-gradient(90deg, #38BDF8 0%, #6366F1 100%);
  border-color: #38BDF8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-nav-btn:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
  border-color: #38BDF8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.hero-nav-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Hero 3D Cybernetic Infrastructure Composition (Seamless Background Merge)
   ========================================================================== */
.hero-cube-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-cube-wrapper {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Ambient Radial Glow Merging with Hero Dark Canvas */
.cube-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.38) 0%, rgba(99, 102, 241, 0.22) 42%, rgba(168, 85, 247, 0.1) 62%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  animation: ambientGlowPulse 5s ease-in-out infinite alternate;
}

/* Holographic Rotating Cyber Ring Underneath */
.cube-cyber-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(56deg) rotateZ(20deg);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1.5px dashed rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.22), inset 0 0 30px rgba(99, 102, 241, 0.18);
  pointer-events: none;
  z-index: 1;
  animation: cyberRingSpin 24s linear infinite;
}

.cube-cyber-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 14px #38BDF8;
}

/* 3D Tech Graphic - Strictly Proportional 1:1 Aspect Ratio & Circular Radial Blend */
.hero-cube-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.35)) contrast(1.08) brightness(1.04);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0.85) 68%, rgba(0, 0, 0, 0) 84%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0.85) 68%, rgba(0, 0, 0, 0) 84%);
  animation: heroFloat3D 6s ease-in-out infinite;
}

@keyframes heroFloat3D {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes ambientGlowPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes cyberRingSpin {
  0% {
    transform: translate(-50%, -50%) rotateX(56deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(56deg) rotateZ(360deg);
  }
}

/* Floating 3D Badge */
.floating-3d-badge {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: #FFFFFF;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  z-index: 5;
  animation: float3d 5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-3d-badge:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 45px rgba(56, 189, 248, 0.25), 0 0 25px rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
}

@keyframes float3d {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

/* 3D Icon Box */
.icon-box-3d {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px -3px rgba(79, 70, 229, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease;
  margin-bottom: 20px;
}

.card-3d:hover .icon-box-3d,
.card-3d-v2:hover .icon-box-3d,
.corporate-card:hover .icon-box-3d {
  transform: scale(1.1) translateZ(15px) rotate(-3deg);
  box-shadow: 0 16px 30px -4px rgba(79, 70, 229, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.icon-box-3d-cyan { background: var(--accent-gradient); box-shadow: 0 10px 20px -3px rgba(6, 182, 212, 0.4); }
.icon-box-3d-purple { background: var(--purple-gradient); box-shadow: 0 10px 20px -3px rgba(139, 92, 246, 0.4); }
.icon-box-3d-emerald { background: var(--emerald-gradient); box-shadow: 0 10px 20px -3px rgba(16, 185, 129, 0.4); }
.icon-box-3d-violet { background: linear-gradient(135deg, #6366F1 0%, #A855F7 100%); box-shadow: 0 10px 20px -3px rgba(168, 85, 247, 0.4); }
.icon-box-3d-amber { background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%); box-shadow: 0 10px 20px -3px rgba(245, 158, 11, 0.4); }

/* Modern Top Utility Bar */
.top-bar-corp {
  background-color: #0B0F19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--slate-400);
  z-index: 1010;
  position: relative;
}

.top-bar-corp a {
  color: var(--slate-300);
}

.top-bar-corp a:hover {
  color: #FFFFFF;
}

/* Glassmorphism Header Navigation */
.tf-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tf-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  animation: slideDown 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-item .item-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-700) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-item:hover .item-link,
.dropdown-hover:hover > a,
.mega-dropdown-hover:hover > a {
  color: var(--primary) !important;
  background-color: var(--slate-100);
}

.dropdown-hover:hover > a .drop-icon,
.mega-dropdown-hover:hover > a .drop-icon {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

/* Mega Menu & Custom Dropdowns */
.mega-dropdown-hover {
  position: static !important;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(79, 70, 229, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.dropdown-hover:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom .dropdown-item {
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-menu-custom .dropdown-item:hover {
  color: var(--primary);
  background-color: var(--slate-100);
  transform: translateX(4px);
}

.dropdown-menu-custom .dropdown-item-icon {
  flex-shrink: 0;
}

.gap-2\.5 {
  gap: 0.75rem !important;
}

/* Luxury Glassmorphic Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 2px solid rgba(79, 70, 229, 0.12);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 35px 80px -15px rgba(15, 23, 42, 0.16), 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 50%, #8B5CF6 100%);
  z-index: 10;
}

.mega-dropdown-hover:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Category Column Headers */
.mega-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.mega-cat-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.mega-cat-icon.icon-eng {
  background: linear-gradient(135deg, #4F46E5, #6366F1);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.28);
}

.mega-cat-icon.icon-mobile {
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.28);
}

.mega-cat-icon.icon-cloud {
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.28);
}

.mega-cat-icon.icon-martech {
  background: linear-gradient(135deg, #059669, #10B981);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.28);
}

.mega-cat-title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0F172A;
  margin: 0;
}

/* Mega Menu Links List */
.mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-list a .mega-link-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-list a .mega-arrow {
  font-size: 0.68rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}

.mega-list a:hover {
  color: var(--primary);
  background-color: #F1F5F9;
  transform: translateX(4px);
}

.mega-list a:hover .mega-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Featured Right Promo Cards */
.mega-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-promo-card:hover {
  transform: translateY(-3px);
}

.mega-promo-card .promo-img-box {
  width: 96px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.mega-promo-card .promo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-promo-card:hover .promo-img-box img {
  transform: scale(1.08);
}

.mega-promo-card .promo-link-arrow {
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: transform 0.2s ease;
}

.mega-promo-card:hover .promo-link-arrow {
  transform: translateX(4px);
}

/* Promo Card 1: Obsidian Dark */
.mega-promo-card-dark {
  background: linear-gradient(145deg, #0B1120 0%, #1E293B 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
}

.mega-promo-card-dark:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 18px 35px -5px rgba(15, 23, 42, 0.35), 0 0 20px rgba(99, 102, 241, 0.2);
}

.mega-promo-card-dark .badge-promo {
  background: rgba(14, 165, 233, 0.2);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.mega-promo-card-dark .promo-link-arrow {
  color: #38BDF8;
}

/* Promo Card 2: Sapphire Enterprise */
.mega-promo-card-blue {
  background: linear-gradient(145deg, #0A192F 0%, #1E3A8A 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.25);
}

.mega-promo-card-blue:hover {
  border-color: rgba(99, 102, 241, 0.65);
  box-shadow: 0 18px 35px -5px rgba(30, 58, 138, 0.35), 0 0 20px rgba(99, 102, 241, 0.25);
}

.mega-promo-card-blue .badge-promo {
  background: rgba(99, 102, 241, 0.25);
  color: #A5B4FC;
  border: 1px solid rgba(165, 180, 252, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.mega-promo-card-blue .promo-link-arrow {
  color: #A5B4FC;
}

/* Bottom Consultation Strip */
.mega-bottom-strip {
  background: linear-gradient(90deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ==========================================================================
   IT Services Mega Menu (Mockup Match)
   ========================================================================== */
.it-services-mega-menu {
  background: rgba(255, 255, 255, 0.99);
}

.it-mega-left {
  border-color: #E2E8F0 !important;
}

.it-mega-brand-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.it-mega-contact-link {
  transition: color 0.2s ease, transform 0.2s ease;
}

.it-mega-contact-link:hover {
  color: var(--primary) !important;
  transform: translateX(2px);
}

.it-mega-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-size: 0.85rem;
  text-decoration: none;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.it-mega-social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #F8FAFC;
  transform: translateY(-2px);
}

.it-mega-title {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.it-mega-list a {
  display: inline-block;
  color: #475569;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.it-mega-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.it-mega-bottom-strip {
  border-color: #E2E8F0 !important;
}

/* IT Mega Menu Promo Cards */
.it-mega-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.it-mega-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(15, 23, 42, 0.2);
}

.it-mega-card .it-card-img-box {
  width: 90px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.it-mega-card .it-card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.it-mega-card:hover .it-card-img-box img {
  transform: scale(1.06);
}

.it-mega-card-dark {
  background: #000000;
}

.it-mega-card-blue {
  background: #0052CC;
}

/* Modern 3D Form Controls & Inputs */
.form-control, .form-select {
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  padding: 14px 18px;
  font-size: 0.95rem;
  background-color: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.18), inset 0 1px 2px rgba(15, 23, 42, 0.02);
  outline: none;
  background-color: #FFFFFF;
}

.form-control-3d {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.form-control-3d:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
}

/* ==========================================================================
   Modern Professional Contact Form Component
   ========================================================================== */
.max-width-1150 {
  max-width: 1150px;
}

.max-width-1400 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.max-width-750 {
  max-width: 750px;
}

.max-width-950 {
  max-width: 950px;
}

.contact-card-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 65px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.contact-hub-card {
  border-radius: 20px;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  background-color: #E2E8F0;
  display: flex;
  flex-direction: column;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  flex: 1 1 auto;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .contact-map-wrapper,
  .contact-map-wrapper iframe {
    min-height: 350px;
    height: 350px;
  }
}

.contact-map-status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #F8FAFC;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.contact-map-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.15);
}

.contact-info-panel {
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.25);
  color: #818CF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Comfort Form Typography & Labels */
.form-label-comfort {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.form-label-compact {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  margin-bottom: 4px;
}

/* Form Controls with Inside Icon - Comfort Style */
.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group .input-icon {
  position: absolute;
  left: 16px;
  color: #94A3B8;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 5;
}

.input-icon-group.textarea-group {
  align-items: flex-start;
}

.input-icon-group.textarea-group .input-icon {
  top: 14px;
}

.form-control-comfort {
  width: 100%;
  min-height: 48px;
  padding: 11px 16px 11px 46px !important;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  background-color: #F8FAFC;
  color: #0F172A;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control-comfort::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.form-control-comfort:focus {
  background-color: #FFFFFF;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3.5px rgba(79, 70, 229, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  outline: none;
}

select.form-control-comfort {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 12px;
  padding-right: 42px !important;
}

select.form-control-comfort option {
  color: #0F172A;
  background: #FFFFFF;
  padding: 8px 12px;
}

.input-icon-group:focus-within .input-icon {
  color: #4F46E5;
}

/* Service Pills */
.service-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.service-pill:hover {
  border-color: #6366F1;
  color: #4F46E5;
  background: #EEF2FF;
  transform: translateY(-1px);
}

.service-pill.active {
  border-color: #4F46E5;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25);
}

/* Budget Pills */
.budget-pill {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.budget-pill:hover {
  border-color: #0284C7;
  color: #0284C7;
  background: #F0F9FF;
}

.budget-pill.active {
  border-color: #0284C7;
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.22);
}

.form-control-contact {
  width: 100%;
  padding: 10px 14px 10px 38px !important;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background-color: #F8FAFC;
  color: #0F172A;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control-contact::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.form-control-contact:focus {
  background-color: #FFFFFF;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
  outline: none;
}


/* Modern Enterprise Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 6px 18px 0 rgba(79, 70, 229, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, #4338CA 0%, #4F46E5 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px 0 rgba(79, 70, 229, 0.48), inset 0 1px 1px rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px 0 rgba(79, 70, 229, 0.3);
}

.btn-light {
  background: #FFFFFF;
  color: var(--slate-900);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.dribbble-pill {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.8rem;
  gap: 8px;
  background: var(--primary-light);
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Corporate Card System */
.corporate-card, .service-grid-card, .service-card-corp, .dribbble-feature-card, .testimonial-card, .process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.corporate-card:hover, .service-grid-card:hover, .service-card-corp:hover, .dribbble-feature-card:hover, .testimonial-card:hover, .process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(79, 70, 229, 0.3);
}

.icon-box-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.corporate-card:hover .icon-box-badge, .service-grid-card:hover .icon-box-badge, .service-card-corp:hover .icon-box-badge {
  background: var(--primary-gradient);
  color: #FFFFFF;
  transform: scale(1.08) rotate(3deg);
}

/* 3D Inner Page Banner & Hero Section */
.s-page-title, .hero-corporate-bg {
  background-color: var(--corp-dark) !important;
  background-image:
    radial-gradient(circle at 50% 20%, rgba(79, 70, 229, 0.25) 0%, transparent 65%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, 0.1) 0%, transparent 55%),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s-page-title::before {
  content: '';
  position: absolute;
  top: -12%;
  left: -6%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.35) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.s-page-title::after {
  content: '';
  position: absolute;
  bottom: -12%;
  right: -6%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.s-page-title .image-bg {
  display: none !important;
}

.s-page-title .container {
  position: relative;
  z-index: 2;
}

.s-page-title h1, .s-page-title .page-title-heading {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.03em !important;
  line-height: 1.25 !important;
  margin-bottom: 1.25rem !important;
  font-size: clamp(2.3rem, 4.2vw, 3.75rem);
}

.s-page-title p.lead, .s-page-title .lead, .s-page-title .text-white-50, .s-page-title .text-slate-300 {
  color: #CBD5E1 !important;
  font-size: 1.18rem !important;
  line-height: 1.8 !important;
  font-family: var(--font-sans) !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  opacity: 1 !important;
  font-weight: 400 !important;
}

.s-page-title .badge, .s-page-title .badge-pill-header {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: var(--cyan-accent) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  margin-bottom: 1.5rem !important;
}

.text-gradient-tech, .header-gradient-text {
  background-image: linear-gradient(135deg, #38BDF8 0%, #818CF8 50%, #C084FC 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block;
}

.breadcrumb-custom {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumb-custom a { color: #FFFFFF; }
.breadcrumb-custom a:hover { color: var(--cyan-accent); }

/* 3D FAQ Accordion Component */
.accordion-3d .accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-3d .accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.3);
}

.accordion-3d .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--slate-900);
  background: #FFFFFF;
  padding: 18px 24px;
  font-size: 1.05rem;
  box-shadow: none;
}

.accordion-3d .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
  box-shadow: inset 0 -1px 0 rgba(79, 70, 229, 0.15);
}

.accordion-3d .accordion-body {
  padding: 20px 24px;
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Edge-to-Edge Client Logo Marquee */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.client-logo-item {
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.client-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Technology Stack Tabs & Cards */
.tech-tab-btn {
  border: 1px solid var(--slate-200);
  background: #FFFFFF;
  color: var(--slate-700);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.tech-tab-btn.active, .tech-tab-btn:hover {
  background: var(--primary-gradient);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.tech-card-box {
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.tech-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tech-card-box i {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* Corporate Footer */
.site-footer {
  background-color: var(--corp-dark);
  color: var(--slate-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Footer Brand Logo & Modern Luminescent UI Effects
   ========================================================================== */
.footer-logo-container {
  display: inline-block;
  position: relative;
  margin-bottom: 1.25rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 6px 10px 6px 6px;
  margin-left: -6px;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ambient glow aura behind the logo mark */
.footer-logo-aura {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 52px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.32) 0%, rgba(79, 70, 229, 0.16) 50%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
  border-radius: 50%;
  transition: all 0.45s ease;
  animation: footerLogoAuraPulse 4s ease-in-out infinite alternate;
}

@keyframes footerLogoAuraPulse {
  0% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.footer-logo-img {
  position: relative;
  z-index: 2;
  display: block;
  height: 42px;
  width: auto;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: drop-shadow(0 2px 8px rgba(14, 165, 233, 0.2));
}

/* Diagonal glass light sweep reflection on hover */
.footer-logo-shimmer {
  position: absolute;
  top: -20%;
  left: -130%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(14, 165, 233, 0.32) 50%,
    rgba(255, 255, 255, 0.28) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  z-index: 3;
  pointer-events: none;
  transition: none;
}

/* Hover States */
.footer-logo-link:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 6px 20px -3px rgba(14, 165, 233, 0.22), 0 0 0 1px rgba(14, 165, 233, 0.12);
  transform: translateY(-2px);
}

.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 0 14px rgba(14, 165, 233, 0.65))
         drop-shadow(0 0 28px rgba(99, 102, 241, 0.35));
}

.footer-logo-link:hover .footer-logo-aura {
  width: 130px;
  height: 65px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(99, 102, 241, 0.28) 60%, transparent 80%);
  filter: blur(18px);
}

.footer-logo-link:hover .footer-logo-shimmer {
  left: 160%;
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}


.site-footer h5, .site-footer h6 {
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.site-footer a {
  color: var(--slate-300);
  transition: all 0.2s ease;
}

.site-footer a:hover {
  color: var(--cyan-accent) !important;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

@media (max-width: 991.98px) {
  .floating-3d-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    margin: 6px;
    display: inline-flex !important;
  }
}

/* ==========================================================================
   About Page Redesign Components (What We Do, FAQ, Metrics, Why Choose Us)
   ========================================================================== */

/* Blue Pill Badges */
.pill-badge-blue {
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pill-badge-blue i.fa-square {
  font-size: 7px;
  color: #FFFFFF;
}

/* 1. What We Do Section */
.section-what-we-do {
  background-color: #060911;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.what-we-do-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.what-we-do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -5px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.what-we-do-card .card-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.circle-icon-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.what-we-do-card:hover .circle-icon-avatar {
  transform: scale(1.1) rotate(5deg);
}

.avatar-blue {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #38BDF8;
  border: 2px solid rgba(56, 189, 248, 0.3);
}

.avatar-emerald {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #34D399;
  border: 2px solid rgba(52, 211, 153, 0.3);
}

.avatar-purple {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #C084FC;
  border: 2px solid rgba(192, 132, 252, 0.3);
}

.avatar-amber {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FBBF24;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.avatar-indigo {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #818CF8;
  border: 2px solid rgba(129, 140, 248, 0.3);
}

.avatar-rose {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FB7185;
  border: 2px solid rgba(251, 113, 133, 0.3);
}

.what-we-do-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

.what-we-do-card .card-text {
  color: #64748B;
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0;
}

/* 2. FAQ Section */
.section-about-faq {
  background: #F1F5F9;
  position: relative;
}

.about-faq-container {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-faq-item {
  border-bottom: 1px solid #E2E8F0;
  transition: background-color 0.2s ease;
}

.about-faq-item:last-child {
  border-bottom: none;
}

.about-faq-btn {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E293B;
  cursor: pointer;
  transition: all 0.25s ease;
}

.about-faq-btn:hover {
  background: #F8FAFC;
  color: #2563EB;
}

.about-faq-btn:not(.collapsed) {
  background: #F8FAFC;
  color: #2563EB;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563EB;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-faq-btn.collapsed .faq-toggle-icon {
  background: #3B82F6;
}

.about-faq-btn:not(.collapsed) .faq-toggle-icon i::before {
  content: "\f068"; /* fa-minus */
}

.about-faq-body {
  padding: 0 28px 22px 28px;
  background: #F8FAFC;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* 3. Stats Strip */
.section-about-stats {
  background-color: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 42px 0;
}

.stat-metric-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
}

.stat-number-val {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #2563EB;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label-bold {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
}

.stat-subtext {
  font-size: 0.92rem;
  color: #64748B;
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider-col {
  border-right: 1px solid #CBD5E1;
}

@media (max-width: 767.98px) {
  .stat-divider-col {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .stat-divider-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* 4. Why Choose Us Section */
.why-choose-wrapper {
  background: #060911;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 65%, rgba(37, 99, 235, 0.08) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.why-choose-perspective-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  transform: perspective(600px) rotateX(45deg);
  transform-origin: bottom center;
  pointer-events: none;
}

.why-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease;
}

.why-check-item:hover {
  transform: translateX(4px);
}

.why-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #2563EB;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

@media (max-width: 991.98px) {
  .why-choose-wrapper {
    padding: 36px 24px;
  }
}

/* Hero Banner 3D Cube Seamless Background Merging */
.hero-cube-wrapper {
  position: relative;
  display: inline-block;
}

.cube-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.32) 0%, rgba(79, 70, 229, 0.18) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-cube-img {
  max-height: 520px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 65%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 65%, transparent 95%);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 45px rgba(56, 189, 248, 0.3));
}

/* ==========================================================================
   Comprehensive Technology Solutions - 3D Pro Service Cards
   ========================================================================== */
.service-card-pro {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 34px 28px 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.service-card-pro.accent-indigo::before { background: linear-gradient(90deg, #4F46E5, #6366F1); }
.service-card-pro.accent-cyan::before { background: linear-gradient(90deg, #0284C7, #06B6D4); }
.service-card-pro.accent-purple::before { background: linear-gradient(90deg, #7C3AED, #A855F7); }
.service-card-pro.accent-emerald::before { background: linear-gradient(90deg, #059669, #10B981); }
.service-card-pro.accent-violet::before { background: linear-gradient(90deg, #6366F1, #D946EF); }

.service-card-pro:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.09), 0 10px 18px -4px rgba(79, 70, 229, 0.08);
}

.service-card-pro:hover::before {
  height: 4.5px;
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-card-header .icon-box-3d {
  margin-bottom: 0;
}

.service-card-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #E2E8F0;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.service-card-pro:hover .service-card-num {
  color: #CBD5E1;
  transform: translateY(-2px);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.service-card-pro:hover .service-card-title {
  color: #4F46E5;
}

.service-card-desc {
  color: #64748B;
  font-size: 0.94rem;
  line-height: 1.72;
  margin-bottom: 24px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #4F46E5;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-card-link .link-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #4F46E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: all 0.3s ease;
}

.service-card-pro:hover .service-card-link {
  color: #3730A3;
}

.service-card-pro:hover .link-arrow-circle {
  background: #4F46E5;
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.service-card-pro:hover .icon-box-3d {
  transform: scale(1.08) rotate(-2deg);
}

/* Card 6: Special CTA Card (Speak With a Senior IT Architect) */
.service-card-cta {
  background: #0B0F19;
  background-image: 
    radial-gradient(circle at 90% 12%, rgba(99, 102, 241, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 10% 88%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    linear-gradient(150deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 34px 28px 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px -5px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-cta:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.4), 0 0 30px rgba(79, 70, 229, 0.25);
}

.badge-cta-audit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(129, 140, 248, 0.4);
  color: #A5B4FC;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-card-cta .cta-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-top: 16px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card-cta .cta-desc {
  color: #94A3B8;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.cta-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-highlight-item i {
  color: #38BDF8;
  font-size: 0.82rem;
}

.btn-cta-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 10px 22px -3px rgba(79, 70, 229, 0.45);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-cta-review:hover {
  background: linear-gradient(135deg, #4338CA 0%, #4F46E5 100%);
  box-shadow: 0 14px 28px -3px rgba(79, 70, 229, 0.65);
  transform: translateY(-2px);
  color: #FFFFFF !important;
}

.btn-cta-review .btn-arrow-icon {
  transition: transform 0.25s ease;
}

.btn-cta-review:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Global Utility: py-6
   ========================================================================== */
.py-6 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

/* ==========================================================================
   Section 4: Proven Methodology & Digital Transformation Process
   ========================================================================== */
.section-methodology {
  background-color: #070B14;
  background-image: 
    radial-gradient(circle at 12% 28%, rgba(79, 70, 229, 0.16) 0%, transparent 48%),
    radial-gradient(circle at 88% 65%, rgba(6, 182, 212, 0.14) 0%, transparent 48%),
    radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #070B14 0%, #0B101D 100%);
  position: relative;
  padding-top: 100px;
  padding-bottom: 110px;
  overflow: hidden;
  color: #FFFFFF;
}

@media (max-width: 991.98px) {
  .section-methodology {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

/* Left Showcase Card */
.methodology-visual-card {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px -10px rgba(79, 70, 229, 0.25);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.methodology-visual-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

@media (max-width: 991.98px) {
  .methodology-visual-img {
    height: 380px;
  }
}

/* Floating Badges on Visual */
.methodology-badge-top {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 8px 18px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.methodology-badge-bottom {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.methodology-badge-bottom .badge-icon-check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Right Column - Process Step Cards */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step-card {
  position: relative;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 22px 24px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
}

.process-step-card:hover {
  transform: translateX(8px);
  background: rgba(22, 33, 62, 0.85);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.5), 0 0 25px rgba(79, 70, 229, 0.2);
}

.process-step-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.process-step-card:hover .process-step-badge {
  transform: scale(1.08) rotate(-2deg);
}

.badge-step-1 {
  background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%);
  box-shadow: 0 8px 18px rgba(6, 182, 212, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.badge-step-2 {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  box-shadow: 0 8px 18px rgba(168, 85, 247, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.badge-step-3 {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.badge-step-4 {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.process-step-card:hover .process-step-title {
  color: #818CF8;
}

.process-step-desc {
  color: #94A3B8;
  font-size: 0.91rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.step-deliverable-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.process-step-card:hover .step-deliverable-tag {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(129, 140, 248, 0.3);
  color: #E0E7FF;
}

/* ==========================================================================
   Service Benefits Banner - Modern Enterprise Card
   ========================================================================== */
.section-benefits-banner {
  padding: 85px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
}

.benefits-pro-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.benefits-pro-card:hover {
  box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -5px rgba(79, 70, 229, 0.08);
}

.benefits-visual-col {
  position: relative;
  overflow: hidden;
  background: #0B0F19;
  min-height: 480px;
}

.benefits-dark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefits-pro-card:hover .benefits-dark-img {
  transform: scale(1.03);
}

.benefits-visual-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.45) 100%);
  pointer-events: none;
}

.benefits-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.benefits-visual-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #818CF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefits-content-col {
  padding: 48px 48px 42px 48px;
}

@media (max-width: 991.98px) {
  .section-benefits-banner {
    padding: 60px 0;
  }
  .benefits-visual-col {
    min-height: 320px;
  }
  .benefits-dark-img {
    min-height: 320px;
    max-height: 360px;
  }
  .benefits-content-col {
    padding: 32px 24px;
  }
}

.benefit-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
  transition: transform 0.2s ease;
}

.benefit-check-item:hover {
  transform: translateX(4px);
}

.benefit-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #4F46E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.15);
  margin-top: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.benefit-check-item:hover .benefit-check-icon {
  background: #4F46E5;
  color: #FFFFFF;
}

.benefit-check-text {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #1E293B;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ==========================================================================
   Service Contact CTA Section & Pro Form Card
   ========================================================================== */
.section-contact-cta {
  padding: 90px 0;
  background-color: var(--slate-50);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
}

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

.contact-cta-card {
  background: #FFFFFF;
  background-image:
    radial-gradient(circle at 98% 10%, rgba(79, 70, 229, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 2% 90%, rgba(6, 182, 212, 0.025) 0%, transparent 40%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 25px 65px -15px rgba(15, 23, 42, 0.08), 0 8px 24px -4px rgba(79, 70, 229, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
  padding: 50px 52px 40px 52px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 50%, #8B5CF6 100%);
}

@media (max-width: 991.98px) {
  .contact-cta-card {
    padding: 40px 32px 34px 32px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .contact-cta-card {
    padding: 30px 18px 26px 18px;
    border-radius: 20px;
  }
}

.max-width-700 {
  max-width: 820px;
}

.form-control-pro {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #0F172A;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-control-pro:hover {
  border-color: #CBD5E1;
  background-color: #FFFFFF;
}

.form-control-pro:focus {
  background-color: #FFFFFF;
  border-color: #4F46E5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
  outline: none;
  color: #0F172A;
}

.form-control-pro::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.btn-submit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #4F46E5 100%);
  background-size: 200% auto;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 12px 28px -4px rgba(79, 70, 229, 0.45);
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-submit-cta:hover {
  background-position: right center;
  box-shadow: 0 16px 34px -4px rgba(79, 70, 229, 0.6);
  transform: translateY(-2px);
  color: #FFFFFF !important;
}

.btn-submit-cta i {
  transition: transform 0.25s ease;
}

.btn-submit-cta:hover i {
  transform: translateX(4px) translateY(-2px);
}

.form-label-pro {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.form-label-pro i {
  font-size: 0.76rem;
  color: #4F46E5;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(79, 70, 229, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.col-md-6:focus-within .form-label-pro i,
.col-12:focus-within .form-label-pro i {
  background: #4F46E5;
  color: #FFFFFF;
}

