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

body {
  font-family: 'Poppins', sans-serif;
  background: #c3ae12;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

.zodiac-wheel {
  position: fixed;
  top: -13%;
  left: 40%;
  width: 1000px;
  height: 1000px;
  background-image: url('zodiac-wheel-1000.png');
  /* Zodiac wheel image */
  background-size: cover;
  background-position: top;
  border-radius: 50%;
  z-index: -1;
  animation: ease-in-out infinite, rotate 30s linear infinite;
  will-change: transform;
}

@keyframes moveToTopRight {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  50% {
    top: 10%;
    right: 10%;
    transform: translate(0, 0);
  }

  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@keyframes moveToTopRight {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  50% {
    top: 10%;
    right: 10%;
    transform: translate(0, 0);
  }

  100% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}




.footeriner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}





.top-banner {
  background: #3b2c5f;
  color: #fff;
  text-align: center;
  padding: 12px 20%;
  font-size: 14px;
  position: relative;
  animation: reverse;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(70px);
  }

  /* move right */
  100% {
    transform: translateX(10px);
  }
}



.top-banner p {
  animation: moveLeftRight 4s ease-in-out infinite;
}



.top-banner {
  font-weight: 600;
}

@keyframes colorChange {
  0% {
    color: #ff4d4d;
  }

  15% {
    color: #61de0d;
  }

  25% {
    color: #ffa502;
  }

  40% {
    color: #d86e0b;
  }

  50% {
    color: #2ed573;
  }

  65% {
    color: #10c8e4;
  }

  75% {
    color: #e9e206;
  }

  85% {
    color: #15ed96;
  }

  100% {
    color: #ff4d4d;
  }
}

.top-banner p {
  animation: colorChange 2s infinite;
  letter-spacing: 0.8px;
}

.main-nav {
  background: #e5e5e5;
  border-bottom: 3px solid #c9c9c9;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

.nav-menu li {
  position: relative;
  margin-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

.nav-menu a:hover {
  color: #8b0000;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px;
  min-width: 180px;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero {
  padding: 40px, 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: -45%;
  font-size: 55px;
  letter-spacing: 1.5px;


}



@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.grid .card:nth-child(1) {
  animation: floatUpDown 3s ease-in-out infinite;
}

.grid .card:nth-child(2) {
  animation: floatUpDown 3s ease-in-out infinite 0.5s;
}

.grid .card:nth-child(3) {
  animation: floatUpDown 3s ease-in-out infinite 1s;
}

.grid li {
  background-color: #e37b0d;
  padding: 20px;
  font-weight: 800;
  font-size: 22px;
  border-radius: 15px;

}

.grid .btn {
  size: 20px;
  background-color: #f5e535;
  color: #7d0b0b;
  font-size: 25px;
  animation: colorChange 3s infinite;
  letter-spacing: 0.8px;

}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}



/*@keyframes colorChange {
  0% {
    color: #ff4d4d;
  }

  15% {
    color: #28500e;
  }

  25% {
    color: #a16901;
  }

  40% {
    color: #b75d09;
  }

  50% {
    color: #8fffbe;
  }

  65% {
    color: #1f6b76;
  }

  75% {
    color: #000000;
  }

  85% {
    color: #14d98a;
  }

  100% {
    color: #ff4d4d;
  }
}*/



h1 {
  font-size: 47px;
  color: #ffffff;
  animation: slideInLeft 1.7s ease-out;
  font-weight: 1000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  line-height: 2.0;
  font-size: 15px;
  animation: slideInRight 1.3s ease-out 0.5s both;
  font-weight: 900;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 20px;
  color: #3b2c5f;
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
  font-size: 15px;
}

section {
  padding: 30px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.grid .card:nth-child(1) ul {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 150%;
  font-weight: 400;
  font-style: bold;
}

.grid .card:nth-child(1) h2 {
  font-size: 150%;
  font-weight: 400;
  font-style: bold;
}

.grid .card:nth-child(1) p {
  font-size: 150%;
  font-weight: 400;
  font-style: bold;
}

.grid .card:nth-child(2) ul {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 250%;
  font-weight: 400;
  font-style: bold;
}

.grid .card:nth-child(2) h2 {
  font-size: 200%;
  font-weight: 400;
  font-style: bold;
}

.grid .card:nth-child(2) ul li {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  margin: 8px 0;
  border-radius: 8px;
  padding: 10px;
  list-style: none;
  transition: transform 0.3s ease;
}

.grid .card:nth-child(2) ul li:hover {
  transform: scale(1.05);
}

.grid .card:nth-child(2) a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.grid .card:nth-child(2) a:hover {
  color: #ffd700;
  text-shadow: 0 0 5px #ffd700;
}

.grid .card:nth-child(2) .detail {
  display: none;
  font-size: 14px;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
  font-weight: normal;
}

.grid .card:nth-child(2) li:hover .detail {
  display: block;
}

.card img {
  width: 300px;
  /* Adjust this value as needed */
  height: 280px;
  /* Adjust this value as needed */
  display: block;
  margin: 0 auto;
}

.grid .card:nth-child(3) h2 {
  font-family: "Pacifico", cursive;
  font-weight: 700;
  font-style: bold;
  color: #7c2a2a;
  text-shadow: #333;
  text-align: center;
  font-size: 180%;
}

.grid .card:nth-child(3) p {
  font-family: "Cormorant", serif;
  font-weight: 1000;
  font-style: bold;
  color: #0e1820;
  line-height: 2;
  text-align: center;
  font-size: 120%;
}


/* .cormorant-<uniquifier> {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

ul {
  padding-left: 18px;
}

li {
  margin-bottom: 8px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: #3b2c5f;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}

.btn:hover {
  opacity: 0.9;
}

.profile {
  text-align: center;
}

.profile img {
  width: 120px;
  height: 120px;
}

footer {
  background: #3b2c5f;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
}

footer p {
  color: #e0e0e0;
  padding: 10px;
  padding-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
}

.footer a {
  color: white;

}

#footer {
  padding: 20px;
  background: #f5f5f5;
  text-align: center;
  font-size: 14px;


}

#contact a {
  background-color: whitesmoke;
  padding: 3px;

}

footer.contact-map {
  background-color: transparent;
  padding: 0%;
  margin: 0%;

}

#contact p {}

@media(max-width:600px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }
}

/* Registration Form Styles */
#registrationForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#registrationForm label {
  font-weight: 600;
  color: #3b2c5f;
}

#registrationForm input,
#registrationForm select,
#registrationForm textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

#registrationForm input:focus,
#registrationForm select:focus,
#registrationForm textarea:focus {
  border-color: #3b2c5f;
  outline: none;
}

#registrationForm textarea {
  resize: vertical;
  min-height: 80px;
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.privacy-notice input {
  margin-top: 2px;
}

.privacy-notice a {
  color: #3b2c5f;
  text-decoration: underline;
}

#registrationForm button {
  padding: 12px;
  background: #3b2c5f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, transform 0.2s ease;
}

