/* Variables and Globals */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-purple: #7b68ee;
    --accent-blue: #1e3a8a;
    --accent-gold: #d4af37;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #9ca3af;
    --border-color: #333333;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

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

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, var(--accent-purple), var(--accent-blue));
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

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

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

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

@keyframes glow {
    0% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5)); }
    50% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8)); }
    100% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5)); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

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

.nav-links a:hover::before {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('hero-background.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--primary-bg) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
    animation: fadeInUp 1.2s ease;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.4s ease;
}

.spiritual-symbol {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.symbol-1 {
    top: 15%;
    left: 10%;
}

.symbol-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

.symbol-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

/* About Section */
.about-section {
    background-color: var(--secondary-bg);
}

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

.about-text {
    flex: 1;
}

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

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-quote {
    padding: 20px;
    background-color: rgba(123, 104, 238, 0.1);
    border-left: 3px solid var(--accent-purple);
    margin: 30px 0;
    position: relative;
}

.about-quote i {
    font-size: 24px;
    color: var(--accent-purple);
    margin-bottom: 10px;
    display: block;
}

.about-quote blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

.about-quote cite {
    display: block;
    text-align: right;
    color: var(--text-gray);
}

/* Gira Section */
.gira-section {
    background-color: var(--primary-bg);
    position: relative;
}

.section-pattern {
    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" width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="3" r="1" fill="%23333333"/></svg>'); */
    background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M5,5 L5,7 M4,6 L6,6" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M10,2 L10.8,4 L13,4 L11.5,5.5 L12,7.5 L10,6.3 L8,7.5 L8.5,5.5 L7,4 L9.2,4 z" fill="none" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M16,4 A1.2,1.2 0 0 1 16,6.5 A3,3 0 0 0 16,4" fill="none" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><polygon points="17,13.5 16,15 18,15" fill="none" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><circle cx="14" cy="12" r="1" fill="none" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M3,13 L5,14 L3,15 M5,14 L7,14" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M12,8 L13,7 M12,8 L13,9 M12,8 L11,8" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M17,17 L19,15 M17,15 L19,17" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/><path d="M9,17 A1,1 0 0 1 10,16 A0.8,0.8 0 0 0 8,16 A0.6,0.6 0 0 1 9.5,16" fill="none" stroke="%23CCCCCC" stroke-width="0.2" opacity="0.25"/></svg>');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.gira-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.gira-date {
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    color: var(--text-white);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    min-width: 100px;
}

.date-day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 16px;
    margin-top: 5px;
}

.gira-details {
    flex: 1;
}

.gira-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.gira-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.gira-details p {
    margin-bottom: 20px;
}

.gira-tips {
    background-color: rgba(123, 104, 238, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gira-tips h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.gira-tips ul {
    padding-left: 20px;
}

.gira-tips li {
    margin-bottom: 8px;
}

/* Services Section */
.services-section {
    background-color: var(--secondary-bg);
}

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

.service-card {
    background-color: var(--primary-bg);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-blue));
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    animation: glow 3s infinite;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-purple);
    font-weight: 500;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Courses Section */
.courses-section {
    background-color: var(--primary-bg);
}

.courses-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.course-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.course-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-blue));
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.course-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 80px;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.course-detail {
    display: flex;
    align-items: center;
}

.course-detail i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-bg);
    padding: 80px 0;
}

.testimonials-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonial-card {
    background-color: var(--primary-bg);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    transform: translateX(0);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: bold;
}

.testimonial-author {
    color: var(--accent-purple);
    font-weight: 600;
    text-align: right;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-gray);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.3);
}

/* Blog Section */
.blog-section {
    background-color: var(--primary-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--accent-purple);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    min-height: 54px;
}

.blog-card:hover h3 {
    color: var(--accent-gold);
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 80px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-purple);
    font-weight: 500;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-more {
    text-align: center;
}

/* Calendar Section */
.calendar-section {
    background-color: var(--secondary-bg);
}

.calendar-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.calendar-header {
    margin-bottom: 20px;
    width: 100%;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.current-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.calendar-prev,
.calendar-next {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.calendar-prev:hover,
.calendar-next:hover {
    color: var(--accent-gold);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 30px;
    width: 100%;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background-color: var(--primary-bg);
    border-radius: 4px;
}

.upcoming-events {
    width: 100%;
}

.upcoming-events h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    gap: 15px;
    background-color: var(--primary-bg);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
}

.event-date {
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    color: var(--text-white);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    min-width: 50px;
}

.date-day {
    font-size: 20px;
    font-weight: 700;
}

.date-month {
    font-size: 12px;
}

.event-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.event-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-bg);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-icon {
    background: linear-gradient(to bottom right, var(--accent-purple), var(--accent-blue));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.info-icon i {
    color: var(--text-white);
    font-size: 20px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-column p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-5px);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    color: var(--text-white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.btn-subscribe {
    padding: 10px 15px;
    background: linear-gradient(to right, var(--accent-purple), var(--accent-blue));
    color: var(--text-white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .gira-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .gira-date {
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .course-card {
        max-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin: 0 auto 20px;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-size: 24px;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--accent-gold);
}

/* Calendar Days */
.calendar-day {
    text-align: center;
    padding: 10px;
    background-color: var(--primary-bg);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background-color: rgba(123, 104, 238, 0.1);
}

.calendar-day.today {
    border: 2px solid var(--accent-purple);
    font-weight: bold;
}

.calendar-day.empty {
    background-color: transparent;
    cursor: default;
}

.calendar-day.has-event {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-weight: bold;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}

.event-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-bg);
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 12px;
    color: var(--text-white);
}

.event-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--secondary-bg) transparent transparent;
}

.calendar-day.has-event:hover .event-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Additional Animation Classes */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(123, 104, 238, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(123, 104, 238, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(123, 104, 238, 0.3);
    }
}

.service-icon i {
    animation: glow-pulse 3s infinite;
}

.service-card:hover .service-icon i {
    animation-duration: 1.5s;
}

/* Scroll Animations Delay */
.service-card:nth-child(2),
.course-card:nth-child(2),
.blog-card:nth-child(2),
.event-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3),
.course-card:nth-child(3),
.blog-card:nth-child(3),
.event-item:nth-child(3) {
    transition-delay: 0.4s;
}

.service-card:nth-child(4),
.event-item:nth-child(4) {
    transition-delay: 0.6s;
}

.service-card:nth-child(5) {
    transition-delay: 0.8s;
}

.service-card:nth-child(6) {
    transition-delay: 1s;
}

/* Hover effects */
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    animation: glow-pulse 2s infinite;
}

.info-icon {
    transition: transform 0.3s ease;
}