:root {
  --purple-900: #0f0717;
  --purple-800: #1a0a2e;
  --purple-700: #2d1b4e;
  --purple-600: #4a2c7a;
  --purple-500: #7c3aed;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;
  --pink-accent: #ec4899;
  --cyan-accent: #06b6d4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
  background: var(--purple-900);
  color: #fff;
  overflow-x: hidden;
}

/* ===== Mouse Glow ===== */
.mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}
.mouse-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.06), transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-accent), var(--cyan-accent));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

/* ===== Floating Shapes ===== */
.floating-shapes {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.floating-shape {
  position: absolute;
  border-radius: 30%;
  opacity: 0.06;
  animation: shapeFloat linear infinite;
}
.floating-shape:nth-child(1) {
  width: 100px; height: 100px;
  background: var(--purple-500);
  top: 10%; left: 5%;
  animation-duration: 25s;
  border-radius: 50%;
}
.floating-shape:nth-child(2) {
  width: 150px; height: 150px;
  background: var(--pink-accent);
  top: 60%; left: 80%;
  animation-duration: 30s;
  animation-delay: -5s;
  border-radius: 40%;
}
.floating-shape:nth-child(3) {
  width: 80px; height: 80px;
  background: var(--cyan-accent);
  top: 30%; left: 70%;
  animation-duration: 20s;
  animation-delay: -10s;
  transform: rotate(45deg);
}
.floating-shape:nth-child(4) {
  width: 120px; height: 120px;
  background: var(--purple-400);
  top: 80%; left: 15%;
  animation-duration: 28s;
  animation-delay: -3s;
  border-radius: 20%;
}
.floating-shape:nth-child(5) {
  width: 60px; height: 60px;
  background: var(--purple-300);
  top: 50%; left: 40%;
  animation-duration: 22s;
  animation-delay: -8s;
  border-radius: 50%;
}
@keyframes shapeFloat {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(30px, -40px) rotate(90deg) scale(1.1); }
  50% { transform: translate(-20px, -80px) rotate(180deg) scale(0.9); }
  75% { transform: translate(40px, -30px) rotate(270deg) scale(1.05); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* ===== Animated Background ===== */
.animated-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #0f0717, #1a0a2e, #2d1b4e, #0f0717);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Particles ===== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.25;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== Typewriter ===== */
.typewriter::after {
  content: '|';
  animation: cursorBlink 0.8s step-end infinite;
  color: var(--purple-500);
  font-weight: 100;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== 3D Tilt Cards ===== */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card-inner {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}
.tilt-card:hover .tilt-card-inner {
  transform: rotateX(var(--rotX, 0deg)) rotateY(var(--rotY, 0deg));
}
.tilt-card .tilt-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glowX, 50%) var(--glowY, 50%), rgba(124, 58, 237, 0.15), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.tilt-card:hover .tilt-glow {
  opacity: 1;
}

/* ===== Pulse Icons ===== */
.pulse-icon {
  position: relative;
}
.pulse-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--purple-500);
  animation: pulseRing 2s ease-out infinite;
  opacity: 0;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ===== Shimmer Button ===== */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== Animated Gradient Border ===== */
.gradient-border {
  position: relative;
  border: none !important;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-accent), var(--cyan-accent), var(--purple-500));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}
.gradient-border:hover::before {
  opacity: 1;
}
@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Ripple Button ===== */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(15, 7, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(15, 7, 23, 0.96);
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i {
  -webkit-text-fill-color: initial;
  color: var(--purple-500);
  font-size: 1.6rem;
}
.nav-link {
  color: var(--purple-200) !important;
  font-weight: 500;
  padding: 6px 16px !important;
  transition: all 0.3s;
  border-radius: 8px;
}
.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(124, 58, 237, 0.12);
}
.nav-link.active {
  background: rgba(124, 58, 237, 0.2);
}
.navbar-toggler {
  color: #fff;
  font-size: 1.4rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== Buttons ===== */
.btn-purple {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.25);
}
.btn-purple:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 45px rgba(124, 58, 237, 0.45);
  color: #fff;
}
.btn-outline-purple {
  background: transparent;
  border: 2px solid var(--purple-500);
  color: var(--purple-300);
  padding: 10px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline-purple:hover {
  background: var(--purple-500);
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink-accent), #db2777);
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 25px rgba(236, 72, 153, 0.25);
}
.btn-pink:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 45px rgba(236, 72, 153, 0.45);
  color: #fff;
}

