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

:root {
  --gold: #D4AF37;
  --dark: #101010;
  --white: #FFFFFF;
  --beige: #F5F1E8;
  --light-gold: #F4E4C1;
  --gray: #666666;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

body.dark-mode {
  background: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode .nav {
  background: rgba(16, 16, 16, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body.dark-mode .section {
  background: #1a1a1a;
}

body.dark-mode .card {
  background: #242424;
  border-color: rgba(212, 175, 55, 0.3);
}

body.dark-mode .footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.logo-sub {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--dark);
}

body.dark-mode .logo-sub {
  color: #e0e0e0;
}


body.dark-mode .logo-sub {
  color: #e0e0e0;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

body.dark-mode .nav-menu a {
  color: #e0e0e0;
}

.nav-menu a:hover {
  color: var(--gold);
}

.theme-toggle, .lang-toggle {
  background: var(--gold);
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s;
}

.theme-toggle:hover, .lang-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 150px 20px 100px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--light-gold) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
}

/* Section */
.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark);
}

body.dark-mode .section-title {
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.zodiac-card {
  background: var(--white);
  border: 2px solid var(--light-gold);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

body.dark-mode .zodiac-card {
  background: #242424;
  border-color: rgba(212, 175, 55, 0.3);
}

.zodiac-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.zodiac-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.zodiac-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

body.dark-mode .zodiac-name {
  color: var(--gold);
}

.zodiac-date {
  font-size: 12px;
  color: var(--gray);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--white);
  border: 2px solid var(--light-gold);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.card-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

body.dark-mode .card h3 {
  color: var(--gold);
}

.card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.card-price {
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--light-gold);
  text-align: center;
}

body.dark-mode .testimonial {
  background: #242424;
  border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gold);
  font-size: 16px;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gold);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

body.dark-mode .form-group label {
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gold);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 0.3s;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
  background: #242424;
  border-color: rgba(212, 175, 55, 0.3);
  color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* AstroBot */
.astrobot {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}

.astrobot:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.astrobot-chat {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 350px;
  height: 450px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 998;
  border: 2px solid var(--gold);
}

body.dark-mode .astrobot-chat {
  background: #242424;
}

.astrobot-chat.active {
  display: flex;
}

.astrobot-header {
  background: var(--gold);
  padding: 15px;
  border-radius: 18px 18px 0 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.astrobot-close {
  cursor: pointer;
  font-size: 20px;
}

.astrobot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.astrobot-message {
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
}

.astrobot-message.bot {
  background: var(--light-gold);
  align-self: flex-start;
}

body.dark-mode .astrobot-message.bot {
  background: rgba(212, 175, 55, 0.2);
}

.astrobot-message.user {
  background: var(--gold);
  align-self: flex-end;
}

.astrobot-input {
  padding: 15px;
  border-top: 2px solid var(--light-gold);
  display: flex;
  gap: 10px;
}

body.dark-mode .astrobot-input {
  border-top-color: rgba(212, 175, 55, 0.3);
}

.astrobot-input input {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--light-gold);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

body.dark-mode .astrobot-input input {
  background: #1a1a1a;
  border-color: rgba(212, 175, 55, 0.3);
  color: #e0e0e0;
}

.astrobot-input button {
  padding: 10px 20px;
  background: var(--gold);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 20px 20px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gray);
}

/* Video Section */
/* Video Section */
/* Video Section – compact vertical video */
.video-container {
  max-width: 800px;
  margin: 50px auto;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--beige), var(--light-gold));
  
  display: flex;
  justify-content: center;
  align-items: center;
}

/* video ko chota, center & vertical friendly */
.intro-video {
  max-width: 320px;      /* width control */
  max-height: 460px;     /* height control */
  width: 100%;           /* responsive */
  height: auto;
  border-radius: 16px;
  display: block;
  outline: none;
  border: none;
  background: #000;      /* side me black bars instead of gold */
}



/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.about-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.about-content h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 28px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: var(--beige);
  border-radius: 15px;
}

body.dark-mode .stat-card {
  background: rgba(212, 175, 55, 0.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .nav-menu {
    background: #1a1a1a;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .astrobot-chat {
    width: 90%;
    left: 5%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}
/* ABOUT SECTION LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;   /* left media, right text */
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

/* left card */
.about-media {
  background: linear-gradient(135deg, var(--beige), var(--light-gold));
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--gold);
}

/* inside left: slider + video side-by-side */
.about-media-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* left images, right video */
  gap: 16px;
  align-items: center;
}

/* titles */
.about-media-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  color: var(--dark);
}

/* image slider area – centered */
.about-slider-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-slider {
  position: relative;
  width: 100%;
  max-width: 260px;
  padding-top: 75%;              /* 4:3 ratio box */
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  margin: 0 auto;                /* center */
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

/* video side box */
.about-video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-video {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  border: none;
  outline: none;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media-inner {
    grid-template-columns: 1fr;       /* slider upar, video neeche */
  }
}
.video-container {
  max-width: 700px;
  margin: 25px auto;
  background: #f8f1dd;
  padding: 25px;
  border-radius: 20px;
  border: 3px solid #d1a341;
  box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.intro-video {
  width: 100%;
  border-radius: 14px;
  background: black;
  outline: none;
}
