/* =========================
   MEGA MENU DESIGN
========================= */
/* CONTACT PAGE CSS */

.contact-page-section{
    padding: 120px 0;
    background: #0b0716;
}

.contact-info-wrapper,
.contact-form-wrapper{
    background: #151025;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.section-title span{
    color: #f5c542;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-title h2{
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.section-title p{
    color: #cfcfcf;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.contact-info-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 35px;
}

.contact-icon{
    width: 60px;
    height: 60px;
    background: #f5c542;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-content h4{
    color: #fff;
    margin-bottom: 8px;
    font-size: 22px;
    font-family: 'Cinzel', serif;
}

.contact-content p,
.contact-content a{
    color: #cfcfcf;
    text-decoration: none;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.form-group{
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    border: 1px solid #2b2340;
    background: #0f0a1c;
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea{
    resize: none;
}

.theme-btn{
    border: none;
    background: #f5c542;
    color: #000;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
}

.theme-btn:hover{
    transform: translateY(-3px);
}
.header-menu ul li{
    position: relative;
}

/* =========================
   ASTROLOGER BRAND SECTION
========================= */

.brand-area-one.style-two{
    padding: 70px 0;
    background: linear-gradient(135deg, #120f2d, #1c1642);
    position: relative;
    overflow: hidden;
}

/* Heading */
.brand-desc{
    margin-bottom: 40px;
}

.brand-desc p{
    color: #d7d5ea;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.brand-desc p span{
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* Brand Box */
.brand-box{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    transition: .3s ease;
}

/* Hover */
.brand-box:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

/* Image */
.brand-thumb img{
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Glow Effect */
.brand-area-one.style-two::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(126, 87, 255, 0.12);
    border-radius: 50%;
    top: -80px;
    right: -50px;
    filter: blur(70px);
}

/* Mobile */
@media(max-width:767px){

    .brand-desc p{
        font-size: 16px;
    }

    .brand-desc p span{
        font-size: 26px;
    }

    .brand-box{
        padding: 15px;
    }

    .brand-thumb img{
        max-width: 110px;
    }
}



/*=================================
    ROTATING BORDER EFFECT
==================================*/

.astro-contact-border{
    position:relative;
    padding:2px;
    border-radius:22px;
    overflow:hidden;
}





/* Inner Box */
.astro-contact-box{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:20px;
    padding:28px;
    border-radius:20px;
    background:#111827;
}



/* Animation */
@keyframes rotateBorder{

    100%{
        transform:rotate(360deg);
    }

}


/*=================================
    ASTROLOGY SERVICE CARD
==================================*/

.astro-service-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:0.4s;
    height:420px;
}



/* Background Image */
.astro-service-bg{
    position:relative;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
}



/* Dark Overlay */
.astro-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.35
    ));


}



/* Content */
.astro-service-content{
    position:relative;
    z-index:2;
    padding:30px 25px;
    width:100%;
}



/* Title */
.astro-service-content h4{
    margin-bottom:15px;
    font-size:26px;
    line-height:34px;
    font-weight:700;
}

.astro-service-content h4 a{
    color:#fff;
    text-decoration:none;
}



/* Description */
.astro-service-content p{
    color:#ddd;
    font-size:15px;
    line-height:28px;
    margin-bottom:20px;
}



/* Tags */
.astro-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.astro-tags a{
    background:#F59E0B;
    color:#111;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}



/* Button */
.astro-btn a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.astro-btn a i{
    margin-left:8px;
}



/* Hover Effect */
.astro-service-card:hover{
    transform:translateY(-10px);
}

.astro-service-card:hover .astro-overlay{
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.35)
    );
}






/*=================================
    ASTRO HERO SECTION
==================================*/

.astro-hero-section{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        #061a2b 0%,
        #0b2239 50%,
        #04111d 100%
    );
    padding:180px 0 140px;
}



/*=================================
    ROTATING HOROSCOPE
==================================*/

