/* DiviyaDrishti Custom Styles - Revitalized Design */                                                                                                          

:root {
    /* Professional Spiritual Color Palette */
    --primary-color: #2c3e50;        /* Deep Indigo/Maroon - Trust & Wisdom */
    --primary-light: #34495e;        /* Lighter Indigo for hover states */
    --accent-color: #d4af37;         /* Rich Gold/Bronze - Spiritual & Premium */
    --accent-light: #e6c547;         /* Lighter Gold for highlights */
    --background-soft: #f8f9fa;      /* Soft Cream/Off-White */
    --background-white: #ffffff;     /* Pure White for cards */
    --text-color: #333333;           /* Deep Dark Gray - High Contrast */
    --text-light: #ffffff;           /* White text */
    --text-muted: #6c757d;           /* Soft Gray for secondary text */
    --border-color: #dee2e6;         /* Light Gray for borders */
    --shadow-color: rgba(44, 62, 80, 0.1); /* Subtle shadow */
    --danger-color: #dc3545;         /* Professional Red for alerts */
    --success-color: #28a745;        /* Professional Green for success */
    --warning-color: #ffc107;        /* Professional Orange for warnings */
    
    /* Professional Typography */
    --font-heading: 'Montserrat', sans-serif;  /* Professional headings */
    --font-body: 'Roboto', sans-serif;         /* Highly readable body text */                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
}

/* Global Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    background: var(--background-soft);
    color: var(--text-color);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(44, 62, 80, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-size: 400px 400px, 600px 600px;
    background-position: 0 0, 200px 200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 600;
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* Modern Professional Navigation */
.navbar {
    background: var(--background-white) !important;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(44, 62, 80, 0.05);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(44, 62, 80, 0.08);
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Professional CTA Button in Header */
.navbar-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f 100%);
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.navbar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.navbar-cta:hover::before {
    left: 100%;
}

.navbar-cta:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: var(--primary-color) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.navbar-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Active Navigation State */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(186, 29, 134, 0.1) 0%, rgba(255, 184, 76, 0.1) 100%);
    border-radius: 8px;
    margin: 0 0.25rem;
    position: relative;
}

.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(186, 29, 134, 0.05) 0%, rgba(255, 184, 76, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
}

.navbar-nav .nav-link.active::after {
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(186, 29, 134, 0.3);
}

.navbar-nav .nav-link.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(186, 29, 134, 0.2);
}

/* Lord Ganesha Symbol Styling */
.ganesha-symbol {
    font-size: 1.2em;
    display: inline-block;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 2px 4px rgba(255, 184, 76, 0.4));
    transition: all 0.3s ease;
}

.ganesha-symbol:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 184, 76, 0.6));
}

.ganesha-symbol-large {
    font-size: 1em;
    display: inline-block;
    color: var(--accent-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: ganesha-blessing 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 184, 76, 0.4));
}

@keyframes ganesha-blessing {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        opacity: 0.6; 
        transform: scale(1.05) rotate(1deg);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(0deg);
    }
    75% { 
        opacity: 0.6; 
        transform: scale(1.05) rotate(-1deg);
    }
}

/* Animated Om Symbol Styling */
.animated-om {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="70" font-family="serif" font-size="60" text-anchor="middle" fill="%23FFFFFF">ॐ</text></svg>') no-repeat center;
    background-size: contain;
    animation: omGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.animated-om-large {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="70" font-family="serif" font-size="60" text-anchor="middle" fill="%23FFFFFF">ॐ</text></svg>') no-repeat center;
    background-size: contain;
    animation: omGlow 2s ease-in-out infinite alternate, omRotate 8s linear infinite, omPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
    margin: 0;
    position: relative;
}

.animated-om-large::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: omAura 4s ease-in-out infinite alternate;
    z-index: -1;
}

.animated-om-large::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    animation: omAura 2s ease-in-out infinite alternate-reverse;
    z-index: -1;
}

.animated-om:hover {
    transform: scale(1.1);
    animation-duration: 1s;
}

.animated-om-large:hover {
    transform: scale(1.1);
    animation-duration: 1s;
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.6));
}