/* ===== Hero Slider ===== */
.hero-slider {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}
.hero-slider .carousel-item {
  min-height: 100vh;
  padding: 60px 0;
}
.hero-slider .slide-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.hero-slider .slide-content .row {
  flex: 1;
  width: 100%;
}
.hero-slider .slide-badge {
  display: inline-block;
  padding: 7px 22px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50px;
  color: var(--purple-300);
  font-size: 0.85rem;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.6s ease both;
}
.hero-slider h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeSlideUp 0.6s ease 0.15s both;
}
.hero-slider h1 .highlight {
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slider .slide-desc {
  font-size: 1.15rem;
  color: var(--purple-200);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 30px;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}
.hero-slider .slide-buttons {
  animation: fadeSlideUp 0.6s ease 0.45s both;
}
.hero-slider .slide-image {
  text-align: center;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}
.hero-slider .slide-image .icon-box {
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1), transparent);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--purple-400);
  position: relative;
  overflow: hidden;
}
.hero-slider .slide-image .icon-box::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(124, 58, 237, 0.1), transparent, rgba(236, 72, 153, 0.1), transparent);
  animation: rotateGlow 8s linear infinite;
}
@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}
.hero-slider .slide-image .icon-box i {
  position: relative;
  z-index: 1;
}

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 55px;
  height: 55px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 1;
}
.hero-slider .carousel-control-prev { inset-inline-start: 30px; inset-inline-end: auto; }
.hero-slider .carousel-control-next { inset-inline-end: 30px; inset-inline-start: auto; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background: rgba(124, 58, 237, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
  bottom: 40px;
  gap: 10px;
}
.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.hero-slider .carousel-indicators button.active {
  background: var(--purple-500);
  border-color: var(--purple-300);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
  width: 30px;
  border-radius: 10px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Page Header ===== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.page-header p {
  color: var(--purple-200);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  background: none;
  justify-content: center;
  margin-bottom: 0;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: var(--purple-300);
  font-size: 0.9rem;
}
.page-header .breadcrumb-item.active {
  color: var(--purple-400);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--purple-500);
}

/* ===== Section Styling ===== */
section { padding: 100px 0; position: relative; }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  color: var(--purple-200);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
.section-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-accent));
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ===== Cards ===== */
.glass-card {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}
.glass-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.08);
}

.card-icon {
  width: 60px; height: 60px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple-400);
  margin-bottom: 18px;
  transition: all 0.4s;
}
.glass-card:hover .card-icon {
  background: linear-gradient(135deg, var(--purple-600), var(--pink-accent));
  color: #fff;
}

.glass-card h5 { font-weight: 700; margin-bottom: 8px; }
.glass-card p { color: var(--purple-200); font-size: 0.9rem; line-height: 1.7; }

/* ===== Feature Card ===== */
.feature-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  will-change: transform;
}
.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--purple-500);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.12);
}
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--purple-400);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover .feature-icon {
  transform: rotateY(180deg) scale(1.15);
  background: linear-gradient(135deg, var(--purple-600), var(--pink-accent));
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
  color: #fff;
}
.feature-card h5 { font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--purple-200); font-size: 0.95rem; line-height: 1.7; }

/* ===== Team Card ===== */
.team-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple-500);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.08);
}
.team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}
.team-card h5 { font-weight: 700; margin-bottom: 2px; }
.team-card .role { color: var(--purple-400); font-size: 0.85rem; margin-bottom: 10px; }
.team-card p { color: var(--purple-200); font-size: 0.85rem; line-height: 1.6; }
.team-social a {
  display: inline-flex;
  width: 36px; height: 36px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--purple-300);
  margin: 0 3px;
  text-decoration: none;
  transition: all 0.3s;
}
.team-social a:hover {
  background: var(--purple-500);
  color: #fff;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-500), var(--pink-accent));
  opacity: 0.3;
}
.timeline-item {
  position: relative;
  padding-right: 55px;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  right: 12px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple-500);
  border: 3px solid var(--purple-900);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.timeline-item .year {
  font-size: 0.85rem;
  color: var(--purple-400);
  font-weight: 600;
  margin-bottom: 5px;
}
.timeline-item h5 { font-weight: 700; margin-bottom: 5px; }
.timeline-item p { color: var(--purple-200); font-size: 0.9rem; line-height: 1.7; }

