/* Base Styles */
:root {
    --primary-color: #f8c8dc;
    --primary-dark: #e6a6c4;
    --secondary-color: #f9e2e2;
    --accent-color: #d4af37;
    --text-color: #4a4a4a;
    --light-text: #6e6e6e;
    --white: #ffffff;
    --light-bg: #fdf6f9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden; /* Prevent scrolling when menu is open */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block; /* Prevent layout shifts */
}

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

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    font-size: 13px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .symbol {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    color: var(--accent-color);
}

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

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 10px 0;
    transition: var(--transition);
}

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

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

.logo img {
    max-height: 72px;
    width: auto;
    border-radius: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 200px;
    background: linear-gradient(135deg, #fff6f9 0%, #ffeef5 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: right;
}

.hero-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.om-symbol {
    font-size: 120px;
    color: rgba(244, 194, 213, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: -220px;
    left: 0;
    width: 100%;
    line-height: 0;
}

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

.about-image {
    flex: 1;
    position: relative;
}

.about-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.spiritual-symbol {
    font-size: 80px;
    color: rgba(244, 194, 213, 0.3);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.certification-item {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    font-size: 13px;
}

.certification-item i {
    color: var(--accent-color);
}

/* Akashic Master Section */
.akashic-master {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.akashic-master::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background-image: url('/assets/akashic-bg.webp'); */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.akashic-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.akashic-content p {
    margin-bottom: 25px;
    font-size: 16px;
}

.akashic-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.akashic-card {
    flex: 0 0 220px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.akashic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.akashic-card i {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: var(--transition);
}

.akashic-card:hover i {
    transform: scale(1.1);
}

.akashic-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.akashic-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.akashic-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.akashic-card:hover::after {
    transform: scaleX(1);
}

.akashic-image {
    position: relative;
    margin: 30px auto;
    width: 200px;
    height: 200px;
}

.akashic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.akashic-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: rotate 20s linear infinite;
}

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

.akashic-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.akashic-symbol {
    position: absolute;
    font-size: 30px;
    color: rgba(244, 194, 213, 0.3);
    animation: float 6s ease-in-out infinite;
}

.akashic-symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.akashic-symbol:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.akashic-symbol:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.akashic-symbol:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: 3s;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 364px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
}

.service-card p {
    margin: 0 20px 20px;
    font-size: 14px;
    flex-grow: 1;
}

.service-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px); /* Ensure button doesn't get cropped */
}

/* Courses Section */
.course-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    display: none;
}

.courses-grid.active {
    display: grid;
}

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-image {
    height: 300px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 14px;
    margin-bottom: 20px;
}


.course-content .btn {
    width: 100%; /* Ensure button doesn't get cropped */
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    position: relative;
}

.products {
    background-color: var(--light-bg);
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    transition: transform 0.5s ease;
}

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

.testimonial-card {
    flex: 0 0 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 12px;
    margin-bottom: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav-btn:hover {
    background-color: var(--primary-color);
}

.testimonial-nav-btn i {
    color: var(--text-color);
    font-size: 16px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: var(--secondary-color);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.contact-item:hover i {
    background-color: var(--primary-color);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
    font-weight: 500; /* Make contact info bold */
}

.contact-form {
    flex: 1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(248, 200, 220, 0.2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Footer */
footer {
    background-color: #f9f3f6;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: auto;
    /*height: 90px;*/
    margin-bottom: 15px;
    border-radius: 0;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500; /* Make footer links bold */
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-dark);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Thank You and Error Pages */
.thank-you,
.error-section {
    padding: 180px 0 100px;
    text-align: center;
    background-color: var(--light-bg);
}

.thank-you-content,
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon,
.error-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-icon {
    color: #ff6b6b;
}

.thank-you-content h1,
.error-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-content p,
.error-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thank-you-buttons,
.error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Crystals Page Styles */
.crystals-hero {
    background: linear-gradient(135deg, #fff6f9 0%, #ffeef5 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.crystals-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.crystals-hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.tag-popular {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.tag-bestseller {
    background-color: var(--accent-color);
    color: var(--white);
}

.tag-new {
    background-color: #a8e6cf;
    color: var(--text-color);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.product-benefits {
    margin-bottom: 15px;
}

.benefit-tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 15px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .thank-you-buttons,
    .error-buttons {
        flex-direction: column;
    }
    
    .akashic-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .akashic-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav ul.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        padding: 12px 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .course-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .service-card .btn,
    .course-content .btn,
    .product-content .btn {
        width: calc(100% - 10px); /* Fix button width in mobile view */
        margin-left: 5px;
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid,
    .courses-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links h3:after,
    .footer-services h3:after,
    .footer-social h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .service-image {
        height: 350px; /* Slightly reduced height for mobile */
    }
    
    .akashic-image {
        width: 150px;
        height: 150px;
    }
}

/* Animation Effects - Optimized */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.hero-text,
.about-text,
.service-card,
.course-card,
.testimonial-card,
.contact-item,
.akashic-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
    will-change: opacity, transform;
}

.service-card:nth-child(2),
.course-card:nth-child(2),
.akashic-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3),
.course-card:nth-child(3),
.akashic-card:nth-child(3) {
    animation-delay: 0.2s;
}

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

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

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}