:root {
    --primary-bg: #0b1c2d;
    --secondary-bg: #071420;
    --gradient-bg: linear-gradient(135deg, #071420, #0b1c2d);

    --gold: #d4af37;
    --gold-light: #f6e27a;
    --gold-glow: rgba(212, 175, 55, 0.2);

    --white: #ffffff;
    --light-text: #cccccc;
    --muted-text: #aaaaaa;

    --glass-bg: rgba(11, 28, 45, 0.4);
    --blur: blur(12px);

    --transition: all 0.4s ease;
}
/* ===== Global Gold Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a23;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4b44a, #b8962e);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f5d76e, #caa93a);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4b44a #0a0a23;
}


/* ============================= */
/* HOME HERO SECTION */
/* ============================= */

.home-hero-section {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(
        circle at 30% 30%,
        var(--primary-bg),
        var(--secondary-bg) 60%,
        #050b18 100%
    );
    overflow: hidden;
}

/* Moving Star Background */
.home-hero-stars {
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.07;
    animation: home-hero-starMove 90s linear infinite;
}

@keyframes home-hero-starMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-600px, -600px);
    }
}

/* Golden Glow */
.home-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    top: -120px;
    left: -120px;
    filter: blur(80px);
    animation: home-hero-glowMove 6s ease-in-out infinite alternate;
}

@keyframes home-hero-glowMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(80px, 50px);
    }
}

/* Badge */
.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    border: 1px solid var(--gold-glow);
}

/* Main Title */
.home-hero-title {
    font-family: "Cinzel", serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* Subtitle */
.home-hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: var(--light-text);
    max-width: 520px;
}

/* Buttons */
.home-hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.home-hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--gold-glow);
}

.home-hero-btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 30px;
    transition: var(--transition);
}

.home-hero-btn-outline:hover {
    background: var(--gold);
    color: #000;
}

/* Image Area */
.home-hero-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Rotating Zodiac Ring */
.home-hero-zodiac-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed var(--gold-glow);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: home-hero-rotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
}

@keyframes home-hero-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Image */
.home-hero-img {
    max-width: 500px;
    animation: home-hero-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes home-hero-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .home-hero-section {
        padding: 90px 0;
        text-align: center;
    }

    .home-hero-title {
        font-size: 34px;
    }

    .home-hero-img {
        max-width: 260px;
    }
}

/* home hero end  */

/*home service */

.services-section {
    padding: 120px 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

/* Soft Gold Glow */
.services-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(100px);
    z-index: 0;
}

.services-header {
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    color: var(--gold);
    border: 1px solid var(--gold-glow);
    font-size: 14px;
}

.services-title {
    font-family: "Cinzel", serif;
    font-size: 42px;
    color: var(--white);
    margin-top: 20px;
}

.services-subtitle {
    color: var(--light-text);
    margin-top: 15px;
    font-size: 17px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px var(--gold-glow);
}

/* Target the Font Awesome icon inside */
.service-icon i {
    color: var(--primary-bg) !important;
}


/* Headings */
.service-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted-text);
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 30px;
    }
}
/* Learn More Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--gold-glow);
}

/* Arrow Animation */
.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* service end home */

/* home why choose use */

.why-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

/* Background Soft Glow */
.why-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    bottom: -120px;
    left: -120px;
    filter: blur(100px);
}

/* Layout */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image 3D Effect */
.why-image {
    perspective: 1000px;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Content */
.why-content {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Badge */
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    border: 1px solid var(--gold-glow);
    font-size: 14px;
}

/* Title */
.why-title {
    font-family: "Cinzel", serif;
    font-size: 36px;
    color: var(--white);
    margin: 20px 0;
}

/* Description */
.why-description {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Points */
.why-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.why-points li {
    margin-bottom: 12px;
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-points i {
    color: var(--gold);
}

/* Button */
.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.why-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--gold-glow);
}

/* Responsive */
@media (max-width: 991px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-image img {
        transform: none;
    }

    .why-content {
        padding: 30px;
    }
}
/* why choose us end home */

/* testimonial home */
.testimonial-section {
    background: var(--gradient-bg);
    color: var(--white);
    position: relative;

    /* Add height */
    min-height: 600px; /* adjust this value as needed */
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-subtitle {
    max-width: 500px;
    color: var(--light-text);
}

/* Carousel Buttons */
.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--white);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--gold-light);
    color: var(--primary-bg);
}

