.navbar {
    background: #f3f4f5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35 !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #ff6b35 !important;
    }

.btn-check-availability {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-check-availability:hover {
        background: #e55a2b;
        color: white;
        transform: translateY(-2px);
    }

.hero-section {
    padding: 70px 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../static/img/bgimage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 90px;
    z-index: 2;
}

    .hero-section::before {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.233);
        z-index: -1;
    }

.check-availibility-section {
    background-color: #ffffff;
    padding: 20px 25px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.input-divider {
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.first-input,
.sectond-input {
    width: calc(50% - (10px + 15px));
}

    .first-input input,
    .sectond-input input {
        width: 100%;
        border-radius: 2px;
        border: 1px solid #9ca3af;
        padding: 10px 20px;
    }

.middle-text {
    width: 30px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 21px;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .hero-btn:hover {
        background: #e55a2b;
        color: white;
        transform: translateY(-2px);
    }

.feature-badges {
    display: flex;
    z-index: 2;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-top: 20px;
    width: 80%;
}

.feature-badge-hero {
    padding: 15px 10px;
    color: white;
    width: calc(33.33% - 5px);
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

    .feature-badge-hero h6 {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 13px;
    }

    .feature-badge-hero i {
        color: #fff;
    }

    .feature-badge-hero p {
        font-size: 0.7rem;
        opacity: 0.8;
        margin: 0;
    }

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.feature-badge-hero span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #8e9aa04d;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
	.map-container iframe{
		max-width:100%;
	}

    .check-availibility-section {
        padding: 17px 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-badges {
        flex-direction: column;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 50px;
        gap: 15px;
    }

    .feature-badge-hero {
        min-width: auto;
        padding: 15px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-check-availability {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===========================Section 2 3 Mixer========================= */
:root {
    --primary-color: #FF6B35;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --bg-light: #fff5f2;
}

.hero-section-section-2 {
    padding: 80px 0;
    text-align: center;
}

.hero-title-section-2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-description-section-2 {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.learn-more-link-section-2 {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .learn-more-link-section-2:hover {
        color: var(--primary-color);
        opacity: 0.8;
    }

.highlights-section {
    padding: 100px 0px;
    text-align: center;
    background: #f9fafb;
}

.section-title-section-2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle-section-2 {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.feature-card-section-2 {
    text-align: center;
    padding: 0 15px;
}

.feature-icon-section-2 {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

    .feature-icon-section-2 i {
        font-size: 2rem;
        color: var(--primary-color);
    }

    .feature-icon-section-2 svg {
        width: 1.8rem;
        fill: var(--primary-color);
    }

.feature-title-section-2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-description-section-2 {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.feature-card-section-2:hover .feature-icon-section-2 {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

@media (max-width: 768px) {
    .hero-title-section-2 {
        font-size: 2.2rem;
    }

    .section-title-section-2 {
        font-size: 2rem;
    }

    .hero-section-section-2 {
        padding: 60px 0;
    }

    .highlights-section {
        padding: 80px 0px;
    }

    .feature-card-section-2 {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title-section-2 {
        font-size: 1.8rem;
    }

    .section-title-section-2 {
        font-size: 1.7rem;
    }

    .hero-description-section-2,
    .section-subtitle-section-2 {
        font-size: 1rem;
    }
}

/* ===========================Section 2 3 Mixer End========================= */
/* ===========================Section 4 Mixer End========================= */
.gallery-container {
    padding: 3rem 0rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 400;
    margin: 0;
}

.main-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-image-section-3 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-section-3-container {
    display: block;
    /*justify-content: center;*/
    /*flex-wrap: nowrap;*/
    padding: 0 1rem;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
}

.thumbnail-section-3 {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .thumbnail-section-3:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .thumbnail-section-3.active {
        border-color: #3498db;
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .thumbnail-section-3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .thumbnail-section-3:hover img {
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .gallery-container {
        padding: 2rem 0rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
    }

    .main-image-section-3 {
        height: 300px;
    }

    .thumbnail-section-3-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 0.75rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .thumbnail-section-3-container::-webkit-scrollbar {
            display: none;
        }

    .thumbnail-section-3 {
        flex-shrink: 0;
        width: 100px;
        height: 66px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 1.5rem 0px;
    }

    .gallery-title {
        font-size: 1.75rem;
    }

    .main-image-section-3 {
        height: 250px;
    }

    .thumbnail-section-3 {
        width: 90px;
        height: 60px;
    }
}

/* ===========================Section 4 Mixer End========================= */
/* ===========================Section 5 and 6 Mixer End========================= */
.main-heading-section-4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin: 3rem 0 2rem 0;
    color: #000000;
}

.feature-section-section-4 {
    padding: 2rem 0 4rem 0;
}

.feature-card-section-4 {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-image-section-4 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-title-section-4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.feature-description-section-4 {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    padding: 0 1rem;
}

.location-section-section-4 {
    background-color: #fafafa;
    padding: 4rem 0;
    margin-top: 3rem;
}

.location-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.attractions-list {
    padding-left: 0;
    list-style: none;
}

.attraction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.attraction-icon {
    width: 8px;
    height: 8px;
    background-color: #ff6b35;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.attraction-content h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000000;
    font-size: 1rem;
}

.attraction-content p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    font-weight: 300;
}

.map-container {
    width: 100%;
    height: 300px;
    background-image: url('https://public.readdy.ai/gen_page/map_placeholder_1280x720.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.attractions-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000000;
}

@media (max-width: 768px) {
    .main-heading-section-4 {
        font-size: 2rem;
        margin: 2rem 0 3rem 0;
    }

    .feature-image-section-4 {
        height: 200px;
    }

    .location-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .attractions-heading {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .location-section-section-4 {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .main-heading-section-4 {
        font-size: 1.8rem;
    }

    .feature-description-section-4 {
        padding: 0;
    }

    .map-container {
        height: 250px;
        margin-top: 2rem;
    }
}

/* ===========================Section 5 and 6 Mixer End========================= */
/* ===========================Section 7 and 8 Mixer Start========================= */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.stars-rating-testimonial {
    text-align: center;
    margin-bottom: 40px;
}

    .stars-rating-testimonial i {
        color: #ffc107;
        font-size: 1.2rem;
        margin: 0 2px;
    }

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 0 40px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-occasion {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    position: absolute;
    background: none !important;
    border: none;
    font-size: 2rem;
    color: #6c757d;
    transition: color 0.3s ease;
    outline: none;
}

    .testimonial-carousel .owl-prev:hover,
    .testimonial-carousel .owl-next:hover {
        color: #000;
    }

.testimonial-carousel .owl-prev {
    left: -60px;
}

.testimonial-carousel .owl-next {
    right: -60px;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .testimonial-carousel .owl-dot.active {
        background-color: #6c757d;
    }

.instagram-section {
    padding: 80px 0;
    background-color: #fff;
}

.instagram-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.instagram-handle {
    font-size: 1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.instagram-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-image {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .instagram-image:hover {
        transform: scale(1.05);
    }

    .instagram-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.instagram-follow {
    text-align: center;
    margin-top: 40px;
}

    .instagram-follow a {
        color: #e4405f;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

        .instagram-follow a:hover {
            color: #d63384;
        }

.testimonial-carousel.owl-theme .owl-dots .owl-dot span {
    width: 0;
}

@media (max-width: 768px) {

    .testimonials-title,
    .instagram-title {
        font-size: 2rem;
    }

    .testimonials-section,
    .instagram-section {
        padding: 60px 0;
    }

    .testimonial-item {
        padding: 0 20px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-carousel .owl-prev {
        left: -8px;
    }

    .testimonial-carousel .owl-next {
        right: -8px;
    }

    .instagram-grid .col-6 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {

    .testimonials-title,
    .instagram-title {
        font-size: 1.75rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-carousel .owl-prev,
    .testimonial-carousel .owl-next {
        font-size: 1.5rem;
    }

    .testimonial-carousel .owl-prev {
        left: -10px;
    }

    .testimonial-carousel .owl-next {
        right: -10px;
    }
}

/* ===========================Section 7 and 8 Mixer End========================= */
/* ===========================Section last Mixer Start========================= */
:root {
    --primary-orange: #f97316;
    --dark-navy: #1f2937;
    --light-beige: #faf7f2;
    --text-gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.hero-section-footer {
    background-color: #ffedd6;
    padding: 60px 0 20px 0px;
    text-align: center;
}

.hero-title-footer {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle-footer {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-footer {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .cta-button-footer:hover {
        background-color: #ea580c;
        color: white;
        transform: translateY(-2px);
    }

.feature-card-footer {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon-footer {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title-footer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-section {
    background-color: var(--dark-navy);
    color: white;
    padding: 50px 0 30px;
}

.footer-brand {
    font-family: 'Pacifico', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: white;
        }

.contact-info {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: var(--primary-orange);
        color: white;
    }

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-text {
    color: #fff;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

    .footer-bottom-links a {
        color: #ededed;
        text-decoration: none;
        font-size: 0.875rem;
    }

        .footer-bottom-links a:hover {
            color: white;
        }

.footer-bottom-text a {
    color: #ff6b35;
    font-size: 0.875rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-title-footer {
        font-size: 2.25rem;
    }

    .hero-section-footer {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title-footer {
        font-size: 1.875rem;
    }

    .hero-subtitle-footer {
        font-size: 1rem;
    }

    .feature-card-footer {
        padding: 1.5rem 0.5rem;
    }
}

/* ===========================Section last Mixer End========================= */

/* =============================Value Section===================== */
.values-section {
    padding: 80px 0;
    background: #fff;
}

.section-title-value {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title-value h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 700;
    }

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
}

.value-icon {
    font-size: 3rem;
    color: #ea580c;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* =============================Value Section End===================== */
/* =============================FAQ Section Start===================== */
.accordion-button.collapsed {
    background: #ff6b35;
    color: #fff;
    font-weight: 500;
    border-radius: 5px 5px 0px 0px;
}

.accordion-item {
    border: none;
}

.accordion-button::after {
    background-image: url(static/img/down.svg);
    background-size: contain;
}

.accordion-body {
    border: 1px solid #7c7c7c;
    border-top: none;
    border-radius: 0px 0px 15px 15px;
}

.accordion-button:not(.collapsed) {
    background: #ff6b35;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px 5px 0px 0px;
}

    .accordion-button:not(.collapsed)::after {
        background-image: url(static/img/down.svg);
        background-size: contain;
    }

.sec-4-mid-heading {
    font-size: 38px;
    font-weight: 700;
}


/* =============================FAQ Section End===================== */


/* =============================Contact Section start===================== */

.Contact-section {
    position: relative;
    padding: 80px 0;
    color: #ffffff;
    /* background:linear-gradient(to right, #fc4a1a, #f7b733); */
}

.Contact-container {
    position: relative;
    z-index: 1;
    margin-top: 70px;
}

.form-detail .form-control,
.form-select {
    border: 1px solid rgb(26, 21, 14);
}

.Contact-form {
    background: #ffffff4d;
    color: #000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .Contact-form h3 {
        color: #000;
    }

.btn-send {
    background: rgb(196, 78, 0);
    color: #fff;
    font-weight: 600;
    padding: 10px 60px;
}

    .btn-send:hover {
        background: rgba(129, 52, 0, 0.993);
        color: #fff;
    }


/* =============================Contact Section End===================== */

/* ========================Table =================== */
.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1200px;
}

.table-header {
    background: linear-gradient(135deg, #eaaf66 0%, #e35e00 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

    .table-header h2 {
        margin: 0;
        font-weight: 600;
        font-size: 1.5rem;
    }

.custom-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .custom-table thead th {
        background-color: #f1f5f9;
        color: #334155;
        font-weight: 600;
        padding: 1rem;
        text-align: left;
        border-bottom: 2px solid #e2e8f0;
        position: relative;
    }

    .custom-table tbody tr {
        transition: all 0.2s ease;
    }

        .custom-table tbody tr:hover {
            background-color: #f8fafc;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

    .custom-table tbody td {
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
        vertical-align: middle;
    }

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background-color: #dcfce7;
    color: #166534;
}

.user-info-table {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


.user-details h6 {
    margin: 0;
    font-weight: 500;
    color: #1e293b;
}

.user-details p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.video-wrapper iframe {
    width: 100%;
    border-radius: 5px;
}

.card-new-dinning {
    padding: 30px 20px;
    box-shadow: rgb(0 0 0 / 12%) 0px 5px 10px;
    border-radius: 20px;
    border: 2px solid #ffd5c3;
}

.heading-card {
    font-size: 22px;
    font-weight: 600;
    text-align: start;
}

.listing-ul {
    list-style: none;
    margin-top: 15px;
}

    .listing-ul li {
        margin-bottom: 10px;
        position: relative;
    }

        .listing-ul li::before {
            position: absolute;
            top: 6px;
            left: -25px;
            content: '';
            width: 15px;
            height: 15px;
            background-image: url(../img/check.png);
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

.main-hheadind-dingin {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.icon-tea {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(175deg,rgba(229, 90, 43, 1) 0%, rgba(255, 107, 53, 1) 23%, rgba(189, 83, 13, 1) 100%);
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.icon-lankan {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(175deg,rgba(229, 90, 43, 1) 0%, rgba(255, 107, 53, 1) 23%, rgba(189, 83, 13, 1) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
    .icon-lankan svg {
        fill: #fff;
        width: 24px;
    }
    .icon-tea svg {
        fill: #fff;
        width: 45px;
    }
.heading-platter {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 600;
}
.section-all-item-common {
    padding: 60px 0px;
    background-color: #ffedd6;
}

@media (max-width: 768px) {
    .table-container {
        margin: 1rem;
        border-radius: 8px;
    }

    .table-header {
        padding: 1rem;
    }

        .table-header h2 {
            font-size: 1.25rem;
        }

    .custom-table {
        font-size: 0.875rem;
    }

    .custom-table thead th,
    .custom-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .user-info-table {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .custom-table thead {
        display: none;
    }

    .custom-table tbody tr {
        display: block;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
    }

    .custom-table tbody td {
        display: block;
        border: none;
        padding: 0.5rem 0;
        text-align: left;
    }

        .custom-table tbody td:before {
            content: attr(data-label) ": ";
            font-weight: 600;
            color: #334155;
            display: inline-block;
            width: 100px;
            display: none;
        }
}


.villa-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .villa-showcase::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://readdy.ai/api/search-image?query=luxury%20beachfront%20villa%20with%20pristine%20white%20sand%20beach%2C%20crystal%20clear%20turquoise%20ocean%20water%2C%20tropical%20palm%20trees%2C%20modern%20architecture%2C%20infinity%20pool%2C%20elegant%20outdoor%20terrace%2C%20golden%20sunset%20lighting%2C%20serene%20paradise%20setting%2C%20high-end%20resort%20style%2C%20cinematic%20photography%2C%20ultra-realistic%2C%208k%20quality&width=1920&height=1080&seq=villa001&orientation=landscape');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.15;
        z-index: 1;
    }

.content-wrapper-story {
    position: relative;
    z-index: 2;
}

.hero-heading-story {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description-story {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.feature-grid-story {
    margin-top: 20px;
}

.feature-card-story {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 35px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .feature-card-story::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #e55a2b 0%, #f87245 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .feature-card-story:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.98);
    }

        .feature-card-story:hover::before {
            transform: scaleX(1);
        }

.feature-icon-story {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e55a2b 0%, #f87245 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-title-story {
    font-size: 1.6rem;
    font-weight: 700;
    color: #5d381a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description-story {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.highlight-text-story {
    background: linear-gradient(120deg, #f87245 0%, #d64f22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-heading-story {
        font-size: 1.8rem;
    }

    .hero-description-story {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .villa-showcase {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-heading-story {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .hero-description-story {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .feature-card-story {
        padding: 35px 25px;
        margin-bottom: 25px;
    }

    .villa-showcase {
        padding: 60px 0;
    }

    .feature-icon-story {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .feature-card-story {
        padding: 30px 20px;
    }

    .feature-title-story {
        font-size: 1.4rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}