.animated-om-large:hover::before {
    animation-duration: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.animated-om-large:hover::after {
    animation-duration: 1s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

@keyframes omGlow {
    0% {
        filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    }
}

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

@keyframes omPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes omAura {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Modern Hero Section - Enhanced Astrological Background */
.hero-section {
    background: 
        radial-gradient(ellipse at center, rgba(26, 54, 93, 0.7) 0%, rgba(44, 62, 80, 0.8) 30%, rgba(26, 54, 93, 0.9) 70%, rgba(44, 62, 80, 0.95) 100%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 30%, rgba(212, 175, 55, 0.1) 70%, transparent 100%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%),
        url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
    padding: 60px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-radius: 0;
    animation: cosmic-pulse 20s ease-in-out infinite;
}

@keyframes cosmic-pulse {
    0%, 100% { 
        background-position: 0% 0%, 0% 0%, center;
        filter: brightness(1) contrast(1);
    }
    50% { 
        background-position: 100% 100%, 100% 100%, center;
        filter: brightness(1.1) contrast(1.1);
    }
}

/* Enhanced Animated Astrological Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    animation: astro-drift 30s ease-in-out infinite, cosmic-glow 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes cosmic-glow {
    0%, 100% { 
        opacity: 0.3;
        filter: blur(0px);
    }
    50% { 
        opacity: 0.7;
        filter: blur(1px);
    }
}

@keyframes astro-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) rotate(1deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-5px) translateY(10px) rotate(-1deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(15px) translateY(-10px) rotate(0.5deg);
        opacity: 0.7;
    }
}

/* Enhanced Floating Stars Animation */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(212, 175, 55, 0.9), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 250px 20px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(1px 1px at 300px 60px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 350px 40px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(1px 1px at 400px 70px, rgba(255, 255, 255, 0.9), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite, star-drift 15s linear infinite;
    z-index: 1;
}

@keyframes star-drift {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-200px) translateY(-100px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Additional Astrological Elements */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Floating Planets Animation */
.hero-section .floating-planet {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: planet-orbit 20s linear infinite;
    z-index: 2;
}

.hero-section .floating-planet:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-section .floating-planet:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.hero-section .floating-planet:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 35s;
}

@keyframes planet-orbit {
    0% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(20px) translateY(-10px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(10px) translateY(20px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(-15px) translateY(10px) rotate(270deg);
        opacity: 0.7;
    }
    100% { 
        transform: translateX(0px) translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Constellation Lines */
.hero-section .constellation-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: constellation-glow 8s ease-in-out infinite;
    z-index: 2;
}

.hero-section .constellation-line:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 100px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.hero-section .constellation-line:nth-child(2) {
    top: 70%;
    right: 25%;
    width: 80px;
    transform: rotate(-30deg);
    animation-delay: -3s;
}

.hero-section .constellation-line:nth-child(3) {
    top: 50%;
    left: 60%;
    width: 120px;
    transform: rotate(15deg);
    animation-delay: -6s;
}

@keyframes constellation-glow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* Advanced Astrological Elements */
.hero-section .cosmic-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: cosmic-rotation 25s linear infinite;
    z-index: 2;
}

.hero-section .cosmic-ring:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.hero-section .cosmic-ring:nth-child(2) {
    top: 60%;
    right: 5%;
    animation-delay: -15s;
    animation-duration: 35s;
    width: 150px;
    height: 150px;
}

@keyframes cosmic-rotation {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.6; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

/* Nebula Effect */
.hero-section .nebula {
    position: absolute;
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: nebula-drift 40s ease-in-out infinite;
    z-index: 1;
}

.hero-section .nebula:nth-child(1) {
    top: 20%;
    left: 70%;
    animation-delay: 0s;
}

.hero-section .nebula:nth-child(2) {
    top: 70%;
    left: 10%;
    animation-delay: -20s;
    width: 250px;
    height: 150px;
}

@keyframes nebula-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.2;
    }
    25% { 
        transform: translateX(30px) translateY(-20px) scale(1.1);
        opacity: 0.4;
    }
    50% { 
        transform: translateX(-20px) translateY(30px) scale(0.9);
        opacity: 0.3;
    }
    75% { 
        transform: translateX(40px) translateY(-10px) scale(1.05);
        opacity: 0.5;
    }
}

/* Shooting Stars */
.hero-section .shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    animation: shooting-star 3s linear infinite;
    z-index: 3;
}

.hero-section .shooting-star:nth-child(1) {
    top: 20%;
    left: 0%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.hero-section .shooting-star:nth-child(2) {
    top: 40%;
    left: 0%;
    animation-delay: 1.5s;
    animation-duration: 4s;
}

.hero-section .shooting-star:nth-child(3) {
    top: 60%;
    left: 0%;
    animation-delay: 3s;
    animation-duration: 3.5s;
}

@keyframes shooting-star {
    0% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        transform: translateX(100vw) translateY(50px);
        opacity: 1;
    }
    100% { 
        transform: translateX(100vw) translateY(50px);
        opacity: 0;
    }
}

/* Zodiac Symbols */
.hero-section .zodiac-symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(212, 175, 55, 0.8);
    animation: zodiac-float 20s ease-in-out infinite;
    z-index: 2;
}

.hero-section .zodiac-symbol:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.hero-section .zodiac-symbol:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: -5s;
}

.hero-section .zodiac-symbol:nth-child(3) {
    top: 75%;
    left: 20%;
    animation-delay: -10s;
}

.hero-section .zodiac-symbol:nth-child(4) {
    top: 85%;
    right: 15%;
    animation-delay: -15s;
}

@keyframes zodiac-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-10px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(0px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-5px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Additional Cosmic Effects */
.hero-section .cosmic-dust {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: dust-drift 25s linear infinite;
    z-index: 1;
}

.hero-section .cosmic-dust:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero-section .cosmic-dust:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: -5s;
}

.hero-section .cosmic-dust:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: -10s;
}

