.horoscope-section {
    max-width: 1050px;
    margin: 40px auto;
    padding: 0 15px;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*color: #e65085;*/
}

.horoscope-top-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.small-box {
    flex: 1;
    max-width: 300px;
    background: #f0f0f0;
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    transition: all 0.3s ease;
}

.small-box.active {
    background: #e65085;
    color: white;

    transform: scale(1.05);
}

/*    .small-box:hover:not(.active) {
        background: #e65085;
        color: #ff6f61;
    }*/

.horoscope-header {
    text-align: center;
    margin-bottom: 30px;
}

.sign-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e65085;
}

.date-range {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

/* 2 per line grid */
.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    
}

.horoscope-box {
    /*background: #fff8f4;*/
    border: 2px solid #e65085;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 15px rgb(245 154 60 / 0.2);
    transition: transform 0.3s ease;
}

.horoscope-box h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ff6f61;
}

.horoscope-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

.back-button {
    display: inline-block;
    background: #e65085;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    user-select: none;
}



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

    .small-box {
        font-size: 1rem;
        padding: 10px 0;
    }

    .sign-title {
        font-size: 2rem;
    }

    .horoscope-box {
        padding: 15px;
    }
}




.zodiac-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #3f214d 0%, #16213e 50%, #041427 100%) !important;
  position: relative;
  overflow: hidden;
}

.zodiac-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zodiac-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 15px 0;
}

.zodiac-divider span {
  flex: 0.1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64b5f6, transparent);
  opacity: 0.8;
}

.zodiac-divider div {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #64b5f6, #90caf9);
  border-radius: 50%;
  margin: 0 15px;
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.5);
}

.zodiac-subtext {
  color: #e0e0e0;
  margin-bottom: 40px;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  padding: 0 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.zodiac-item {
  text-align: center;
  cursor: pointer;
}

.zodiac-item h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.zodiac-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(100, 181, 246, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.zodiac-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #64b5f6, #90caf9, #42a5f5, #1e88e5);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.zodiac-circle img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Responsive Grid */
@media (max-width: 991px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .zodiac-heading {
    font-size: 2.2rem;
  }
  
  .zodiac-circle {
    width: 110px;
    height: 110px;
  }
  
  .zodiac-circle img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .zodiac-section {
    padding: 40px 15px;
  }
  
  .zodiac-heading {
    font-size: 2rem;
  }
  
  .zodiac-circle {
    width: 100px;
    height: 100px;
  }
  
  .zodiac-circle img {
    width: 55px;
    height: 55px;
  }
 
}

@media (max-width: 576px) {
  .zodiac-circle {
    width: 90px;
    height: 90px;
  }
  
  .zodiac-circle img {
    width: 50px;
    height: 50px;
  }
  
  .zodiac-item h3 {
    font-size: 1rem;
  }
   .zodiac-grid {
    
    margin-bottom: 30px;
    
}
}
.horoscope-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3a1d44 0%, #051838 100%);
    color: white;
}

.info-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-highlight {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
}

.cosmic-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="bg" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffd700" stop-opacity="0.2"/><stop offset="100%" stop-color="%23667eea" stop-opacity="0.1"/></radialGradient></defs><circle cx="200" cy="200" r="180" fill="url(%23bg)" stroke="%23ffd700" stroke-width="2" opacity="0.3"/><circle cx="200" cy="200" r="120" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.5"/><circle cx="200" cy="200" r="60" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.7"/><text x="200" y="210" text-anchor="middle" fill="%23ffd700" font-size="40">✨</text></svg>') center/contain no-repeat;
}

.star-circle {
    display: none;
}

.planet-orbit {
    display: none;
}

.zodiac-symbol {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@media (max-width: 768px) {
    .horoscope-info-section {
        padding: 50px 0;
    }
    
    .info-heading {
        font-size: 1.8rem;
    }
    
    .info-text, .info-highlight {
        font-size: 1rem;
    }
    
    .cosmic-visual {
        height: 200px;
        margin-top: 30px;
    }
    
    .col-lg-6:last-child {
        order: -1;
        margin-bottom: 30px;
    }
}