/* ==================== HERO SECTIONS ==================== */
/* .hero-banner {
    background: radial-gradient(circle, rgba(10,25,75,0.9) 0%, rgba(3,7,28,1) 100%), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%;
    color: #fff;
    overflow: hidden;
}

.hero-left-content {
    max-width: 55%;
}

.brand-heading {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: #fde895;
    display: inline-block;
}

.live-badge {
    background-color: #d62828;
    color: #fff;
    padding: 4px 12px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-left: 15px;
    vertical-align: super;
}

.sub-banner-box h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    font-weight: 500;
    line-height: 1.4;
}

.sub-banner-box h2 span {
    color: #fde895;
    border-bottom: 2px dashed #fde895;
}

.hero-features-list {
    margin-top: 30px;
}

.feat-bullet {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feat-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fde895;
    color: #fde895;
}

.zodiac-wheel-img {
    width: 100%;
    max-width: 450px;
    animation: spin 60s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } } */

.hero-banner {
    width: 100%;
    /* Aspect ratio lagane se image desktop aur mobile dono par perfect scale hogi aur text nahi katega */
    aspect-ratio: 1920 / 640; 
    background: url('../images/zodiac-wheel.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    display: block;
}

/* Mobile screens ke liye adjustments */
@media (max-width: 768px) {
    .hero-banner {
        background-size: contain; /* Mobile par poori image fit karne ke liye */
        aspect-ratio: 16 / 9; /* Mobile ke hisaab se height auto-adjust hogi */
    }
}

/* --- SOCIAL FOLLOW CONTAINER --- */
.social-follow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align rakhne ke liye, center chahiye to center likhein */
    /* gap: 8px; */
    font-family: 'Poppins', sans-serif; /* Ya aapka jo bhi main font ho */
}

/* "Follow Us" Text Style */
.follow-text-heading {
    /* font-size: 1.1rem;
    font-weight: 200;
    color: #333333; 
    letter-spacing: 0.5px;
    margin: 0; */
        color: #666;
    font-size: 0.75rem;

}

/* Icons ki Row */
.social-icons-wrapper {
    display: flex;
    gap: 8px; /* Icons ke beech ka gap */
    align-items: center;
}

/* Individual Icon Button Style */
.social-icon-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f5f5f5; /* Light grey background */
    color: #555555; /* Default icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --- HOVER EFFECTS (Social Media Brands Colors) --- */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==================== RED TRUST STRIP ==================== */
.trust-strip-wrapper {
    background-color: #800000;
    padding: 15px 5%;
}

.trust-strip {
    border: 2px solid #ffcc00;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    padding: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.trust-item i {
    color: #ffcc00;
    font-size: 1.8rem;
}

.trust-txt strong { display: block; font-size: 0.95rem; }
.trust-txt p { font-size: 0.8rem; color: #ddd; }

/* ==================== DIVINE GUIDANCE SERVICES ==================== */
.divine-guidance-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #ffeb99 0%, #ffcc00 100%);
    text-align: center;
}

