/* =========================
   RESET + BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

/* =========================
   LOADER
========================= */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  font-size: 42px;
  letter-spacing: 4px;
  z-index: 9999;
  animation: fadeOut 1.8s forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* =========================
   HEADER / NAVBAR
========================= */
/* =========================
   HEADER – TRANSPARENT TO SOLID
========================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Fully transparent at top */
  background: rgba(10, 10, 15, 0);
  backdrop-filter: blur(0px);

  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    box-shadow 0.6s ease;

  z-index: 1000;
}

/* Premium glass state */
.site-header.scrolled {
  background: rgba(10, 10, 15, 0.45); /* NOT pure black */
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header.scrolled .logo span,
.site-header.scrolled nav a {
  text-shadow: 0 0 8px rgba(0,240,255,0.15);
}

.site-header {
  will-change: background, backdrop-filter;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo img {
  height: 36px;
}

nav a {
  margin-left: 20px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
  color: #00f0ff;
}
/* =========================
   LOGO LINK FIX (NO BLUE, NO UNDERLINE)
========================= */

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.site-header .logo:visited,
.site-header .logo:hover,
.site-header .logo:active {
  color: white;
  text-decoration: none;
}

.site-header .logo span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #00f0ff, #00ff99);
  color: #000;
}

.btn.ghost {
  border: 1px solid #00f0ff;
  color: #00f0ff;
  margin-left: 10px;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,240,255,0.7);
}

/* =========================
   HERO SECTION (HOME)
========================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.55) saturate(1.2);
}

.animated-gradient {
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg,
    rgba(0,240,255,0.25),
    rgba(255,0,150,0.18),
    rgba(0,255,150,0.18)
  );
  filter: blur(100px);
  animation: gradientMove 10s ease-in-out infinite;
  z-index: -2;
}

@keyframes gradientMove {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10%,10%); }
}

.hero-overlay {
  z-index: 2;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 64px;
  margin-bottom: 14px;
  animation: float 4s ease-in-out infinite;
}

.hero-overlay p {
  opacity: 0.9;
  margin-bottom: 26px;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =========================
   QUICK SERVICES (HOME)
========================= */
.quick-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 16px;
  padding: 60px 20px;
  background: #050505;
}

.qs-card {
  background: linear-gradient(145deg, #0c0c0c, #050505);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.35s;
}

.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0,240,255,0.35);
}

/* =========================
   INNER PAGES (ABOUT, SERVICES, CONTACT)
========================= */
.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 160px 20px 80px;  /* 👈 extra top padding for header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, #050014, #000428, #001f3f);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at top left, rgba(0,240,255,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,0,150,0.25), transparent 40%);
  filter: blur(120px);
  animation: moveGlow 12s ease-in-out infinite;
  z-index: -1;
}

@keyframes moveGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(8%, -8%); }
}

/* =========================
   SERVICES CARDS
========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 22px;
  width: 100%;
  max-width: 1000px;
  margin-top: 35px;
}

.card {
  background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(0,20,40,0.85));
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s;
  backdrop-filter: blur(6px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0,240,255,0.45);
}

/* =========================
   ARTISTS PAGE (COMING SOON)
========================= */
.coming {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, #020024, #090979, #00d4ff);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

.pulse {
  width: 120px;
  height: 120px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  margin: 30px auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* =========================
   APPLY PAGE (FULL SCREEN FORM)
========================= */
.form-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding-top: 160px;  /* 👈 header gap */
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;   /* 👈 VERY IMPORTANT */
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0f0026, #000428, #004e92);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.form-section h1 {
  margin-bottom: 40px;   /* 👈 text + box gap fix */
  font-size: 36px;
  letter-spacing: 0.5px;
  text-align: center;
}

.form-section form {
  width: 100%;
  max-width: 480px;
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px 32px;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.25);
  animation: float 4s ease-in-out infinite;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 14px 16px;
  margin: 12px 0;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  transition: 0.3s;
}

.form-section input:focus,
.form-section textarea:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.form-section button {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f0ff, #00ff99);
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.form-section button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0.75;
  background: #050505;
}

/* =========================
   COMMON ANIMATIONS
========================= */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .site-header {
    padding: 14px 20px;
  }

  .hero-overlay h1 {
    font-size: 42px;
  }

  .page {
    padding: 140px 20px 60px;
  }

  .form-section h1 {
    font-size: 30px;
  }
}
/* =========================
   HERO TEXT LINK COLOR FIX (FINAL)
========================= */

.hero-overlay p {
  color: rgba(255,255,255,0.9);
}

.hero-overlay p a {
  color: #00f0ff;              /* neon cyan */
  text-decoration: none;      /* underline hatao */
  font-weight: 600;
  transition: 0.3s;
}

.hero-overlay p a:visited {
  color: #00f0ff;              /* purple nahi hone dega */
}

