

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #050508;
  color: #e2e8f0;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: #0099cc; border-radius: 3px; }

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --cyan: #00d4ff;
  --blue: #0066ff;
  --dark: #050508;
  --dark-2: #080810;
  --dark-3: #0d0d14;
  --border: rgba(0,212,255,0.15);
  --muted: #8892a4;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.3); }
  50%       { box-shadow: 0 0 50px rgba(0,212,255,0.7), 0 0 80px rgba(0,102,255,0.3); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinRev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes progressFill {
  from { width: 0; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.3); opacity: 1; }
}
@keyframes wave {
  0%   { d: path("M0,80 Q150,30 300,80 Q450,130 600,80 Q750,30 900,80"); }
  50%  { d: path("M0,80 Q150,130 300,80 Q450,30 600,80 Q750,130 900,80"); }
  100% { d: path("M0,80 Q150,30 300,80 Q450,130 600,80 Q750,30 900,80"); }
}
@keyframes ripple {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #00d4ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2.5s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,212,255,0.25);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: rgba(13,13,20,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.1);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   NAVBAR - UPDATED FOR MOBILE
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #00d4ff, #0066ff);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger - FIXED */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1.5px solid rgba(0,212,255,0.25);
  padding: 8px 10px;
  border-radius: 10px;
  transition: border-color 0.2s;
  position: relative;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}
.hamburger:hover { border-color: var(--cyan); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #cbd5e1;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay - FIXED */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  display: block;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile drawer - FIXED */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: #0d0d14;
  border-left: 1px solid rgba(0,212,255,0.15);
  z-index: 1000;
  padding: 30px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 28px;
  object-fit: contain;
}
.mobile-drawer .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.mobile-drawer .close-btn:hover {
  color: #fff;
}
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #00d4ff;
  background: rgba(0,212,255,0.08);
}

/* ============================================
   BANNER / HERO SLIDER
   ============================================ */

/* Slide-in text animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes progressAnim {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(8px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(-12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

.banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #050508;
}

/* ---- Progress bar ---- */
.banner-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 100;
}
.banner-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 0 2px 2px 0;
}
.banner-progress-fill.running {
  animation: progressAnim 6s linear forwards;
}

/* ---- Canvas ---- */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}

/* ---- Each slide ---- */
.bslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 1;
}
.bslide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}
.bslide.leaving {
  opacity: 0;
  z-index: 2;
}

/* ---- Background image with Ken Burns ---- */
.bslide-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bslide.active .bslide-bg {
  animation: kenBurns 8s ease-out forwards;
}

/* ---- Dark overlay ---- */
.bslide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---- Floating badge (top right) ---- */
.bslide-badge {
  position: absolute;
  top: 100px; right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,13,20,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbd5e1;
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}
.bslide.active .bslide-badge {
  opacity: 1;
  animation: badgePop 0.5s ease 0.6s both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ---- Content area ---- */
.bslide-content {
  position: absolute;
  z-index: 10;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 80px;
  max-width: 720px;
}

.bslide-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: 72px;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}
.bslide.active .bslide-num { opacity: 1; }

.bslide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1.5px solid;
  margin-bottom: 18px;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
.bslide.active .bslide-tag {
  opacity: 1;
  animation: slideRight 0.6s ease 0.15s both;
}

.bslide-heading {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}
.bslide.active .bslide-heading {
  opacity: 1;
  animation: slideUp 0.7s ease 0.2s both;
}