.hero-zodiac-rotate{
    position:absolute;
    top:50%;
    right:-120px;
    transform:translateY(-50%);
    width:750px;
    height:750px;
    opacity:0.08;
    z-index:1;
    pointer-events:none;
}

.hero-zodiac-rotate img{
    width:100%;
    height:100%;
    object-fit:contain;
    animation:zodiacRotate 80s linear infinite;
    filter:drop-shadow(0 0 30px rgba(245,158,11,0.3));
}

@keyframes zodiacRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}



/*=================================
    HERO CONTENT
==================================*/

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.hero-subtitle{
    display:inline-block;
    color:#F59E0B;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
}

.hero-title{
    color:#fff;
    font-size:68px;
    line-height:82px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-location{
    color:#F59E0B;
    font-size:24px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-desc{
    color:#d1d5db;
    font-size:18px;
    line-height:34px;
    margin-bottom:40px;
}



/*=================================
    BUTTONS
==================================*/

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#F59E0B;
    color:#111;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.theme-btn:hover{
    transform:translateY(-4px);
}

.theme-btn-two{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border:2px solid #F59E0B;
    color:#fff;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.theme-btn-two:hover{
    background:#F59E0B;
    color:#111;
}



/*=================================
    MOBILE RESPONSIVE
==================================*/

@media(max-width:991px){

    .astro-hero-section{
        padding:140px 0 100px;
    }

    .hero-title{
        font-size:42px;
        line-height:56px;
    }

    .hero-location{
        font-size:20px;
    }

    .hero-desc{
        font-size:16px;
        line-height:30px;
    }

    .hero-zodiac-rotate{
        width:380px;
        height:380px;
        right:-120px;
        opacity:0.05;
    }

}

/*=================================
    ASTRO HERO SECTION
==================================*/

.astro-hero-section{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        #061a2b 0%,
        #0b2239 50%,
        #04111d 100%
    );
    padding:180px 0 140px;
    text-align:center;
}



/*=================================
    ROTATING HOROSCOPE
==================================*/

.hero-zodiac-rotate{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:850px;
    height:850px;
    opacity:0.08;
    z-index:1;
    pointer-events:none;
}

.hero-zodiac-rotate img{
    width:100%;
    height:100%;
    object-fit:contain;
    animation:zodiacRotate 80s linear infinite;
}

@keyframes zodiacRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}



/*=================================
    HERO CONTENT
==================================*/

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.hero-subtitle{
    display:inline-block;
    color:#F59E0B;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;
}

.hero-title{
    color:#fff;
    font-size:78px;
    line-height:90px;
    font-weight:800;
    margin-bottom:15px;
}

.hero-location{
    color:#F59E0B;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-desc{
    color:#d1d5db;
    font-size:20px;
    line-height:36px;
    max-width:850px;
    margin:auto auto 40px;
}



/*=================================
    BUTTONS
==================================*/

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#F59E0B;
    color:#111;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.theme-btn:hover{
    transform:translateY(-4px);
}

.theme-btn-two{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 34px;
    border:2px solid #F59E0B;
    color:#fff;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.theme-btn-two:hover{
    background:#F59E0B;
    color:#111;
}





/*=================================
    MOBILE RESPONSIVE
==================================*/

@media(max-width:991px){

    .astro-hero-section{
        padding:140px 0 100px;
    }

    .hero-title{
        font-size:46px;
        line-height:58px;
    }

    .hero-location{
        font-size:28px;
    }

    .hero-desc{
        font-size:16px;
        line-height:30px;
    }

    .hero-zodiac-rotate{
        width:420px;
        height:420px;
        opacity:0.05;
    }

    .hero-stat-box{
        min-width:140px;
    }

}







<!--=================================
    CONTACT INFO CSS
==================================-->


.astro-contact-wrapper{
    display:flex;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}



/* Contact Box */
.astro-contact-box{
    flex:1;
    min-width:280px;
    display:flex;
    align-items:center;
    gap:20px;
    padding:28px;
    border-radius:20px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}



