/* ==========================================================================
   1stTechy - Premium Software Development & Digital Marketing Agency
   Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --secondary: #7C3AED;
  --secondary-hover: #6D28D9;
  --accent: #06B6D4;
  --accent-hover: #0891B2;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Background Colors */
  --hero-bg: #071126;
  --hero-bg-accent: #0f1c3d;
  --light-bg: #F8FAFC;
  --section-bg: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-hover: rgba(255, 255, 255, 0.95);
  --dark-card: #101827;
  --dark-card-border: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-accent: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  --gradient-text: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #06B6D4 100%);
  --gradient-hero-overlay: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15) 0%, rgba(7, 17, 38, 0) 70%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-main: #111827;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-color: #E5E7EB;
  --border-light: rgba(255, 255, 255, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(149, 157, 165, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.25);
  --shadow-purple-glow: 0 10px 30px rgba(124, 58, 237, 0.25);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   3. Helper & Utility Classes
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
}

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

.gradient-text-light {
  background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.bg-hero {
  background-color: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: var(--card-bg-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.glass-card-dark {
  background: rgba(16, 24, 39, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  color: var(--text-white);
}

/* Section Title */
.sub-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sub-title-badge.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #A5B4FC;
}

.section-title h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn-gradient-primary {
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gradient-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-outline-custom {
  border: 2px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

/* --------------------------------------------------------------------------
   5. Navbar & Header
   -------------------------------------------------------------------------- */
.header-main,
header.header-main,
header.fixed-top,
.navbar-custom,
.navbar-custom.fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1080 !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  transition: all 0.3s ease;
}

.navbar-custom {
  padding: 14px 0 !important;
}

.navbar-custom.scrolled {
  padding: 10px 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.navbar-custom .nav-link,
.navbar-custom.scrolled .nav-link {
  color: #1E293B !important;
}

.navbar-custom .brand-logo-text,
.navbar-custom.scrolled .brand-logo-text {
  color: #0F172A !important;
}

/* Mobile Toggler Icon Styling */
.navbar-toggler {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md) !important;
  background: rgba(37, 99, 235, 0.08) !important;
  color: #1E293B !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled .navbar-toggler {
  background: rgba(37, 99, 235, 0.08) !important;
  color: var(--primary) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  background: var(--gradient-primary) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: #0F172A !important;
}

.brand-logo-text {
  color: #0F172A !important;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #1E293B !important;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active,
.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
  color: var(--primary) !important;
  background: transparent !important;
}

/* Mega Menu Dropdown */
.nav-item.dropdown {
  position: relative;
}

.mega-dropdown-menu {
  width: 580px;
  max-width: 90vw;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  margin-top: 15px !important;
  animation: fadeInDown 0.3s ease;
  background: #FFFFFF;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.mega-menu-item:hover {
  background: var(--light-bg);
  transform: translateX(4px);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Offcanvas Mobile Drawer Styling */
.offcanvas {
  width: 320px !important;
  background: #FFFFFF !important;
  color: var(--text-main);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  border-radius: 20px 0 0 20px;
}

.offcanvas-header {
  padding: 20px 24px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color) !important;
}

.offcanvas-header .brand-logo-text {
  color: var(--text-main) !important;
}

.offcanvas-body {
  padding: 24px;
  background: #FFFFFF;
}

.offcanvas-body .navbar-nav .nav-link {
  color: #1E293B !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 16px !important;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
  background: var(--light-bg) !important;
  color: var(--primary) !important;
}

/* Mobile Service Item Sub-menu styling */
.mobile-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.mobile-service-item:hover,
.mobile-service-item:active {
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(4px);
}

.mobile-service-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mobile-service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.2;
  white-space: nowrap;
}

.mobile-service-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

.bg-purple-subtle {
  background: rgba(124, 58, 237, 0.1);
}

.text-purple {
  color: #7C3AED !important;
}

.bg-cyan-subtle {
  background: rgba(6, 182, 212, 0.1);
}

.text-cyan {
  color: #06B6D4 !important;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 170px;
  padding-bottom: 110px;
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
  animation: floatBlob 12s infinite alternate ease-in-out;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: #2563EB;
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #7C3AED;
  bottom: 10%;
  right: -5%;
  animation-delay: 3s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: #06B6D4;
  top: 40%;
  left: 45%;
  animation-delay: 6s;
}

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

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

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
}

.hero-content p.lead-text {
  font-size: 1.18rem;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  font-size: 0.95rem;
  font-weight: 500;
}

.checklist-item i {
  color: var(--success);
  font-size: 1rem;
}

/* Hero Right Visual & Mockups */
.hero-mockup-wrapper {
  position: relative;
  z-index: 2;
}

.main-laptop-mockup {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #EF4444;
}

.dot-yellow {
  background: #F59E0B;
}

.dot-green {
  background: #10B981;
}

.mockup-body {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0B132B;
}

/* Floating Glass Cards around Laptop */
.floating-glass-card {
  position: absolute;
  padding: 14px 20px;
  background: rgba(16, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: floatCard 5s infinite alternate ease-in-out;
}

.card-top-right {
  top: -20px;
  right: -20px;
}

.card-bottom-left {
  bottom: -25px;
  left: -25px;
  animation-delay: 2.5s;
}

.floating-code-icon {
  position: absolute;
  top: 40%;
  left: -35px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-glow);
  z-index: 4;
  animation: floatCard 4s infinite alternate ease-in-out;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

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

/* --------------------------------------------------------------------------
   7. Trusted Logos Section
   -------------------------------------------------------------------------- */
.trusted-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
}

.trusted-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.company-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-normal);
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #334155;
}

