input{
	outline: none !important;
}
textarea{
	resize: none;
}
section{
	overflow: hidden;
}
option{
	background: var(--bg-card);
}
.container{
	max-width: 1230px;
}


/* CSS Variables - Sacred Colors of Hinduism */
:root {
    /* Primary Sacred Colors */
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #CC7A29;
    --indigo: #4B0082;
    --indigo-light: #6A329F;
    --indigo-dark: #2E0059;
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #CCAC00;
    --bs-secondary-color: #ffffff;
    
    /* Background Colors */
    --bg-dark: #0F0F1A;
    --bg-darker: #08080F;
    --bg-card: #1A1A2E;
    --bg-overlay: rgba(15, 15, 26, 0.95);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8C8;
    --text-muted: #6B6B7B;
    
    /* Accent Colors */
    --lotus-pink: #FF69B4;
    --spiritual-white: #F8F8FF;
    --mantra-blue: #00BFFF;
    
    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF9933 0%, #FF6600 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-indigo: linear-gradient(135deg, #4B0082 0%, #2E0059 100%);
    --gradient-divine: linear-gradient(135deg, #FF9933 0%, #FFD700 50%, #FF6600 100%);
    --gradient-dark: linear-gradient(180deg, #0F0F1A 0%, #1A1A2E 100%);
    
    /* Shadows */
    --shadow-saffron: 0 10px 40px rgba(255, 153, 51, 0.3);
    --shadow-gold: 0 10px 40px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mantra: 'Cinzel', serif;
    --bs-body-color: #ffffff;

}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--gradient-divine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-saffron);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--saffron-light);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

a {
    color: var(--saffron);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

/* Sacred Geometry Background Pattern */
.sacred-bg {
    position: relative;
}

.sacred-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 153, 51, 0.1);
    padding: 1rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-dark);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .om-symbol {
    font-size: 2rem;
    color: var(--saffron);
    animation: pulse 3s infinite;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-saffron);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--saffron) !important;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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: var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: var(--bg-dark);
    box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 153, 51, 0.4);
    color: var(--bg-dark);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--saffron);
}

.btn-outline:hover {
    background: var(--saffron);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,26,0.8) 0%, rgba(15,15,26,0.95) 100%);
    z-index: -1;
}

/* Mandala Animation */
.mandala-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
    z-index: -1;
}

.mandala {
    width: 100%;
    height: 100%;
    animation: rotate 60s linear infinite;
}

.mandala svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--saffron);
    stroke-width: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-mantra);
    font-size: 1.2rem;
    color: var(--saffron);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: var(--shadow-dark);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 30px;
}

.card-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, #1A1A2E 0%, #0F0F1A 100%);
    border: 1px solid rgba(255, 153, 51, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-saffron);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: var(--shadow-saffron);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--bg-dark);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--gradient-gold);
}

/* Event Cards */
.event-card {
    display: flex;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 153, 51, 0.1);
    transition: var(--transition-medium);
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: var(--shadow-dark);
}

.event-date {
    background: var(--gradient-saffron);
    color: var(--bg-dark);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-content {
    padding: 30px;
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Forms */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--saffron);
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.1);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

/* Custom Select */
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF9933' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.1);
}

/* Custom Checkbox */
.form-check-input {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: var(--transition-fast);
}

.form-check-input:checked {
    background: var(--saffron);
    border-color: var(--saffron);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-weight: bold;
    font-size: 14px;
}

.form-check-label {
    color: var(--text-secondary);
    margin-left: 10px;
    cursor: pointer;
}

/* Modal Styles */
.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 20px;
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 153, 51, 0.1);
    padding: 25px;
}

.modal-title {
    color: var(--gold);
    font-family: var(--font-heading);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(255, 153, 51, 0.1);
    padding: 20px 25px;
}

.btn-close {
    filter: invert(1);
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* Success Modal Specific */
.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--bg-dark);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 153, 51, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--saffron);
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--saffron);
    background: rgba(15, 15, 26, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 153, 51, 0.3);
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--saffron);
    color: var(--bg-dark);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--saffron);
    margin: 0 auto 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--saffron);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Counter Section */
.counter-section{
	overflow: hidden;
	padding: 40px 0;
}
.counter-box {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, #1A1A2E 0%, #0F0F1A 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 51, 0.1);
    transition: var(--transition-medium);
}

.counter-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 153, 51, 0.3);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-divine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-saffron);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    margin: 0 30px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--saffron);
    border-radius: 50%;
    top: 30px;
    right: -40px;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 0 0 3px var(--saffron);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -40px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 153, 51, 0.1);
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-widget h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--saffron);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--saffron);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 153, 51, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--saffron);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--saffron);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-saffron);
}

/* Lotus Animation Element */
.lotus-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    pointer-events: none;
}

.lotus-decoration svg {
    width: 100%;
    height: 100%;
    fill: var(--saffron);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-card);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(255, 153, 51, 0.1);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .mandala-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        gap: 10px;
        padding: 20px;
    }
    
    .event-date .day {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .mandala-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* AOS Animation Customization */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection Color */
::selection {
    background: rgba(255, 153, 51, 0.3);
    color: var(--text-primary);
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-om {
    font-size: 4rem;
    color: var(--saffron);
    animation: pulse 2s infinite;
}

/* Utility Classes */
.text-saffron { color: var(--saffron) !important; }
.text-gold { color: var(--gold) !important; }
.text-indigo { color: var(--indigo-light) !important; }
.bg-sacred { background: var(--gradient-dark); }
.border-saffron { border-color: var(--saffron) !important; }

/* Donation Progress Bar */
.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-saffron);
    transition: width 1s ease;
}

/* Accordion Customization */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    padding: 20px 25px;
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 153, 51, 0.1);
    color: var(--saffron);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-secondary);
}

/* Pricing Cards */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--saffron);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-saffron);
    color: var(--bg-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 153, 51, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 20px 0;
}

.pricing-amount span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--saffron);
    margin-right: 10px;
    font-weight: bold;
}

.pricing-features li.not-included {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 153, 51, 0.3);
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--saffron);
    margin-right: 5px;
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--saffron);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more {
    color: var(--saffron);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, rgba(15,15,26,0.9) 0%, rgba(15,15,26,0.98) 100%), url('https://images.unsplash.com/photo-1561361058-54f9f3b97a38?w=1920') center/cover;
    text-align: center;
}

.breadcrumb-title {
    color: var(--gold);
    margin-bottom: 20px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
    color: var(--saffron);
}

.breadcrumb-nav .current {
    color: var(--saffron);
}

/* Audio Player Customization */
.audio-player {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 51, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-saffron);
}

.audio-info h5 {
    color: var(--gold);
    margin-bottom: 5px;
}

.audio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.audio-wave {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.wave-bar {
    width: 4px;
    background: var(--saffron);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 40%; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 70%; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 50%; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Mantra Text Styling */
.mantra-text {
    font-family: var(--font-mantra);
    font-size: 1.5rem;
    color: var(--saffron);
    text-align: center;
    letter-spacing: 3px;
    line-height: 2;
    margin: 30px 0;
}

.mantra-translation {
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
}

/* Decorative Elements */
.divider-om {
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.divider-om::before,
.divider-om::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.divider-om::before { left: 0; }
.divider-om::after { right: 0; }

.divider-om span {
    font-size: 2rem;
    color: var(--saffron);
    display: inline-block;
    padding: 0 20px;
    animation: rotate 10s linear infinite;
}

/* Preloader for images */
.img-loading {
    background: linear-gradient(90deg, #1A1A2E 25%, #2A2A3E 50%, #1A1A2E 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
