/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== GLOBAL VARIABLES (LIGHTER THEME) ===== */
:root {
  --primary: #7c5cff;
  --primary-dark: #6344ff;
  --primary-light: #a78bfa;
  --secondary: #ec4899;
  --accent: #06b6d4;
  --accent-2: #f59e0b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* LIGHTER BACKGROUNDS */
  --bg-base: #fafbff;
  --bg-soft: #f5f3ff;
  --bg-softer: #faf5ff;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.55);

  --dark: #0f0a1f;
  --dark-2: #1a1533;
  --text: #3d3557;
  --text-light: #6b6385;
  --text-muted: #9892ad;
  --white: #ffffff;
  --border: rgba(124, 92, 255, 0.12);

  --gradient-1: linear-gradient(135deg, #7c5cff 0%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #7c5cff 100%);
  --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 50%, #ecfeff 100%);
  --gradient-mesh: radial-gradient(at 20% 20%, #e0e7ff 0px, transparent 50%),
                   radial-gradient(at 80% 10%, #fce7f3 0px, transparent 50%),
                   radial-gradient(at 70% 80%, #cffafe 0px, transparent 50%),
                   radial-gradient(at 10% 90%, #fef3c7 0px, transparent 50%);

  --shadow-xs: 0 1px 2px rgba(15, 10, 31, 0.04);
  --shadow-sm: 0 4px 12px rgba(124, 92, 255, 0.06);
  --shadow-md: 0 10px 30px rgba(124, 92, 255, 0.10);
  --shadow-lg: 0 20px 50px rgba(124, 92, 255, 0.15);
  --shadow-glow: 0 0 40px rgba(124, 92, 255, 0.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-base);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  cursor: none;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--primary); color: var(--white); }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999;
  border-radius: 50%; transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot { width: 8px; height: 8px; background: var(--white); transform: translate(-50%, -50%); }
.cursor-ring { width: 36px; height: 36px; border: 2px solid var(--primary-light);
  transform: translate(-50%, -50%); transition: transform 0.2s ease, width 0.3s, height 0.3s; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(124, 92, 255, 0.15); border-color: transparent; }
@media (max-width: 992px) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gradient-1); z-index: 99999;
  box-shadow: 0 0 10px rgba(124, 92, 255, 0.6);
  transition: width 0.1s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gradient-1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; background: var(--bg-base);
  background-image: var(--gradient-mesh);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.spinner {
  width: 50px; height: 50px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--secondary));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed; bottom: 100px; right: 24px; width: 50px; height: 50px;
  background: var(--white); color: var(--primary); border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: var(--transition); z-index: 999;
  box-shadow: var(--shadow-md); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background: var(--gradient-1); color: #fff; transform: translateY(-5px); box-shadow: var(--shadow-glow); }

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 22px;
  box-shadow: var(--shadow-md); transition: var(--transition);
  position: relative; overflow: hidden;
}
.floating-btn::before{
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: currentColor; opacity: 0; transition: var(--transition);
}
.floating-btn:hover { transform: scale(1.1) rotate(8deg); box-shadow: var(--shadow-glow); }
.fab-whatsapp { background: #25d366; animation: pulse-fab 2s infinite; }
.fab-call { background: var(--gradient-1); }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: currentColor; opacity: 0.4; animation: pulse-ring 1.8s infinite;
}
@keyframes pulse-fab { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 50%{box-shadow:0 0 0 15px rgba(37,211,102,0);} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.4;} 100%{transform:scale(1.8);opacity:0;} }

/* ===== HEADER & TOP BAR ===== */
.main-header {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999; transition: var(--transition);
}
.main-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.08);
}
.top-bar {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255,255,255,0.85); padding: 10px 0; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-bar-contact { display: flex; gap: 22px; align-items: center; }
.top-bar-contact a {
  color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; transition: var(--transition);
}
.top-bar-contact a:hover { color: var(--primary-light); }
.top-bar-contact a i { color: var(--primary-light); font-size: 13px; }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
  width: 30px; height: 30px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 12px; transition: var(--transition);
}
.top-bar-social a:hover { background: var(--gradient-1); transform: translateY(-2px); color: #fff; }

/* Main Navigation */
.main-nav { padding: 14px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; z-index: 100; }
.logo-image { height: 70px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 600; position: relative; padding: 8px 4px;
  color: var(--text); font-size: 15px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%); width: 0; height: 3px;
  background: var(--gradient-1); border-radius: 10px; transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-cta {
  padding: 10px 22px !important; background: var(--gradient-1); color: #fff !important;
  border-radius: var(--radius-full); font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(124, 92, 255, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4); }

.mobile-menu-btn {
  display: none; font-size: 22px; background: none; border: none;
  cursor: pointer; color: var(--primary); z-index: 100;
  width: 42px; height: 42px; border-radius: 12px; transition: var(--transition);
  background: rgba(124, 92, 255, 0.08);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  height: 100vh; min-height: 720px; margin-top: 108px;
  position: relative; overflow: hidden;
}
.hero-bg-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: #c7d2fe; top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: #fbcfe8; bottom: -50px; right: -50px; animation-delay: -5s; }
.blob-3 { width: 350px; height: 350px; background: #a5f3fc; top: 40%; left: 50%; animation-delay: -10s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

.heroSwiper { width: 100%; height: 100%; position: relative; z-index: 2; }
.swiper-slide { position: relative; overflow: hidden; }
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.03);
}