.company-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--primary);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.service-card {
  padding: 32px 24px;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--section-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

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

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

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Why Choose Us Section (Executive Dark High-Tech Redesign)
   -------------------------------------------------------------------------- */
.bg-mesh-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.teaser-console {
  background: #0B132B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  font-family: 'Fira Code', monospace;
  text-align: left;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.progress-bar-custom {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.benefit-card-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-v2:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.benefit-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   10. Work Process Section (Ultra-Professional Redesign)
   -------------------------------------------------------------------------- */
.process-card-v2 {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

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

.process-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-card-v2:hover::before {
  opacity: 1;
}

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

.step-icon-v2 {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.process-card-v2:hover .step-icon-v2 {
  transform: scale(1.1) rotate(6deg);
}

.step-num-v2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  opacity: 0.15;
  color: var(--text-main);
  line-height: 1;
  transition: opacity 0.35s ease;
}

.process-card-v2:hover .step-num-v2 {
  opacity: 0.35;
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.process-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.process-step-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: var(--light-bg);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* Color variations for each phase */
.step-color-1 .step-icon-v2 {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.step-color-1 .process-step-tag {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.step-color-1:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.step-color-2 .step-icon-v2 {
  background: linear-gradient(135deg, #06B6D4, #0EA5E9);
}

.step-color-2 .process-step-tag {
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}

.step-color-2:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.step-color-3 .step-icon-v2 {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.step-color-3 .process-step-tag {
  color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
}

.step-color-3:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.step-color-4 .step-icon-v2 {
  background: linear-gradient(135deg, #EC4899, #F43F5E);
}

.step-color-4 .process-step-tag {
  color: #EC4899;
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
}

.step-color-4:hover {
  border-color: rgba(236, 72, 153, 0.3);
}

.step-color-5 .step-icon-v2 {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.step-color-5 .process-step-tag {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.step-color-5:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.step-color-6 .step-icon-v2 {
  background: linear-gradient(135deg, #10B981, #34D399);
}

.step-color-6 .process-step-tag {
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

.step-color-6:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.step-color-7 .step-icon-v2 {
  background: linear-gradient(135deg, #0D9488, #14B8A6);
}

.step-color-7 .process-step-tag {
  color: #0D9488;
  background: rgba(13, 148, 136, 0.08);
  border-color: rgba(13, 148, 136, 0.2);
}

.step-color-7:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

/* --------------------------------------------------------------------------
   11. Tech Stack Badges
   -------------------------------------------------------------------------- */
.tech-pill {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  margin: 6px;
}

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

.tech-pill:hover {
  background: var(--gradient-primary);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tech-pill:hover i {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   12. Portfolio Showcase
   -------------------------------------------------------------------------- */
.portfolio-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
  margin: 4px;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.portfolio-card-v2 {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.portfolio-img-wrapper-v2 {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #0B132B;
}

.portfolio-img-wrapper-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-v2:hover .portfolio-img-wrapper-v2 img {
  transform: scale(1.08);
}

.portfolio-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 17, 38, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card-v2:hover .portfolio-overlay-v2 {
  opacity: 1;
}

.portfolio-body-v2 {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.portfolio-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.portfolio-badge-v2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.portfolio-status-dot {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.portfolio-card-v2:hover .portfolio-title-v2 {
  color: var(--primary);
}

.portfolio-desc-v2 {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.portfolio-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag-mini {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.portfolio-footer-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.portfolio-card-v2:hover .portfolio-footer-link {
  color: var(--primary-hover);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   13. Counter / Stats Strip (Executive Compact Redesign with Sub-Info)
   -------------------------------------------------------------------------- */
.stats-banner-v2 {
  background: #071126;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 32px 0;
}

.stats-card-v2 {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-item-v2 {
  text-align: center;
  position: relative;
  padding: 4px 6px;
  transition: transform 0.3s ease;
}

.stat-item-v2:hover {
  transform: translateY(-3px);
}

.stat-icon-v2 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-number-v2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label-v2 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.3px;
}

.stat-sub-info {
  font-size: 0.74rem;
  color: #94A3B8;
  margin-top: 3px;
  margin-bottom: 0;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   14. Testimonials Slider (Executive Dark Glass)
   -------------------------------------------------------------------------- */
.testimonial-swiper {
  width: 100%;
  padding-bottom: 36px !important;
}

.testimonial-card-dark {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
}

.rating-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-quote-dark {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.client-avatar-v2 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2563EB;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 24px !important;
  border-radius: 10px !important;
}

/* --------------------------------------------------------------------------
   15. Digital Marketing Dashboard Visual (Executive Redesign)
   -------------------------------------------------------------------------- */
.marketing-check-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.marketing-check-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(37, 99, 235, 0.4);
}

.marketing-dashboard-card-dark {
  background: #0B132B;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
}

.marketing-dashboard-card-dark:hover {
  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.4);
}

.chart-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 130px;
  padding-top: 16px;
  padding-bottom: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #38BDF8 0%, #2563EB 100%);
  border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.chart-bar:hover {
  background: linear-gradient(180deg, #06B6D4 0%, #7C3AED 100%);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

/* --------------------------------------------------------------------------
   16. Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition-normal);
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 20px 0;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li i.fa-check-circle {
  color: var(--success);
}

.pricing-features-list li i.fa-times-circle {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   17. FAQ Accordion
   -------------------------------------------------------------------------- */
.accordion-custom .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #FFFFFF;
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 24px;
  background: #FFFFFF;
  color: var(--text-main);
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.04);
}

/* --------------------------------------------------------------------------
   18. Blog Section
   -------------------------------------------------------------------------- */
.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
}

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

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
}

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

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

/* --------------------------------------------------------------------------
   19. Contact Section (Executive White Theme Redesign)
   -------------------------------------------------------------------------- */
.contact-info-card-light {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: var(--text-main);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-item-light {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-info-item-light:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
  transform: translateX(4px);
}

.contact-icon-light {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-form-card-light {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.form-control-custom {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background-color: #F8FAFC;
}

.form-control-custom:focus {
  background-color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  outline: none;
}

.contact-office-card-light {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   20. Footer Section (Executive Redesign)
   -------------------------------------------------------------------------- */
.footer {
  background: #071126;
  background-image: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12) 0%, rgba(7, 17, 38, 0) 70%);
  color: #94A3B8;
  padding-top: 90px;
  padding-bottom: 35px;
  position: relative;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin-top: 8px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #38BDF8;
  transform: translateX(6px);
}

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

.social-icon-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.hover-white:hover {
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   21. Floating Buttons & Preloader
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #071126;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.spinner-custom {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------------------------------
   14. Coming Soon Page Component Styles
   -------------------------------------------------------------------------- */
.countdown-card-v2 {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  min-width: 105px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

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

.countdown-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.5) !important;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.countdown-val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.countdown-unit {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94A3B8 !important;
}

/* Teaser Console Widget */
.teaser-console {
  background: #0B132B !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  font-family: 'Fira Code', monospace;
  text-align: left;
  color: #F8FAFC !important;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.progress-bar-custom {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 86%;
  background: var(--gradient-primary);
  border-radius: 4px;
}

/* Role Pills */
.role-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}

.role-pill.active, .role-pill:hover {
  background: var(--gradient-primary) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Avatar Stacking */
.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #071126;
  margin-left: -12px;
  object-fit: cover;
}

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

.benefit-card-v2 {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: var(--transition-normal);
}

.benefit-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}