/* Hover */
.astro-contact-box:hover{
    transform:translateY(-6px);
    border-color:#F59E0B;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}



/* Gradient Glow */
.astro-contact-box::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(245,158,11,0.12);
    border-radius:50%;
    top:-40px;
    right:-40px;
}



/* Icon */
.astro-contact-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    flex-shrink:0;
    position:relative;
    z-index:2;
}



/* Icon Colors */
.call-icon{
    background:#F59E0B;
}

.email-icon{
    background:#7C3AED;
}



/* Text */
.astro-contact-content{
    position:relative;
    z-index:2;
}

.contact-label{
    display:block;
    color:#F59E0B;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.astro-contact-content h4{
    color:#fff;
    font-size:24px;
    margin-bottom:8px;
    font-weight:700;
}

.astro-contact-content a{
    color:#d1d5db;
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
    word-break:break-word;
}

.astro-contact-content a:hover{
    color:#F59E0B;
}



/* Mobile */
@media(max-width:767px){

    .astro-contact-wrapper{
        flex-direction:column;
    }

    .astro-contact-box{
        padding:24px;
    }

    .astro-contact-content h4{
        font-size:20px;
    }

}


/* Styling for the Astrology Button */
.astrology-btn {
  position: relative;
  background-color: #5c4b8a; /* Deep purple from your logo icon */
  color: #ffffff; /* Clean white text */
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 15px 35px;
  border: 2px solid #ffbc00; /* Vibrant gold border from your logo */
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 10px rgba(92, 75, 138, 0.5);
}

/* The Text Layer */
.btn-text {
  position: relative;
  z-index: 2;
}

/* Mystical Cosmic Glow Effect (Animation) */
.astrology-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 188, 0, 0.4), /* Gold shimmer */
    transparent    
  );
  transition: none;
  z-index: 1;
}

/* Continuous background pulse mimicking starlight */
@keyframes cosmicPulse {
  0% {
    box-shadow: 0 0 12px rgba(255, 188, 0, 0.3), 0 0 20px rgba(92, 75, 138, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 188, 0, 0.6), 0 0 35px rgba(92, 75, 138, 0.7);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 188, 0, 0.3), 0 0 20px rgba(92, 75, 138, 0.4);
  }
}

/* Apply the steady cosmic pulse */
.astrology-btn {
  animation: cosmicPulse 3s infinite ease-in-out;
}



/* Shimmer trigger on hover */
.astrology-btn:hover::before {
  left: 100%;
  transition: all 0.8s ease-in-out;
}

/* Active/Click effect */
.astrology-btn:active {
  transform: translateY(1px);
}   


.hero-slider{
    width:100%;
    overflow:hidden;
    background:#000;
}

/* Swiper */
.myHeroSlider{
    width:100%;
}

/* Slide */
.myHeroSlider .swiper-slide{
    width:100%;
    line-height:0;
}

/* Banner Image */
.myHeroSlider .swiper-slide img{
    width:100%;
    height:auto;
    display:block;
}

/* Remove Extra Gap */
.swiper-wrapper{
    margin:0;
    padding:0;
}

/* Pagination */
.swiper-pagination{
    bottom:20px !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ffb300;
}

/* Mobile Optimization */
@media(max-width:768px){

    .swiper-pagination{
        bottom:10px !important;
    }

    .swiper-pagination-bullet{
        width:10px;
        height:10px;
    }

}



.blog-title>a{font-size: 15px !important;}



.footer-section{
    background:#111827;
    padding:80px 0 0;
    position:relative;
}

.footer-widget{
    margin-bottom:40px;
}

.footer-logo img{
    max-width:180px;
}

.footer-text p{
    color:#cfcfcf;
    line-height:28px;
    margin-bottom:0;
}

.footer-title{
    color:#fff;
    font-size:24px;
    margin-bottom:25px;
    font-weight:700;
}

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#d4d4d4;
    transition:0.3s;
    text-decoration:none;
}

.footer-links li a:hover{
    color:#f59e0b;
    padding-left:5px;
}

