/* ================================================================
   InfoRyse IT Solutions — style.css
   Modern Premium Corporate Website
   ================================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:       #0B64D6;
  --primary-light: #1976F2;
  --primary-dark:  #0850AA;
  --primary-glow:  rgba(11, 100, 214, 0.35);
  --accent:        #7BB8FF;
  --accent-soft:   rgba(123, 184, 255, 0.15);

  --dark-900: #050D1A;
  --dark-800: #080F1E;
  --dark-700: #0D1628;
  --dark-600: #111C32;
  --dark-500: #162240;
  --dark-400: #1E2E50;
  --dark-300: #243660;

  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-blue:   rgba(11, 100, 214, 0.25);

  --text-primary:   #F0F4FF;
  --text-secondary: #94A8CC;
  --text-muted:     #5A6F8F;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-blue:  0 8px 40px rgba(11, 100, 214, 0.25);
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-deep:  0 20px 60px rgba(0, 0, 0, 0.5);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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


html, body {
  overflow-x: clip;
  max-width: 100%;
}

body {
    margin: 0;
  width: 100%;
  font-family: var(--font-body);
  background-color: var(--dark-900);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary); color: white; }

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10000;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
    width: 100%;
  position: fixed;
  inset: 0;
  background: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

.logo-text .accent { color: var(--accent); }

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-600);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: loadBar 2s ease forwards;
}

.preloader-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes loadBar {
  0% { width: 0%; }
  40% { width: 60%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px var(--primary-glow); }
  50% { text-shadow: 0 0 40px rgba(123,184,255,0.4); }
}

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(123, 184, 255, 0.1);
  border: 1px solid rgba(123, 184, 255, 0.2);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

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

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

.accent { color: var(--accent); }
.mb-6 { margin-bottom: 4rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(11, 100, 214, 0.5);
  color: white;
}

.btn-primary-glow:active { transform: translateY(0); }

.btn-shine {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary-glow:hover .btn-shine { left: 125%; }

.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-ghost-outline:hover {
  border-color: var(--primary);
  color: var(--accent);
  background: rgba(11, 100, 214, 0.08);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 16px var(--primary-glow);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--primary-glow); }

.btn-white-cta {
  background: white;
  color: var(--primary-dark) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-white-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
   ================================================================ */


   
#mainNav {
  width: 100%;
  max-width: 100%;
  left: 0;
  padding: 16px 0;
  transition: var(--transition-slow);
  z-index: 1000;
}

#mainNav.scrolled {
  background: #050d1aeb;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}



.logoimg {
  display: block;
  width: 150px;
  height: 45px;
  overflow: hidden;
  border: none !important;
  outline: none;
  flex-shrink: 0;
}

/* When .logoimg is on the <img> itself */
img.logoimg {
  width: 150px;
  height: 45px;
  object-fit: cover;
  object-position: center center;
  border: none !important;
  box-shadow: none !important;
}

/* When .logoimg is on a wrapper div, size the child img */
.logoimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: none !important;
  box-shadow: none !important;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 3px 14px var(--primary-glow);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover { color: var(--text-primary) !important; }
.navbar-nav .nav-link:hover::after { width: 20px; }