.hero-overlay p a:hover {
  color: #00ff99;
  text-shadow: 0 0 10px rgba(0,240,255,0.8);
}
/* =========================
   ABOUT PAGE PREMIUM DESIGN
========================= */

.about-hero {
  min-height: 60vh;
  padding-top: 180px;
  text-align: center;
  background: linear-gradient(135deg, #020024, #050b3a, #001f3f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.about-hero p {
  opacity: 0.85;
  max-width: 600px;
}

.about-wrapper {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.05);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 60px rgba(0,240,255,0.15);
}

.about-card h2 {
  margin-bottom: 16px;
  color: #00f0ff;
}

.about-card p {
  margin-bottom: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.about-card ul {
  padding-left: 20px;
}

.about-card li {
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   SERVICES PAGE PREMIUM UI
========================= */

.services-hero {
  min-height: 60vh;
  padding-top: 180px;
  text-align: center;
  background: linear-gradient(135deg, #000428, #001f54, #020024);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-hero h1 {
  font-size: 54px;
  margin-bottom: 10px;
}

.services-hero p {
  opacity: 0.85;
  max-width: 600px;
}

.services-wrapper {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.service-card h2 {
  margin-bottom: 12px;
  color: #00f0ff;
}

.service-card p {
  line-height: 1.7;
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 60px rgba(0,240,255,0.25);
}
/* =========================
   ULTRA CLASSY SERVICES UI
========================= */

.premium-hero {
  min-height: 70vh;
  padding-top: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0a1a3a, #020617 70%);
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(0,240,255,0.15), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(255,0,150,0.12), transparent 40%);
  filter: blur(120px);
  animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10%, -10%); }
}

.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-inner h1 {
  font-size: 64px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-inner p {
  opacity: 0.75;
  font-size: 18px;
}

/* Luxury Services Layout */
.luxury-services {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 50px;
}

.lux-card {
  position: relative;
  padding: 60px 40px 50px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-radius: 26px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s;
  overflow: hidden;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,240,255,0.15), transparent);
  opacity: 0;
  transition: 0.5s;
}

.lux-card:hover::before {
  opacity: 1;
}

.lux-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,240,255,0.25);
}

.lux-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
}

.lux-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: #00f0ff;
}

.lux-card p {
  line-height: 1.8;
  opacity: 0.9;
}

/* Fade Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   ARTISTS PAGE LUXURY UI
========================= */

.artists-hero {
  min-height: 70vh;
  padding-top: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0a1a3a, #020617 70%);
  position: relative;
  overflow: hidden;
}

.artists-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 50px;
}

.artist-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 40px 30px 50px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}

.artist-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,240,255,0.25);
}

.artist-image {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.artist-image.placeholder {
  background: linear-gradient(135deg, #001f3f, #000428);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.artist-image.placeholder::after {
  content: "Artist Image";
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  letter-spacing: 1px;
}

.artist-card h2 {
  margin-bottom: 10px;
  color: #00f0ff;
}

.artist-card p {
  opacity: 0.85;
  line-height: 1.6;
}
/* =========================
   HOME PAGE LUXURY HERO
========================= */

.home-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.home-hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -2;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,240,255,0.25), rgba(0,0,0,0.85) 70%);
  z-index: -1;
}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 72px;
  margin-bottom: 12px;
}

.hero-overlay p {
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-overlay a {
  color: #00f0ff;
  text-decoration: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Brand Cards */
.brand-section {
  padding: 100px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.brand-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border-radius: 26px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,240,255,0.25);
}

.brand-card h2 {
  color: #00f0ff;
  margin-bottom: 12px;
}

/* =========================
   CONTACT PAGE LUXURY UI
========================= */

.contact-hero {
  min-height: 60vh;
  padding-top: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0a1a3a, #020617 70%);
}

.contact-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
}

.contact-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.5s;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,240,255,0.25);
}

.contact-card h2 {
  color: #00f0ff;
  margin-bottom: 10px;
}

.contact-card p {
  opacity: 0.9;
  font-size: 16px;
}
/* =========================
   HERO GLOW + BRAND REFINEMENT
========================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.55) saturate(1.3);
}

/* Cinematic Glow Layer */
.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,240,255,0.35), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,0,150,0.25), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(0,255,150,0.18), transparent 45%);
  filter: blur(120px);
  animation: slowGlow 14s ease-in-out infinite;
  z-index: -2;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
  z-index: -1;
}

/* Glow Animation */
@keyframes slowGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(8%, -8%); }
}

/* Brand Text Positioning */
.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* Brand Name */
.hero-overlay h1 {
  font-size: 78px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  animation: float 5s ease-in-out infinite;
}

/* Tagline */
.hero-overlay p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.hero-buttons .btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons .btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(0,240,255,0.8);
}

