/* ===== CUSTOM STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-color: #0b0f1a;
  color: #e2e8f0;
  cursor: none; /* custom cursor */
}
/* Custom cursor */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out;
  z-index: 99999;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #f97316;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(249,115,22,0.5);
  transition: all 0.1s ease-out;
}
/* Hide cursor on certain elements */
a, button, .tilt-card, .swiper-slide {
  cursor: none;
}

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #030712;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 1s ease;
}
.loader-logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #f97316;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.progress-bar {
  width: 200px;
  height: 2px;
  background: #1e293b;
  position: relative;
  overflow: hidden;
}
.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #f97316;
  animation: loadProgress 2s ease forwards;
}
@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll progress */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #ffd700);
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 10px #f97316;
}

/* Navbar glassmorphism */
.glass-nav {
  backdrop-filter: blur(16px) saturate(180%);
  background: rgba(3, 7, 18, 0.7);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  transition: all 0.4s ease;
}
.glass-nav.scrolled {
  background: rgba(3, 7, 18, 0.95);
  border-bottom-color: #f97316;
}

/* Hero video overlay */
.hero-overlay {
  background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Floating blurs (accent) */
.blur-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #f97316;
  opacity: 0.1;
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
}

/* Counter styles */
.counter {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stat-card {
  position: relative;
  padding: 2rem;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #f97316;
  transition: width 0.3s ease;
}
.stat-card:hover::after {
  width: 100px;
}

/* Tilt cards (enhanced) */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  background: linear-gradient(145deg, rgba(30,41,59,0.9), rgba(15,23,42,0.9));
  border: 1px solid rgba(249,115,22,0.2);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}
.tilt-card:hover {
  border-color: #f97316;
  box-shadow: 0 30px 70px rgba(249,115,22,0.3);
}
.shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.05) 100%);
  transform: rotate(25deg);
  transition: 0.5s;
  pointer-events: none;
}
.tilt-card:hover .shine {
  top: 0;
  left: 0;
}

/* Floating icons */
.floating-icon {
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(249,115,22,0.4));
}
@keyframes float {
  0% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-15px) rotateY(10deg); }
  100% { transform: translateY(0px) rotateY(0deg); }
}

/* Testimonials carousel */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.swiper-slide {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 30px;
  padding: 40px;
  transition: all 0.3s ease;
}
.swiper-slide-active {
  border-color: #f97316;
  transform: scale(1.05);
}

/* Team cards */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.team-card img {
  transition: transform 0.5s ease;
}
.team-card:hover img {
  transform: scale(1.1);
}
.team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(249,115,22,0.9), transparent);
  padding: 20px;
  transition: bottom 0.3s ease;
  color: white;
}
.team-card:hover .team-overlay {
  bottom: 0;
}

/* Process timeline */
.process-step {
  position: relative;
  padding-left: 40px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 20px #f97316;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 35px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, #f97316, transparent);
}

/* Partners infinite scroll */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.partners-track:hover {
  animation-play-state: paused;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 0 20px #f97316;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Particles container */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
  .counter { font-size: 3rem; }
}