.hero-section .cosmic-dust:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: -15s;
}

@keyframes dust-drift {
    0% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0;
    }
    10% { 
        opacity: 0.6;
    }
    90% { 
        transform: translateX(100vw) translateY(-50px);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(100vw) translateY(-50px);
        opacity: 0;
    }
}

/* Enhanced Nebula with Multiple Layers */
.hero-section .nebula-enhanced {
    position: absolute;
    width: 400px;
    height: 300px;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: nebula-enhanced-drift 50s ease-in-out infinite;
    z-index: 1;
}

.hero-section .nebula-enhanced:nth-child(1) {
    top: 10%;
    left: 60%;
    animation-delay: 0s;
}

.hero-section .nebula-enhanced:nth-child(2) {
    top: 50%;
    left: 20%;
    animation-delay: -25s;
    width: 350px;
    height: 250px;
}

@keyframes nebula-enhanced-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1) rotate(0deg);
        opacity: 0.2;
    }
    25% { 
        transform: translateX(40px) translateY(-30px) scale(1.1) rotate(90deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateX(-30px) translateY(40px) scale(0.9) rotate(180deg);
        opacity: 0.3;
    }
    75% { 
        transform: translateX(50px) translateY(-20px) scale(1.05) rotate(270deg);
        opacity: 0.5;
    }
}