#registrationForm button:hover {
  background: #2a1e4a;
  transform: translateY(-2px);
}

#registrationForm button:active {
  transform: translateY(0);
}

/* Why Choose Section Styles */
.why-choose .card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 3px solid #ff6b6b;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.why-choose .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd);
}

.why-choose h2 {
  font-family: "Gravitas One", serif;
  font-weight: 900;
  font-size: 20px;


  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose li {
  font-family: "Gravitas One", serif;
  font-weight: 700;
  font-size: 15px;
  margin: 15px 0;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 107, 107, 0.1) 100%);
  border-left: 6px solid #45b7d1;
  border-radius: 0 12px 12px 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-choose li:hover {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.3) 100%);
  transform: translateX(15px) scale(1.02);


}

.why-choose li::after {
  content: ' ✓';
  color: #28a745;
  font-weight: bold;
  font-size: 20px;
}

/* Section Thought Container */
.thought-container h6 {

  background-color: rgb(255, 254, 254);
  padding: 50px;
  color: black;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1.3px;
  font-weight: 1000;


}

.instagram-videos,
.shorts-section,
.why-choose,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px 900px;
}

/* Instagram Videos Section Styles */
.instagram-videos .card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 3px solid #ff6b6b;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.instagram-videos .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd);
}

.instagram-videos h2 {

  font-weight: 900;
  font-size: 35px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.video-container blockquote {
  width: 320px !important;
  max-width: 320px !important;
  min-width: 320px !important;
}

.video-container blockquote p {
  display: none;
}

.shorts-section {
  padding: 10px -50px;
  background: whitesmoke;
  /* dark cosmic background */
  color: black;
  text-align: center;
}

.shorts-section h2 {
  margin-bottom: 30px;
  font-size: 35px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shorts-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.short-card {
  width: 300px;
  height: 530px;
  /* perfect for Shorts */
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.4s ease;
}

.short-card:hover {
  transform: scale(1.05);
}

.short-card iframe {
  width: 100%;
  height: 100%;
}





.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

input,
select,
textarea {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
}



.promo-section {
  margin-top: 15px;
}

.promo-section input {
  text-transform: uppercase;
}

/* ACHARYA SONI'S GALLERY CAROUSEL */



.carousel {
  width: 1350px;
  margin: auto;
  margin-top: 25px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  border: solid 4px rgb(0, 0, 0);
  background: whitesmoke;
  border-radius: 40px;


}

.carousel-container {
  overflow: hidden;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img,
.carousel-track video {
  width: 500px;
  height: 300px;
  object-fit: cover;
  padding: 5px;
  border-radius: 10px;
  flex: 0 0 auto;
}

/* buttons */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255, 255, 255);

  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 30px;
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* ASTROLOGY COMMUNITY */

.question-card {
  padding: 15px;
  margin: 10px 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.question-card h3 {
  margin: 0 0 5px;
}

.question-card p {
  margin: 0;
}