.footer-social a{
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    display:inline-block;
    border-radius:50%;
    margin-right:10px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    transition:0.3s;
}

.footer-social a:hover{
    background:#f59e0b;
    color:#fff;
}

.footer-contact p{
    color:#d4d4d4;
    margin-bottom:18px;
    line-height:28px;
}

.footer-contact p i{
    color:#f59e0b;
    margin-right:10px;
}

.footer-contact a{
    color:#d4d4d4;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
    margin-top:40px;
}

.copyright-text p{
    color:#bfbfbf;
    margin-bottom:0;
}

.footer-bottom-menu a{
    color:#bfbfbf;
    margin-left:20px;
    text-decoration:none;
    transition:0.3s;
}

.footer-bottom-menu a:hover{
    color:#f59e0b;
}

@media(max-width:991px){

    .footer-bottom-menu{
        text-align:left !important;
        margin-top:15px;
    }

}




/*=================================
    ASTRO LOCATION SECTION
==================================*/

.astro-location-section{
    position:relative;
    padding:120px 0 90px;
    background:
    radial-gradient(circle at top left, rgba(245,158,11,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245,158,11,0.06), transparent 30%),
    #0f0f17;
    overflow:hidden;
}

/* Floating Glow Effect */
.astro-location-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(245,158,11,0.08);
    filter:blur(120px);
    top:-150px;
    left:-150px;
    border-radius:50%;
    animation:floatGlow 8s linear infinite alternate;
}

@keyframes floatGlow{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(80px,60px);
    }

}

/* Description */
.location-top-text{
    max-width:850px;
    margin:20px auto 0;
    color:#cfcfcf;
    font-size:17px;
    line-height:30px;
}

/* Box Design */
.astro-location-box{
    position:relative;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(245,158,11,0.18);
    border-radius:22px;
    padding:35px 20px;
    text-align:center;
    margin-bottom:30px;
    overflow:hidden;
    backdrop-filter:blur(10px);
    transition:all .45s ease;
    min-height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Animated Border */
.astro-location-box::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:22px;
    padding:2px;
    background:linear-gradient(
        130deg,
        transparent,
        rgba(245,158,11,.9),
        transparent,
        rgba(245,158,11,.8),
        transparent
    );

    background-size:300% 300%;

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    animation:borderMove 5s linear infinite;
}

/* Hover */
.astro-location-box:hover{
    transform:translateY(-10px) scale(1.03);
    background:rgba(245,158,11,0.08);
    box-shadow:
    0 10px 40px rgba(245,158,11,.15),
    0 0 25px rgba(245,158,11,.12);
}

/* Heading */
.astro-location-box h4{
    color:#fff;
    font-size:21px;
    font-weight:700;
    line-height:32px;
    margin:0;
    position:relative;
    z-index:2;
    transition:.4s;
}

/* Hover Text Glow */
.astro-location-box:hover h4{
    color:#F59E0B;
    text-shadow:0 0 12px rgba(245,158,11,.55);
}

/* Border Animation */
@keyframes borderMove{

    0%{
        background-position:0% 50%;
    }

    100%{
        background-position:300% 50%;
    }

}

/* Responsive */
@media(max-width:767px){

    .astro-location-box{
        min-height:120px;
        padding:28px 15px;
    }

    .astro-location-box h4{
        font-size:18px;
        line-height:28px;
    }

}








