/* ==========================================================================
   RALIXIT — Ultra Premium IT Agency Style System
   Design: High-Tech Glassmorphism, 3D Tilt, Neon Glows & Scroll Animations
   Typography: Poppins
   Color System: Black (#0B0F19 / #111111), Electric Blue (#0052FF), Cyber Cyan (#00D2FF)
   ========================================================================== */

/* Local Poppins Font Definitions */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Poppins/Poppins-Regular.ttf') format('truetype');
}


@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('Poppins/Poppins-Medium.ttf') format('truetype');
}



@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('Poppins/Poppins-SemiBold.ttf') format('truetype');
}



:root {
  /* Colors */
  --bg-dark: #080B11;
  --bg-dark-card: rgba(15, 22, 36, 0.75);
  --bg-light: #FAFAFC;
  --bg-white: #FFFFFF;

  --text-main: #111827;
  --text-muted: #4B5563;
  --text-dark-heading: #FFFFFF;
  --text-dark-muted: #9CA3AF;

  --brand-blue: #0052FF;
  --brand-blue-hover: #0043D4;
  --brand-cyan: #00D2FF;
  --brand-blue-glow: rgba(0, 82, 255, 0.35);
  --brand-blue-subtle: rgba(0, 82, 255, 0.08);

  --border-light: rgba(229, 231, 235, 0.8);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 82, 255, 0.4);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Shadows */
  --shadow-subtle: 0px 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0px 20px 40px -10px rgba(0, 82, 255, 0.18), 0px 8px 16px -4px rgba(16, 24, 40, 0.06);
  --shadow-glow: 0px 0px 30px rgba(0, 82, 255, 0.4);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1280px;
}

/* Reset & Global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 82, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 210, 255, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.07) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: bgMeshGradient 14s ease-in-out infinite alternate;
}

@keyframes bgMeshGradient {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(4deg) scale(1.04);
  }

  100% {
    transform: rotate(-3deg) scale(1.02);
  }
}

/* Background Canvas Layer */
#tech-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Glow Orbs */
.orb-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.14) 0%, rgba(0, 210, 255, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.orb-top-right {
  top: -150px;
  right: -100px;
  animation: orbFloat1 10s ease-in-out infinite alternate;
}

.orb-mid-left {
  top: 35%;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
  animation: orbFloat2 12s ease-in-out infinite alternate;
}

.orb-bottom-right {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.11) 0%, rgba(0, 82, 255, 0) 70%);
  animation: orbFloat1 14s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-70px, 90px) scale(1.25);
    opacity: 1;
  }

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

@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(90px, -60px) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translate(-40px, 50px) scale(0.95);
    opacity: 0.7;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Scroll Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 0px;
  padding: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: all var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: none;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  animation: logoSlowFloat 7s ease-in-out infinite alternate;
}

@keyframes logoSlowFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

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

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  margin-bottom: 100px;
  text-align: center;
  position: relative;
}

.hero-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 210, 255, 0.08) 100%);
  border: 1px solid rgba(0, 82, 255, 0.22);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.06);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-cyan);
}

.hero-title {
  margin: auto;
  max-width: 900px;
  font-size: 4.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
}