/* Card */
.testimonial-card {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: var(--blur);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gold);
}

/* Stars */
.stars i {
    color: var(--gold);
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.client-info h6 {
    margin: 0;
    font-weight: 600;
}

.client-info span {
    font-size: 13px;
    color: var(--muted-text);
}
/* home testimonial end */

/* home blog */
.blog-section {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 80px 0;
}

.blog-title {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.blog-subtitle {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.blog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--gold-glow);
}

.blog-card-content {
    background: rgba(11, 28, 45, 0.784); /* dark overlay for text readability */
    padding: 20px;
    width: 100%;
}

.blog-card-content h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-content p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-card .view-detail-btn {
    background: var(--gold-light);
    color: var(--primary-bg);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.blog-card .view-detail-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.view-all-btn {
    background: var(--gold-light);
    color: var(--primary-bg);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 40px;
    transition: var(--transition);
    cursor: pointer;
}

.view-all-btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* home blog end */

/* ===== CTA SECTION ===== */
.home-cta {
    background: var(--gradient-bg);
    color: var(--white);
    overflow: hidden;
}

/* Glass Card */
.home-cta .cta-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    box-shadow: 0 8px 35px var(--gold-glow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.home-cta .cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 45px var(--gold-glow);
}

/* Title & Subtitle */
.home-cta .cta-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow:
        0 0 10px var(--gold-glow),
        0 0 20px var(--gold-glow);
    animation: shimmer 3s infinite linear;
}

.home-cta .cta-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Shimmer Effect on Title */
@keyframes shimmer {
    0% {
        text-shadow:
            0 0 5px var(--gold-glow),
            0 0 15px var(--gold-glow);
    }
    50% {
        text-shadow:
            0 0 15px var(--gold-light),
            0 0 30px var(--gold-light);
    }
    100% {
        text-shadow:
            0 0 5px var(--gold-glow),
            0 0 15px var(--gold-glow);
    }
}

/* Gold Button */
.home-cta .btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--primary-bg);
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.home-cta .btn-gold:hover {
    background: linear-gradient(45deg, var(--gold-light), var(--gold));
    box-shadow:
        0 0 20px var(--gold-glow),
        0 0 40px var(--gold-glow);
    color: var(--secondary-bg);
}

/* Floating Stars */
.home-cta .star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s infinite;
}

.home-cta .star1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}
.home-cta .star2 {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}
.home-cta .star3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
}

/* Comet Trails */
.home-cta .comet {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.3;
    border-radius: 50%;
    transform: rotate(45deg);
    animation: cometMove 4s infinite linear;
}

.home-cta .comet1 {
    top: 20%;
    left: 90%;
    animation-delay: 0s;
}
.home-cta .comet2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes cometMove {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(50px) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .home-cta .cta-title {
        font-size: 2rem;
    }
    .home-cta .cta-subtitle {
        font-size: 1rem;
    }
}

/* cta end  */

/* contact page */

/* ===== HERO SECTION ===== */
.contact-hero {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 100px 0 60px 0;
}

.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* ===== INFO CARDS ===== */
.contact-info .info-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    color: var(--white);
    text-align: center;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.contact-info .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--gold-glow);
}

.contact-info .info-card h5 {
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
}

.contact-info .info-card p {
    margin-top: 5px;
    color: var(--light-text);
}

/* ===== FORM CARD ===== */
.contact-form .form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    padding: 40px;
    box-shadow: 0 8px 35px var(--gold-glow);
    transition: var(--transition);
}

.contact-form .form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px var(--gold-glow);
}

/* Input Fields */
.contact-form .form-control {
    background: var(--secondary-bg);
    border: 1px solid var(--gold);
    color: var(--white);
}

.contact-form .form-control::placeholder {
    color: var(--muted-text);
}

/* Button */
.contact-form .btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--primary-bg);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-form .btn-gold:hover {
    background: linear-gradient(45deg, var(--gold-light), var(--gold));
    box-shadow:
        0 0 20px var(--gold-glow),
        0 0 40px var(--gold-glow);
    color: var(--secondary-bg);
}