.slide-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.58) 25%,
    rgba(255, 255, 255, 0.25) 48%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0.00) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.slide-text h1 {
  color: #111827;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 1),
    0 2px 8px rgba(255, 255, 255, 0.8);
}

.slide-text h1 .highlight {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #5b21b6 !important;
  color: #5b21b6 !important;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 1),
    0 2px 8px rgba(255, 255, 255, 0.9);
}

.slide-text p {
  color: #172033 !important;
  font-weight: 700;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 0.95);
}
.slide-particles {
  position: absolute; inset: 0; z-index: 3;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(124,92,255,0.15) 2px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(236,72,153,0.15) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,0.1) 1px, transparent 1px);
  background-size: 200px 200px, 250px 250px, 150px 150px;
  animation: particleMove 30s linear infinite;
}
@keyframes particleMove {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-100px) translateX(50px); }
}

.slide-content {
  position: relative; z-index: 4; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; padding-top: 40px;
}
.slide-text { flex: 1; max-width: 640px; }
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--bg-glass);
  backdrop-filter: blur(20px); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
  border: 1px solid var(--border); color: var(--primary);
  letter-spacing: 0.3px;
}
.slide-badge i { color: var(--secondary); }
.slide-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1;
  margin-bottom: 22px; color: var(--dark);
}
.slide-text h1 .highlight {
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; display: inline-block;
}
.slide-text h1 .highlight::after {
  content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 10px;
  background: var(--gradient-1); opacity: 0.15; border-radius: 4px; z-index: -1;
}
.slide-text p {
  font-size: 1.1rem; margin-bottom: 32px; color: var(--text-light);
  line-height: 1.8; max-width: 540px;
}
.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-image { flex: 1; position: relative; height: 480px; max-width: 520px; }
.floating-card {
  position: absolute; background: var(--bg-glass); backdrop-filter: blur(20px);
  padding: 16px 22px; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  animation: float 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.8);
}
.floating-card i {
  font-size: 24px; width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-1); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.floating-card span { font-weight: 700; color: var(--dark); font-size: 14px; }
.card-1 { top: 40px; left: 10px; animation-delay: 0s; }
.card-2 { top: 180px; right: 0; animation-delay: 1.3s; }
.card-3 { bottom: 60px; left: 50px; animation-delay: 2.6s; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }

/* Swiper Nav */
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
  color: var(--primary) !important; background: var(--bg-glass);
  backdrop-filter: blur(20px);
  width: 50px !important; height: 50px !important; border-radius: 50%;
  transition: var(--transition); border: 1px solid var(--border);
}
.hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after { font-size: 16px !important; font-weight: bold; }
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover {
  background: var(--gradient-1); color: #fff !important; transform: scale(1.1);
}
.hero-slider .swiper-pagination { bottom: 30px !important; }
.hero-slider .swiper-pagination-bullet {
  background: var(--primary) !important; opacity: 0.3; width: 10px; height: 10px;
  transition: var(--transition);
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1; width: 32px; border-radius: 10px; background: var(--gradient-1) !important;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  padding: 14px 30px; border-radius: var(--radius-full); font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); border: none; cursor: pointer;
  font-size: 15px; font-family: inherit; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-1); color: #fff;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.3);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124, 92, 255, 0.4); }
.btn-secondary {
  background: var(--white); color: var(--primary);
  border: 2px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-soft); transform: translateY(-3px); border-color: var(--primary); }
.btn-large { width: 100%; justify-content: center; padding: 18px; font-size: 16px; }

