 body{
            margin:0;
            padding:0;
            font-family: Arial, sans-serif;
            background:#f8f8f8;
        }

        .top-header{
            background: linear-gradient(90deg,#7a0000,#d40000);
            padding: 12px 0;
            color:#fff;
        }

        .call-btn,
        .whatsapp-btn{
            display:inline-block;
            padding:12px 22px;
            border-radius:50px;
            color:#fff;
            text-decoration:none;
            font-weight:bold;
            transition:0.3s;
            font-size:16px;
        }

        .call-btn{
            background:#ff9800;
        }

        .call-btn:hover{
            background:#ffb300;
            color:#fff;
        }

        .whatsapp-btn{
            background:#25D366;
        }

        .whatsapp-btn:hover{
            background:#1ebe5d;
            color:#fff;
        }

        .promo-text{
            font-size:18px;
            font-weight:bold;
            text-align:center;
            animation: blink 1s infinite;
            color:#fff700;
        }

        @keyframes blink{
            0%{
                opacity:1;
            }
            50%{
                opacity:0.2;
            }
            100%{
                opacity:1;
            }
        }

        @media(max-width:768px){

            .promo-text{
                margin:15px 0;
                font-size:17px;
            }

            .call-btn,
            .whatsapp-btn{
                width:100%;
                text-align:center;
            }
        }
.image-box img{
    width:100%;
     
    transition:0.4s;
    border:4px solid #fff;
}

.image-box img:hover{
    transform:scale(1.05);
}
.marquee-section{
    background:linear-gradient(3deg, #7a0000, #d40000);
    padding:12px 0;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    border-top:3px solid #ffcc00;
    border-bottom:3px solid #ffcc00;
}

.marquee-section marquee{
    width:100%;
}
.slider-section{
    background:#000;
    overflow:hidden;
}

.slider-img{
    width:100%;
     
    object-fit:cover;
}

/* Tearing Animation */
.carousel-item{
    position:relative;
    overflow:hidden;
}

.tear-effect{
    animation: tearAnim 1.2s ease-in-out;
}

@keyframes tearAnim{

    0%{
        transform:scaleX(0);
        opacity:0;
        filter:blur(10px);
    }

    30%{
        transform:scaleX(1.1) skewX(10deg);
        filter:blur(6px);
    }

    60%{
        transform:scaleX(0.9) skewX(-10deg);
        filter:blur(3px);
    }

    100%{
        transform:scaleX(1) skewX(0deg);
        opacity:1;
        filter:blur(0);
    }
}
.promo-text-section{
    background:#7a0000;
    position:relative;
    overflow:hidden;
}

/* Glowing Effect */
.promo-box{
    background:#000;
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(8px);
    padding:60px 40px;
    border-radius:30px;
    box-shadow:0 0 40px rgba(255,255,255,0.08);
    position:relative;
}

/* Heading */
.promo-box h2{
    color:#ffcc00;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    line-height:60px;
}

/* Paragraph */
.promo-box p{
    color:#fff;
    font-size:20px;
    line-height:38px;
    margin-bottom:35px;
}

/* Call Button */
.promo-call-btn{
    display:inline-block;
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(255,204,0,0.4);
}

.promo-call-btn:hover{
    transform:scale(1.08);
    color:#000;
}

/* Responsive */
@media(max-width:768px){

    .promo-box{
        padding:40px 20px;
    }

    .promo-box h2{
        font-size:28px;
        line-height:42px;
    }

    .promo-box p{
        font-size:17px;
        line-height:32px;
    }

    .promo-call-btn{
        font-size:17px;
        padding:14px 30px;
    }

}
/* Background Section */
.astro-services-section{
    position:relative;
    background:url('images/bg1.png') center center/cover no-repeat;
    overflow:hidden;
    z-index:1;
}

/* Dark Overlay */
.overlay-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    top:0;
    left:0;
    z-index:-1;
}

/* Heading */
.astro-heading{
    color:#fff;
    font-size:48px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.astro-subheading{
    color:#ddd;
    font-size:18px;
    margin-top:10px;
}

/* Service Box */
.astro-service-box{
    position:relative;
    background:#7a0000a6;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    padding:40px 25px 30px;
    text-align:center;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 5px 1px rgb(255 255 255);
}

.astro-service-box:hover{
    transform:translateY(-12px);
    border-color:#ffcc00;
}

/* Top Call Button */
.top-call-btn{
    position:absolute;
    top:18px;
    right:18px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:0.5s;
    box-shadow:0 5px 20px rgba(255,204,0,0.5);
}

.top-call-btn:hover{
    transform:scale(1.1) rotate(360deg);
    color:#000;
}

/* Image */
.astro-img-box{
    width:190px;
    height:190px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #ffcc00;
    position:relative;
    box-shadow:0 0 25px #000;
}

.astro-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.astro-service-box:hover .astro-img-box img{
    transform:scale(1.2) rotate(5deg);
}

/* Content */
.astro-content h3{
    color:#ffcc00;
    margin-top:30px;
    font-size:28px;
    font-weight:700;
}

.astro-content p{
    color:#ddd;
    line-height:28px;
    margin:18px 0 25px;
    font-size:16px;
}

/* Button */
.astro-btn{
    display:inline-block;
    padding:13px 35px;
    border-radius:50px;
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.astro-btn:hover{
    transform:scale(1.05);
    color:#000;
}

/* Mobile Responsive */
@media(max-width:768px){

    .astro-heading{
        font-size:32px;
    }

    .astro-subheading{
        font-size:16px;
    }

    .astro-img-box{
        width:200px;
        height:200px;
    }

    .astro-content h3{
        font-size:24px;
    }

}

.about-us-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Content */
.about-content{
    padding-right:20px;
}

.about-tag{
    display:inline-block;
    background:#7a0000;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:15px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.about-content h2{
    font-size:45px;
    color:#7a0000;
    font-weight:700;
    margin-bottom:25px;
    line-height:60px;
}
.about-content strong{
    
    color:#7a0000;
    
}
.about-content p{
    font-size:18px;
    color:#000;
    line-height:34px;
    margin-bottom:22px;
}

/* Button */
.about-btn{
    display:inline-block;
    margin-top:15px;
    background:linear-gradient(45deg,#7a0000,#d40000);
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* Image */
.about-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.about-image:hover img{
    transform:scale(1.08);
}

/* Responsive */
@media(max-width:768px){

    .about-content{
        padding-right:0;
    }

    .about-content h2{
        font-size:32px;
        line-height:45px;
    }

    .about-content p{
        font-size:16px;
        line-height:30px;
    }

    .about-btn{
        font-size:16px;
        padding:13px 28px;
    }

}
.astrology-services{
    background:url('images/bg.png') center center/cover no-repeat;
    position:relative;
}
 .dark-services-section{
    background:url('images/bg1.png') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* Dark Overlay */
.dark-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.82);
    top:0;
    left:0;
}

/* Heading */
.section-title{
    position:relative;
    z-index:2;
}

.mini-title{
    display:inline-block;
    color:#ffcc66;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title h2{
    color:#fff;
    font-size:62px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#ffb300;
}

.title-line{
    width:120px;
    height:3px;
    background:#ffb300;
    margin:15px auto 25px;
}

.section-title p{
    color:#ddd;
    font-size:20px;
    line-height:35px;
}

/* Service Box */
.dark-service-box{
    background:linear-gradient(45deg,#7a0000,#d40000);
    border:1px solid rgba(255,179,0,0.25);
    border-radius:20px;
    overflow:hidden;
    display:flex;
    align-items:center;
    transition:0.5s;
    
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
    position:relative;
}

.dark-service-box:hover{
    transform:translateY(-8px);
    border-color:#ffb300;
    box-shadow:0 10px 40px rgba(255,179,0,0.2);
}

/* Image */
.service-img{
    width:42%;
    
    overflow:hidden;
}

.service-img img{
    width:100%;
   padding:10px;
    object-fit:cover;
    transition:0.6s;
}

.dark-service-box:hover .service-img img{
    transform:scale(1.1);
}

/* Content */
.service-content{
    width:58%;
    padding:25px 30px;
}

.service-content h3{
    color:#ffb300;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.service-content p{
    color:#fff;
    font-size:18px;
    line-height:32px;
    margin-bottom:10px;
}

/* Button */
.service-btn{
    display:inline-block;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    padding:14px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(212,0,0,0.3);
}

.service-btn:hover{
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    transform:scale(1.05);
}

/* Responsive */
@media(max-width:991px){

    .dark-service-box{
        flex-direction:column;
    }

    .service-img{
        width:100%;
        
    }

    .service-content{
        width:100%;
    }

}

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }

    .section-title p{
        font-size:16px;
        line-height:28px;
    }

    .service-content h3{
        font-size:26px;
		text-align: center;
    }

    .service-content p{
        font-size:16px;
        line-height:28px;
		text-align: center;
    }
.service-btn{
	        margin-left: 75px;
}
}
.why-choose-section{
    background:url('images/dark-astrology-bg.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

.overlay-dark{
    position:absolute;
    width:100%;
    height:100%;
    background:#fff;
    top:0;
    left:0;
}

/* Image */
.choose-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.choose-image img{
    width:100%;
    border-radius:25px;
    transition:0.6s;
}

.choose-image:hover img{
    transform:scale(1.05);
}

/* Experience Box */
.experience-box{
    position:absolute;
    bottom:25px;
    left:25px;
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    padding:20px 28px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(255,204,0,0.3);
}

.experience-box h3{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin-bottom:5px;
}

.experience-box span{
    font-size:16px;
    color:#111;
    font-weight:600;
}

/* Content */
.choose-content{
    padding-left:20px;
}

.choose-tag{
    display:inline-block;
    color:#000;
    letter-spacing:2px;
    font-size:15px;
    margin-bottom:18px;
    font-weight:600;
}

.choose-content h2{
    color:#7a0000;
    font-size:45px;
    font-weight:700;
    line-height:70px;
    margin-bottom:25px;
}

.choose-content h2 span{
    color:#000;
}

.choose-content p{
    color:#000;
    font-size:18px;
    line-height:34px;
    margin-bottom:35px;
}

/* Feature Box */
.choose-feature{
    display:flex;
    align-items:flex-start;
    margin-bottom:28px;
}

.feature-icon{
    width:55px;
    height:55px;
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:22px;
    font-weight:700;
    margin-right:18px;
    flex-shrink:0;
}

.feature-text h4{
    color:#7a0000;
    font-size:24px;
    margin-bottom:8px;
    font-weight:700;
}

.feature-text p{
    color:#000;
    font-size:16px;
    line-height:28px;
    margin:0;
}

/* Button */
.choose-btn{
    display:inline-block;
    margin-top:15px;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    padding:15px 38px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.choose-btn:hover{
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    transform:scale(1.05);
}

/* Responsive */
@media(max-width:991px){

    .choose-content{
        padding-left:0;
    }

}

@media(max-width:768px){

    .choose-content h2{
        font-size:34px;
        line-height:48px;
    }

    .choose-content p{
        font-size:16px;
        line-height:30px;
    }

    .feature-text h4{
        font-size:20px;
    }

    .experience-box{
        padding:15px 22px;
    }

    .experience-box h3{
        font-size:32px;
    }

}
.client-feedback-section{
    background:url('images/bg1.png') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

.feedback-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    top:0;
    left:0;
}

/* Heading */
.feedback-title{
    position:relative;
    z-index:2;
}

.feedback-tag{
    display:inline-block;
    color:#ffcc66;
    font-size:15px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:15px;
}

.feedback-title h2{
    color:#fff;
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.feedback-title h2 span{
    color:#ffb300;
}

.feedback-line{
    width:120px;
    height:3px;
    background:#ffb300;
    margin:15px auto 22px;
}

.feedback-title p{
    color:#ccc;
    font-size:20px;
    line-height:34px;
}

/* Feedback Box */
.feedback-box{
    background:#7a0000;
    border:1px solid rgba(255,179,0,0.18);
    border-radius:22px;
    padding:35px 30px;
    transition:0.5s;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,0.5);
    position:relative;
}

.feedback-box:hover{
    transform:translateY(-10px);
    border-color:#ffb300;
}

/* Top */
.client-top{
    display:flex;
    align-items:center;
    margin-bottom:22px;
}

/* Image */
.client-img{
    width:75px;
    height:75px;
    border-radius:50%;
    overflow:hidden;
    margin-right:18px;
    border:3px solid #ffb300;
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Info */
.client-info h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:4px;
}

.client-info span{
    color:#bbb;
    font-size:16px;
}

/* Stars */
.stars{
    color:#ffb300;
    font-size:24px;
    margin-bottom:20px;
    letter-spacing:3px;
}

/* Text */
.feedback-box p{
    color:#fff;
    font-size:17px;
    line-height:32px;
    margin:0;
}

/* Responsive */
@media(max-width:768px){

    .feedback-title h2{
        font-size:38px;
    }

    .feedback-title p{
        font-size:16px;
        line-height:28px;
    }

    .feedback-box{
        padding:28px 22px;
    }

    .client-info h4{
        font-size:20px;
    }

    .feedback-box p{
        font-size:16px;
        line-height:28px;
    }

}
.special-services-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.special-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:#fff;
    top:0;
    left:0;
}

/* Heading */
.special-heading{
    position:relative;
    z-index:2;
}

.special-tag{
    display:inline-block;
    color:#7a0000;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.special-heading h2{
    color:#000;
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.special-heading h2 span{
    color:#7a0000;
}

.special-line{
    width:120px;
    height:3px;
    background:#ffb300;
    margin:15px auto 20px;
}

.special-heading p{
    color:#000;
    font-size:20px;
    line-height:34px;
}

/* Box */
.special-box{
    background:#7a0000;
    border-radius:22px;
    overflow:hidden;
    transition:0.5s;
    border:1px solid rgba(255,179,0,0.15);
    position:relative;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.special-box:hover{
    transform:translateY(-12px);
    border-color:#ffb300;
}

/* Image */
.special-img{
    overflow:hidden;
    position:relative;
}

.special-img::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
    top:0;
    left:0;
    z-index:1;
}

.special-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.7s;
}

.special-box:hover .special-img img{
    transform:scale(1.12);
}

/* Content */
.special-content{
    padding:30px 25px;
    text-align:center;
}

.special-content h3{
    color:#ffb300;
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
}

.special-content p{
    color:#fff;
    font-size:16px;
    line-height:30px;
    margin-bottom:25px;
}

/* Button */
.special-btn{
    display:inline-block;
    background:linear-gradient(45deg,#8b0000,#d40000);
    color:#fff;
    padding:13px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.special-btn:hover{
    background:linear-gradient(45deg,#ff9800,#ffcc00);
    color:#000;
    transform:scale(1.05);
}

/* Responsive */
@media(max-width:768px){

    .special-heading h2{
        font-size:36px;
    }

    .special-heading p{
        font-size:16px;
        line-height:28px;
    }

    .special-content h3{
        font-size:24px;
    }

    .special-content p{
        font-size:15px;
        line-height:28px;
    }

}
.astro-footer{
    background:#000;
    position:relative;
    overflow:hidden;
    color:#fff;
}

.footer-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.88);
    top:0;
    left:0;
}

/* Footer Box */
.footer-box{
    position:relative;
    z-index:2;
}

/* Logo */
.footer-logo{
    font-size:27px;
    font-weight:700;
    color:#ffb300;
    margin-bottom:20px;
}

/* Text */
.footer-box p{
    color:#fff;
    font-size:16px;
    line-height:30px;
}

/* Heading */
.footer-box h3{
    color:#ffb300;
    font-size:28px;
    margin-bottom:25px;
    font-weight:700;
}

/* Links */
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links li a{
    color:#fff;
    text-decoration:none;
    transition:0.4s;
    font-size:17px;
}

.footer-links li a:hover{
    color:#ffb300;
    padding-left:6px;
}

/* Contact */
.footer-contact p{
    margin-bottom:18px;
    color:#fff;
    font-size:17px;
}

.footer-contact p i{
    color:#ffb300;
    margin-right:10px;
}

.footer-contact a{
    color:#ccc;
    text-decoration:none;
    transition:0.4s;
}

.footer-contact a:hover{
    color:#ffb300;
}

/* Social */
.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover{
    background:#ffb300;
    color:#000;
    transform:translateY(-5px);
}

/* Bottom */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding:25px 0;
    text-align:center;
    position:relative;
    z-index:2;
}

.footer-bottom p{
    margin:0;
    color:#bbb;
    font-size:16px;
}

/* Responsive */
@media(max-width:768px){

    .footer-logo{
        font-size:28px;
    }

    .footer-box h3{
        font-size:24px;
    }

    .footer-box p,
    .footer-links li a,
    .footer-contact p{
        font-size:15px;
    }

}
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

.call-btn1 {
    left: 20px;
}

.whatsapp-btn1 {
    right: 20px;
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    height: 60px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    font-family: Arial, sans-serif;
}

.call-btn1 a {
    background: #e60000;
    width: 60px;
    padding: 0;
    border-radius: 50%;
    font-size: 28px;
}

.whatsapp-btn1 a {
    background: #25D366;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100% {
        transform: scale(1);
    }
}