.bslide-sub {
  font-size: 1rem;
  color: rgba(203,213,225,0.8);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.bslide.active .bslide-sub {
  opacity: 1;
  animation: slideUp 0.7s ease 0.3s both;
}

.bslide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.bslide.active .bslide-btns {
  opacity: 1;
  animation: slideUp 0.7s ease 0.4s both;
}

/* Stats row */
.bslide-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.bslide.active .bslide-stats {
  opacity: 1;
  animation: slideUp 0.7s ease 0.5s both;
}
.bslide-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px 0 0;
}
.bstat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.bstat-label {
  font-size: 0.72rem;
  color: rgba(148,163,184,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bslide-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin: 0 28px 0 0;
  flex-shrink: 0;
}

/* ---- Floating metric card (right side) ---- */
.bslide-floatcard {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(1deg);
  z-index: 10;
  width: 220px;
  background: rgba(13,13,20,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid;
  border-radius: 20px;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.5s ease 0.6s;
}
.bslide.active .bslide-floatcard {
  opacity: 1;
  animation: cardFloat 5s ease-in-out infinite, slideRight 0.7s ease 0.6s both;
  animation-fill-mode: both;
}

.floatcard-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.floatcard-title { font-size: 0.76rem; color: #64748b; font-weight: 500; margin-bottom: 6px; }
.floatcard-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.floatcard-bar {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}
.floatcard-bar div {
  height: 100%;
  border-radius: 2px;
  opacity: 0.8;
}
.floatcard-note { font-size: 0.72rem; color: #475569; }

/* ---- Arrow buttons ---- */
.banner-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(13,13,20,0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #cbd5e1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.banner-arrow:hover {
  background: rgba(0,212,255,0.15);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.banner-arrow-left  { left: 28px; }
.banner-arrow-right { right: 28px; }

/* ---- Bottom dot controls ---- */
.banner-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,13,20,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
}
.banner-dot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 100px;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.banner-dot-item:hover { background: rgba(255,255,255,0.06); }
.banner-dot-item.active { background: rgba(0,212,255,0.12); }

.bdot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
  flex-shrink: 0;
}
.banner-dot-item.active .bdot {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,212,255,0.6);
  width: 22px;
  border-radius: 4px;
}
.bdot-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(148,163,184,0.5);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  white-space: nowrap;
}
.banner-dot-item.active .bdot-label { color: var(--cyan); }

/* ---- Scroll hint ---- */
.banner-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.banner-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748b;
  writing-mode: vertical-rl;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(0,212,255,0.7);
  border-radius: 2px;
  animation: wheelScroll 1.8s ease-in-out infinite;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bslide-floatcard { display: none; }
  .bslide-content { padding: 0 60px; max-width: 100%; }
}
@media (max-width: 768px) {
  .bslide-content { padding: 0 20px; }
  .bslide-heading { font-size: clamp(2rem, 9vw, 3rem); }
  .bslide-badge { top: 80px; right: 16px; }
  .banner-arrow { width: 40px; height: 40px; }
  .banner-arrow-left  { left: 12px; }
  .banner-arrow-right { right: 12px; }
  .banner-controls { padding: 6px 12px; gap: 4px; }
  .bdot-label { display: none; }
  .banner-scroll-hint { display: none; }
  .bslide-num { display: none; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  padding: 112px 0;
  background: #080810;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--cyan);
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(60px);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text {
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: clamp(0.85rem, 2.5vw, 0.97rem);
}

/* Progress bars */
.skill-bars { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.skill-bar-info {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; margin-bottom: 8px;
}
.skill-bar-info span:first-child { color: #cbd5e1; font-weight: 500; }
.skill-bar-info span:last-child { color: var(--cyan); font-weight: 600; }
.skill-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease;
}

/* Stats grid */
.about-right { display: flex; flex-direction: column; gap: 20px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  text-align: center;
  padding: 24px;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: #64748b; font-size: 0.82rem; font-weight: 500; margin-top: 4px; }

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card { padding: 20px; }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1.5px solid rgba(0,212,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.glass-card:hover .value-icon {
  background: rgba(0,212,255,0.2);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,212,255,0.3);
}
.value-card h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-card p { font-size: 0.78rem; color: #64748b; line-height: 1.6; }

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 112px 0;
  background: #050508;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-sub {
  color: #64748b;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::after { opacity: 1; }

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-icon-ring {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: rgba(0,212,255,0.1);
  border: 1.5px solid rgba(0,212,255,0.25);
  transition: all 0.3s;
  flex-shrink: 0;
}
.glass-card:hover .service-icon-ring {
  background: rgba(0,212,255,0.2);
  box-shadow: 0 0 20px rgba(0,212,255,0.25);
}
.service-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.service-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.glass-card:hover .service-link { gap: 8px; }

/* CTA Banner */
.services-cta {
  margin-top: 60px;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,102,255,0.06));
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,212,255,0.08), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0,102,255,0.08), transparent 50%);
}
.services-cta h3 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 10px; position: relative; z-index: 1; }
.services-cta p { color: #64748b; margin-bottom: 24px; position: relative; z-index: 1; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
#products {
  padding: 112px 0;
  background: #080810;
  position: relative;
  overflow: hidden;
}
#products::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: #00ffa0;
  opacity: 0.03;
  border-radius: 50%;
  filter: blur(60px);
}