/* FLOATING BUTTON */
.astro-float-btn{
    position:fixed;
    left:25px;
    bottom:25px;
    z-index:99999;
    width:75px;
    height:75px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    overflow:hidden;
    background:linear-gradient(135deg,#f7c600,#ff9900,#f7c600);
    box-shadow:
    0 0 15px rgba(247,198,0,.7),
    0 0 40px rgba(255,153,0,.5);
    animation:astroPulse 2s infinite;
}

/* ROTATING BORDER */
.astro-float-btn::before{
    content:"";
    position:absolute;
    inset:-4px;
    background:conic-gradient(
        #f7c600,
        #ff9900,
        #fff2a6,
        #f7c600
    );
    border-radius:50%;
    animation:rotateBorder 4s linear infinite;
    z-index:-1;
}

.astro-float-btn i{
    font-size:32px;
    color:#2f1b00;
    animation:floatIcon 2s ease-in-out infinite;
}

@keyframes rotateBorder{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes astroPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes floatIcon{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
    100%{
        transform:translateY(0);
    }
}

/* POPUP */
.astro-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.astro-popup.active{
    display:flex;
}

/* FORM BOX */
.astro-popup-box{
    width:100%;
    max-width:500px;
    position:relative;
    border-radius:25px;
    overflow:hidden;
    background:#071b2a;
    padding:45px 35px;
    border:2px solid rgba(255,193,7,.4);
    box-shadow:
    0 0 20px rgba(255,193,7,.3),
    0 0 60px rgba(255,193,7,.15);
}

/* ANIMATED BORDER */
.astro-popup-box::before{
    content:"";
    position:absolute;
    inset:-3px;
    background:conic-gradient(
        #f7c600,
        #ff9900,
        transparent,
        #f7c600
    );
    animation:borderSpin 5s linear infinite;
    z-index:-1;
}

@keyframes borderSpin{
    100%{
        transform:rotate(360deg);
    }
}

/* CLOSE BUTTON */
.astro-close{
    position:absolute;
    right:18px;
    top:15px;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* TITLE */
.astro-popup-box h2{
    color:#f7c600;
    font-size:34px;
    margin-bottom:10px;
    text-align:center;
    font-weight:700;
}

.astro-popup-box p{
    color:#d7d7d7;
    text-align:center;
    margin-bottom:30px;
    line-height:1.7;
}

/* FORM */
.astro-form-group{
    margin-bottom:18px;
}

.astro-form-group input,
.astro-form-group textarea{
    width:100%;
    border:none;
    outline:none;
    border-radius:12px;
    padding:16px 18px;
    background:#0f2b42;
    color:#fff;
    font-size:15px;
}

.astro-form-group textarea{
    resize:none;
    height:120px;
}

/* BUTTON */
.astro-submit-btn{
    width:100%;
    border:none;
    cursor:pointer;
    border-radius:14px;
    padding:16px;
    font-size:17px;
    font-weight:700;
    color:#2b1a00;
    background:linear-gradient(135deg,#f7c600,#ff9900);
    transition:.4s;
    box-shadow:0 0 20px rgba(255,193,7,.35);
}

.astro-submit-btn:hover{
    transform:translateY(-3px);
}

/* SMALL TEXT */
.astro-note{
    color:#aaa;
    text-align:center;
    margin-top:15px;
    font-size:13px;
}

@media(max-width:768px){

    .astro-popup-box{
        padding:35px 22px;
    }

    .astro-popup-box h2{
        font-size:28px;
    }

    .astro-float-btn{
        width:65px;
        height:65px;
    }

    .astro-float-btn i{
        font-size:26px;
    }

}
.astro-float-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;
    width:90px;
    height:90px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    overflow:hidden;
    background:linear-gradient(135deg,#f7c600,#ff9900,#f7c600);
    box-shadow:
    0 0 15px rgba(247,198,0,.7),
    0 0 40px rgba(255,153,0,.5);

    animation:astroPulse 2s infinite;

    color:#2f1b00;
    font-size:16px;
    font-weight:800;
    line-height:1.2;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.astro-float-btn span{
    font-size:13px;
    letter-spacing:1px;
}


/*=================================
    LOCATION MAP SECTION CSS
==================================*/

.astro-location-map-section{
    position:relative;
  
    background:#010b2a;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,0.08);
}

.astro-location-map-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
    rgba(245,158,11,0.08) 0%,
    transparent 70%);
    top:-250px;
    left:-200px;
    pointer-events:none;
}

.astro-map-content{
    position:relative;
    padding-left:22px;
}

.astro-map-dot{
    position:absolute;
    left:0;
    top:14px;
    width:9px;
    height:9px;
    background:#ff5a1f;
    border-radius:50%;
    box-shadow:0 0 15px #ff5a1f;
}

.astro-map-content h2{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.3;
}

.astro-map-content p{
    color:#b8c3d9;
    font-size:19px;
    margin:0;
    line-height:30px;
}

.astro-map-box{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    border:3px solid rgba(255,255,255,0.08);
    box-shadow:
    0 15px 40px rgba(0,0,0,0.45),
    0 0 30px rgba(245,158,11,0.08);
}

.astro-map-box iframe{
    width:100%;
    height:340px;
    border:0;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .astro-map-content{
        margin-bottom:40px;
    }

    .astro-map-content h2{
        font-size:30px;
    }

    .astro-map-box iframe{
        height:300px;
    }

}


/*=================================
    ASTRO BREADCRUMB
==================================*/

.astro-breadcrumb{
    position:relative;
    padding:30px 0 30px;
    overflow:hidden;
    background:#141030;
    z-index:1;
}

/* Background */

.astro-breadcrumb-bg{
    position:absolute;
    inset:0;
    z-index:-3;
}

.astro-breadcrumb-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.28);
}

/* Overlay */

.astro-breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    180deg,
    rgba(20,16,48,0.55),
    rgba(1,11,42,0.95)
    );
    z-index:-2;
}