/* Custom hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;

  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  width: auto;
  height: auto;
}
.navbar-toggler:focus { box-shadow: none; }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar-toggler.open .line1 { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.open .line2 { opacity: 0; transform: scaleX(0); }
.navbar-toggler.open .line3 { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  

  #navbarNav {
    background: rgba(8, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--border-subtle);
  }
  .navbar-nav .nav-link { padding: 10px 16px !important; }
  .btn-nav-cta { margin: 8px 16px 0; display: block; text-align: center; }
}

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


.talenthover:hover{
  scale:2;
}   


.hero-section {
  position: relative;
  min-height: 90vh;
  background: var(--dark-900);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 100, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 100, 214, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  will-change: transform;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11, 100, 214, 0.18), transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25, 118, 242, 0.12), transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123, 184, 255, 0.08), transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 100, 214, 0.12);
  border: 1px solid rgba(11, 100, 214, 0.3);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: blinkDot 2s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.illustration-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(11,100,214,0.15), transparent);
  pointer-events: none;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(11,100,214,0.2));
  animation: heroFloat 6s ease-in-out infinite;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: rgba(11, 100, 214, 0.08);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-track .dot {
  color: var(--primary);
  font-size: 0.6rem;
}

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

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.section-about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,100,214,0.07), transparent 70%);
  pointer-events: none;
}

.about-visual {
  position: relative;
  padding: 20px;
}

.about-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-blue);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.about-card.ac-primary {
  background: linear-gradient(135deg, rgba(11,100,214,0.12), rgba(25,118,242,0.06));
  transform: translateX(0);
}

.about-card.ac-secondary {
  background: linear-gradient(135deg, rgba(11,100,214,0.07), rgba(25,118,242,0.03));
  transform: translateX(24px);
}

.about-card:hover { transform: translateX(4px) !important; border-color: var(--primary); }

.about-card-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.about-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

.about-badge {
  position: absolute;
  top: -10px;
  right: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.about-badge-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.about-deco-svg {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 160px;
  opacity: 0.5;
  pointer-events: none;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pillar-item i { color: var(--primary-light); font-size: 0.85rem; }

/* ================================================================
   MOTTO (3T) SECTION
   ================================================================ */
.section-motto {
  padding: 100px 0;
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.section-motto::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(11,100,214,0.08), transparent 70%);
  pointer-events: none;
}

.motto-carousel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  /* Hard clip — side cards must not bleed into adjacent sections */
  overflow: hidden;
  /* Vertical padding so active card glow/shadow isn't clipped */
  padding: 20px 0 8px;
}

/* Fade masks so side cards dissolve into section bg rather than hard-cut */
.motto-carousel-wrapper::before,
.motto-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.motto-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-800) 30%, transparent);
}
.motto-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-800) 30%, transparent);
}

.motto-track {
  /* GSAP takes over: absolute-positioned children, fixed height set by JS */
  position: relative;
  width: 100%;
  /* display:block — JS overrides flex */
}

.motto-card {
  /* Base styles — GSAP sets position, x, scale, opacity */
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  /* position:absolute is set by GSAP */
  overflow: hidden;
  /* Only non-transform transitions allowed here (no transform!) */
  transition: border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  /* Prevent text-select during swipe */
  user-select: none;
  -webkit-user-select: none;
}

.motto-card.active {
  /* NO transform here — GSAP owns all transforms */
  border-color: var(--primary);
  box-shadow: 0 0 48px var(--primary-glow), var(--shadow-card);
  background: rgba(11, 100, 214, 0.08);
}

.mc-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(11,100,214,0.15), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.motto-card.active .mc-glow { opacity: 1; }

.mc-icon-wrap {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}

.mc-icon-svg { width: 100%; height: 100%; }

.mc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.mc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mc-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.mc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.mc-features li i { color: var(--primary-light); font-size: 0.75rem; }

.motto-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.mc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  background: var(--surface-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.mc-btn:hover { border-color: var(--primary); color: var(--accent); background: rgba(11,100,214,0.1); }

.mc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-400);
  cursor: pointer;
  transition: var(--transition);
}

.mc-dot.active {
  background: var(--primary-light);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Mobile: single card view — GSAP hides side cards via opacity:0 */
@media (max-width: 767px) {
  .motto-carousel-wrapper {
    overflow: hidden;
    clip-path: none;
  }
  .motto-carousel-wrapper::before,
  .motto-carousel-wrapper::after {
    display: none;
  }
  .motto-card.active {
    box-shadow: 0 0 32px var(--primary-glow), var(--shadow-card);
  }
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.section-services {
  padding: 100px 0;
  position: relative;
}

.service-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-row:last-child { border-bottom: none; }

.service-illustration {
  padding: 10px;
}

.svc-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(11,100,214,0.15));
  transition: transform 0.5s ease;
}