.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.12);
}

.product-img-wrap {
  height: 200px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 24px;
}
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.15);
}
.product-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ============================================
   CLIENTS SECTION — UPDATED WITH LOGOS (7 CLIENTS)
   ============================================ */
#clients {
  padding: 112px 0;
  background: #050508;
  position: relative;
  overflow: hidden;
}
#clients::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: #0066ff;
  opacity: 0.03;
  border-radius: 50%;
  filter: blur(80px);
}

.clients-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* .client-card {
  padding: 24px 20px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.client-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.1);
} */

.client-logo-wrap {
  width: 100%;
  max-width: 140px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: border-color 0.3s;
}
.client-card:hover .client-logo-wrap {
  border-color: rgba(0,212,255,0.3);
}

.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.3s ease;
}
.client-card:hover .client-logo-img {
  transform: scale(1.05);
}

/* .client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
} */
/* .client-industry {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
} */
/* ===========================
   CLIENT CARD
=========================== */

.client-card{
    position:relative;
    overflow:hidden;

    padding:35px 25px;

    text-align:center;

    border-radius:22px;

    background:linear-gradient(180deg,#111827,#0b1120);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;
}

.client-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 20px 50px rgba(0,212,255,.20);
}

/* ===========================
   LOGO
=========================== */

.client-logo{

    width:120px;
    height:120px;

    margin:0 auto 22px;

    border-radius:50%;

    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 12px 35px rgba(0,0,0,.18),
    0 0 30px rgba(0,212,255,.15);

    transition:.4s;
}

.client-card:hover .client-logo{

    transform:scale(1.08) rotate(5deg);

    box-shadow:
    0 15px 40px rgba(0,212,255,.35);
}

.client-logo-img{
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.4s;
}

.client-card:hover .client-logo-img{

    transform:scale(1.08);
}

/* ===========================
   NAME
=========================== */

.client-name{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:14px;
}

/* ===========================
   INDUSTRY
=========================== */

.client-industry{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 20px;

    border-radius:50px;

    background:rgba(0,212,255,.10);

    color:#00d4ff;

    border:1px solid rgba(0,212,255,.25);

    font-size:14px;

    font-weight:600;

    transition:.3s;
}

.client-card:hover .client-industry{

    background:#00d4ff;

    color:#081018;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.client-logo{

    width:90px;
    height:90px;
}

.client-name{

    font-size:18px;
}

.client-industry{

    font-size:12px;

    padding:6px 16px;
}

}



.client-btn {
  margin-top: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #64748b;
  padding: 4px 16px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.client-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Testimonial */
.clients-testimonial {
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-card {
  padding: 36px 40px;
  text-align: center;
  border-color: rgba(0,212,255,0.15);
}
.testimonial-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: #64748b;
}

/* ============================================
   BLOGS SECTION
   ============================================ */
#blogs {
  padding: 112px 0;
  background: #080810;
  position: relative;
  overflow: hidden;
}
#blogs::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: #a855f7;
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(60px);
}

.blogs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.blogs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.blogs-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }

.blogs-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
}

.blog-card { cursor: pointer; overflow: hidden; }

.blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, transparent 60%);
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.glass-card:hover .blog-img-wrap img { transform: scale(1.06); }

.blog-featured-img { height: 260px; }
.blog-small-img { height: 140px; }
.blog-grid-img { height: 180px; }

.blog-body { padding: 20px; }
.blog-meta-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.glass-card:hover .blog-title { color: var(--cyan); }
.blog-excerpt {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: #475569;
}
.blog-footer span { display: flex; align-items: center; gap: 5px; }

