/*=========================================================
Single Horoscope
=========================================================*/
.single-horoscope-page {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 0 0;
}
.single-horoscope-hero{
    padding:40px 0 40px;
    background:linear-gradient(135deg,#fdf7ec,#fff);
}

.hero-box{
    background:#fff;
    border-radius:20px;
    padding:50px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border: 1px solid;
}

.hero-image img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.hero-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #8b1e14;
}

.hero-meta{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-meta span{
    background:#fff5e6;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

/* Rating */

.horoscope-rating{
    padding:40px 0;
}

.rating-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.rating-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 1px solid;
}

.rating-card:hover{
    transform:translateY(-6px);
}

.rating-card h4{
    margin-bottom:15px;
    font-size:20px;
}

.stars{
    font-size:22px;
    letter-spacing:3px;
}

/* Lucky */

.lucky-section{
    padding-bottom:40px;
}

.lucky-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.lucky-card {
    color: #fff;
    padding: 30px;
    border: 1px solid #8b1e14;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, #fff8ec, #fff);
}

.lucky-card h5 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #111827;
}

.lucky-card p {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #c89b3c;
}

/* Content */

.horoscope-content-section{
    padding:20px 0 80px;
}

.content-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}
.content-card h2 {
    font-size: 20px;
    font-weight: 600;
}
.content-card p{
    line-height:1.9;
    margin-bottom:20px;
}

/* Mobile */

@media(max-width:991px){

.rating-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero-box{
    padding:30px;
}

.hero-box h1{
    font-size:32px;
}

}

@media(max-width:576px){

.rating-grid{
    grid-template-columns:1fr;
}

.lucky-grid{
    grid-template-columns:1fr;
}

.hero-image img{
    width:90px;
    height:90px;
}

.hero-box h1{
    font-size:28px;
}

.content-card{
    padding:25px;
}

}

.horoscope-cta {
    margin: 60px 0 0;
    padding: 0;
}

.cta-box {
    background: linear-gradient(135deg, #fff8ec, #fff);
    border-radius: 25px;
    padding: 60px;
    border: 1px solid #8b0000;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.cta-badge {
    display: inline-block;
    padding: 8px 18px;
    color: #a52a2a;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cta-box .cta-titles {
    color: #212529 !important;
    margin: 0 !important;
}
.cta-box h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
    color: #8b1d14;
}

.cta-box p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 2;
    color: #000000;
}

.cta-services{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;

margin:35px 0;

}

.cta-services span{

padding:12px 18px;

background:#fff;

border-radius:50px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

font-weight:600;

}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto 40px;
}

.cta-buttons a {
    padding: 6px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: #8b0000;
    color: #fff;
    border: none;
}

.btn-secondary {
    background: #198754;
    color: #ffffff;
}

@media(max-width:768px){


.lucky-section, .horoscope-rating, .single-horoscope-hero {
    padding: 20px 10px;
}
.cta-box {
    padding: 40px 20px;
}

.cta-box h2 {
    font-size: 23px;
    font-weight: 500;
}
.cta-buttons {
    display: flex;
    width: 100%;
}

.btn-primary, .btn-outline {
    justify-content: center;
    width: auto;
}

}


.horoscope-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.zodiac-title-icon{
    width:70px;
    height:70px;
    object-fit:contain;
    flex-shrink:0;
}
.horo-icon {
    margin: -100px auto 20px;
    display: inline-block;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 100%;
    background: #fff;
}
@media(max-width:767px){

    .horoscope-title{
        gap:12px;
        font-size:34px;
    }

    .zodiac-title-icon{
        width:48px;
        height:48px;
    }

}

.rating-card{
    text-align:center;
    padding:35px 25px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.rating-card:hover{
    transform:translateY(-8px);
}

.rating-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff8ef;
    border:2px solid #c58a1d;
}

.rating-icon i{
    font-size:36px;
    color:#8b1d13;
}

.stars{
    margin-top:15px;
}

.stars i{
    color:#d5d5d5;
    font-size:22px;
    margin:0 2px;
}

.stars i.active{
    color:#ffb300;
}

/* Lucky */

.lucky-card{
    text-align:center;
}

.lucky-card i{
    font-size:42px;
    color:#8b1d13;
    margin-bottom:15px;
    display:block;
}

.lucky-card h5{
    margin-bottom:10px;
}

.lucky-card p{
    font-size:22px;
    font-weight:700;
    color:#8b1d13;
}

.astro-naresh-cta img {
    width: 183%;
    max-width: max-content;
    margin: -20px;
}

.astro-naresh-cta {
    width: 120px;
    margin: 0 auto 20px;
    border: 1px solid;
    border-radius: 100%;
    height: 120px;
    text-align: center;
    padding: 19px;
    overflow: hidden;
}