.svc-svg:hover { transform: scale(1.02); }

.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.service-badge.talent {
  background: rgba(74,222,128,0.1);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.25);
}
.service-badge.tech {
  background: rgba(11,100,214,0.12);
  color: var(--accent);
  border: 1px solid var(--border-blue);
}
.service-badge.transform {
  background: rgba(249,115,22,0.1);
  color: #FB923C;
  border: 1px solid rgba(249,115,22,0.25);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.svc-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.svc-feat:hover { border-color: var(--border-blue); background: var(--surface-glass-hover); color: var(--text-primary); }
.svc-feat i { color: var(--primary-light); font-size: 0.85rem; min-width: 16px; }

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

/* ================================================================
   STATS COUNTER SECTION
   ================================================================ */
.section-stats {
  padding: 80px 0;
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.stats-bg-blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.blob-left {
  background: radial-gradient(circle, rgba(11,100,214,0.15), transparent);
  left: -150px; top: -100px;
}

.blob-right {
  background: radial-gradient(circle, rgba(25,118,242,0.1), transparent);
  right: -150px; bottom: -100px;
}

.stat-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(11,100,214,0.15);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.section-why {
  padding: 100px 0;
}

.why-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11,100,214,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.why-card:hover::after { opacity: 1; }

.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative;
  z-index: 1;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.why-card-line {
  position: absolute;
  bottom: 0; left: 26px; right: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover .why-card-line { opacity: 1; }

/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.section-process {
  padding: 100px 0;
  background: var(--dark-800);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.pt-connector {
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--border-blue) 50%, transparent 100%);
  opacity: 0.4;
}

.pt-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.pt-node {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--primary-glow);
}

.pt-node-inner {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
}

.pt-card {
  flex: 1;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.pt-card:hover {
  border-color: var(--border-blue);
  background: var(--surface-glass-hover);
  transform: translateX(4px);
}

.pt-card-icon {
  font-size: 1.2rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.pt-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pt-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.section-testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testi-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }

.testi-quote {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testi-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 3px 14px var(--primary-glow);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.testi-role { font-size: 0.78rem; color: var(--text-muted); }

.testi-stars {
  margin-left: auto;
  color: #FBBF24;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.testi-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.tc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  background: var(--surface-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tc-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

@media (max-width: 768px) {
  .testi-card { flex: 0 0 90%; }
}

/* ================================================================
   CLIENTS STRIP
   ================================================================ */
.section-clients {
  padding: 60px 0;
  background: var(--dark-800);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.clients-track { overflow: hidden; }

.clients-scroll {
  display: flex;
  gap: 16px;
  animation: clientsScroll 25s linear infinite;
  width: max-content;
}

.client-logo {
  flex: 0 0 auto;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-logo:hover { border-color: var(--border-blue); background: var(--surface-glass-hover); }

.client-logo span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.3s;
}

.client-logo:hover span { color: var(--accent); }

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

/* ================================================================
   TEAM SECTION
   ================================================================ */
.section-team {
  padding: 100px 0;
}

.team-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.team-avatar-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 20px;
}

.team-avatar img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}




.team-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid transparent;
  transition: var(--transition);
}

.team-card:hover .team-glow {
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
}

.team-bio { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }

.team-socials { display: flex; justify-content: center; gap: 10px; }

.team-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.team-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.careers-cta-text { color: var(--text-secondary); font-size: 0.95rem; }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.section-faq {
  padding: 100px 0;
  background: var(--dark-800);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--border-blue); }

.faq-question {
  width: 97%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 0.75rem;
  color: var(--primary-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.section-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050D1A 0%, #0B1F4A 50%, #050D1A 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,100,214,0.3), transparent 70%);
  left: -150px; top: -150px;
}

.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,118,242,0.2), transparent 70%);
  right: -100px; bottom: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(123,184,255,0.1);
  border: 1px solid rgba(123,184,255,0.2);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.section-contact {
  padding: 100px 0;
  position: relative;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(11,100,214,0.05), transparent);
  pointer-events: none;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(11,100,214,0.12);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ci-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.ci-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-value:hover { color: var(--accent); }