.blog-small-side { display: flex; flex-direction: column; gap: 20px; }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: 112px 0;
  background: #050508;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0.04;
  filter: blur(80px);
  border-radius: 50%;
}
#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(0,212,255,0.1);
  border: 1.5px solid rgba(0,212,255,0.25);
}
.contact-info-label { font-size: 0.75rem; color: #475569; margin-bottom: 3px; }
.contact-info-value { color: #fff; font-weight: 600; font-size: 0.9rem; }

.map-placeholder {
  border-radius: 18px;
  height: 160px;
  border: 1px solid var(--border);
  background: rgba(13,13,20,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-pin { font-size: 30px; position: relative; z-index: 1; animation: pulseGlow 2.5s ease-in-out infinite; }
.map-placeholder p { font-size: 0.82rem; color: #475569; position: relative; z-index: 1; }

.social-row { display: flex; gap: 8px; }
.social-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,212,255,0.15);
  background: rgba(0,212,255,0.04);
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.social-btn:hover { color: var(--cyan); border-color: rgba(0,212,255,0.4); }

/* Form */
.contact-form-card { padding: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #475569;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  color: #fff;
  padding: 13px 17px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 44px;
  touch-action: manipulation;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #334155; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-select option { background: #0d0d14; color: #fff; }
.form-textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.success-state {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  border: 2px solid rgba(74,222,128,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  animation: pulseGlow 2s ease-in-out infinite;
}
.success-state h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.success-state p { color: #64748b; margin-bottom: 20px; }
.btn-reset {
  font-size: 0.85rem;
  color: var(--cyan);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.btn-reset:hover { color: #00b8d4; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050508;
  border-top: 1px solid rgba(0,212,255,0.1);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand { max-width: 280px; }
.footer-logo { height: 38px; object-fit: contain; margin-bottom: 20px; }
.footer-desc { color: #475569; font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(0,212,255,0.2);
  background: none;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.footer-social:hover { color: var(--cyan); border-color: rgba(0,212,255,0.5); }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #475569;
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--cyan); }

/* Newsletter */
.footer-newsletter {
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 24px 28px;
  background: rgba(0,212,255,0.03);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-newsletter-text h4 { font-weight: 700; margin-bottom: 4px; }
.footer-newsletter-text p { font-size: 0.85rem; color: #475569; }
.footer-newsletter-form { display: flex; gap: 8px; flex: 1; min-width: 260px; }
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  color: #fff;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-form input:focus { border-color: var(--cyan); }
.footer-newsletter-form input::placeholder { color: #334155; }
.footer-newsletter-form .btn-primary { padding: 10px 22px; font-size: 0.85rem; border-radius: 10px; white-space: nowrap; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #334155; }

/* ============================================
   FLOATING WHATSAPP - FIXED FOR MOBILE
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999999;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  border: 4px solid #ffffff;
  transition: .3s;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  /* Global */
  .nav-container { padding: 0 20px; }
  
  /* About */
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-heading { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  
  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-heading { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  
  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Clients */
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  
  /* Blogs */
  .blogs-featured { grid-template-columns: 1fr; gap: 16px; }
  .blog-small-side { flex-direction: row; gap: 16px; }
  .blog-small-img { height: 140px; }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  /* Global spacing */
  body { font-size: 0.95rem; }
  
  /* Sections padding */
  #about, #services, #products, #clients, #blogs, #contact {
    padding: 80px 0;
  }
  
  /* Navbar - Mobile fixes */
  .nav-links, .nav-cta { 
    display: none !important; 
  }
  .hamburger { 
    display: flex !important; 
  }
  .mobile-drawer { width: 260px; }
  
  /* Banner / Hero */
  .banner-section { min-height: 500px; }
  .bslide-content { padding: 0 16px; }
  .bslide-heading { font-size: clamp(1.5rem, 7vw, 2.5rem); line-height: 1.2; }
  .bslide-sub { font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
  .bslide-btns { flex-direction: column; gap: 12px; }
  .bslide-btns .btn-primary,
  .bslide-btns .btn-outline { width: 100%; justify-content: center; }
  .bslide-badge { top: 60px; right: 12px; font-size: 0.7rem; padding: 6px 12px; }
  .banner-scroll-hint { display: none; }
  
  /* About section */
  .about-container { grid-template-columns: 1fr; gap: 36px; padding: 0 16px; }
  .about-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .about-text { font-size: 0.9rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-num { font-size: 1.8rem; }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 16px; }
  
  /* Services */
  .services-container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .section-tag { font-size: 0.65rem; }
  .section-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-sub { font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 20px; }
  .service-icon-ring { width: 48px; height: 48px; font-size: 20px; }
  .service-title { font-size: 1rem; }
  .service-desc { font-size: 0.8rem; }
  .services-cta { padding: 28px 20px; margin-top: 40px; }
  .services-cta h3 { font-size: 1.4rem; }
  .services-cta p { font-size: 0.9rem; }
  
  /* Products */
  .products-container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img-wrap { height: 180px; }
  .product-body { padding: 16px; }
  .product-title { font-size: 1rem; }
  .product-desc { font-size: 0.8rem; }
  
  /* Clients */
  .clients-container { padding: 0 16px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-card { padding: 16px 12px 12px; }
  .client-logo-wrap { height: 52px; max-width: 100px; margin-bottom: 6px; }
  .client-name { font-size: 0.9rem; }
  .client-industry { font-size: 0.7rem; }
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 0.95rem; }
  
  /* Blogs */
  .blogs-container { padding: 0 16px; }
  .blogs-header { flex-direction: column; margin-bottom: 32px; gap: 16px; }
  .blogs-header h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .blogs-featured { grid-template-columns: 1fr; gap: 16px; }
  .blog-featured-img { height: 200px; }
  .blog-small-side { flex-direction: column; gap: 16px; }
  .blog-small-img { height: 120px; }
  .blogs-grid { grid-template-columns: 1fr; gap: 12px; }
  .blog-grid-img { height: 160px; }
  .blog-body { padding: 16px; }
  .blog-title { font-size: 0.95rem; }
  .blog-excerpt { font-size: 0.78rem; }
  
  /* Contact */
  .contact-container { padding: 0 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-card { padding: 24px 16px; }
  .contact-info-cards { gap: 12px; }
  .contact-info-card { padding: 14px 16px; }
  .contact-info-icon { width: 40px; height: 40px; font-size: 16px; }
  .contact-info-value { font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-input, .form-select, .form-textarea { padding: 11px 14px; font-size: 0.9rem; }
  .form-textarea { min-height: 100px; }
  .btn-submit { padding: 14px; font-size: 0.95rem; }
  .map-placeholder { height: 140px; }
  
  /* Footer */
  .footer-container { padding: 48px 16px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter { padding: 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-newsletter-form { flex-direction: column; min-width: auto; }
  .footer-newsletter-form input { width: 100%; }
  .footer-newsletter-form .btn-primary { width: 100%; padding: 12px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; border-top: none; gap: 8px; }
  
  /* Buttons */
  .btn-primary, .btn-outline { 
    padding: 12px 22px;
    font-size: 0.85rem;
  }
  
  /* WhatsApp Button - Mobile */
  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    right: 16px !important;
    bottom: 80px !important;
    border: 3px solid #ffffff !important;
  }
  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — SMALL MOBILE (600px)
   ============================================ */
@media (max-width: 600px) {
  /* Global */
  html { font-size: 14px; }
  
  /* Sections */
  #about, #services, #products, #clients, #blogs, #contact {
    padding: 60px 0;
  }
  
  /* Headings */
  .bslide-heading { font-size: clamp(1.2rem, 6vw, 2rem); }
  .about-heading { font-size: clamp(1.4rem, 5vw, 2.2rem); }
  .section-heading { font-size: clamp(1.4rem, 5vw, 2.2rem); }
  .services-cta h3 { font-size: 1.2rem; }
  
  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 16px; }
  
  /* Products */
  .product-img-wrap { height: 160px; }
  
  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-card { padding: 12px 10px; gap: 6px; }
  .client-logo-wrap { height: 48px; margin-bottom: 4px; }
  .client-name { font-size: 0.8rem; }
  
  /* Contact form */
  .form-label { font-size: 0.7rem; margin-bottom: 6px; }
  .form-input, .form-textarea { padding: 10px 12px; font-size: 0.85rem; }
  
  /* WhatsApp */
  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    right: 12px !important;
    bottom: 70px !important;
  }
  .whatsapp-float svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — EXTRA SMALL (480px)
   ============================================ */
@media (max-width: 480px) {
  /* Global padding */
  .nav-container, .services-container, .products-container,
  .clients-container, .blogs-container, .contact-container,
  .footer-container {
    padding: 0 12px;
  }
  
  /* Banner */
  .banner-section { min-height: 450px; }
  .bslide-content { padding: 0 12px; }
  .bslide-heading { font-size: clamp(1.1rem, 5vw, 1.8rem); }
  .bslide-sub { font-size: 0.8rem; margin-bottom: 16px; }
  .bslide-btns { gap: 10px; }
  .bslide-btns .btn-primary,
  .bslide-btns .btn-outline { 
    width: 100%;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .bslide-badge { display: none; }
  
  /* Stats grid */
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 12px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }
  
  /* Values grid */
  .values-grid { grid-template-columns: 1fr; }
  
  /* Services cards */
  .service-card { padding: 14px; }
  .service-icon-ring { width: 44px; height: 44px; font-size: 18px; }
  .service-title { font-size: 0.95rem; }
  .service-desc { font-size: 0.75rem; }
  .service-tags { gap: 4px; }
  
  /* Clients grid - Single column for extra small */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .client-card { padding: 10px 8px; gap: 4px; }
  .client-logo-wrap { height: 44px; max-width: 80px; margin-bottom: 2px; }
  .client-name { font-size: 0.75rem; }
  
  /* Blog cards */
  .blog-featured-img { height: 180px; }
  .blog-grid-img { height: 140px; }
  .blog-body { padding: 12px; }
  .blog-title { font-size: 0.9rem; }
  .blog-excerpt { font-size: 0.75rem; }
  
  /* Contact */
  .contact-info-icon { width: 36px; height: 36px; font-size: 14px; }
  .contact-info-value { font-size: 0.8rem; }
  .contact-form-card { padding: 16px 12px; }
  .form-input, .form-textarea { padding: 9px 12px; font-size: 0.8rem; }
  .form-textarea { min-height: 90px; }
  .btn-submit { padding: 12px; font-size: 0.85rem; }
  
  /* Buttons */
  .btn-primary, .btn-outline { 
    padding: 10px 18px;
    font-size: 0.75rem;
    border-radius: 8px;
  }
  .btn-primary svg, .btn-outline svg { width: 12px; height: 12px; }
  
  /* Footer */
  .footer-container { padding: 40px 12px 24px; }
  .footer-logo { height: 32px; margin-bottom: 14px; }
  .footer-desc { font-size: 0.75rem; margin-bottom: 14px; }
  .footer-col h4 { font-size: 0.75rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.75rem; gap: 3px; }
  .footer-socials { gap: 6px; }
  .footer-social { width: 32px; height: 32px; font-size: 0.65rem; }
  
  /* WhatsApp */
  .whatsapp-float {
    width: 48px !important;
    height: 48px !important;
    right: 10px !important;
    bottom: 60px !important;
    border: 2px solid #ffffff !important;
  }
  .whatsapp-float svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  /* Mobile drawer */
  .mobile-drawer { width: 240px; padding: 24px 20px 20px; }
  .mobile-drawer-logo { height: 28px; margin-bottom: 24px; }
  .mobile-nav-link { padding: 10px 14px; font-size: 0.9rem; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — ULTRA SMALL (360px)
   ============================================ */
@media (max-width: 360px) {
  /* Global */
  html { font-size: 13px; }
  
  /* Headings */
  .bslide-heading { font-size: clamp(1rem, 4vw, 1.6rem); }
  .section-heading { font-size: clamp(1.2rem, 4vw, 2rem); }
  
  /* Sections */
  #about, #services, #products, #clients, #blogs, #contact {
    padding: 50px 0;
  }
  
  /* Padding */
  .nav-container, .services-container, .products-container,
  .clients-container, .blogs-container, .contact-container,
  .footer-container {
    padding: 0 10px;
  }
  
  /* Banner */
  .bslide-content { padding: 0 10px; }
  .bslide-sub { font-size: 0.75rem; }
  
  /* Cards */
  .service-card { padding: 12px; }
  .product-body { padding: 12px; }
  .client-card { padding: 8px 6px; }
  
  /* Stats */
  .stat-num { font-size: 1.4rem; }
  
  /* Clients grid - 2 columns for consistency */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* WhatsApp */
  .whatsapp-float {
    width: 44px !important;
    height: 44px !important;
    right: 8px !important;
    bottom: 50px !important;
    border: 2px solid #ffffff !important;
  }
  .whatsapp-float svg {
    width: 22px !important;
    height: 22px !important;
  }
}