 :root {
            --primary-pink: #FF85A2;
            --accent-yellow: #FFF44F; 
            --secondary-mint: #A2F2E8;
            --accent-blue: #85D3FF;
            --chocolate: #6B4226;
            --text-dark: #6B4226;
            --text-light: #FFFFFF;
            --card-bg: #FFF9FB;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }

        
        body {
            font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
        }
        
        /* Header & Navigation */
         header {
             background-color: rgba(255, 255, 255, 0.95);
             padding: 1rem 15px;
             position: fixed;
             width: 100%;
             z-index: 1000;
             box-shadow: 0 2px 20px rgba(0,0,0,0.1);
             display: flex;
             justify-content: space-between;
             align-items: center;
             left: 0;
             right: 0;
            
        }
        
         .logo-image {
             height: 50px;
             width: auto;
             animation: logoFloat 3s ease-in-out infinite;
             filter: drop-shadow(0 4px 8px rgba(255, 133, 162, 0.3));
             transition: transform 0.3s ease;
        }
        
       .logo-image:hover {
           animation: logoSpin 1s ease;
                }
                
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(2deg); 
    }
    75% { 
        transform: translateY(3px) rotate(-2deg); 
    }
}
@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}
        .logo {
          display: flex;
    align-items: center;
    gap: 10px;
        }
        
        .logo-icon {
            font-size: 2rem;
            color: var(--primary-pink);
        }
        
        .logo-text {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-pink), #ff6b95);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .logo-tagline {
            font-size: 0.8rem;
            color: var(--chocolate);
            margin-top: -5px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary-pink);
            background: transparent;
            
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-pink);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .cta-button {
           padding: 0.8rem 1.5rem;
           background: linear-gradient(45deg, var(--primary-pink));
           color: white;
          border: none;
          border-radius: 30px;
          font-weight: 600;
          cursor: pointer;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          font-size: 0.9rem;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 133, 162, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--primary-pink);
            cursor: pointer;
            padding: 0.5rem;
        }
        
        /* Hero..Section */
        .hero {
            padding: 7rem 15px 3rem;
            background: linear-gradient(135deg, rgba(255, 133, 162, 0.1), rgba(162, 242, 232, 0.1));
            display: block;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: auto;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-highlight {
            color: var(--primary-pink);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .hero-features {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .feature-icon {
            color: var(--primary-pink);
            font-size: 1.2rem;
        }
        
        .hero-image {
            position: relative;
        }
        
        .cart-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
            height: auto;
        }
         .real-cart-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* This ensures the image covers the area nicely */
            object-position: center; /* Centers the image */
            transition: transform 0.5s ease;
        }
                .cart-image:hover .real-cart-image {
            transform: scale(1.05);
        }
        
        /* Optional: Add overlay for text on image */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
            border-radius: 20px;
            pointer-events: none; /* Allows clicking through */
        }

        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* Packages.Section */
        .packages {
            padding: 6rem 5%;
            background-color: var(--card-bg);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--chocolate);
        }
        
        .section-title span {
            color: var(--primary-pink);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .package-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-pink);
        }
        
        .package-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 0;
            right: 0;
            background: var(--accent-yellow);
            color: var(--chocolate);
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 0 20px 0 20px;
        }
        
        .package-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-pink);
        }
        
        .package-name {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--chocolate);
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-pink);
            margin-bottom: 1.5rem;
        }
        
        .package-price span {
            font-size: 1rem;
            color: #666;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .package-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .package-features i {
            color: var(--primary-pink);
        }
        
        /* Menu Show */
        .menu {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(133, 211, 255, 0.1), rgba(255, 244, 79, 0.1));
        }
        
        .menu-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: white;
            border: 2px solid var(--primary-pink);
            border-radius: 30px;
            color: var(--primary-pink);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-pink);
            color: white;
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .menu-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
        }
        
        .item-image {
            height: 200px;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            color: var(--primary-pink);
        }
        
        .item-info {
            padding: 1.5rem;
        }
        
        .item-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--chocolate);
        }
        
        .item-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            min-height: 60px;
        }
        
        .item-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .tag {
            padding: 0.2rem 0.8rem;
            background: var(--secondary-mint);
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--text-dark);
        }
        
        /* Booking Section */
        .booking {
            padding: 6rem 5%;
            background-color: var(--chocolate);
            color: white;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .form-group {
            text-align: left;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary-mint);
        }
        
        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
       /* Gallery Links */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.slide-link:hover {
    transform: scale(1.02);
}