/* ===== Skills / Progress ===== */
.skill-item { margin-bottom: 22px; }
.skill-item .skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--purple-200);
}
.skill-item .skill-bar {
  height: 8px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.skill-item .skill-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-accent));
  width: 0;
  transition: width 1.5s ease;
}

/* ===== Contact Form ===== */
.contact-form .form-control {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  transition: all 0.3s;
}
.contact-form .form-control:focus {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
  color: #fff;
}
.contact-form .form-control::placeholder {
  color: rgba(167, 139, 250, 0.35);
}
.contact-form textarea { resize: none; min-height: 130px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}
.contact-info-icon {
  width: 50px; height: 50px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--purple-400);
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 600; margin-bottom: 2px; }
.contact-info-item p { color: var(--purple-200); margin: 0; font-size: 0.9rem; }

/* ===== Stats ===== */
.stats-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.03));
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.stat-item { text-align: center; padding: 15px; }
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
}
.stat-item p { color: var(--purple-200); font-size: 1rem; margin: 0; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s;
  height: 100%;
  position: relative;
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 12px;
  left: 25px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.1);
  font-family: serif;
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-5px);
}
.testimonial-card .stars { color: #f59e0b; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-card .quote {
  color: var(--purple-200);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.testimonial-card .client-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-card .client-role { color: var(--purple-400); font-size: 0.8rem; }

/* ===== Pricing ===== */
.pricing-card {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--purple-500);
  background: rgba(124, 58, 237, 0.08);
  transform: scale(1.03);
}
.pricing-card.featured .popular-badge {
  position: absolute;
  top: 15px;
  left: -30px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-accent));
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(-45deg);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.08);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.pricing-card .plan-name { font-weight: 600; color: var(--purple-300); margin-bottom: 10px; }
.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; }
.pricing-card .plan-desc { color: var(--purple-200); font-size: 0.9rem; margin: 15px 0 25px; }
.pricing-card ul { list-style: none; padding: 0; text-align: right; }
.pricing-card ul li {
  padding: 10px 0;
  color: var(--purple-200);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li i { color: var(--purple-400); margin-left: 10px; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.05));
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
.cta-section p {
  color: var(--purple-200);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 25px;
}

/* ===== Footer ===== */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  padding: 60px 0 30px;
}
.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.footer p, .footer a {
  color: var(--purple-200);
  font-size: 0.9rem;
}
.footer a {
  text-decoration: none;
  transition: all 0.3s;
}
.footer a:hover {
  color: var(--purple-400);
  padding-right: 5px;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 50%;
  margin-left: 8px;
  font-size: 1.1rem;
  transition: all 0.3s;
  color: var(--purple-200);
}
.footer .social-links a:hover {
  background: var(--purple-500);
  color: #fff;
  padding-right: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
  color: var(--purple-200);
  font-size: 0.85rem;
}

/* ===== Fade Reveal ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--purple-900); }
::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-500); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-slider h1 { font-size: 2.5rem; }
  .hero-slider .slide-image .icon-box { height: 300px; font-size: 5rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 767px) {
  .hero-slider h1 { font-size: 1.9rem; }
  .hero-slider .slide-image .icon-box { height: 220px; font-size: 3.5rem; }
  .hero-slider .slide-desc { font-size: 1rem; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { display: none; }
  .page-header { padding: 130px 0 50px; }
  .page-header h1 { font-size: 2rem; }
  section { padding: 60px 0; }
  .section-title h2 { font-size: 1.7rem; }
  .stat-item h3 { font-size: 2rem; }
  .timeline::before { right: 15px; }
  .timeline-item { padding-right: 45px; }
}
@media (max-width: 480px) {
  .hero-slider .slide-image .icon-box { height: 180px; font-size: 2.5rem; }
}