.section-title-area {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-area h2 {
    color: #4a0404;
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.divine-card {
    background-color: #fffdec;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 3px solid #4a0404;
    position: relative;
    padding-bottom: 70px;
}

.card-header-top {
    background-color: #a81414;
    color: #fff;
    padding: 25px 15px;
    border-bottom: 5px solid #ffcc00;
    position: relative;
}

.card-icon-main {
    font-size: 2.2rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.card-num {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4a0404;
    color: #ffcc00;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid #ffcc00;
}

.card-list-items {
    list-style: none;
    padding: 40px 30px 20px 30px;
    text-align: left;
}

.card-list-items li {
    padding: 12px 0;
    border-bottom: 1px dashed #ccc;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a0404;
}

.card-list-items li i {
    color: #a81414;
}

.card-action-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc00;
    color: #4a0404;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.card-action-btn:hover {
    background-color: #4a0404;
    color: #ffcc00;
}

/* ==================== FRANCHISE SECTION ==================== */
.franchise-banner-section {
    background: linear-gradient(rgba(74,4,4,0.85), rgba(74,4,4,0.85)), url('../images/temple-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 50px 5%;
    border-top: 4px solid #ffcc00;
}

.franchise-banner-section h2 {
    font-size: 2rem;
    color: #ffcc00;
    letter-spacing: 1px;
}

.fran-sub {
    margin: 10px 0 25px 0;
    font-weight: 500;
    letter-spacing: 2px;
}

.franchise-capsules {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.capsule {
    background-color: #2b0101;
    border: 2px solid #ffcc00;
    padding: 12px 79px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.capsule i {
    color: #ffcc00;
    font-size: 1.3rem;
}

.capsule span { display: block; font-size: 0.75rem; color: #aaa; text-align: left;}
.capsule strong { font-size: 1.1rem; color: #fff;}

/* --- OPENING ANIMATION EFFECT --- */
.animate-fade-in {
    opacity: 0;
    animation: fadeInPage 1.5s forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-banner { flex-direction: column; text-align: center; gap: 40px; }
    .hero-left-content { max-width: 100%; }
    .brand-heading { font-size: 3rem; }
}


.floating-action-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    align-items: center;
}

.single-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    position: relative;
}

.single-fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp { background-color: #25D366; color: #ffffff; font-size: 1.9rem; }
.fab-astrology { background: #4a0404; padding: 3px; border: 1px solid rgba(255, 204, 0, 0.3); }

.astrology-inner-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffcc00;
    font-size: 1.4rem;
    position: relative;
    background: radial-gradient(circle, #610505 0%, #4a0404 100%);
    pointer-events: none; 
}

.inner-star-deco { position: absolute; font-size: 0.65rem; color: #ffcc00; top: 14px; }
.orbiting-golden-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffcc00;
    border-radius: 50%;
    bottom: 4px;
    right: 4px;
    box-shadow: 0 0 8px #ffcc00;
}

/* --- HOVER TOOLTIP SYSTEM --- */
.stars-floating-tooltip {
    position: absolute;
    right: 75px;
    bottom: 12px;
    background-color: #ffffff;
    color: #4a0404;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #ffeed1;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: 0.3s ease;
    pointer-events: none;
}

.fab-astrology:hover ~ .stars-floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- MODAL WIDGET BOX (FIXED: No duplicate block) --- */
.stars-chat-widget-box {
    position: fixed;
    bottom: 110px; /* Sahi spacing */
    right: 30px;
    width: 380px;
    max-height: 80vh;
    background-color: #fffdf2;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(74, 4, 4, 0.25);
    border: 1px solid rgba(255, 204, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 999999;
    
    /* Animation settings */
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Jab tak band hai tab tak click na ho */
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

/* Open state me smooth transition chalega */
.stars-chat-widget-box.panel-is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.stars-widget-header { background-color: #4a0404; padding: 22px 25px; color: #ffffff; display: flex; justify-content: space-between; align-items: center; }
.header-titles h3 { font-size: 1.25rem; margin: 0 0 4px 0; }
.header-titles p { font-size: 0.88rem; color: #ffdca3; margin: 0; font-style: italic; }
.close-stars-widget { background: none; border: none; color: #ffffff; font-size: 1.8rem; cursor: pointer; }

.stars-widget-body { padding: 25px; overflow-y: auto; flex-grow: 1; }
.widget-field-block { margin-bottom: 18px; display: flex; flex-direction: column; }
.widget-field-block label { font-size: 0.88rem; color: #4a0404; margin-bottom: 6px; font-weight: 500; }
.required-star { color: #d62828; }

.widget-field-block input, .widget-field-block textarea {
    width: 100%; padding: 11px 14px; border: 1px solid rgba(255, 204, 0, 0.6);
    border-radius: 8px; outline: none; box-sizing: border-box;
}

/* --- LOOKUP DROPDOWN --- */
.custom-lookup-dropdown { position: relative; cursor: pointer; }
.lookup-selected-view {
    padding: 11px 14px; border: 1px solid rgba(255, 204, 0, 0.8);
    background-color: #ffffff; border-radius: 8px; display: flex; justify-content: space-between; align-items: center;
}
.lookup-dropdown-menu-list {
    position: absolute; top: calc(100% + 5px); left: 0; width: 100%;
    background-color: #ffffff; border-radius: 8px; border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); z-index: 10; display: none; padding: 6px 0; list-style: none; margin: 0;
}
.lookup-dropdown-menu-list li { padding: 10px 15px; color: #4a0404; display: flex; justify-content: space-between; align-items: center; }
.lookup-dropdown-menu-list li:hover { background-color: #fffbeb; }
.lookup-dropdown-menu-list li.active-item-selected { background-color: #fff6cc; font-weight: 600; }

.widget-send-query-btn {
    background-color: #a81414; color: #ffffff; border: none; width: 100%; padding: 12px;
    font-size: 1rem; font-weight: 600; border-radius: 25px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.widget-decorative-stars { display: flex; justify-content: center; gap: 8px; color: #ffcc00; margin-top: 20px; }
.widget-field-block.has-error input, .widget-field-block.has-error textarea { border-color: #d62828; background-color: #ffe6e6; }
.field-alert-msg { display: none; color: #d62828; font-size: 0.75rem; margin-top: 4px; }
.widget-field-block.has-error .field-alert-msg { display: block; }

.field-alert-msg-pop {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 5px;
    position: absolute;
    bottom: -20px;
}

.input-box.invalid-field .field-alert-msg-pop {
    display: block;
}

.input-box.invalid-field input,
.input-box.invalid-field textarea {
    border-color: #e74c3c;
}

.input-box.invalid-field i {
    color: #e74c3c;
}












/* Twitter / X Hover Effect */
.social-icon-btn.twitter:hover {
    background-color: #000000; /* Black color for X / Twitter */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Pinterest Hover Effect */
.social-icon-btn.pinterest:hover {
    background-color: #E60023; /* Brand Red color for Pinterest */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hide validation messages by default */
#contactForm .field-alert-msg {
    display: none;
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.4;
}

/* Show validation message */
#contactForm .input-group-field.invalid-field .field-alert-msg {
    display: block;
}

/* Red border when invalid */
#contactForm .input-group-field.invalid-field input,
#contactForm .input-group-field.invalid-field textarea {
    border: 1px solid #ff4d4d !important;
}

/* Optional red icon */
#contactForm .input-group-field.invalid-field .field-icon {
    color: #ff4d4d;
}