/* Animated Earth and Moon System */
.hero-section .earth {
    position: absolute;
    width: 120px;
    height: 120px;
    background: 
        radial-gradient(circle at 30% 30%, #4A90E2 0%, #2E5B8A 40%, #1A365D 70%, #0F2438 100%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 30%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(74, 144, 226, 0.4),
        inset -20px -20px 40px rgba(0, 0, 0, 0.3),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1);
    animation: earth-rotation 20s linear infinite, earth-orbit 60s ease-in-out infinite;
    z-index: 2;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.hero-section .moon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: 
        radial-gradient(circle at 30% 30%, #E8E8E8 0%, #C0C0C0 60%, #A0A0A0 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(232, 232, 232, 0.3),
        inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    animation: moon-orbit 8s linear infinite;
    z-index: 3;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

@keyframes earth-rotation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes earth-orbit {
    0%, 100% { 
        transform: translate(-50%, -50%) translateX(0px) translateY(0px);
    }
    25% { 
        transform: translate(-50%, -50%) translateX(20px) translateY(-15px);
    }
    50% { 
        transform: translate(-50%, -50%) translateX(0px) translateY(-30px);
    }
    75% { 
        transform: translate(-50%, -50%) translateX(-20px) translateY(-15px);
    }
}

@keyframes moon-orbit {
    0% { 
        transform: translate(-50%, -50%) translateX(80px) translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translate(-50%, -50%) translateX(0px) translateY(-80px) rotate(90deg);
    }
    50% { 
        transform: translate(-50%, -50%) translateX(-80px) translateY(0px) rotate(180deg);
    }
    75% { 
        transform: translate(-50%, -50%) translateX(0px) translateY(80px) rotate(270deg);
    }
    100% { 
        transform: translate(-50%, -50%) translateX(80px) translateY(0px) rotate(360deg);
    }
}

/* Distant Planets - Venus and Mars */
.hero-section .venus {
    position: absolute;
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle at 30% 30%, #FFD700 0%, #FFA500 40%, #FF8C00 70%, #FF4500 100%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 30%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset -10px -10px 20px rgba(0, 0, 0, 0.2);
    animation: venus-drift 45s ease-in-out infinite;
    z-index: 1;
    top: 20%;
    right: 15%;
    opacity: 0.7;
}

.hero-section .mars {
    position: absolute;
    width: 50px;
    height: 50px;
    background: 
        radial-gradient(circle at 30% 30%, #FF6B47 0%, #DC143C 40%, #8B0000 70%, #4B0000 100%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 25%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(255, 107, 71, 0.3),
        inset -8px -8px 15px rgba(0, 0, 0, 0.3);
    animation: mars-drift 55s ease-in-out infinite;
    z-index: 1;
    top: 70%;
    right: 25%;
    opacity: 0.6;
}

@keyframes venus-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(-30px) translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-20px) translateY(30px) scale(0.9);
        opacity: 0.6;
    }
    75% { 
        transform: translateX(40px) translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes mars-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(25px) translateY(-25px) scale(1.1);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-15px) translateY(20px) scale(0.9);
        opacity: 0.5;
    }
    75% { 
        transform: translateX(-35px) translateY(-15px) scale(1.05);
        opacity: 0.7;
    }
}

/* Enhanced Lighting and Shadows for Celestial Bodies */
.hero-section .earth::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    border-radius: 50%;
    animation: earth-glow 4s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-section .moon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
    border-radius: 50%;
    animation: moon-glow 3s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-section .venus::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: venus-glow 5s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-section .mars::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 71, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: mars-glow 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes earth-glow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes moon-glow {
    0% { 
        opacity: 0.2;
        transform: scale(1);
    }
    100% { 
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes venus-glow {
    0% { 
        opacity: 0.2;
        transform: scale(1);
    }
    100% { 
        opacity: 0.5;
        transform: scale(1.08);
    }
}

@keyframes mars-glow {
    0% { 
        opacity: 0.1;
        transform: scale(1);
    }
    100% { 
        opacity: 0.4;
        transform: scale(1.06);
    }
}

/* Products Section Hero - Enhanced Spiritual Design */
.products-hero {
    background: var(--primary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-top: 4px solid var(--accent-color);
    border-bottom: 4px solid var(--accent-color);
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
    background-size: 300px 300px, 400px 400px, 20px 20px;
    animation: spiritual-drift 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes spiritual-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(10px) translateY(-5px);
        opacity: 0.6;
    }
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero h1 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
}

.products-hero h1::before {
    content: '✦';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 2rem;
    opacity: 0.8;
}

.products-hero h1::after {
    content: '✦';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 2rem;
    opacity: 0.8;
}

.products-hero .lead {
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
    min-height: 400px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 184, 76, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(186, 29, 134, 0.1) 0%, transparent 50%);
    animation: celestial-drift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes celestial-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(10px) translateY(-5px);
        opacity: 0.5;
    }
    50% { 
        transform: translateX(-5px) translateY(10px);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(5px) translateY(-10px);
        opacity: 0.6;
    }
}