/* ===== MAP PLACEHOLDER ===== */
.contact-map .map-placeholder {
    background: var(--secondary-bg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
}
.contact-map .map-placeholder iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* contact end */

/* about css  */
/* HERO SECTION */
.about-hero {
    background: var(--gradient-bg);
    padding: 120px 0 90px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* subtle radial light effect */
.about-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08),
        transparent 70%
    );
    top: -150px;
    right: -150px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: var(--light-text);
    font-size: 1.15rem;
}

.about-highlight {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.05);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(212, 175, 55, 0.15);
}

/* VEDIC QUOTE */
.vedic-quote {
    background: var(--secondary-bg);
    padding: 55px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.vedic-text {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.vedic-sub {
    color: var(--muted-text);
}

/* SECTION TITLE */
.section-title {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    left: 20%;
    bottom: 0;
}

/* INTRO CARD */
.intro-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.45),
        inset 0 0 12px rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.intro-card:hover {
    transform: translateY(-8px) rotateX(4deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 18px rgba(212, 175, 55, 0.2);
}

/* FEATURE BOX */
.feature-box {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(212, 175, 55, 0.08);
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.6),
        inset 0 0 18px rgba(212, 175, 55, 0.25);
}

.feature-box i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

/* WHY CHOOSE */
.why-choose {
    background: var(--primary-bg);
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(212, 175, 55, 0.08);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55),
        inset 0 0 16px rgba(212, 175, 55, 0.2);
}

.why-card i {
    font-size: 28px;
    color: var(--gold);
}

/* VALUES SECTION */
.about-values {
    background: var(--secondary-bg);
}

.values-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.5),
        inset 0 0 18px rgba(212, 175, 55, 0.15);
    padding: 60px 40px;
}

/* about end */

/* service page css */

/* ================= HERO CLEAN VERSION ================= */

.astro-hero {
    padding: 130px 0;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        #0c1445 50%,
        #090f2c 100%
    );
    position: relative;
    text-align: center;
    color: #fff;
}

/* Remove heavy overlay completely */
.astro-hero::before {
    display: none;
}

/* Tag */
.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Title */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Subtitle */
.hero-subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #ddd;
}

/* Divider */
.hero-divider {
    width: 90px;
    height: 2px;
    margin: 25px auto;
    background: var(--gold);
}

/* Button */
.hero-btn {
    background: var(--gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    transform: translateY(-4px);
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: var(--blur);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card i {
    color: var(--gold);
}
.astro-card {
    background: rgba(15, 25, 55, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(12px);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.astro-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.icon-box-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.astro-btn {
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.astro-btn:hover {
    background: #fff;
    color: #000;
}

.detail-card {
    background: rgba(20, 30, 70, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.astro-list {
    list-style: none;
    padding-left: 0;
}

.astro-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.astro-list li::before {
    content: "✔";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.process-box {
    background: rgba(10, 15, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-step span {
    background: var(--gold);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* kundali */

.kundli-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1f4c, #0a0f2e);
    text-align: center;
}

.hero-title {
    font-size: 48px;
    color: var(--gold);
}

.hero-subtitle {
    color: #ccc;
}

.content-card {
    background: rgba(20, 30, 70, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bg-dark-section {
    background: rgba(10, 15, 40, 0.8);
}

.koot-card {
    background: rgba(20, 30, 70, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.koot-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.roadmap {
    max-width: 700px;
    margin: auto;
}

.road-step {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
}

.road-step span {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.bg-book-section {
    background: linear-gradient(135deg, #1a1f4c, #0a0f2e);
}

.astro-btn-large {
    background: var(--gold);
    padding: 14px 40px;
    border-radius: 40px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.astro-btn-large:hover {
    background: #fff;
    transform: translateY(-4px);
}
.hero-sanskrit {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 10px 15px;
    color: #ddd;
}

.mantra-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Center Line */
.timeline::before {
    content: "";
    position: absolute;
    width: 3px;
    background: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Each Step */
.timeline-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

/* Left Steps */
.timeline-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right Steps */
.timeline-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Number Circle */
.timeline-step span {
    position: absolute;
    top: 22px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Circle Position Left */
.timeline-step:nth-child(odd) span {
    right: -16px;
}

/* Circle Position Right */
.timeline-step:nth-child(even) span {
    left: -16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-step {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-step span {
        left: 5px !important;
        right: auto !important;
    }
}
.timeline-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 18px 22px;
    border-radius: 14px;
    color: #ddd;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.timeline-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* spacing fix */
.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

/* number circle */
.timeline-step span {
    min-width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.kundli-cta-section {
    background: #0f1b3d;
}

.cta-title {
    color: #fff;
}

.cta-text {
    color: #cfcfcf;
}

.consult-card {
    background: #0a1430;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
}

.process-step span {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.gem-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: 0.4s ease;
    backdrop-filter: blur(8px);
}

.gem-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.gem-img {
    height: 140px;
    object-fit: contain;
    transition: 0.4s ease;
}

.gem-card:hover .gem-img {
    transform: scale(1.05);
}

/* serivce page end */

/* Blog Page Cards */
.blog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}
.home-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.home-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.home-hero p {
    font-size: 1.25rem;
}

.astro-btn-lg {
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.astro-btn-lg:hover {
    background: #f2c94c;
    text-decoration: none;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(11, 28, 45, 0.849); /* dark transparent */
    color: var(--gold); /* text color */
    text-align: left;
}

/* Title */
.blog-overlay h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold);
}

/* Excerpt */
.blog-overlay p {
    font-size: 14px;
    color: #fff; /* light text */
    margin-bottom: 12px;
}
.blog-overlay a.astro-btn-sm {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold);
    color: #0b1c2d;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-overlay a.astro-btn-sm:hover {
    background: var(--gold-light);
    color: #000;
}

/* Optional: Card hover effect for uplift only */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Inputs & Dropdowns */
.blog-input {
    background: var(--glass-bg);
    border: 1px solid var(--gold-glow);
    color: var(--white);
    transition: var(--transition);
    border-radius: 10px;
}

.blog-input:focus {
    background: rgba(11, 28, 45, 0.6);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Astro Buttons */
.astro-btn-sm {
    background: var(--gold);
    color: #000;
    padding: 6px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.astro-btn-sm:hover {
    background: var(--gold-light);
    color: #000;
    box-shadow: 0 0 12px var(--gold-glow);
}

/* Badges */
.badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.badge.bg-purple {
    background: #6a0dad;
    color: var(--white);
}
.badge.bg-pink {
    background: #e75480;
    color: var(--white);
}

/* Related Blog Overlay */
.blog-card .blog-overlay {
    opacity: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

/* Pagination */
.page-btn {
    margin: 0 5px;
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--gold-glow);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn.active {
    background: var(--gold);
    color: #000;
}
/* blogpage end */

/* modal booking */

.astro-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999 ;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

/* When Active */
.astro-modal.active {
    display: block;
}


/* Modal Box */
.astro-modal-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 95%;
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;

    background: linear-gradient(145deg, #0b0f2a, #11143a);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 180, 74, 0.4);

    animation: fadeIn 0.4s ease;
}
.astro-modal .close-btn {
    color: #f5f0d8;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    font-weight: bold;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s ease;
}

.close-btn:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}


/* Form Styles */
.astro-modal-content .form-group {
    margin-bottom: 15px;
}
.astro-modal-content label {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-weight: 500;
}
.astro-modal-content input,
.astro-modal-content select,
.astro-modal-content textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background: var(--glass-bg);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}
.astro-modal-content input:focus,
.astro-modal-content select:focus,
.astro-modal-content textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}
.astro-modal input,
.astro-modal select,
.astro-modal textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #d4b44a;
    border-radius: 0.5rem;
    background-color: #0a0a23;
    color: #f5f0d8;
}
.astro-modal input::placeholder,
.astro-modal textarea::placeholder {
    color: #888;
}
.astro-modal .astro-btn {
    background-color: #d4b44a;
    color: #0a0a23;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.astro-modal .astro-btn:hover {
    opacity: 0.9;
}
/* Submit Button */
.astro-modal-content .astro-btn {
    background: var(--gold);
    color: var(--secondary-bg);
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.astro-modal-content .astro-btn:hover {
    background: var(--gold-light);
    color: var(--primary-bg);
}

/* Process animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* modal booking end  */
