:root {
  --magenta: #E91E63;
  --deep-pink: #C2185B;
  --orange: #FF5722;
  --soft-orange: #FF7043;
  --lime: #CDDC39;
  --neon-lime: #E6FF00;
  --bg-dark: #0F0F1A;
  --bg-mid: #1A1A2E;
  --grad-primary: linear-gradient(135deg, #E91E63, #FF5722, #CDDC39);
  --grad-glow: linear-gradient(90deg, #E91E63, #FF7043, #CDDC39);
  --grad-hero: linear-gradient(135deg, #0F0F1A, #1A1A2E);
  --text-light: #F0F0F0;
  --text-muted: #8888AA;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

 
/* ============================================================
   PAGE LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: #0F0F1A;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.fade-out { opacity: 0; visibility: hidden; }

.loader-ring {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-t {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(233,30,99,0.6)) drop-shadow(0 0 40px rgba(255,87,34,0.3));
  animation: tAppear 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0.3);
  position: relative;
  z-index: 2;
}

@keyframes tAppear {
  0% { opacity: 0; transform: scale(0.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* Orbiting dots */
.orbit-container {
  position: absolute;
  inset: 0;
  animation: orbit 3s linear infinite;
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: both;
}

@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitFadeIn { from { opacity: 0; } to { opacity: 1; } }

.orbit-container { animation: orbit 3s linear infinite, orbitFadeIn 0.5s 1.2s forwards; }

.dot {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.dot-1 { width: 12px; height: 12px; background: var(--magenta); box-shadow: 0 0 10px var(--magenta); transform: translate(-50%,-50%) translateX(85px); }
.dot-2 { width: 8px; height: 8px; background: var(--orange); box-shadow: 0 0 8px var(--orange); transform: translate(-50%,-50%) rotate(72deg) translateX(85px); }
.dot-3 { width: 14px; height: 14px; background: var(--lime); box-shadow: 0 0 12px var(--lime); transform: translate(-50%,-50%) rotate(144deg) translateX(85px); }
.dot-4 { width: 6px; height: 6px; background: var(--soft-orange); box-shadow: 0 0 6px var(--soft-orange); transform: translate(-50%,-50%) rotate(216deg) translateX(85px); }
.dot-5 { width: 10px; height: 10px; background: var(--magenta); box-shadow: 0 0 8px var(--magenta); transform: translate(-50%,-50%) rotate(288deg) translateX(85px); }

/* Counter-rotate inner orbit */
.orbit-inner {
  position: absolute;
  inset: 20px;
  animation: orbit 2s linear infinite reverse, orbitFadeIn 0.5s 1.5s forwards;
  opacity: 0;
}

.dot-i1 { width: 5px; height: 5px; background: var(--neon-lime); box-shadow: 0 0 8px var(--neon-lime); transform: translate(-50%,-50%) translateX(60px); }
.dot-i2 { width: 7px; height: 7px; background: var(--deep-pink); box-shadow: 0 0 8px var(--deep-pink); transform: translate(-50%,-50%) rotate(120deg) translateX(60px); }
.dot-i3 { width: 4px; height: 4px; background: var(--orange); box-shadow: 0 0 6px var(--orange); transform: translate(-50%,-50%) rotate(240deg) translateX(60px); }

.loader-brand {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 6px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(233,30,99,0.4));
  min-height: 36px;
  overflow: hidden;
}

.loader-sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeInUp 0.5s 3s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,99,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad-glow);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--grad-primary);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233,30,99,0.4);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-light); transition: 0.3s; }

/* ============================================================
   MAIN CONTENT (hidden during load)
   ============================================================ */
#main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}
#main-content.visible { opacity: 1; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5%;
}

/* Animated background dots */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatDot linear infinite;
}