.contact-socials {
  display: flex;
  gap: 10px;
}

.cs-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.cs-link:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

/* Contact Form */
.contact-form-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Floating label inputs */
.float-input-group {
  position: relative;
}

.float-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px 16px 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.float-textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 22px;
}

.float-select option {
  background: var(--dark-700);
  color: var(--text-primary);
}

.float-input:focus {
  border-color: var(--primary);
  background: rgba(11,100,214,0.06);
  box-shadow: 0 0 0 3px rgba(11,100,214,0.12);
}

.float-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.92rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
}

.float-textarea + .float-label,
.float-textarea ~ .float-label { top: 20px; transform: none; }

.float-input:focus ~ .float-label,
.float-input:not(:placeholder-shown) ~ .float-label {
  top: 10px;
  transform: none;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.float-textarea:focus ~ .float-label,
.float-textarea:not(:placeholder-shown) ~ .float-label {
  top: 8px;
  font-size: 0.72rem;
  color: var(--accent);
}

.input-line {
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: width 0.3s ease;
}

.float-input:focus ~ .input-line { width: 100%; }

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  pointer-events: none;
}

.invalid-feedback {
  display: none;
  font-size: 0.78rem;
  color: #F87171;
  margin-top: 4px;
  padding-left: 4px;
}

.float-input.is-invalid { border-color: #F87171; }
.float-input.is-invalid ~ .invalid-feedback { display: block; }

.btn-form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.form-success-msg {
  text-align: center;
  padding: 30px;
  color: #4ADE80;
}

.form-success-msg i { font-size: 2rem; margin-bottom: 12px; }
.form-success-msg p { color: var(--text-secondary); font-size: 0.95rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark-900);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width 0.3s ease;
  display: inline-block;
}

.footer-links a:hover { color: var(--text-primary); }
.footer-links a:hover::before { width: 12px; }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.fci-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fci-item i { color: var(--primary-light); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

.fci-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.fci-item a:hover { color: var(--accent); }

.newsletter-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-blue);
}

.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.nl-input::placeholder { color: var(--text-muted); }

.nl-btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.nl-btn:hover { background: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-tagline-bottom {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  background: rgba(8, 15, 30, 0.9);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* ================================================================
   FLOATING PARTICLES
   ================================================================ */
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(123, 184, 255, 0.4);
  animation: particleFloat linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(var(--drift, 50px)); opacity: 0; }
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 992px) {
  .hero-visual { margin-top: 40px; }
  .section-about, .section-services, .section-why, .section-process,
  .section-testimonials, .section-team, .section-faq, .section-contact { padding: 70px 0; }

  .about-card.ac-secondary { transform: translateX(12px); }

  .process-timeline { padding-left: 10px; }
  .pt-connector { left: 28px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }

  .about-card-stack { gap: 12px; }
  .about-badge { display: none; }

  .testi-card { flex: 0 0 85%; }

  .contact-form-card { padding: 28px 20px; }

  .footer-top { padding: 50px 0 40px; }
  .footer-tagline { max-width: 100%; }

  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white-cta, .btn-ghost-white { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.72rem; }
  .section-title { font-size: 1.65rem; }
  .stat-card { padding: 20px 14px; }
  .about-pillars { grid-template-columns: 1fr; }
  .service-features-grid { grid-template-columns: 1fr; }
}

/* Ultrawide */
@media (min-width: 1600px) {
  .container { max-width: 1400px; }
}

/* ================================================================
   AOS OVERRIDE — Ensure correct theming
   ================================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }