/* ================= BASIC ================= */
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #1a1036, #050b1e);
  color: #fff;
  margin: 0;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 70px;
  padding: 0 20px;

  display: flex;
  align-items: center;

  background: rgba(5, 11, 30, 0.85);
  backdrop-filter: blur(14px);

  z-index: 9999;
}

/* LOGO */
.logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}

/* ================= DESKTOP MENU ================= */
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* hide desktop menu */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;

    width: 100%;
    height: calc(100vh - 70px);

    background: linear-gradient(180deg, #050b1e, #1a1036);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 40px;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 9998;
  }

  /* ACTIVE STATE */
  .nav-links.active {
    transform: translateX(0);
  }

  /* SHOW HAMBURGER */
  .hamburger {
    display: block;
  }

  .nav-links li a {
    font-size: 18px;
  }
}


.hamburger {
  display: none;
  margin-left: auto;
  width: 26px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

.hamburger span:nth-child(1){top:0}
.hamburger span:nth-child(2){top:8px}
.hamburger span:nth-child(3){top:16px}

/* ================= HERO ================= */
.social-hero {
  min-height: 60vh;
  padding-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(5,11,30,0.85), rgba(5,11,30,0.95)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee")
    center / cover no-repeat;
}

.social-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  background: linear-gradient(135deg,#d4af37,#ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yt-stats {
  margin: 16px 0;
  color: #d4af37;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.yt-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg,#d4af37,#ff9f1c);
  color: #000;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
}

/* ================= VIDEOS ================= */
.video-section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.video-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 28px;
}

.video-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.video-card img {
  width: 100%;
  display: block;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #fff;
}

.video-card h3 {
  padding: 16px;
  color: #eee;
  font-size: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hamburger {display:block}

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(#050b1e,#1a1036);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transform: translateX(100%);
    transition: 0.4s;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .social-hero h1 {
    font-size: 32px;
  }
}
/* ================= ROOT ================= */
:root {
  --gold: #d4af37;
  --orange: #ff9f1c;
  --dark: #050b1e;
  --purple: #1a1036;
}

/* ================= BASIC ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, var(--purple), var(--dark));
  color: #fff;
  overflow-x: hidden; /* 🔒 VERY IMPORTANT */
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 70px;
  padding: 0 20px;

  display: flex;
  align-items: center;

  background: rgba(5, 11, 30, 0.85);
  backdrop-filter: blur(14px);

  z-index: 9999;
}

/* LOGO */
.logo {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}

/* ================= DESKTOP MENU ================= */
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  margin-left: auto;

  width: 28px;
  height: 20px;

  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {

  /* show hamburger */
  .hamburger {
    display: block;
  }

  /* mobile nav */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;

    width: 100%;
    height: calc(100vh - 70px);

    background: linear-gradient(180deg, #050b1e, #1a1036);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 40px;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 9998;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
  }
}

/* ================= HERO ================= */
.social-hero {
  min-height: 60vh;
  padding-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(rgba(5,11,30,0.85), rgba(5,11,30,0.95)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee")
    center / cover no-repeat;
}

.social-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .social-hero h1 {
    font-size: 32px;
  }
}

/* ================= VIDEOS ================= */
.video-section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.video-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.video-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.video-card img {
  width: 100%;
  display: block;
}

.video-card h3 {
  padding: 16px;
  color: #eee;
  font-size: 15px;
}
/* ================= FOOTER ================= */
.astro-footer {
  position: relative;
  padding: 90px 20px 50px;
  background: linear-gradient(180deg, #050b1e, #1a1036);
  overflow: hidden;
}

/* subtle top glow line */
.astro-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

/* footer container */
.footer-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* brand */
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  background: linear-gradient(135deg, #d4af37, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* tagline */
.footer-tagline {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

/* contact button */
.footer-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #d4af37, #ff9f1c);
  color: #000;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(212,175,55,0.45);
  transition: all 0.35s ease;
  margin-bottom: 40px;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(212,175,55,0.75);
}

/* ================= SOCIAL ICONS ================= */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 45px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 20px;
  transition: all 0.35s ease;
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.social-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(212,175,55,0.7);
  background: rgba(212,175,55,0.08);
}

/* divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,0.4),
    transparent
  );
  margin: 40px 0 25px;
}

/* credit */
.footer-credit {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 10px;
}

.footer-credit span {
  color: #d4af37;
  font-weight: 500;
}

/* contact info */
.footer-contact {
  font-size: 13px;
  color: #aaa;
}

.footer-contact a {
  color: #d4af37;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 520px) {
  .footer-brand {
    font-size: 24px;
  }

  .footer-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
.video-section {
  padding: 80px 6%;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

.video-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.video-card {
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;

  /* 👇 NEW BORDER */
  border: 2px solid rgba(212,175,55,0.55);
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
}


.thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* YouTube Play Button */
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 52px;
  background: #ff0000;
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(255,0,0,0.45);
  transition: 0.3s ease;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-card:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;

  /* 👇 TITLE BOX */
  background: linear-gradient(135deg, rgba(233, 151, 44, 0.85), rgba(5,11,30,0.85));
  padding: 10px 14px;
  border-radius: 10px;

  /* 👇 TITLE BORDER */
  border: 1px solid rgba(212,175,55,0.6);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dob-inputs {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.dob-inputs select,
.dob-inputs input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  min-width: 100px;
}
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 8px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #ffd27d,
    #d4af37,
    #7f5af0,
    #ffd27d
  );
  background-size: 250% 250%;
  animation: glowFlow 7s ease infinite;

  /* SHARP EDGE + FADE GLOW */
  box-shadow:
    0 0 0 1.5px rgba(255, 210, 125, 0.95), /* sharp line */
    0 0 18px rgba(212, 175, 55, 0.55),
    0 0 45px rgba(240, 225, 90, 0.521),
    0 0 90px rgba(127, 90, 240, 0.18);
}

/* Clean Inner Frame */
.video-wrapper iframe {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  border: none;
  background: #000;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.6);
}

/* Smooth Divine Movement */
@keyframes glowFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mobile */
@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 220px;
  }
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;

  /* Soft Premium Shadow */
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.6);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.65),
    0 0 20px rgba(37, 211, 102, 0.6);
}

/* Icon fix */
.whatsapp-float i {
  line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    right: 16px;
    bottom: 16px;
  }
}