/* Rotating Zodiac */

.astro-breadcrumb-zodiac{
    position:absolute;
    top:50%;
    right:-120px;
    width:480px;
    height:480px;
    transform:translateY(-50%);
    opacity:0.08;
    animation:astroRotate 50s linear infinite;
    z-index:-1;
}

.astro-breadcrumb-zodiac img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Content */

.astro-breadcrumb-content{
    text-align:center;
    position:relative;
    z-index:5;
}

/* Subtitle */

.astro-breadcrumb-subtitle{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(245,158,11,0.08);
    border:1px solid rgba(245,158,11,0.25);
    color:#FBBF24;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

/* Title */

.astro-breadcrumb h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
    margin-bottom:25px;
    line-height:1.1;
    letter-spacing:-2px;
    text-shadow:0 0 25px rgba(0,0,0,0.3);
}

/* Breadcrumb */

.astro-breadcrumb-list{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    padding:0;
    margin:0;
    list-style:none;
}

.astro-breadcrumb-list li{
    color:#d4d7e3;
    font-size:16px;
    font-weight:500;
}

.astro-breadcrumb-list li a{
    color:#FBBF24;
    text-decoration:none;
    transition:0.3s;
}

.astro-breadcrumb-list li a:hover{
    color:#fff;
}

/* Animation */

@keyframes astroRotate{

    from{
        transform:translateY(-50%) rotate(0deg);
    }

    to{
        transform:translateY(-50%) rotate(360deg);
    }

}

/* Responsive */

@media(max-width:991px){

    .astro-breadcrumb{
        padding:150px 0 100px;
    }

    .astro-breadcrumb h1{
        font-size:54px;
    }

    .astro-breadcrumb-zodiac{
        width:350px;
        height:350px;
    }

}

@media(max-width:767px){

    .astro-breadcrumb{
        padding:130px 0 80px;
    }

    .astro-breadcrumb h1{
        font-size:38px;
    }

    .astro-breadcrumb-subtitle{
        font-size:11px;
        padding:8px 18px;
    }

    .astro-breadcrumb-list li{
        font-size:14px;
    }

    .astro-breadcrumb-zodiac{
        width:250px;
        height:250px;
        right:-80px;
    }

}



.title-content{
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 40px 20px 60px;
    z-index: 2;
}

.page-sub-title{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37 !important;
    margin-bottom: 18px;
    position: relative;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
}