.hero-title-accent {
  background: linear-gradient(135deg, #0052FF 0%, #00D2FF 30%, #8B5CF6 60%, #0052FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradientFlow 4s linear infinite;
}

@keyframes heroGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Dynamic Hero Services Ticker */
.hero-ticker-wrapper {
  position: relative;
  height: 100px;
  max-width: 1100px;
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ticker {
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-ticker li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(35px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.hero-ticker li.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-ticker li.exit {
  opacity: 0;
  transform: translateY(-35px) scale(0.96);
  z-index: 0;
}

.ticker-text {
  font-family: var(--font-heading);
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0052FF 0%, #00D2FF 30%, #8B5CF6 60%, #0052FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradientFlow 4s linear infinite;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-ticker-wrapper {
    height: 100px;
  }

  .ticker-text {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-ticker-wrapper {
    height: 90px;
    margin-bottom: 20px;
  }

  .ticker-text {
    font-size: 2rem;
    white-space: normal;
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brand-blue);
  max-width: 740px;
  margin: 0 auto 18px;
  line-height: 1.4;
  text-align: center;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 36px;
  line-height: 1.65;
  text-align: center;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #0052FF 0%, #0040CC 100%);
  color: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(0, 82, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 14px 30px rgba(0, 82, 255, 0.45);
  background: linear-gradient(135deg, #005AFF 0%, #0048E0 100%);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Hero High-Tech Video Showcase Card */
.hero-video-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

.hero-video-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 82, 255, 0.25), 0 0 40px rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.3);
  background: #080B11;
  aspect-ratio: 16 / 9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px -15px rgba(0, 82, 255, 0.35), 0 0 50px rgba(0, 210, 255, 0.25);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.video-control-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-control-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: scale(1.1);
}

.video-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Contact Info Badge */
.hero-contact-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.contact-item svg {
  color: var(--brand-blue);
}

.contact-item a {
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--brand-blue);
}

.divider-dot {
  color: var(--border-light);
}

/* High-Tech Status Widget */
.tech-status-card {
  margin: 50px auto 0;
  max-width: 700px;
  background: #0B0F17;
  color: #FFFFFF;
  border: 1px solid rgba(0, 82, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.4), 0px 0px 30px rgba(0, 82, 255, 0.15);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.tech-status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0052FF 0%, #00D2FF 50%, #0052FF 100%);
}

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

.status-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--brand-cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-percentage {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-bar-fill {
  height: 100%;
  width: 96%;
  background: linear-gradient(90deg, #0052FF 0%, #00D2FF 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px var(--brand-cyan);
}

.ticker-logs {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #9CA3AF;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.log-item span.dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}

/* Services Section - Full Width & 4 Columns */
.services-section {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  width: 100%;
}

.services-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-main);
  border-color: var(--brand-blue);
}

.filter-btn.active {
  background: var(--brand-blue);
  color: #FFFFFF;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.3);
}

/* 4 COLUMNS GRID LAYOUT */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1000px;
}

/* Service Card UI */
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--brand-blue);
  box-shadow: 0 14px 32px rgba(0, 82, 255, 0.12);
}

/* Icon on Left Side of Title */
.card-header-flex {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.service-card:hover .card-icon {
  background: var(--brand-blue);
  color: #FFFFFF;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Why RALIXIT Section */
.why-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  position: relative;
}

.feature-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  background: var(--brand-blue-subtle);
  border-radius: var(--radius-sm);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats Counter Grid */
.stats-banner {
  margin-top: 60px;
  background: #0B0F17;
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  border: 1px solid rgba(0, 82, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brand-cyan);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Contact CTA Section */
.cta-section {
  padding: 90px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0052FF 0%, #1E40AF 50%, #6D28D9 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 24px 60px rgba(0, 82, 255, 0.35);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-box .btn-primary {
  background: #FFFFFF;
  color: #0052FF;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-box .btn-primary:hover {
  background: #F8FAFC;
  color: #0045D8;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.cta-contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cta-contact-details a {
  color: #E5E7EB;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-fast);
}

.cta-contact-details a:hover {
  color: var(--brand-cyan);
}

/* Footer */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--brand-blue);
  color: #FFFFFF;
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 1rem;
  color: #000000;
  width: 100%;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 11, 17, 0.75);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  padding: 44px;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--text-main);
  color: #FFFFFF;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--brand-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--brand-blue-subtle);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: #0B0F17;
  color: #FFFFFF;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid var(--brand-blue);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* RESPONSIVE DESIGN REQUIREMENTS */

@media (max-width: 1280px) {
  .container {
    max-width: 1140px;
    padding: 0 32px;
  }

  .hero-section {
    padding: 70px 0 50px;
    margin-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .service-card {
    padding: 22px;
  }

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

@media (max-width: 1023px) {
  .hero-section {
    padding: 55px 0 40px;
    margin-bottom: 60px;
  }

  .hero-content-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left-col {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title-main {
    font-size: 3rem;
    text-align: center;
  }

  .hero-subtitle-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .scroll-indicator {
    align-items: center;
  }

  .hero-3d-chevron-wrapper {
    width: 340px;
    height: 340px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .section-title {
    font-size: 2.25rem;
            line-height: 1.2;
  }

  .cta-box {
    padding: 56px 36px;
  }

  .cta-box h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .site-header {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0;
  }

  .brand-logo {
    height: 50px;
    margin-top: 50px;
  }

  .hero-section {
    padding: 0px 0 30px;
    margin-bottom: 40px;
  }

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-contact-inline {
    flex-direction: column;
    gap: 12px;
    border-radius: var(--radius-md);
    width: 100%;
    padding: 16px;
  }

  .divider-dot {
    display: none;
  }

  .tech-status-card {
    padding: 20px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }

  .cta-box {
    padding: 44px 20px;
    border-radius: var(--radius-md);
  }

  .cta-box h2 {
    font-size: 1.85rem;
  }

  .cta-contact-details {
    flex-direction: column;
    gap: 14px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .modal-content {
    padding: 28px 20px;
  }

  .whatsapp-float-btn {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 25px 0 20px;
    margin-bottom: 30px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 40px;
  right: 50px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75), 0 8px 24px rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.4);
  }
}