/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --deep-blue: #0A2463;
    --dark-blue: #1A237E;
    --purple-mystic: #4A235A;
    --light-bg: #F8F5F0;
    --dark-bg: #0F0F1E;
    --text-light: #F5F5F5;
    --text-dark: #333333;
    --accent-emerald: #2E8B57;
    --accent-ruby: #9B111E;
    --accent-sapphire: #0F52BA;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 35, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 82, 186, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo1 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    padding: 3px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px var(--primary-gold);
    }
    100% {
        box-shadow: 0 0 20px var(--primary-gold);
    }
}

.brand-info h1 {
    font-size: 1.4rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.8rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav li a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav li a:hover {
    color: var(--primary-gold);
}

.nav li a:hover::after {
    width: 100%;
}

/* Mobile Menu Buttons */
.hamburger, .open-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 5px 0;
    transition: var(--transition);
}

/* Menu Card */
.menu-card {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a237e;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1002;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 300px;
    height: auto;
    min-height: unset;
}

.menu-card.active {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-card-header h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.menu-card-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.menu-card-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.menu-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ===== HOME HERO SECTION ===== */
.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: 
        linear-gradient(rgba(15, 15, 30, 0.9), rgba(26, 35, 126, 0.8)),
        url('../images/icons/cosmic-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.home-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(74, 35, 90, 0.1) 0%, transparent 50%);
    animation: cosmicFloat 20s infinite linear;
}

@keyframes cosmicFloat {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.Center-heading {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.Center-heading h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-info-col {
    color: var(--primary-gold);
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200px; }
    100% { background-position: 200px; }
}

.Center-heading h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    opacity: 0.9;
}

.Center-heading h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-action {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
}

.start-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn1 .start-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn2 .start-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}


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

.start-btn:hover {
    transform: translateY(5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* ===== RUDRAKSHA SLIDER ===== */
.rudraksha-slider {
    padding: 80px 20px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.rudraksha-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/icons/mandala-pattern.png') center/contain;
    opacity: 0.05;
    pointer-events: none;
}

.slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.rudraksha-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

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

.rudraksha-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-emerald), var(--accent-sapphire));
}

.rudraksha-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rudraksha-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.rudraksha-card:hover img {
    transform: scale(1.1);
}

.rudraksha-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.rudraksha-card span {
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rudraksha-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.slide-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-50%) scale(1.1);
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

/* ===== MUKHI SPECIAL SECTION ===== */
.mukhi-special {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-blue), var(--purple-mystic));
    position: relative;
    overflow: hidden;
}

.mukhi-special::before {
    content: '✨';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 100px) rotate(90deg); }
    50% { transform: translate(200px, 0) rotate(180deg); }
    75% { transform: translate(100px, -100px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.mukhi-special h1 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.mukhi-special h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gold);
}

.mukhi-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.mukhi-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mukhi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.7s ease;
}

.mukhi-card:hover::before {
    left: 100%;
}

.mukhi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-gold);
}

.mukhi-card h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.special-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    margin: 20px auto;
    padding: 5px;
    transition: transform 0.5s ease;
}

.mukhi-card:hover .special-img {
    transform: scale(1.1) rotate(5deg);
}

.mukhi-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== CONSULTATION SECTION ===== */
.consultation-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-heading {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.consultation-subheading {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.consultation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-gold);
}

.consultation-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    transition: height 0.4s ease;
    z-index: 1;
}

.consultation-card:hover::after {
    height: 5px;
}

.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.consultation-card h2 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

/* ===== EXCELLENCE SECTION ===== */
.excellence-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

.section {
    max-width: 1200px;
    margin: 0 auto;
}

.section h1 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.underline {
    width: 100px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 50px;
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 9px;
    background: var(--secondary-gold);
}

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

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 20px;
    background: var(--light-bg);
    position: relative;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-container h1 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 5px solid var(--primary-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

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

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

.testimonial-image h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-blue), var(--purple-mystic));
    border-radius: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('../images/icons/cosmic-pattern.png') center/contain;
    opacity: 0.05;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    border: 3px solid var(--primary-gold);
    position: relative;
    z-index: 1;
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content h3:nth-child(2) {
    color: var(--primary-gold);
    font-size: 2.2rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-content a {
    color: var(--secondary-gold);
    font-weight: 600;
    position: relative;
}

.about-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.about-content a:hover::after {
    width: 100%;
}

/* ===== CONTACT SECTION ===== */
.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-bg), var(--deep-blue));
    position: relative;
    overflow: hidden;
    
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-left {
    color: var(--text-light);
}

.badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-left h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.contact-box:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.contact-box h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-right {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-right h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-right form {
    display: grid;
    gap: 20px;
}

.contact-right input,
.contact-right select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-right input:focus,
.contact-right select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-right input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-right button {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-bg);
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-right button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0A0A14;
    color: var(--text-light);
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-emerald), var(--accent-sapphire));
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-column h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to sections */
.home-container,
.rudraksha-slider,
.mukhi-special,
.consultation-section,
.excellence-section,
.testimonial-section,
.about-section,
.contact-hero {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .Center-heading h2 {
        font-size: 2.8rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mukhi-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger, .open-menu-btn {
        display: block;
    }
    
    .Center-heading h2 {
        font-size: 2.2rem;
    }
    
    .Center-heading h3 {
        font-size: 1.2rem;
    }
    
    .btn-action {
        flex-direction: column;
        gap: 20px;
    }
    
    .start-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .consultation-cards {
        grid-template-columns: 1fr;
    }
    
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .nav-bar {
        padding: 15px 20px;
    }
    
    .brand-info h1 {
        font-size: 1.1rem;
    }
    
    .Center-heading h2 {
        font-size: 1.8rem;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .mukhi-card,
    .rudraksha-card,
    .consultation-card,
    .card {
        padding: 20px 15px;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .contact-right {
        padding: 25px;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
}

/* ===== LOADING ANIMATION ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-top: 5px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== ASTROLOGICAL ELEMENTS DECORATION ===== */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    pointer-events: none;
}

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

/* Generate random stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 200px 200px;
    z-index: -2;
    animation: starMove 100s linear infinite;
}

@keyframes starMove {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}