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

:root {
    --primary-color: #e6cc00;
    --primary-dark: #b8a000;
    --primary-light: #f5e666;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    position: relative;
}

.custom-dropdown {
    position: relative;
    min-width: 150px;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-selected:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-dark);
}

.dropdown-arrow {
    position: absolute;
    right: 0.75rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 7px 14px 18px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-option:not(:last-child) {
    margin-bottom: 5px;
}

.dropdown-option:hover {
    background-color: var(--primary-light);
}

.dropdown-option .flag {
    font-size: 1.2rem;
}

/* Pages */
.page {
    display: none;
    padding-top: 80px;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.page.active {
    display: block;
}

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

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Homepage */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Home Tab Theme - Yellow Gradient */
#home.active .hero {
    max-width: 100%;
    margin: 0;
    background: linear-gradient(180deg, #e6cc00 0%, #e6cc0085 50%, #ffffff 100%);
    margin-bottom: 2rem;
    margin-top: -10px;
}

/* Navbar background for home tab */
.navbar.home-active {
    background-color: #e6cc00;
    box-shadow: none !important;
}

/* Header logo filter for home tab */
.navbar.home-active #header-logo {
    filter: brightness(0);
}

/* Navbar links styling for home tab */
.navbar.home-active .nav-link {
    color: var(--text-dark);
}

.navbar.home-active .nav-link.active {
    color: var(--text-dark);
}

.navbar.home-active .nav-link:hover {
    color: var(--text-dark);
}

.navbar.home-active .nav-link::after {
    background: #000000;
}

.navbar.home-active .nav-link:hover::after,
.navbar.home-active .nav-link.active::after {
    width: 100%;
    background: #000000;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-in-out 0.2s both;
}

.fade-in-image {
    animation: fadeIn 0.8s ease-in-out 0.4s both;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out 0.6s both;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 7px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00000073;
}

/* Features */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* About Page - Bhakti Marga Theme Color */
#about.active {
    --about-primary-color: #16254C;
}

#about.active .page-title,
#about.active .about-text h3,
#about.active .values h3 {
    color: var(--about-primary-color, #16254C);
}

#about.active .page-title::after {
    background: #16254C;
}

.nav-link[href="#about"].active {
    color: #16254C;
}

.nav-link[href="#about"].active::after {
    background: #16254C;
}

/* Satguru Page Theme Color */
#satguru.active {
    --satguru-primary-color: #B5924B;
}

#satguru.active .page-title,
#satguru.active .about-text h3 {
    color: var(--satguru-primary-color, #B5924B);
}

#satguru.active .page-title::after {
    background: #B5924B;
}

.nav-link[href="#satguru"].active {
    color: #B5924B;
}

.nav-link[href="#satguru"].active::after {
    background: #B5924B;
}

#satguru.active .carousel-btn {
    background: #B5924B;
    color: white;
}

#satguru.active .carousel-btn:hover {
    background: #9a7a3d;
}

#satguru.active .carousel-dot.active {
    background: #B5924B;
}

#satguru.active .carousel-dot:hover {
    background: #9a7a3d;
}

.about-text .satguru-meet-btn {
    margin-top: 1.5rem;
    display: inline-block;
}

#satguru.active .satguru-meet-btn {
    background: #B5924B;
    color: white;
}

#satguru.active .satguru-meet-btn:hover {
    background: #9a7a3d;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
    align-self: start;
    height: fit-content;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.7rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text .about-read-more {
    margin-top: 1.5rem;
    display: inline-block;
}

#about.active .about-read-more {
    background: #16254C;
    color: white;
}

#about.active .about-read-more:hover {
    background: #1a2f5f;
    color: white;
}

.values {
    margin-top: 4rem;
}

.values h3 {
    text-align: left;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    background: #16254C;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    color: white;
    transform: scale(1) !important;
    animation: none !important;
}

.value-item:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px var(--shadow);
}

.value-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: white;
}

/* Social Media Section */
.social-media-section {
    margin-top: 4rem;
    text-align: center;
}

.social-media-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

#about.active .social-media-section h3 {
    color: #16254C;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #16254C;
    border-radius: 25px;
    text-decoration: none;
    color: #16254C;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 37, 76, 0.3);
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.social-link.x-twitter:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.social-link.flickr:hover {
    background: #FF0084;
    border-color: #FF0084;
    color: white;
}

/* Bio Page */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.bio-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bio-title {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.bio-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.bio-text h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bio-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.bio-list li {
    margin-bottom: 0.5rem;
}

/* Practices Page */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 320px;
}

.practice-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.practice-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.practice-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    transition: transform 0.4s ease, padding 0.4s ease;
    transform: translateY(0);
    border-radius: 0 0 10px 10px;
    max-height: 250px;
    overflow-y: auto;
}

.practice-card:hover .practice-content {
    transform: translateY(calc(-45px));
    padding: 2rem;
    max-height: 250px;
    border-radius: 10px 10px 0 0;
}

.practice-content h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}

.practice-card:hover .practice-content h3 {
    margin-bottom: 1rem;
}

.practice-description {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.1s, max-height 0.4s ease 0.1s;
    margin: 0;
}

.practice-card:hover .practice-description {
    opacity: 1;
    max-height: 500px;
}

/* Contact Page */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.booking-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group label .required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 204, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Success Message Modal */
.success-message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.success-message-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #27ae60;
    color: white;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    animation: scaleIn 0.5s ease;
}

.success-title {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 600;
}

.success-form-data {
    text-align: left;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.success-form-data p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.success-form-data p:last-child {
    margin-bottom: 0;
}

.success-form-data strong {
    color: var(--text-dark);
    display: inline-block;
    min-width: 80px;
}

.success-close-btn {
    margin-top: 1rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

.booking-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    background: #e6cc00;
}

.booking-form .btn-primary:hover {
    background: #f0d933;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00000073;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    width: 75px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
    max-width: 100%;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-link {
    margin-top: 0.5rem;
}

.privacy-link {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 1;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
}

.privacy-content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }

    .dropdown-selected {
        padding: 0.4rem 2rem 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .dropdown-option {
        padding: 20px;
        font-size: 0.8rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-content,
    .bio-content,
    .booking-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
        top: auto;
    }

    .features,
    .practices-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

    .social-media-links {
        gap: 1rem;
    }

    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    -webkit-overflow-scrolling: touch;
}

/* Additional Transitions */
img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card,
.feature-card,
.practice-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Satguru Carousel */
.satguru-carousel-container {
    margin-top: 4rem;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 0 40px;
}

.carousel-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.carousel-slide img {
    height: 300px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-dark);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
}