/* Floating Animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile Refinement */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 46px;
  }

  .hero-overlay p {
    font-size: 15px;
  }
}
/* =========================
   SERVICES – ULTRA PREMIUM LAYOUT
========================= */

.services-luxury-grid {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 50px;
}

.lux-service-card {
  position: relative;
  padding: 60px 40px 50px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-radius: 28px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s;
  overflow: hidden;
  text-align: left;
}

.lux-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,240,255,0.18), transparent);
  opacity: 0;
  transition: 0.5s;
}

.lux-service-card:hover::before {
  opacity: 1;
}

.lux-service-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0,240,255,0.28);
}

.lux-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.lux-service-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: #00f0ff;
  letter-spacing: 0.5px;
}

.lux-service-card p {
  line-height: 1.8;
  opacity: 0.9;
}

/* =========================
   SERVICES ANIMATIONS
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE REFINEMENT
========================= */

@media (max-width: 768px) {
  .lux-service-card {
    padding: 40px 30px;
  }

  .lux-service-card h2 {
    font-size: 22px;
  }
}
/* =========================
   JOIN PAGE – LUXURY UI
========================= */

.join-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.join-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 50px 40px 60px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.join-card h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #00f0ff;
  letter-spacing: 0.5px;
}

/* Floating Labels */
.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
  padding: 0 6px;
}

.input-group textarea + label {
  top: 20px;
  transform: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0,240,255,0.6);
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #00f0ff;
  background: #050505;
}

/* Submit Button */
.join-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f0ff, #00ff99);
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  margin-top: 10px;
}

.join-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(0,240,255,0.8);
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  margin-top: 30px;
  animation: fadeUp 0.8s ease forwards;
}

.success-message h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.success-message p {
  opacity: 0.9;
  line-height: 1.6;
}

/* =========================
   JOIN PAGE ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header nav a {
  position: relative;
  padding: 6px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #00f0ff;
  transition: 0.3s;
}

.site-header nav a:hover::after {
  width: 100%;
}

.site-header nav a.active::after {
  width: 100%;
}
/* =========================
   ABOUT ACCORDION – CLASSY UI
========================= */

.about-hero {
  padding: 160px 20px 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.about-hero p {
  opacity: 0.75;
}

/* Accordion Layout */
.about-accordion {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px 120px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.accordion-header {
  font-size: 22px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 26px;
  transition: 0.3s;
}

.accordion-header.active::after {
  content: "–";
}

.accordion-header:hover {
  color: #00f0ff;
}

/* Content hidden by default */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.accordion-content p {
  padding-bottom: 20px;
  line-height: 1.8;
  opacity: 0.9;
}
/* =========================
   FOUNDER QUOTE – LUXURY BLOCK
========================= */

.founder-quote-section {
  padding: 100px 20px 140px;
  display: flex;
  justify-content: center;
}

.founder-quote-box {
  max-width: 800px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.founder-quote-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,240,255,0.25), transparent);
  opacity: 0;
  transition: 0.5s;
}

.founder-quote-box:hover::before {
  opacity: 1;
}

.quote-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.quote-author {
  font-size: 14px;
  letter-spacing: 1px;
  color: #00f0ff;
}
/* =========================
   ELIGIBILITY SECTION – JOIN PAGE
========================= */

.eligibility-section {
  max-width: 1100px;
  margin: auto;
  padding: 120px 20px 60px;
  text-align: center;
}

.eligibility-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00f0ff;
}

.eligibility-subtext {
  opacity: 0.8;
  margin-bottom: 50px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.eligibility-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.eligibility-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0,240,255,0.25);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.contact-card h2 {
  margin-bottom: 30px;
  color: #00f0ff;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.contact-note {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-note {
    text-align: center;
  }
}

/* =========================
   CONTACT PAGE – PREMIUM
========================= */