/* ===== TRUSTED BY MARQUEE ===== */
/* ===== TRUSTED BY MARQUEE ===== */
/* ===== TRUSTED BY MARQUEE - PREMIUM ===== */
.marquee-section {
  padding: 34px 0 38px;
  background: linear-gradient(
    90deg,
    #f8f7ff 0%,
    #f1f5ff 35%,
    #f8f5ff 70%,
    #fff7fb 100%
  );
  border-top: 1px solid rgba(124, 92, 255, 0.12);
  border-bottom: 1px solid rgba(124, 92, 255, 0.12);
  overflow: hidden;
  position: relative;
}

/* हल्का fade दोनों sides पर */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #f8f7ff 0%,
    rgba(248, 247, 255, 0) 100%
  );
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #fff7fb 0%,
    rgba(255, 247, 251, 0) 100%
  );
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: #6d28d9;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4338ca;
  opacity: 0.82;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: all 0.3s ease;
}

.marquee-item i {
  font-size: 1.55rem;
  color: #8b5cf6;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
  color: #5b21b6;
  transform: translateY(-3px);
}

.marquee-item:hover i {
  color: #ec4899;
  transform: scale(1.15);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== STATISTICS SECTION ===== */
.stats-section { padding: 80px 0; position: relative; }
.stats-wrapper {
  background: var(--white); border-radius: var(--radius-xl); padding: 50px 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stats-wrapper::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
  background: var(--gradient-1); opacity: 0.05; border-radius: 50%; filter: blur(60px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--border);
}
.stat-icon {
  width: 64px; height: 64px; background: var(--gradient-soft);
  border: 1px solid var(--border); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px; color: var(--primary);
  transition: var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--gradient-1); color: #fff; transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem; font-weight: 800; margin-bottom: 4px;
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.95rem; color: var(--text-light); font-weight: 500; }

/* ===== SECTION COMMON ===== */
.section-padding { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: var(--primary); border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.5px;
  border: 1px solid var(--border);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  margin-bottom: 16px; color: var(--dark); line-height: 1.2;
}
.section-title .gradient-text {
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}