@keyframes floatDot {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(233,30,99,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 30%, rgba(255,87,34,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(205,220,57,0.04) 0%, transparent 60%);
  animation: meshAnim 8s ease-in-out infinite alternate;
}

@keyframes meshAnim {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-left { }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,99,0.1);
  border: 1px solid rgba(233,30,99,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 28px;
  animation: slideInLeft 0.8s 0.3s both;
}

.hero-tag-dot { width: 6px; height: 6px; background: var(--magenta); border-radius: 50%; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 22px;
  animation: slideInLeft 0.8s 0.5s both;
}

.hero-heading .grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: slideInLeft 0.8s 0.7s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s 0.9s both;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--grad-primary);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(233,30,99,0.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  padding: 13px 32px;
  background: transparent;
  border: 1px solid rgba(233,30,99,0.5);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn-secondary:hover {
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(233,30,99,0.3);
  transform: translateY(-2px);
  color: #fff;
}
 

/* Hero Right */
.hero-right {
  position: relative;
  animation: slideInRight 0.8s 0.6s both;
}

.code-box {
  background: rgba(26,26,46,0.9);
  border: 1px solid rgba(233,30,99,0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(233,30,99,0.1);
}

.code-box-header {
  padding: 14px 20px;
  background: rgba(15,15,26,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot-r { background: #FF5F57; }
.code-dot-y { background: #FEBC2E; }
.code-dot-g { background: #28C840; }

.code-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.code-content {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  min-height: 220px;
}

.code-line { display: flex; gap: 12px; }
.ln { color: #3A3A55; min-width: 20px; text-align: right; user-select: none; }
.kw { color: #E91E63; }
.fn { color: #CDDC39; }
.str { color: #FF7043; }
.cm { color: #4A4A6A; }
.pl { color: var(--text-light); }

/* Floating tech icons */
.tech-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(26,26,46,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(10px);
  animation: iconFloat linear infinite alternate;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@keyframes iconFloat {
  from { transform: translateY(0px) rotate(-3deg); }
  to { transform: translateY(-15px) rotate(3deg); }
}

.ti-1 { top: -20px; right: 20px; animation-duration: 3s; border-color: rgba(233,30,99,0.3); }
.ti-2 { top: 30px; right: -30px; animation-duration: 4s; animation-delay: 0.5s; border-color: rgba(255,87,34,0.3); }
.ti-3 { bottom: 40px; right: -20px; animation-duration: 3.5s; animation-delay: 1s; border-color: rgba(205,220,57,0.3); }
.ti-4 { bottom: -10px; left: 30px; animation-duration: 4.5s; animation-delay: 1.5s; }
.ti-5 { top: 50%; left: -35px; animation-duration: 3.8s; animation-delay: 0.8s; border-color: rgba(233,30,99,0.2); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-text { font-size: 10px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--magenta), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 100px 5%; }

.section-inner { max-width: 1300px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--magenta);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title .g { 
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,30,99,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-cards-stack {
  position: relative;
  height: 400px;
}

.stat-card {
  position: absolute;
  background: rgba(15,15,26,0.9);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.stat-card:nth-child(1) { top: 0; left: 0; width: 200px; border-color: rgba(233,30,99,0.2); }
.stat-card:nth-child(2) { top: 80px; right: 0; width: 220px; border-color: rgba(255,87,34,0.2); }
.stat-card:nth-child(3) { bottom: 0; left: 40px; width: 240px; border-color: rgba(205,220,57,0.2); }

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 300; }

.about-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.2); } }

.about-content { }

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(233,30,99,0.1);
  border: 1px solid rgba(233,30,99,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.about-feature:hover .feature-icon {
  background: rgba(233,30,99,0.2);
  transform: scale(1.1);
}

.feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--bg-dark); }

.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(26,26,46,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--grad-glow);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(233,30,99,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(233,30,99,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card:nth-child(2)::after { background: radial-gradient(ellipse at top left, rgba(255,87,34,0.06) 0%, transparent 60%); }
.service-card:nth-child(3)::after { background: radial-gradient(ellipse at top left, rgba(205,220,57,0.06) 0%, transparent 60%); }
.service-card:nth-child(4)::after { background: radial-gradient(ellipse at top left, rgba(233,30,99,0.06) 0%, transparent 60%); }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(233,30,99,0.1);
  border: 1px solid rgba(233,30,99,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: transform 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(233,30,99,0.2);
  box-shadow: 0 0 20px rgba(233,30,99,0.3);
}

.service-icon-wrap.orange { background: rgba(255,87,34,0.1); border-color: rgba(255,87,34,0.2); }
.service-card:hover .service-icon-wrap.orange { background: rgba(255,87,34,0.2); box-shadow: 0 0 20px rgba(255,87,34,0.3); }
.service-icon-wrap.lime { background: rgba(205,220,57,0.1); border-color: rgba(205,220,57,0.2); }
.service-card:hover .service-icon-wrap.lime { background: rgba(205,220,57,0.2); box-shadow: 0 0 20px rgba(205,220,57,0.3); }

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.service-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1;
}

.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   TECHNOLOGIES SECTION
   ============================================================ */
.tech { background: var(--bg-mid); overflow: hidden; }

.tech-header { text-align: center; margin-bottom: 64px; }

.tech-scroll-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.tech-scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollTrack 25s linear infinite;
}

.tech-scroll-track:hover { animation-play-state: paused; }

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,26,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 110px;
  cursor: default;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.tech-item:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: rgba(233,30,99,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(233,30,99,0.1);
  z-index: 2;
}

.tech-logo { font-size: 36px; filter: grayscale(20%); transition: filter 0.3s; }
.tech-item:hover .tech-logo { filter: grayscale(0%) drop-shadow(0 0 8px rgba(233,30,99,0.5)); }
.tech-name { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 1px; transition: color 0.3s; }
.tech-item:hover .tech-name { color: var(--text-light); }

/* ============================================================
   PARTNER SECTION
   ============================================================ */
.partner {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.partner-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.partner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing linear infinite;
}

.pr-1 { width: 300px; height: 300px; border-color: rgb(217 190 52 / 49%); animation-duration: 20s; }
.pr-2 { width: 220px; height: 220px; border-color: rgb(247 108 37 / 58%); animation-duration: 15s; animation-direction: reverse; }
.pr-3 { width: 140px; height: 140px; border-color: rgb(239 45 83 / 38%); animation-duration: 10s; }

@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.partner-center {
  width: 80px;
  height: 80px;
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 42px;
  color: #fff;
  position: relative;
  z-index: 2; 
}

.partner-orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.partner-content { }

.partner-perks {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perk {
  background: rgba(26,26,46,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.perk:hover { border-color: rgba(233,30,99,0.3); transform: translateY(-3px); }

.perk-icon { font-size: 24px; margin-bottom: 10px; }
.perk h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.perk p { font-size: 12px; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-mid); }

.testi-header { text-align: center; margin-bottom: 64px; }

.testi-carousel { position: relative; overflow: hidden; }

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
  min-width: 100%;
  padding: 0 10%;
  display: flex;
  justify-content: center;
}

.testi-inner {
  background: rgba(15,15,26,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px 52px;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testi-inner::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 160px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
}

.testi-stars { color: #FF7043; font-size: 18px; margin-bottom: 20px; letter-spacing: 3px; }
.testi-text { font-size: 16px; color: #CCC; line-height: 1.8; margin-bottom: 28px; font-weight: 300; font-style: italic; }

.testi-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.testi-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.testi-company { font-size: 12px; color: var(--magenta); letter-spacing: 1px; text-transform: uppercase; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.testi-dot.active {
  background: var(--magenta);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(233,30,99,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080812;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 5% 30px;
}

.footer-inner { max-width: 1300px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials { display: flex; gap: 12px; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
}

.social-icon:hover {
  background: rgba(233,30,99,0.1);
  border-color: rgba(233,30,99,0.4);
  color: var(--magenta);
  box-shadow: 0 0 15px rgba(233,30,99,0.2);
  transform: translateY(-3px);
}

.footer-col-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  font-weight: 300;
}

.footer-links a:hover { color: var(--text-light); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.contact-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: var(--text-muted); font-weight: 300; }

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(233,30,99,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .partner-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 600px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .partner-perks { grid-template-columns: 1fr; }
  .testi-card { padding: 0 4%; }
  .testi-inner { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .hero-heading { font-size: 36px; }
  section { padding: 70px 5%; }
  .partner-visual { display: none; }
  .partner-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOW BORDER DIVIDER
   ============================================================ */
.glow-divider {
  height: 1px;
  background: var(--grad-glow);
  opacity: 0.2;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(233,30,99,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .section-title { font-size: clamp(36px, 5vw, 64px); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
/* Partner Visual Animation Styles */
.partner-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

/* All Rings Base Style */
.partner-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    opacity: 0.6;
}

/* Ring 1 - Outer Ring (Clockwise Rotation) */
.partner-ring.pr-1 {
    width: 280px;
    height: 280px;
    border-top-color: #f0314d;
    border-right-color: #f0314d;
    animation: rotateClockwise 8s linear infinite;
    box-shadow: 0 0 20px rgb(233 30 99 / 26%);
}

/* Ring 2 - Middle Ring (Counter-Clockwise Rotation) */
.partner-ring.pr-2 {
    width: 220px;
    height: 220px;
    border-bottom-color: #d7bf34;
    border-left-color: #d7bf34;
    animation: rotateCounterClockwise 6s linear infinite;
    box-shadow: 0 0 15px rgb(220 182 51 / 19%);
}

/* Ring 3 - Inner Ring (Pulsing) */
.partner-ring.pr-3 {
    width: 160px;
    height: 160px;
    border: 2px solid #fd5f24;
    animation: pulseRing 3s ease-in-out infinite;
    box-shadow:  0 0 10px rgb(255 112 67 / 78%);
}

/* Center T Letter */
.partner-center {
    position: relative;
    z-index: 10;
    font-size: 80px;
    font-weight: 900;
    font-family: 'Montserrat', 'Arial Black', sans-serif; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;     
    filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.6)) drop-shadow(0 0 40px rgba(255, 87, 34, 0.3));
}

/* Animations */

/* Clockwise Rotation */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Counter-Clockwise Rotation */
@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Pulsing Ring Effect */
@keyframes pulseRing {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Glowing Text Effect */
@keyframes glowText {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(93, 213, 250, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(79, 184, 255, 0.8));
    }
}

/* Hover Effect - Speed up on Hover */
.partner-visual:hover .partner-ring.pr-1 {
    animation: rotateClockwise 4s linear infinite;
}

.partner-visual:hover .partner-ring.pr-2 {
    animation: rotateCounterClockwise 3s linear infinite;
}

.partner-visual:hover .partner-ring.pr-3 {
    animation: pulseRing 1.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .partner-visual {
        width: 250px;
        height: 250px;
        margin-bottom: 30px;
    }
    
    .partner-ring.pr-1 {
        width: 230px;
        height: 230px;
    }
    
    .partner-ring.pr-2 {
        width: 180px;
        height: 180px;
    }
    
    .partner-ring.pr-3 {
        width: 130px;
        height: 130px;
    }
    
    .partner-center {
        font-size: 60px;
    }
}
/* Hide default cursor on desktop */
body {
    cursor: none;
}
 
/* Hide default cursor on desktop */
body {
    cursor: none;
}

/* Cursor Effects Container */
#cursor-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Main Cursor Dot */
.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #E91E63, #FF5722, #CDDC39);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    box-shadow:
        0 0 10px rgba(233, 30, 99, 0.6),
        0 0 20px rgba(205, 220, 57, 0.5);
    transition: width 0.2s ease, height 0.2s ease;
}

/* Animated Circles Around Cursor */
.cursor-circle {
    position: fixed;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease-out;
}

/* Circle 1 - Outer (Largest) */
.cursor-circle.circle-1 {
    width: 50px;
    height: 50px;
    border-color: rgba(233, 30, 99, 0.5);
    animation: rotateCircle1 3s linear infinite;
    box-shadow: 0 0 18px rgba(233, 30, 99, 0.3);
}

/* Circle 2 - Middle */
.cursor-circle.circle-2 {
    width: 35px;
    height: 35px;
    border-color: rgba(255, 87, 34, 0.5);
    animation: rotateCircle2 2s linear infinite reverse;
    box-shadow: 0 0 12px rgba(255, 87, 34, 0.3);
}

/* Circle 3 - Inner (Smallest) */
.cursor-circle.circle-3 {
    width: 20px;
    height: 20px;
    border-color: rgba(205, 220, 57, 0.7);
    animation: pulseCircle 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(230, 255, 0, 0.5);
}

/* Animations */
@keyframes rotateCircle1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-top-color: rgba(233, 30, 99, 0.9);
        border-right-color: transparent;
    }
    50% {
        border-right-color: rgba(255, 87, 34, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-top-color: rgba(233, 30, 99, 0.9);
    }
}

@keyframes rotateCircle2 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-bottom-color: rgba(255, 87, 34, 0.9);
        border-left-color: transparent;
    }
    50% {
        border-left-color: rgba(205, 220, 57, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-bottom-color: rgba(255, 87, 34, 0.9);
    }
}

@keyframes pulseCircle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Hover Effects */
a:hover ~ #cursor-effects .cursor-dot,
button:hover ~ #cursor-effects .cursor-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E91E63, #FF7043, #E6FF00);
    box-shadow:
        0 0 20px rgba(255, 87, 34, 0.8),
        0 0 30px rgba(230, 255, 0, 0.7);
}

a:hover ~ #cursor-effects .cursor-circle,
button:hover ~ #cursor-effects .cursor-circle {
    border-width: 3px;
}

/* Click Effect */
.cursor-dot.clicked {
    animation: clickPulse 0.3s ease;
}

@keyframes clickPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Mobile Disable */
@media (max-width: 768px),
       (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    #cursor-effects { display: none; }
}
