/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 9 May 2025, 2:01:44 pm
    Author     : pushpendrasinghsengar
*/


 


/*<!-- HERO SECTION -->*/

.hero-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #060e24 100%), url(../images/ivan-jevtic-AL3Cbxp8css-unsplash.jpg) no-repeat center center / cover;
  padding: 80px 20px;
  color: white;
  position: relative;
}
/* Stars animation layers */
.stars, .twinkling, .shooting-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 0;
}

.sky {
  position: static;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  /*box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.6);  soft glow */
  opacity: 1;
  animation: moveStar linear infinite;
}

@keyframes moveStar {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0.9);
    opacity: 0.3;
  }
}





.twinkling::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 160px 160px;
  animation: twinkleStars 90s linear infinite;
  opacity: 0.4;
}

/* Shooting Stars Layer */
.shooting-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

/* Single Shooting Star Style */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  box-shadow: 0 0 12px 6px white;
  border-radius: 50%;
  opacity: 0;
}

/* Shooting Animation (Multiple Directions) */
@keyframes shoot1 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: translate(500px, 300px) scale(1); opacity: 0; }
}
@keyframes shoot2 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: translate(-500px, 300px) scale(1); opacity: 0; }
}
@keyframes shoot3 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: translate(600px, -300px) scale(1); opacity: 0; }
}
@keyframes shoot4 {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: translate(-600px, -300px) scale(1); opacity: 0; }
}

/* Background Animation */



@keyframes twinkleStars {
  0% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.6;
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.03) rotate(-1deg);
  }
  75% {
    opacity: 0.7;
    transform: scale(1.01) rotate(1deg);
  }
  100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
}


/* Ensure content is above animated layers */



.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-content p {
  color: #cccccc;
  max-width: 580px;
  margin-bottom: 70px;
  line-height: 1.6;
}

.text-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-content h1 span {
  color: #2196f3;
  display: block;
}

.text-content h1 small {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #d4477b;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #c13e6f;
}

.image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  
 
 
  /*filter: drop-shadow(0 0 30px rgba(180, 100, 255, 0.5))*/
          /*drop-shadow(0 0 60px rgba(180, 100, 255, 0.3));*/

}

.rotating-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Glow only at the outer edge — center remains clean */
.rotating-image::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 75%,                      /* Inner part transparent */
    rgba(160, 100, 255, 0.3) 85%,         /* Soft glow starts */
    rgba(160, 100, 255, 0.6) 100%         /* Stronger at edge */
  );
  z-index: -1;
  filter: blur(8px);
  pointer-events: none;
}



.rotating-image:hover {
  animation-play-state: paused;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-content h1 {
    font-size: 2.5rem;
  }

  .text-content h1 small {
    font-size: 1.5rem;
  }

  .rotating-image {
    max-width: 400px;
  }
}



/*<!-- HERO SECTION -->*/

/*zodiac section*/


.zodiac-section {
  padding: 80px 20px;
  background: #0d0d22 no-repeat center / cover;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.zodiac-heading {
  font-size: 48px;
  color: #e94b8b;
  font-weight: 500;
  margin-bottom: 16px;
}

.zodiac-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.zodiac-divider span {
  flex: 1;
  height: 1px;
  background: #fff;
  max-width: 150px;
}

.zodiac-divider div {
  width: 16px;
  height: 6px;
  background: #fff;
  border-radius: 10px;
}

.zodiac-subtext {
  font-size: 20px;
  color: white;
  margin-bottom: 60px;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 60px;
}

@media (max-width: 1024px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .zodiac-grid {
    grid-template-columns: 1fr;
    padding: 40px 15px;
  }
}


.zodiac-card {
  border: 0.5px solid #ffffff47;
  padding: 40px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.zodiac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.zodiac-card img {
width: 60px;
    margin-bottom: 70px;
}

.zodiac-card h2 {
  font-size: 20px;
  color: #00bfff;
  margin-bottom: 6px;
    font-weight: initial;
}

.zodiac-card p {
  color: #ccc;
  font-size: 16px;
}


/*Horoscope Blog*/

.blog-section {
   background: #000000  no-repeat center / cover;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-label {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.underline-line {
  display: inline-block;
  height: 3px;
  width: 60px;
  background: #fff;
  vertical-align: middle;
  margin-left: 10px;
}

.blog-title {
  color: #dc3545; /* Bootstrap's danger color */
  font-weight: 700;
  font-size: 2.5rem;
}

.blog-desc {
  color: #d3d3d3;
  margin-bottom: 1rem;
}

.horo_text{
    justify-content: center;
    align-items: center;
    display: flex;
}

.text_info{
    color: #2196f3;
}

  