/* Hero Section Text Styling - Golden Theme */
.hero-section h1 {
    color: #FFD700;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    z-index: 10;
    position: relative;
    margin-bottom: 1.5rem;
    animation: golden-glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

@keyframes golden-glow {
    0% { 
        text-shadow: 0 4px 8px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    100% { 
        text-shadow: 0 4px 8px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.hero-section .lead {
    color: #FFF8DC;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 248, 220, 0.2);
    z-index: 10;
    position: relative;
    margin-bottom: 2rem;
    opacity: 0.95;
    filter: drop-shadow(0 0 5px rgba(255, 248, 220, 0.3));
}

/* Hero CTA Button - Refined Design */
.hero-section .btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.hero-section .btn:hover {
    background: var(--accent-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Floating Celestial Elements */
.celestial-orb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 215, 0, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: float-gentle 15s ease-in-out infinite;
    z-index: 2;
}

.celestial-orb:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.celestial-orb:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.celestial-orb:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.celestial-orb:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 9s;
    animation-duration: 20s;
}

@keyframes float-gentle {
    0% { 
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.2) rotate(90deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) translateX(-15px) scale(0.8) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-25px) translateX(10px) scale(1.1) rotate(270deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0px) translateX(0px) scale(1) rotate(360deg);
        opacity: 0.4;
    }
}

/* Twinkling Stars */
.twinkling-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s ease-in-out infinite;
    z-index: 2;
}

.twinkling-star:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.twinkling-star:nth-child(2) {
    top: 25%;
    right: 30%;
    animation-delay: 1s;
}

.twinkling-star:nth-child(3) {
    bottom: 40%;
    left: 10%;
    animation-delay: 2s;
}

.twinkling-star:nth-child(4) {
    top: 70%;
    right: 15%;
    animation-delay: 0.5s;
}

.twinkling-star:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 1.5s;
}

.twinkling-star:nth-child(6) {
    bottom: 20%;
    right: 25%;
    animation-delay: 2.5s;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5);
    }
}

/* Orbital Paths */
.orbital-path {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: orbital-rotation 30s linear infinite;
    z-index: 1;
}

.orbital-path-1 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 20%;
    border-style: dashed;
    animation-duration: 25s;
}

.orbital-path-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 25%;
    border-style: dotted;
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbital-path-3 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 15%;
    border-style: dashed;
    animation-duration: 40s;
}

@keyframes orbital-rotation {
    0% { 
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        opacity: 0.6;
    }
    100% { 
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

/* Clean Section Styling */
#services {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.about-section {
    /* Clean section without box styling */
    margin-bottom: 3rem;
    padding: 2rem 0;
}

/* Clean Section Headings */
.about-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-heading);
}

.about-section .lead {
    color: var(--text-color);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

#services h2 {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

/* Professional Service Cards */
.service-card {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.15);
    border-color: var(--accent-color);
}

.service-card .service-icon {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px var(--shadow-color));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.3));
}

.service-card h4,
.service-card h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.service-card .service-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-card .service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card .service-price .discount-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.service-card .service-inclusions {
    margin-top: 1rem;
    text-align: left;
}

.service-card .service-inclusions h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card .service-inclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card .service-inclusions ul li {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-card .service-inclusions ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Form Container Enhancement */
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-top: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

/* Professional CTA Button Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f 100%);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-primary:hover {
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

/* Hero CTA Button */
.btn-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f 100%);
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-hero:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Form Enhancements */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(186, 29, 134, 0.25);
}

/* Enhanced Service Type Cards */
.service-type-card {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFBF0 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(186, 29, 134, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 76, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-type-card:hover::before {
    opacity: 1;
}

.service-type-card:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF4E6 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(186, 29, 134, 0.2);
}

.service-type-card.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4B5 100%);
    box-shadow: 0 15px 35px rgba(255, 184, 76, 0.3);
    transform: translateY(-5px) scale(1.01);
}

.service-type-card.active::before {
    opacity: 1;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 76, 0.1) 0%, transparent 50%);
}

/* Enhanced Form Section Headings */
.form-section-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.form-section-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    animation: slideIn 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

/* Enhanced Form Controls */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(186, 29, 134, 0.25), 0 4px 15px rgba(186, 29, 134, 0.1);
    transform: translateY(-2px);
    background: var(--background-white);
}

.form-control:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

/* Enhanced Form Labels */
.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.form-control:focus + .form-label,
.form-control:focus ~ .form-label {
    color: var(--primary-color);
}

/* Enhanced Submit Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(186, 29, 134, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(186, 29, 134, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Enhanced Success Message */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    animation: slideInDown 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #20c997);
    animation: slideInLeft 0.8s ease-out;
}

