/* ====== BASE RESET AND LAYOUT ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: #0b1c2c;
  color: #e8f1ff;
  overflow-x: hidden;
}

/* ====== ZODIAC WHEEL BACKGROUND ====== */
.zodiac-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zodiac-wheel-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100vw, 100vh);
  height: min(100vw, 100vh);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 120px 40px #5ee7ff33, 0 0 0 9999px #0b1c2c88;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zodiac-wheel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.33;
  filter: drop-shadow(0 0 80px #5ee7ff55) brightness(1.15) contrast(1.1);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  100% { transform: rotate(360deg);}
}

/* ====== NAVIGATION BAR ====== */
nav {
  width: 100%;
  background: rgba(10, 20, 40, 0.95);
  box-shadow: 0 2px 24px #0b1c2c55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 2em;
  position: relative;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
  color: #5ee7ff;
  gap: 0.5em;
  text-shadow: 0 0 8px #5ee7ff99;
}
.nav-links {
  display: flex;
  gap: 1.5em;
  list-style: none;
  align-items: center;
  transition: right 0.3s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #e8f1ff;
  text-decoration: none;
  font-size: 1.1em;
  padding: 0.4em 1em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.nav-links a.nav-anim {
  animation: navPopIn 0.7s cubic-bezier(.68,-0.55,.27,1.55) both;
}
@keyframes navPopIn {
  0% {transform: scale(0.7) translateY(-20px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.nav-links a:hover, .nav-links a:focus {
  background: #1b2c4c;
  color: #5ee7ff;
  box-shadow: 0 0 8px #5ee7ff44;
  transform: scale(1.07);
}

/* ====== MEGA DROPDOWN FOR RASHI RATNA ====== */
nav .dropdown {
  position: relative;
}
nav .dropdown > a {
  cursor: pointer;
}
nav .mega-dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #101a2c;
  box-shadow: 0 4px 24px #0b1c2c88;
  border-radius: 14px;
  min-width: 760px;
  max-width: 95vw;
  padding: 1.5em 2.2em;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  flex-wrap: nowrap;
  gap: 2em;
  justify-content: space-between;
}
nav .dropdown.open > .mega-dropdown-menu,
nav .dropdown:hover > .mega-dropdown-menu {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mega-dropdown-menu .dropdown-section {
  min-width: 150px;
  margin-right: 1em;
}
.mega-dropdown-menu .dropdown-section:last-child {
  margin-right: 0;
}
.mega-dropdown-menu .dropdown-section h4 {
  color: #5ee7ff;
  margin-bottom: 0.5em;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #223;
  padding-bottom: 4px;
  text-shadow: 0 0 8px #5ee7ff44;
}
.mega-dropdown-menu .dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-dropdown-menu .dropdown-section li {
  color: #e8f1ff;
  font-size: 1em;
  margin-bottom: 0.35em;
  padding: 3px 0 3px 0.5em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-align: left;
}
.mega-dropdown-menu .dropdown-section li:hover {
  background: #5ee7ff22;
  color: #5ee7ff;
}
@media (max-width: 900px) {
  nav .mega-dropdown-menu {
    position: static;
    left: 0;
    top: 0;
    transform: none;
    min-width: 100vw;
    max-width: 100vw;
    flex-direction: column;
    gap: 1em;
    padding: 1.2em 0.5em;
    border-radius: 0;
  }
  .mega-dropdown-menu .dropdown-section {
    min-width: 0;
    margin-right: 0;
    margin-bottom: 1em;
  }
}

/* ====== HAMBURGER MENU ====== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: relative;
  margin-left: 1em;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #5ee7ff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-links {
    flex-direction: column;
    background: #101a2c;
    position: fixed;
    top: 0; right: -100vw;
    height: 100vh;
    width: 220px;
    align-items: flex-start;
    padding-top: 80px;
    gap: 1.2em;
    box-shadow: -6px 0 18px #0b1c2c77;
    opacity: 0;
    pointer-events: none;
    transition: right 0.3s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
    z-index: 99;
  }
  .nav-links.open {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }
  .hamburger {
    display: flex;
  }
}

/* ====== HEADER ====== */
header {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 2em;
  padding-top: 1.5em;
}
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
  margin-top: 1.5em;
}
.profile-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #5ee7ff;
  box-shadow: 0 0 28px #5ee7ff44;
  margin-bottom: 0.8em;
  background: #1a2d48;
}
.profile-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.header-content h1 {
  font-size: 2.3em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 18px #5ee7ff33, 0 0 2px #0b1c2c;
}
.header-content .highlight {
  color: #5ee7ff;
  text-shadow: 0 0 8px #5ee7ff99;
}
.intro {
  margin: 0 auto;
  max-width: 600px;
  font-size: 1.15em;
  background: rgba(20, 36, 60, 0.7);
  border-radius: 12px;
  padding: 1em 1.5em;
  box-shadow: 0 0 18px #5ee7ff22;
  color: #e8f1ff;
  line-height: 1.6;
}

/* ====== HOMEPAGE MAIN CONTENT STYLES ====== */
main {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2em 1.2em 1em 1.2em;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
section {
  background: rgba(14, 30, 60, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 30px #5ee7ff11;
  margin-bottom: 1em;
  padding: 2em 1.5em;
  text-align: center;
}
section h2 {
  font-size: 1.7em;
  color: #5ee7ff;
  margin-bottom: 0.6em;
  text-shadow: 0 0 8px #5ee7ff55;
  letter-spacing: 1px;
}
section h3 {
  font-size: 1.2em;
  color: #e8f1ff;
  margin-bottom: 0.4em;
  letter-spacing: 0.5px;
}
.info-section p, .info-section ul, .faq-section p, .services-section ul {
  color: #b3d2ff;
  font-size: 1.05em;
  line-height: 1.6;
}
.astro-columns {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin-top: 1.2em;
  flex-wrap: wrap;
}
.astro-box {
  flex: 1 1 260px;
  background: rgba(20, 40, 70, 0.7);
  border-radius: 12px;
  box-shadow: 0 0 18px #5ee7ff22;
  padding: 1.2em;
  margin: 0.5em 0;
  min-width: 220px;
}
.astro-box ul {
  text-align: left;
  margin: 0.6em 0 0.6em 1em;
}
.astro-box li {
  margin-bottom: 0.3em;
}
.faq-section .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.faq-item {
  flex: 1 1 320px;
  background: rgba(18, 36, 60, 0.7);
  border-radius: 10px;
  padding: 1em 1em 0.7em 1em;
  margin: 0.4em 0;
  min-width: 220px;
  box-shadow: 0 0 14px #5ee7ff11;
  text-align: left;
}
.faq-item h4 {
  color: #5ee7ff;
  margin-bottom: 0.3em;
  font-size: 1.1em;
}
.services-section .services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2em;
  list-style: none;
  margin-top: 1em;
  padding: 0;
}
.services-section .services-list li {
  background: rgba(30, 54, 90, 0.8);
  border-radius: 8px;
  padding: 0.7em 1.3em;
  color: #e8f1ff;
  font-size: 1em;
  margin: 0.2em 0;
  box-shadow: 0 0 10px #5ee7ff22;
  transition: background 0.2s;
}
.services-section .services-list li:hover {
  background: #5ee7ff22;
  color: #5ee7ff;
}
@media (max-width: 900px) {
  main {
    padding: 1em 0.3em 0.5em 0.3em;
  }
  section {
    padding: 1.2em 0.7em;
  }
  .astro-columns {
    flex-direction: column;
    gap: 1em;
  }
  .faq-section .faq-list {
    flex-direction: column;
    gap: 1em;
  }
  .services-section .services-list {
    gap: 0.5em;
  }
}
footer {
  background: rgba(12, 24, 40, 0.98);
  box-shadow: 0 -2px 24px #0b1c2c55;
  padding: 2em 1em 1em 1em;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 2em;
  text-align: center;
  position: relative;
  z-index: 10;
}
.quick-links {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
.quick-links a {
  color: #5ee7ff;
  text-decoration: none;
  font-size: 1.05em;
  padding: 0.3em 0.9em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.quick-links a:hover {
  background: #5ee7ff22;
  color: #fff;
}
.contact-details {
  margin-bottom: 1em;
  color: #b3d2ff;
  font-size: 1.05em;
}
.contact-details p {
  margin: 0.2em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  margin-bottom: 1em;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #1a2d48;
  color: #5ee7ff;
  font-size: 1.6em;
  box-shadow: 0 0 16px #5ee7ff33;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.social-icon:hover, .social-icon:focus {
  background: #5ee7ff;
  color: #0b1c2c;
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 0 24px #5ee7ffcc;
}
.social-icon.insta:hover { background: linear-gradient(45deg,#fd5,#ff543e,#c837ab,#1fa2ff); color: #fff;}
.social-icon.fb:hover { background: #1877f3; color: #fff;}
.social-icon.yt:hover { background: #ff0000; color: #fff;}
footer .copyright {
  color: #b3d2ff;
  margin-top: 0.7em;
  font-size: 0.97em;
  opacity: 0.7;
}

/* ====== GEMSTONE GRID (NEW) ====== */
.gems-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin: 1em 0;
}
.gems-category h3 {
  color: #5ee7ff;
  margin-bottom: 0.8em;
  font-size: 1.35em;
  text-shadow: 0 0 8px #5ee7ff55;
  letter-spacing: 1px;
}
.gems-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.2em;
  margin-bottom: 1.5em;
}
.gem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(20, 40, 70, 0.7);
  border-radius: 12px;
  padding: 1em 0.5em;
  text-decoration: none;
  color: #e8f1ff;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 18px #5ee7ff22;
}
.gem-card:hover {
  background: rgba(40, 80, 140, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 0 24px #5ee7ff55;
  color: #5ee7ff;
}
.gem-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6em;
  background: #1a2d48;
  box-shadow: 0 0 16px #5ee7ff33;
}
@media (max-width: 900px) {
  .gems-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1em;
  }
  .gem-icon {
    width: 50px;
    height: 50px;
  }
}