.slide-link:hover .image-overlay {
    background: rgba(236, 126, 126, 0.8);
}

.view-full {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-style: italic;
}

.view-full i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 1rem;
}

.thumbnail {
    display: block;
    width: 120px;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 8px 20px rgba(49, 198, 224, 0.15);
}

.thumbnail.active {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
}

.thumb-image {
    width: 100%;
    height: 80px;
    border-radius: 5px;
}

.thumb-caption {
    display: block;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
}

/* Updated Carousel Indicators to work with links */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20; /* Higher z-index to be above links */
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 21; /* Ensure indicators are clickable */
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Make sure carousel buttons are above links */
.carousel-btn {
    z-index: 20;
}
        
        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 4rem 5% 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-pink);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-pink);
        }
        .newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0.8rem 1.5rem;
}

.newsletter-form button {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-pink);
}
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-pink);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design =mix js*/
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-features {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
            
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 8rem 5% 3rem;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .menu-filter {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                max-width: 200px;
            }
        }
        
        /* Animation for sprinkles */
        .sprinkle {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.6;
        }

       /* Additional styles specific to the About page */
        .about-hero {
            padding: 12rem 5% 5rem;
            background: linear-gradient(135deg, rgba(255, 133, 162, 0.1) 0%, rgba(162, 242, 232, 0.1) 100%);
            text-align: center;
            margin-top: 80px;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            color: var(--chocolate);
            margin-bottom: 1rem;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-dark);
            line-height: 1.8;
        }
        
        .story-section {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .story-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .story-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .story-image:hover img {
            transform: scale(1.05);
        }
        
        .story-text {
            flex: 1;
        }
        
        .story-text h2 {
            font-size: 2.5rem;
            color: var(--chocolate);
            margin-bottom: 1.5rem;
        }
        
        .story-text h2 span {
            color: var(--primary-pink);
        }
        
        .story-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .values-section {
            padding: 5rem 5%;
            background-color: var(--card-bg);
        }
        
        .values-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--chocolate);
        }
        
        .values-title span {
            color: var(--primary-pink);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .value-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 3px solid transparent;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .value-card:nth-child(1) {
            border-color: var(--primary-pink);
        }
        
        .value-card:nth-child(2) {
            border-color: var(--accent-blue);
        }
        
        .value-card:nth-child(3) {
            border-color: var(--accent-yellow);
        }
        
        .value-card:nth-child(4) {
            border-color: var(--secondary-mint);
        }
        
        .value-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-pink);
        }
        
        .value-card:nth-child(2) .value-icon {
            color: var(--accent-blue);
        }
        
        .value-card:nth-child(3) .value-icon {
            color: var(--accent-yellow);
        }
        
        .value-card:nth-child(4) .value-icon {
            color: var(--secondary-mint);
        }
        
        .value-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--chocolate);
        }
        
        .team-section {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .team-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--chocolate);
        }
        
        .team-title span {
            color: var(--primary-pink);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            text-align: center;
        }
        
        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 5px solid var(--primary-pink);
            box-shadow: 0 10px 20px rgba(255, 133, 162, 0.2);
        }
        
        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .member-name {
            font-size: 1.5rem;
            color: var(--chocolate);
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            color: var(--primary-pink);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .member-desc {
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 133, 162, 0.1) 0%, rgba(133, 211, 255, 0.1) 100%);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--chocolate);
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: var(--text-dark);
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 10rem 5% 3rem;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .story-content {
                flex-direction: column;
                gap: 2rem;
            }
            
            .story-text h2 {
                font-size: 2rem;
            }
            
            .values-title, .team-title, .cta-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .story-text h2 {
                font-size: 1.8rem;
            }
        }
        
        /* Gallery Carousel CSS - ADDED */
        .gallery-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .carousel-track-container {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 2rem;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .carousel-slide.active .image-overlay {
            transform: translateY(0);
        }

        .image-overlay h4 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .image-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Carousel Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: var(--primary-pink);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .carousel-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design for Carousel */
        @media (max-width: 1024px) {
            .carousel-track-container {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .carousel-track-container {
                height: 400px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .image-overlay {
                padding: 1.5rem;
            }
            
            .image-overlay h4 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .carousel-track-container {
                height: 350px;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
            
            .image-overlay {
                padding: 1rem;
            }
            
            .image-overlay h4 {
                font-size: 1.3rem;
            }
            
            .image-overlay p {
                font-size: 1rem;
            }
        }
        
        