.success-message .alert-heading {
    color: #155724;
    font-weight: 700;
    font-size: 1.2rem;
}

.success-message p {
    color: #155724;
    font-weight: 500;
}

.success-message .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #155724;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.success-message .btn-close:hover {
    opacity: 1;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        width: 0;
    }
    to {
        width: 4px;
    }
}

/* Custom jQuery Calendar Styling */
.ui-datepicker {
    background: var(--background-white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(186, 29, 134, 0.2);
    font-family: var(--font-body);
    padding: 15px;
    z-index: 1000 !important;
    animation: calendarSlideDown 0.3s ease-out;
}

@keyframes calendarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ui-datepicker-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.ui-datepicker-title {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ui-datepicker-prev {
    left: 10px;
}

.ui-datepicker-next {
    right: 10px;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
    background: none;
    border: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--text-light);
    transform: rotate(90deg);
}

.ui-datepicker-next .ui-icon {
    transform: rotate(-90deg);
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ui-datepicker-calendar th {
    background: var(--background-soft);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px;
    text-align: center;
    border: none;
    font-size: 0.9rem;
}

.ui-datepicker-calendar td {
    padding: 2px;
    text-align: center;
    border: none;
}

.ui-datepicker-calendar td a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-datepicker-calendar td a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.ui-datepicker-calendar td .ui-state-active {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(186, 29, 134, 0.3);
}

.ui-datepicker-calendar td .ui-state-highlight {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.ui-datepicker-calendar td .ui-state-disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.ui-datepicker-calendar td .ui-state-disabled:hover {
    background: transparent;
    transform: none;
}

/* Calendar input field styling */
.datepicker {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ba1d86" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    cursor: pointer;
}

.datepicker:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23FFB84C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

/* Professional Footer with Trust Elements */
.footer {
    background: linear-gradient(135deg, var(--background-soft) 0%, #f8f9fa 100%);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 -4px 20px var(--shadow-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer .text-center {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 2rem;
    color: var(--text-color);
}

.footer .social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.footer .social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Trust Elements - Payment Methods */
.footer .payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer .payment-method {
    display: inline-block;
    width: 50px;
    height: 30px;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    line-height: 26px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.footer .payment-method:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

/* Policy Links Styling */
.footer .policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .policy-links li {
    margin-bottom: 0.5rem;
}

.footer .policy-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
    background: none !important;
}

.footer .policy-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    transform: translateX(5px);
}

/* Disable selected/active states in footer */
.footer a:active,
.footer a:focus,
.footer a.active,
.footer a.selected,
.footer .policy-links a:active,
.footer .policy-links a:focus,
.footer .policy-links a.active,
.footer .policy-links a.selected {
    background: none !important;
    background-color: transparent !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
}

.footer .policy-links a:active:hover,
.footer .policy-links a:focus:hover,
.footer .policy-links a.active:hover,
.footer .policy-links a.selected:hover {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
    background: none !important;
    background-color: transparent !important;
}

/* Disabled Policy Links Styling */
.footer .disabled-link {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
    cursor: not-allowed;
    font-style: italic;
    display: inline-block;
    padding: 0.25rem 0;
}

/* Footer Trust Badge */
.footer .trust-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 4px 16px var(--shadow-color);
}

.footer .trust-badge h6 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer .trust-badge p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Info Styling */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 248, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(186, 29, 134, 0.1);
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(186, 29, 134, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 29, 134, 0.1);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .service-type-card {
        padding: 1rem;
    }
    
    .celestial-orb {
        display: none;
    }
    
    .twinkling-star {
        display: none;
    }
    
    .orbital-path {
        display: none;
    }
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a1a6f;
}

/* Image Placeholder Styling */
.hero-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image-placeholder {
    width: 100%;
    height: 300px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
}

.hero-image-placeholder::before {
    display: none;
}

.hero-image-placeholder:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.placeholder-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.placeholder-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
}

.placeholder-subtitle {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.about-image-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.about-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF4E6 100%);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(186, 29, 134, 0.15);
    transition: all 0.3s ease;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-image-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 29, 134, 0.25);
    border-color: var(--accent-color);
}

