* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #0A0A0F !important;
  color: #F8FAFC !important;
  font-family: 'Urbanist', sans-serif !important;
  overflow-x: hidden;
  min-height: 100vh;
}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* HEADER & NAVIGATION */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #A855F7;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

nav a:hover {
  color: #A855F7;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.9);
}

/* BUTTONS WITH MIRROR SHINE ANIMATION */
.btn-solid-gradient {
  background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%) !important;
  color: #FFF !important;
  border: none !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-solid-gradient::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
}

.btn-solid-gradient:active::after {
  left: 130%;
  transition: all 0.5s ease-out;
}

.back-btn { font-size: 14px; padding: 6px 16px; }
.card-select-btn { font-size: 13px !important; padding: 8px 20px !important; }

/* HERO SECTION & GLOW WAVES */
.hero-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 20px auto;
  padding: 0 20px;
}

/* 3D FLOATING BACKGROUND GRAPHICS CSS */
.floating-asset {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: screen; /* Black background clear kar dega */
}

  .asset-crystal-left { left: 200px; top: 40%; width: 165px; height: 165px; animation: floatMedium 5s ease-in-out infinite; }
  .asset-ring-left { left: 150px; top: 10%; width: 150px; height: 150px; animation: rotateFloat 9s ease-in-out infinite; }
  .asset-ring-right { right: 200px; bottom: 40%; width: 160px; height: 160px; animation: rotateFloat 10s ease-in-out infinite reverse; }


    @keyframes floatCenter { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(45deg); } }
    @keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(45deg); } }
    @keyframes floatReverse { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(18px) rotate(-45deg); } }


.hero-container {
  max-width: 1250px;
  margin: 0 auto;
  background: transparent !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.center-waves {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, rgba(124, 58, 237, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: pulseWave 4s ease-in-out infinite alternate;
}

@keyframes pulseWave {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-container h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFF;
  margin-bottom: 8px;
}

.hero-subtext { color: #A0AEC0; font-size: 18px; margin-bottom: 20px; }
.hero-btn-container { margin-top: 140px; }

/* WHAT WE DO SECTION */
.what-we-do-container {
  max-width: 1200px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  border-left: 4px solid #A855F7;
  padding-left: 12px;
  margin-bottom: 20px;
  color: #FFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(15px);
}

.service-card h3 { color: #A855F7; font-size: 20px; margin-bottom: 8px; }
.service-card p { color: #94A3B8; font-size: 14px; line-height: 1.6; }

/* GALLERY & CARDS */
.gallery-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-header { display: flex; justify-content: space-between; align-items: center; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.glass-card {
  position: relative;
  background: rgba(19, 19, 28, 0.4) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  border-radius: 20px;
  padding: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 12px rgba(168, 85, 247, 0.25);
  user-select: none;
}

.glass-card.selected-card {
  border-color: #25D366 !important;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6) !important;
}

.card-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #1a1a24;
  pointer-events: none;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
  color: #E2E8F0;
  text-align: center;
  pointer-events: none;
}

.card-btn-container { text-align: center; margin-top: 14px; }

/* REVIEWS CARD SECTION */
.reviews-section {
  max-width: 1200px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
}

.reviews-card {
  background: rgba(19, 19, 28, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

.reviews-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: #FFF; }
.reviews-sub { color: #94A3B8; font-size: 13px; margin-bottom: 20px; }
.ratings-summary { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.big-rating { font-size: 64px; font-weight: 700; color: #FFF; line-height: 1; }
.stars-purple { color: #A855F7; font-size: 20px; margin-top: 6px; }
.verified-text { color: #64748B; font-size: 12px; margin-top: 4px; }
.rating-bars { flex: 1; min-width: 220px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13px; color: #94A3B8; }
.bar-bg { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #A855F7; box-shadow: 0 0 10px #A855F7; border-radius: 4px; }


/* FLOATING SELECTION BAR */
.selection-floating-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.6);
  backdrop-filter: blur(15px);
  padding: 12px 28px;
  border-radius: 50px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: all 0.4s ease;
}

.selection-floating-bar.active { transform: translateX(-50%) translateY(0); opacity: 1; }

.send-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* RATING MODAL (SPELLING FIXED) */
.rating-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.rating-modal-overlay.active { opacity: 1; pointer-events: auto; }

.rating-card {
  background: rgba(19, 19, 28, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 28px;
  padding: 30px 24px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.rating-card h3 { color: #FFF; font-family: 'Space Grotesk', sans-serif; font-size: 22px; }
.rating-card p { color: #94A3B8; font-size: 14px; margin-top: 6px; }

.interactive-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 32px;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
}

.interactive-stars span.active { color: #A855F7; text-shadow: 0 0 15px #A855F7; }

.modal-actions { display: flex; justify-content: center; gap: 12px; margin-top: 15px; }
.cancel-btn { background: rgba(255,255,255,0.1) !important; }

.network-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #EF4444;
  color: #FFF;
  text-align: center;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  display: none;
}

/* FOOTER STYLING */
footer {
  background: #0B0E14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 20px 30px 20px;
  margin-top: 60px;
  color: #94A3B8;
}

.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); flex-wrap: wrap; gap: 20px; }
.footer-brand-logo { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: #A855F7; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; color: #FFF; text-decoration: none; font-size: 14px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; padding: 40px 0; }
.footer-col h4 { color: #E2E8F0; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #94A3B8; text-decoration: none; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 13px; }

@media (max-width: 768px) {
  header { flex-direction: column; gap: 12px; text-align: center; }
  nav { gap: 16px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
  .grid { grid-template-columns: 1fr !important; }
  .floating-asset { width: 65px !important; opacity: 0.5; }
  .selection-floating-bar { width: 92%; justify-content: space-between; padding: 10px 16px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* MOBILE RESPONSIVE FIX FOR HERO SECTION */

  .hero-container {
    width: 90% !important;
    max-width: 100% !important;
    padding: 40px 15px !important; /* Side padding kam kar di taaki content cut na ho */
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .hero-container h1, 
  .hero-title,
  .hero-container h1 span {
    font-size: 2.7rem !important; /* Mobile par font size chota kar diya taaki ek line me fit ho */
    line-height: 1.1 !important;
    word-break: break-word !important;
    text-align: center !important;
  }

  .hero-container p {
    font-size: 0.95rem !important;
    text-align: center !important;
  }



/* EYE PREVIEW BUTTON STYLING */
.eye-preview-btn {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #FFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.eye-preview-btn:hover {
  background: #A855F7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
  transform: scale(1.1);
}

.eye-preview-btn:active {
  transform: scale(0.95);
}
/* LIGHTBOX OVERLAY FIX */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
}

.lightbox-overlay.active {
  display: flex !important;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 30px rgba(168, 85, 247, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  color: #FFF;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}
/* Disable Text Selection & Image Drag */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}