.contact-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(14px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.contact-card h2 {
  color: #00f0ff;
  margin-bottom: 30px;
  font-size: 20px;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.founder-card {
  background: linear-gradient(
    180deg,
    rgba(0,240,255,0.06),
    rgba(255,255,255,0.02)
  );
}

/* Bottom note */
.contact-note {
  max-width: 800px;
  margin: 0 auto 120px;
  text-align: center;
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.8;
  padding: 0 20px;
}

/* Simple reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease forwards;
}

.reveal.delay {
  animation-delay: 0.2s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   CONTACT PAGE – FOUNDER
========================= */

.contact-wrapper {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 42px;
  backdrop-filter: blur(14px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.contact-card h2 {
  color: #00f0ff;
  margin-bottom: 28px;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 6px;
}

.contact-item p a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.contact-item p a:hover {
  color: #00f0ff;
}

/* Founder specific */
.founder-card {
  background: linear-gradient(
    180deg,
    rgba(0,240,255,0.08),
    rgba(255,255,255,0.02)
  );
}

.founder-name strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.founder-name em {
  font-size: 14px;
  opacity: 0.7;
}

/* Social links */
.founder-socials {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.founder-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.founder-socials a:hover {
  opacity: 1;
  color: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 12px rgba(0,240,255,0.4);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease forwards;
}

.reveal.delay {
  animation-delay: 0.2s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-socials {
    justify-content: center;
  }
}

/* =========================
   FOUNDER TYPOGRAPHY UPGRADE
========================= */

.founder-identity {
  margin-bottom: 18px;
}

.founder-identity h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}

.founder-aka {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.founder-role {
  margin: 22px 0 28px;
  font-size: 16px;
  font-weight: 500;
  color: #00f0ff;
  letter-spacing: 0.6px;
}

.founder-email {
  margin-bottom: 26px;
}

/* Socials thoda neeche & subtle */
.founder-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

/* Founder card extra depth */
.founder-card {
  background: linear-gradient(
    180deg,
    rgba(0,240,255,0.10),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
/* =========================
   CONTACT – ADVANCED DESIGN
========================= */

.contact-hero-advanced {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero-inner h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.contact-hero-inner p {
  opacity: 0.65;
  letter-spacing: 0.6px;
}

/* Layout */
.contact-advanced-wrapper {
  max-width: 1200px;
  margin: 140px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* Panels */
.contact-panel {
  background: radial-gradient(
      circle at top,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0.88)
    );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 50px;
  backdrop-filter: blur(16px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.contact-panel h3 {
  color: #00f0ff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Founder gets accent, not new color */
.founder-panel {
  background: radial-gradient(
      circle at top,
      rgba(0,240,255,0.18),
      rgba(0,0,0,0.88)
    );
}


.founder-main {
  margin-bottom: 35px;
}

.founder-main h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.founder-main .aka {
  opacity: 0.7;
  font-size: 14px;
}

.founder-role {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #00f0ff;
  letter-spacing: 0.8px;
}


/* Items */
.panel-item {
  margin-bottom: 26px;
}

.panel-item span {
  display: block;
  font-size: 12px;
  opacity: 0.55;
  margin-bottom: 6px;
}

.panel-item a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
}

.panel-item a:hover {
  color: #00f0ff;
}

/* Socials */
.founder-socials-advanced {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.founder-socials-advanced a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  opacity: 0.65;
  transition: all 0.35s ease;
}

.founder-socials-advanced a:hover {
  opacity: 1;
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 14px rgba(0,240,255,0.45);
}

/* Bottom intent */
.contact-intent {
  max-width: 900px;
  margin: 0 auto 140px;
  padding: 0 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.7;
}

/* Reveal */
.reveal-advanced {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: revealAdvanced 1.1s ease forwards;
}

.reveal-advanced.delay {
  animation-delay: 0.2s;
}

@keyframes revealAdvanced {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .contact-advanced-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-hero-inner h1 {
    font-size: 42px;
  }
}
/* =========================
   CONTACT HERO – NEON FIX
========================= */

.contact-hero-advanced {
  background: radial-gradient(
      circle at top left,
      rgba(0,240,255,0.18),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #03131a,
      #060616 60%,
      #12051f
    );
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-panel:hover::before {
  opacity: 1;
}
.founder-role::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, transparent);
  margin-bottom: 14px;
}
.contact-note {
  max-width: 720px;
  margin: 80px auto 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.65;
  letter-spacing: 0.4px;
}
/* =========================
   FOUNDER SOCIAL ICONS
========================= */

.founder-socials-advanced {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

.social-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0.9);
  transition: all 0.35s ease;
  opacity: 0.9;
}


.social-icon:hover {
  background: rgba(0,240,255,0.12);
  box-shadow: 0 0 22px rgba(0,240,255,0.35);
  transform: translateY(-4px);
}

.social-icon:hover img {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(0,240,255,0.6));
  opacity: 1;
}

.company-panel {
  background: radial-gradient(
    circle at top left,
    rgba(0,240,255,0.08),
    rgba(0,0,0,0.9)
  );
}
.company-panel .label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}

.company-panel .value {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 22px;
}
.company-panel h3 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
}

.company-panel h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  opacity: 0.8;
  margin-top: 12px;
  background: linear-gradient(90deg, #00f0ff, transparent);
}
.company-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.06),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.company-panel:hover::before {
  opacity: 1;
}
.company-panel h3::before {
  content: "●";
  color: #00f0ff;
  font-size: 10px;
  margin-right: 8px;
}
.company-panel {
  background:
    linear-gradient(
      135deg,
      rgba(0,240,255,0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at top,
      rgba(255,255,255,0.04),
      rgba(0,0,0,0.9)
    );
}