.page-title{
    font-size: 68px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.page-title span{
    color: #d4af37;
}

.page-desc{
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

.title-content::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(212,175,55,0.08);
    border-radius: 50%;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(10px);
    z-index: -1;
}

/* Decorative Line */
.heading-line{
    width: 90px;
    height: 4px;
    background: #d4af37;
    border-radius: 30px;
    margin: 30px auto 0;
    position: relative;
}

.heading-line::before,
.heading-line::after{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    top: -4px;
}

.heading-line::before{
    left: -10px;
}

.heading-line::after{
    right: -10px;
}

/* Responsive */
@media(max-width:991px){
    .page-title{
        font-size: 48px;
    }
}

@media(max-width:767px){
    .page-title{
        font-size: 34px;
        line-height: 1.3;
    }

    .page-desc{
        font-size: 15px;
    }

    .page-sub-title{
        font-size: 12px;
        letter-spacing: 2px;
    }
}



/* =========================
   MASTER VISHNU COMPACT CSS
========================= */

.mv-about-section{
    padding: 70px 0;
    position: relative;
}

.mv-about-image img{
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.mv-about-content{
    padding-left: 20px;
}

.mv-subtitle{
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 14px;
}

.mv-about-content h2{
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111827;
}

.mv-about-content h2 span{
    color: #f59e0b;
}

.mv-about-content p{
    color: #666;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 16px;
}

.mv-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 25px;
}

.mv-feature-box{
    background: #fff;
    border-radius: 10px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.mv-feature-box:hover{
    transform: translateY(-5px);
}

.mv-feature-box i{
    font-size: 30px;
    color: #f59e0b;
    margin-bottom: 12px;
}

.mv-feature-box h5{
    font-size: 16px;
    margin: 0;
    color: #111827;
}

.mv-contact-section{
    padding: 70px 0;
    background: #0f172a;
}

.mv-contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.mv-contact-left h2{
    font-size: 40px;
    color: #fff;
    line-height: 1.3;
    margin: 15px 0;
}

.mv-contact-left p{
    color: #d1d5db;
    line-height: 28px;
    font-size: 15px;
}

.mv-contact-form{
    background: #fff;
    padding: 30px;
    border-radius: 14px;
}

.mv-form-group{
    margin-bottom: 16px;
}

.mv-form-group input,
.mv-form-group textarea{
    width: 100%;
    border: 1px solid #ddd;
    padding: 13px 16px;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.mv-form-group input:focus,
.mv-form-group textarea:focus{
    border-color: #f59e0b;
}

.mv-btn-primary{
    display: inline-block;
    padding: 14px 30px;
    background: #f59e0b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.mv-btn-primary:hover{
    background: #111827;
    color: #fff;
}

.mv-services-section{
    padding: 70px 0;
    background: #f8fafc;
}

.mv-section-title{
    margin-bottom: 40px;
}

.mv-section-title span{
    color: #f59e0b;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.mv-section-title h2{
    font-size: 38px;
    margin-top: 10px;
    color: #111827;
}

.mv-service-card{
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    transition: 0.3s;
    height: 100%;
}

.mv-service-card:hover{
    transform: translateY(-6px);
}

.mv-service-card h4{
    font-size: 22px;
    margin-bottom: 14px;
    color: #111827;
}

.mv-service-card p{
    color: #666;
    line-height: 26px;
    margin-bottom: 16px;
    font-size: 15px;
}

.mv-service-card a{
    text-decoration: none;
    color: #f59e0b;
    font-weight: 700;
    font-size: 15px;
}

/* MOBILE */

@media(max-width:991px){

    .mv-about-content{
        padding-left: 0;
        margin-top: 35px;
    }

    .mv-contact-wrapper{
        grid-template-columns: 1fr;
    }

    .mv-feature-grid{
        grid-template-columns: 1fr;
    }

    .mv-contact-left h2,
    .mv-about-content h2,
    .mv-section-title h2{
        font-size: 32px;
    }

}

@media(max-width:767px){

    .mv-about-section,
    .mv-contact-section,
    .mv-services-section{
        padding: 50px 0;
    }

    .mv-contact-form{
        padding: 22px;
    }

    .mv-about-content h2,
    .mv-contact-left h2,
    .mv-section-title h2{
        font-size: 28px;
    }

}