/* ===== ABOUT / WHO WE ARE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.image-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.image-wrapper::before {
  content: ''; position: absolute; top: -20px; left: -20px; width: 100px; height: 100px;
  border: 3px solid var(--primary); border-radius: var(--radius-lg);
  z-index: -1; opacity: 0.3;
}
.image-wrapper::after {
  content: ''; position: absolute; bottom: -20px; right: -20px; width: 150px; height: 150px;
  background: var(--gradient-1); border-radius: var(--radius-lg);
  z-index: -1; opacity: 0.15; filter: blur(30px);
}
.image-wrapper img {
  width: 100%; height: 520px; object-fit: cover; transition: var(--transition-slow);
}
.image-wrapper:hover img { transform: scale(1.05); }
.experience-badge {
  position: absolute; bottom: 30px; right: -20px;
  background: var(--white); color: var(--dark);
  padding: 22px 28px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
  z-index: 2; border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.experience-badge .years {
  display: block; font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.experience-badge .text {
  font-size: 0.8rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.about-content .section-badge { margin-bottom: 14px; }
.about-content .section-title { text-align: left; margin-bottom: 18px; }
.about-content > p { margin-bottom: 28px; font-size: 1.02rem; line-height: 1.8; color: var(--text-light); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.feature {
  display: flex; align-items: center; gap: 12px; font-weight: 600;
  color: var(--dark); padding: 10px 14px;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); backdrop-filter: blur(10px);
  transition: var(--transition);
}
.feature:hover { transform: translateX(5px); border-color: var(--primary); }
.feature i {
  color: #fff; font-size: 14px; width: 26px; height: 26px;
  background: var(--gradient-1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg-glass); backdrop-filter: blur(20px);
  padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-1); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: ''; position: absolute; bottom: -50%; right: -50%; width: 200px; height: 200px;
  background: var(--gradient-1); opacity: 0; border-radius: 50%;
  filter: blur(60px); transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px); box-shadow: var(--shadow-lg);
  border-color: rgba(124, 92, 255, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 0.15; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 64px; height: 64px; background: var(--gradient-soft);
  border: 1px solid var(--border); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-icon i { font-size: 26px; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon {
  background: var(--gradient-1); transform: rotate(-8deg) scale(1.1);
  box-shadow: var(--shadow-glow);
}
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
.service-card p { margin-bottom: 18px; color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }
.service-link {
  color: var(--primary); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
}
.service-link i { transition: var(--transition); }
.service-link:hover { color: var(--secondary); }
.service-link:hover i { transform: translateX(5px); }

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 50px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3; z-index: 0;
}
.process-card {
  text-align: center; position: relative; z-index: 1;
  padding: 24px 16px;
}
.process-num {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--primary);
  transition: var(--transition); position: relative;
}
.process-num::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  background: var(--gradient-1); opacity: 0; transition: var(--transition); z-index: -1;
}
.process-card:hover .process-num {
  color: #fff; background: var(--gradient-1); border-color: transparent;
  transform: scale(1.1); box-shadow: var(--shadow-glow);
}
.process-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.process-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: linear-gradient(135deg, #0f0a1f 0%, #1a1533 100%);
  color: #fff; position: relative; overflow: hidden;
}
.why-choose-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--gradient-mesh); opacity: 0.3;
}
.why-choose-section .section-badge {
  background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2);
}
.why-choose-section .section-title { color: #fff; }
.why-choose-section .section-desc { color: rgba(255,255,255,0.75); }

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px;
  position: relative; z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  padding: 32px 24px; border-radius: var(--radius-lg); text-align: center;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient-1); opacity: 0; transition: var(--transition); z-index: -1;
}
.feature-card:hover {
  transform: translateY(-8px); border-color: rgba(255,255,255,0.3);
  box-shadow: 0 20px 40px rgba(124, 92, 255, 0.3);
}
.feature-card:hover::before { opacity: 0.15; }
.feature-icon {
  width: 70px; height: 70px; background: var(--gradient-1);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: var(--transition); color: #fff;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(8deg); box-shadow: var(--shadow-glow); }
.feature-icon i { font-size: 28px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; color: #fff; }
.feature-card p { opacity: 0.8; font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.75); }

/* ===== TESTIMONIALS ===== */
.testimonialSwiper { padding-bottom: 60px !important; }
.testimonial-card {
  background: var(--white); padding: 36px 30px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); margin: 10px 5px; position: relative;
  border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 15px; right: 25px; font-size: 80px;
  font-family: Georgia, serif; background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.2; line-height: 1;
}
.testimonial-rating { color: var(--accent-2); font-size: 15px; margin-bottom: 18px; display: flex; gap: 3px; }
.testimonial-text {
  font-size: 1rem; line-height: 1.8; margin-bottom: 22px;
  color: var(--text); font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.author-avatar {
  width: 52px; height: 52px; background: var(--gradient-1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.author-info h4 { font-size: 1rem; margin-bottom: 2px; color: var(--dark); }
.author-info span { color: var(--text-light); font-size: 0.85rem; }
.testimonialSwiper .swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3; }
.testimonialSwiper .swiper-pagination-bullet-active { opacity: 1; width: 28px; border-radius: 10px; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-soft); }
.faq-wrapper { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 14px;
  overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; color: var(--dark); font-size: 1.02rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
  color: var(--primary); transition: transform 0.3s; font-size: 14px;
  width: 32px; height: 32px; background: var(--bg-soft);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); background: var(--gradient-1); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-light); line-height: 1.7; font-size: 0.95rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-1); padding: 90px 0; text-align: center;
  color: #fff; position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08); filter: blur(40px);
}
.cta-section::before { top: -50%; right: -10%; width: 400px; height: 400px; }
.cta-section::after { bottom: -30%; left: -5%; width: 300px; height: 300px; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-section p {
  font-size: 1.1rem; opacity: 0.92; margin-bottom: 28px;
  max-width: 580px; margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}
.cta-section .btn-primary {
  background: #fff; color: var(--primary); position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover { background: var(--dark); color: #fff; }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: start; }
.contact-info {
  background: var(--gradient-1); padding: 44px 36px; border-radius: var(--radius-xl);
  color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.contact-info::before, .contact-info::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08); filter: blur(30px);
}
.contact-info::before { top: -50px; right: -50px; width: 200px; height: 200px; }
.contact-info::after { bottom: -80px; left: -40px; width: 250px; height: 250px; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { font-size: 1.7rem; margin-bottom: 10px; font-weight: 800; }
.contact-info > p { margin-bottom: 32px; opacity: 0.92; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.18);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.contact-item:hover .contact-icon { background: rgba(255,255,255,0.3); transform: scale(1.05); }
.contact-icon i { font-size: 18px; }
.contact-item h4 { margin-bottom: 3px; font-size: 0.95rem; font-weight: 700; }
.contact-item p { margin: 0; opacity: 0.9; font-size: 0.9rem; line-height: 1.5; }
.contact-socials { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); }
.contact-socials h4 { margin-bottom: 12px; font-weight: 700; }
.contact-socials .social-links { display: flex; gap: 10px; }
.contact-socials .social-links a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 15px;
}
.contact-socials .social-links a:hover { background: #fff; color: var(--primary); transform: translateY(-3px); }

/* Contact Form */
.contact-form {
  background: var(--white); padding: 40px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { position: relative; margin-bottom: 18px; }
.form-group i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--primary); font-size: 15px; z-index: 2; pointer-events: none;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 15px 15px 15px 46px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.93rem; font-family: inherit; transition: var(--transition);
  background: var(--bg-soft); color: var(--text);
}
.contact-form textarea { padding-top: 15px; min-height: 120px; resize: vertical; }
.contact-form textarea + i, .form-group:has(textarea) i { top: 20px; transform: none; }
.contact-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237c5cff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.1);
}
.alert {
  padding: 16px 22px; margin-bottom: 24px; border-radius: var(--radius-md);
  text-align: center; font-weight: 600; display: flex;
  align-items: center; justify-content: center; gap: 10px; font-size: 0.93rem;
}
.alert.success { background: rgba(16, 185, 129, 0.1); color: #065f46; border: 1px solid rgba(16, 185, 129, 0.3); }
.alert.error { background: rgba(239, 68, 68, 0.1); color: #991b1b; border: 1px solid rgba(239, 68, 68, 0.3); }

/* ===== FOOTER ===== */
.main-footer {
  background: linear-gradient(135deg, #0f0a1f 0%, #1a1533 100%);
  color: rgba(255,255,255,0.7); padding: 80px 0 0; position: relative;
}
.main-footer::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gradient-1);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-logo {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col > p { margin-bottom: 22px; line-height: 1.8; font-size: 0.92rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.06);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--gradient-1); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer-col h3 {
  color: #fff; margin-bottom: 20px; font-size: 1.05rem; font-weight: 700;
  position: relative; padding-bottom: 12px;
}
.footer-col h3::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px;
  background: var(--gradient-1); border-radius: 10px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-col ul li a::before {
  content: ''; width: 5px; height: 5px; background: var(--primary-light);
  border-radius: 50%; opacity: 0; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px !important;
  font-size: 0.9rem; line-height: 1.6;
}
.footer-contact li::before { display: none !important; }
.footer-contact i { color: var(--primary-light); margin-top: 3px; font-size: 15px; flex-shrink: 0; }
.footer-bottom {
  text-align: center; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; font-size: 0.88rem;
}
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 992px) {
  .slide-image { display: none; }
  .slide-text { max-width: 100%; text-align: center; }
  .slide-text p { margin-left: auto; margin-right: auto; }
  .slide-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-features { justify-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
  .top-bar-contact { flex-direction: column; gap: 6px; }
  .top-bar-contact a { font-size: 12px; }
  .logo-image { height: 100%; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    padding: 20px; gap: 22px; z-index: 99;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .hero-slider { min-height: 620px; margin-top: 100px; }
  .slide-text h1 { font-size: 2rem; }
  .slide-text p { font-size: 1rem; }
  .section-padding { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item::after { display: none !important; }
  .stat-number { font-size: 2rem; }
  .stats-wrapper { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-info { padding: 32px 24px; }
  .contact-form { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 14px; }
  .floating-actions { bottom: 16px; right: 16px; }
 .floating-btn { width: 50px; height: 50px; font-size: 50px; }
  .scroll-to-top { bottom: 85px; right: 16px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .slide-text h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.6rem; }
  .stat-number { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .slide-buttons { flex-direction: column; align-items: center; }
  .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display: none !important; }
  .marquee-item { font-size: 1.2rem; }
}

/* Bigger Floating WhatsApp & Call Buttons */
.floating-actions .fab {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    min-height: 65px !important;
    font-size: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.floating-actions .fab i {
    font-size: 30px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .floating-actions .fab {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        min-height: 58px !important;
    }

    .floating-actions .fab i {
        font-size: 27px !important;
    }
}



/* ===== FIX FLOATING BUTTON OVERLAP ===== */

/* WhatsApp + Call buttons */
.floating-actions {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    z-index: 1000 !important;
}

/* Scroll To Top button - WhatsApp से ऊपर */
.scroll-to-top {
    right: 24px !important;
    bottom: 180px !important;
    z-index: 999 !important;
}