/* Professional Astrologer Profile Cards */
.astrologer-profile-card {
    background: var(--background-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.astrologer-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.astrologer-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 54, 93, 0.15);
}

.astrologer-photo-container {
    position: relative;
    max-width: 280px;
    margin: 0 auto 2rem;
}

/* Professional Astrologer Photos - Real Image Emphasis */
.astrologer-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--accent-color);
    box-shadow: 0 16px 40px var(--shadow-color);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    position: relative;
}

.astrologer-photo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    z-index: -1;
    opacity: 0.3;
}

.astrologer-photo:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-light);
}

/* Remove placeholder styling - emphasize real photos only */
.astrologer-photo-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--background-soft) 0%, #f7fafc 100%);
    border: 8px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px var(--shadow-color);
    transition: all 0.3s ease;
    margin: 0 auto;
    border-style: dashed;
    border-width: 3px;
}

.astrologer-photo-placeholder::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    z-index: -1;
    opacity: 0.2;
}

.astrologer-photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-light);
    border-style: solid;
}

.astrologer-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.photo-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.photo-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(186, 29, 134, 0.3));
    transition: all 0.3s ease;
}

.astrologer-photo-placeholder:hover .photo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(186, 29, 134, 0.4));
}

.photo-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-subtitle {
    color: var(--text-color);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Product and Prediction Image Placeholders */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF4E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 3rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.placeholder-image .ganesha-symbol {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(186, 29, 134, 0.3));
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(186, 29, 134, 0.2);
}

.placeholder-image:hover .ganesha-symbol {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(186, 29, 134, 0.4));
}

/* Responsive Image Handling */
@media (max-width: 768px) {
    .hero-image-placeholder {
        height: 250px;
    }
    
    .about-image-placeholder {
        height: 200px;
    }
    
    .placeholder-image {
        font-size: 2.5rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    .placeholder-subtitle {
        font-size: 0.8rem;
    }
    
    .astrologer-photo-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .photo-icon {
        font-size: 3rem;
    }
    
    .photo-text {
        font-size: 1rem;
    }
    
    .photo-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-image-placeholder {
        height: 200px;
    }
    
    .about-image-placeholder {
        height: 180px;
    }
    
    .placeholder-image {
        font-size: 2rem;
    }
    
    .astrologer-photo-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .photo-icon {
        font-size: 2.5rem;
    }
    
    .photo-text {
        font-size: 0.9rem;
    }
    
    .photo-subtitle {
        font-size: 0.7rem;
    }
}

/* Professional Astrologers Carousel */
#astrologersCarousel {
    background: var(--background-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 16px 48px var(--shadow-color);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

#astrologersCarousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(26, 54, 93, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.carousel-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.carousel-item {
    width: 100%;
}

.carousel-item .row {
    width: 100%;
    margin: 0;
}

.astrologer-info {
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.astrologer-info h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.astrologer-info h6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.astrologer-info p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.astrologer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.astrologer-info ul li {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.astrologer-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--accent-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid var(--text-light);
    box-shadow: 0 5px 15px rgba(186, 29, 134, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(186, 29, 134, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: brightness(0) invert(1);
}

/* Carousel Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Enhanced Product Cards - Premium Spiritual Design */
.product-card {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.15);
    border-color: var(--accent-color);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Dynamic Product Icons */
.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Product-specific Icons */
.product-icon.yantra i::before { content: '◊'; }
.product-icon.mala i::before { content: '●'; }
.product-icon.prediction i::before { content: '📅'; }
.product-icon.gemstone i::before { content: '💎'; }
.product-icon.puja i::before { content: '🕉️'; }
.product-icon.consultation i::before { content: '👁️'; }

/* Product Card Content */
.product-card .card-body {
    padding: 2rem;
    text-align: center;
}

.product-card .card-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card .card-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-price .current-price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.product-price .original-price {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.product-card .btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.product-card .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.carousel-item.active {
    animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    #astrologersCarousel {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .astrologer-info {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: -40px;
    }
}

@media (max-width: 576px) {
    #astrologersCarousel {
        padding: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .astrologer-info h4 {
        font-size: 1.2rem;
    }
    
    .astrologer-info h6 {
        font-size: 0.9rem;
    }
    
    .astrologer-info p {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           