/* Global Styles */
:root {
    --primary-color: #7b3f9d;
    --secondary-color: #e6a919;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, #7b3f9d 0%, #3f4c9d 100%);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    position: relative;
}

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

section {
    padding: 80px 0;
}

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

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: var(--box-shadow);
}

.primary-btn:hover {
    background: #6a3486;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.awards-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 5px rgba(230, 169, 25, 0.3);
}

.awards-section .divider {
    height: 3px;
    width: 80px;
    background: var(--gradient-bg);
    margin: 0 auto;
    position: relative;
    animation: expandWidth 1.5s ease-out forwards;
}

.awards-section .divider:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(230, 169, 25, 0.3);
    }
    to {
        text-shadow: 0 0 15px rgba(230, 169, 25, 0.7), 0 0 20px rgba(123, 63, 157, 0.5);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.mystical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(123, 63, 157, 0.95), rgba(63, 76, 157, 0.95));
    backdrop-filter: blur(10px);
    z-index: -1;
}

.header-content {
    text-align: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--light-text);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    color: var(--light-text);
    font-size: 16px;
    opacity: 0.9;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
    opacity: 0.9;
}

nav ul li a i {
    font-size: 16px;
}

nav ul li a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

nav ul li a[href="#awards"] {
    position: relative;
    overflow: hidden;
}

nav ul li a[href="#awards"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

nav ul li a[href="#awards"]:hover::after {
    transform: translateX(0);
}

nav ul li a[href="#awards"] i {
    animation: awardIconPulse 2s infinite;
}

@keyframes awardIconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-bg);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

/* Floating Symbols Animation */
.floating-symbols .symbol {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    animation: float 6s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Mystical Elements */
.mystical-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(123, 63, 157, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Numerology Elements */
.numerology-element {
    position: absolute;
    font-size: 36px;
    color: rgba(230, 169, 25, 0.6);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Tarot Card Elements */
.tarot-card {
    position: absolute;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    animation: rotate 8s infinite linear;
}

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

/* Vastu Elements */
.vastu-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(230, 169, 25, 0.4);
    transform: rotate(45deg);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(230, 169, 25, 0.2); }
    to { box-shadow: 0 0 20px rgba(230, 169, 25, 0.6); }
}

/* Reiki Energy Elements */
.reiki-energy {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: energy 5s infinite ease-in-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animated Text */
.animated-text {
    background-image: linear-gradient(90deg, #fff, #e6a919, #fff);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    opacity: 0.2;
    animation: float 8s infinite ease-in-out;
}

.element.tarot {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.element.numerology {
    top: 70%;
    left: 15%;
    font-size: 4rem;
    animation-delay: 1s;
}

.element.vastu {
    top: 30%;
    right: 15%;
    font-size: 3.5rem;
    animation-delay: 2s;
}

.element.reiki {
    top: 60%;
    right: 10%;
    font-size: 3rem;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

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

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
}

/* Services Tabs Section */
.services-tabs-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 63, 157, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 80% 30%, rgba(230, 169, 25, 0.15) 0%, transparent 30%);
    z-index: 0;
}

.services-tabs-section .container {
    position: relative;
    z-index: 1;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(123, 63, 157, 0.2), rgba(230, 169, 25, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.tab-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tab-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.tab-btn.active {
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(123, 63, 157, 0.3);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.tab-btn.active::before {
    opacity: 1;
}

.tab-btn.active .tab-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.tab-btn:hover:not(.active) {
    background-color: rgba(123, 63, 157, 0.2);
    transform: translateY(-2px);
    border-color: rgba(230, 169, 25, 0.5);
}

.tab-btn:hover .tab-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tab-btn {
        min-width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .tabs-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

.tab-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tab-header h3 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tab-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:nth-child(4) {
    animation-delay: 0.8s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(123, 63, 157, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    animation: pulse 2s infinite;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: ripple 2s infinite;
    opacity: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--light-text);
    animation: rotate 8s linear infinite;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-title {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(230, 169, 25, 0.5);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    transition: var(--transition);
    max-width: 90%;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 1);
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 63, 157, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

/* Awards Section */
.awards-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    color: var(--light-text);
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 63, 157, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 80% 30%, rgba(230, 169, 25, 0.15) 0%, transparent 30%);
    z-index: 0;
}

.awards-section .container {
    position: relative;
    z-index: 1;
}

.section-subheader {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

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

/* Award Floating Elements */
.award-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.award-symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.award-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 169, 25, 0.2) 0%, rgba(230, 169, 25, 0) 70%);
    animation: pulse 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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

.award-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.award-card:nth-child(1) {
    animation-delay: 0.2s;
}

.award-card:nth-child(2) {
    animation-delay: 0.4s;
}

.award-card:nth-child(3) {
    animation-delay: 0.6s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(123, 63, 157, 0.15);
    border-color: var(--secondary-color);
}

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

.award-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    animation: pulse 2s infinite;
}

.award-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: ripple 2s infinite;
    opacity: 0;
}

.award-icon i {
    animation: rotate 8s linear infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 169, 25, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 169, 25, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 169, 25, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.award-card:hover .award-title {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(230, 169, 25, 0.5);
}

.award-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    transition: var(--transition);
    max-width: 90%;
}

.award-card:hover .award-description {
    color: rgba(255, 255, 255, 1);
}

/* Gallery Section */
.gallery {
    background-color: #fff;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-main {
    position: relative;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
}

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

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(123, 63, 157, 0.1);
    border-radius: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0.7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--secondary-color);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-bg);
    color: #fff;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 169, 25, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 169, 25, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 169, 25, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Academy Section */
.academy {
    background-color: #f9f5ff;
}

.academy-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.academy-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.course-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

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

.academy-cta {
    margin-top: 30px;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.info-text h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    background: #f9f5ff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 63, 157, 0.2);
}

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

/* Footer */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-text p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Mystical Elements Animation */
.mystical-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.mystical-element {
    position: absolute;
    opacity: 0.05;
    animation: floatElement 15s infinite ease-in-out;
}

.mystical-element.tarot-card {
    top: 15%;
    left: 10%;
    width: 60px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 5px;
    animation-delay: 0s;
}

.mystical-element.number {
    top: 70%;
    left: 15%;
    font-size: 5rem;
    content: '7';
    color: var(--secondary-color);
    animation-delay: 3s;
}

.mystical-element.vastu-symbol {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    transform: rotate(45deg);
    animation-delay: 6s;
}

.mystical-element.reiki-hand {
    bottom: 20%;
    right: 10%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation-delay: 9s;
}

.mystical-element.crystal {
    bottom: 30%;
    left: 30%;
    width: 40px;
    height: 80px;
    background: var(--accent-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 12s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    75% {
        transform: translateX(-20px) rotate(5deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
}