        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #000;
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            /* background: linear-gradient(135deg, #1B76BA, #2a5c4a); */
            background-color: #FFF;
            color: #1B76BA;
            padding: 10px 0;
            /* position: fixed; */
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        nav h1 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        nav ul li a {
            color: #1B76BA;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav ul li a:hover {
            color: #F1962B;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Hero Section */
         .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider {
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/hero2.webp') center/cover no-repeat, #333;
        }
        .slide-2 {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/hero1.webp') center/cover no-repeat, #444;
        }
        .slide-3 {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/hero3.webp') center/cover no-repeat, #555;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #1B76BA;
            color: #FFF;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: background 0.3s ease, transform 0.3s ease;
            margin: 0 10px;
        }

        .btn:hover {
            background: #F1962B;
            transform: scale(1.05);
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-nav span {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-nav span.active {
            background: #F1962B;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
                max-width: 90%;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .btn {
                padding: 8px 15px;
                font-size: 0.8rem;
                margin: 5px;
            }

            .slider-nav span {
                width: 10px;
                height: 10px;
            }
        }
        /* .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/1600x900/?community');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px;
            animation: fadeIn 1.5s ease-in-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #1B76BA;
            color: #FFF;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .btn:hover {
            background: #F1962B;
            transform: scale(1.05);
        }

        /* Section Styles */
        .section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            /* margin-top: 80px; */
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #1B76BA;
            position: relative;
        }

        h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: #F1962B;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* About Section */
        #about {
            background: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: slideUp 1s ease-in-out;
        }

        #about p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        #about h3 {
            font-size: 1.5rem;
            color: #1B76BA;
            margin-top: 1.5rem;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
             box-shadow: 0 4px 8px rgba(52, 211, 153, 0.5);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .service-card h3 {
            color: #1B76BA;
            margin-bottom: 1rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #555;
        }

        .service-card i {
            font-size: 2.5rem;
            color: #F1962B;
            margin-bottom: 1rem;
        }

        /* Portfolio Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }

        .portfolio-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .portfolio-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .portfolio-card-content {
            padding: 1.5rem;
        }

        .portfolio-card h3 {
            color: #1B76BA;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .portfolio-card p {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .portfolio-card ul {
            list-style: none;
            font-size: 0.9rem;
            color: #555;
        }

        .portfolio-card ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .portfolio-card ul li i {
            color: #F1962B;
            margin-right: 10px;
        }

        .portfolio-card .btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 8px 16px;
            font-size: 0.9rem;
        }



        /* Gallery Section */
#Gallery.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

#Gallery h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1B76BA;
    position: relative;
    font-weight: 700;
}

#Gallery h2::after {
    content: '';
    width: 100px;
    height: 5px;
    background: #f4d03f;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Featured Resort Videos Section */
#Featured-Resort-Videos.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

#Featured-Resort-Videos h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1B76BA;
    position: relative;
    font-weight: 700;
}

#Featured-Resort-Videos h2::after {
    content: '';
    width: 100px;
    height: 5px;
    background: #f4d03f;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-card iframe {
    width: 100%;
    height: 221.5px;
    border: none;
}

.video-card h3 {
    font-size: 1.4rem;
    color: #1B76BA;
    margin: 1rem;
}

.video-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 1rem 1.5rem;
}

        .testimonial-section {
            background-color: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
        }

        .testimonial-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #333;
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .testimonial-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: 0 15px;
            flex: 0 0 33.333%;
            text-align: left;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .testimonial-card.active {
            opacity: 1;
        }

        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .testimonial-card p {
            font-size: 1rem;
            color: #000;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .testimonial-card h4 {
            font-size: 1.2rem;
            color: #007bff;
            margin-bottom: 5px;
        }

        .testimonial-card span {
            font-size: 0.9rem;
            color: #777;
        }

        .nav-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .nav-buttons button {
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .nav-buttons button:hover {
            background: #0056b3;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 80%;
                margin: 0 10px;
            }

            .testimonial-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                flex: 0 0 90%;
            }
        }

/* Testimonials Section */
/* #testimonials.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

#testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1B76BA;
    position: relative;
    font-weight: 700;
}

#testimonials h2::after {
    content: '';
    width: 100px;
    height: 5px;
    background: #f4d03f;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial h4 {
    font-size: 1.3rem;
    color: #1B76BA;
    margin-bottom: 0.5rem;
}

.testimonial span {
    font-size: 1rem;
    color: #f4d03f;
} */

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #Gallery h2, #Featured-Resort-Videos h2, #testimonials h2 {
        font-size: 2.4rem;
    }

    .gallery-item img {
        height: 150px;
    }

    .video-card iframe {
        height: 180px;
    }

    .testimonial p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #Gallery h2, #Featured-Resort-Videos h2, #testimonials h2 {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 120px;
    }

    .video-card iframe {
        height: 150px;
    }

    .video-card h3 {
        font-size: 1.2rem;
    }

    .video-card p {
        font-size: 0.9rem;
    }
}

        /* Contact Section */
        .contact-info {
            display: flex;
            justify-content: center;
            gap: clamp(1rem, 3vw, 2rem);
            flex-wrap: wrap;
            text-align: center;
            margin-bottom: 2rem;
            margin-top: 2rem;
        }

        .contact-info div {
            background: #FFF;
            padding: clamp(1rem, 3vw, 1.5rem);
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 180px;
            box-shadow: 0 4px 8px rgba(52, 211, 153, 0.5);
        }

        .contact-info p {
            font-size: 1.1rem;
            margin: 0.5rem 0;
        }

        .contact-info i {
            color: #1B76BA;
            margin-right: 10px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(52, 211, 153, 0.5);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #1B76BA;
            outline: none;
        }

        .contact-form button {
            background: #1B76BA;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: #F1962B;
            color: #333;
        }

        /* Footer Styles */
        footer {
            /* background: linear-gradient(135deg, #1B76BA, #2a5c4a); */
            background-color: #1B76BA;
            color: white;
            text-align: center;
            padding: 3rem 1rem;
        }

        footer a {
            color: #FFF;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #d8c9b7;
        }

        footer i {
            margin-right: 5px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1B76BA;
                padding: 1rem 0;
            }

            nav ul.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 80px 15px;
            }

            h2 {
                font-size: 2rem;
            }

            .portfolio-card img {
                height: 180px;
            }
        }