:root {
    --primary: #f472b6;
    --secondary: #a78bfa;
    --accent: #fbcfe8;
    --dark: #1e1b4b;
    --light: #faf5ff;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.btn-srs {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    transition: all 0.35s ease-in-out;
    color: #efefef;
}

.btn-srs:hover {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

/* Page Container */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Navbar */
.navbar {
    /* background: rgba(255, 255, 255, 0.8) !important; */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6)); */
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero.hero-img {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../img/hero1.jpg") center / cover no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        var(--hero-bg, url("../img/hero1.jpg")) center / cover no-repeat;
    z-index: 1;
    animation: zoomBg 14s linear infinite;
}

.hero-img>* {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 520px;
    opacity: 0.95;
}

.btn-primary-custom {
    background: #ffffff;
    color: var(--primary);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


@media (min-width: 1191px) {
    .navbar.scrolled {
        background: #ffffff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
}

@media (min-width: 992px) {
    .hero-video {
        display: block;
    }
}

@media (max-width: 1192px) {
    .hero {
        min-height: 80vh;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.8) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6));
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 75vh;
    }
}


@media (max-width: 768px) {
    .navbar-brand {
        font-weight: 700;
        font-size: 1.4rem;
    }

    .hero-video {
        display: none;
    }

    .hero {
        min-height: 70vh;
        background:
            linear-gradient(rgba(0, 0, 0, 0.5),
                rgba(0, 0, 0, 0.5)),
            url("../img/hero1.jpg") center / cover no-repeat;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
}


@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
    }
}

/* Stats Section */
.stats {
    background: var(--dark);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light);
}

.feature-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-img {
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    /* box-shadow: 0 20px 60px rgba(217, 70, 239, 0.3); */
}

.about-content p {
    text-align: justify;
}

.mission-card {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;

    i {
        color: var(--primary);
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light);
}

.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 20px;
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
}

.room-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.room-body {
    padding: 30px;
}

.room-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Amenities */
.amenities {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.amenity-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.amenity-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.amenity-item:hover i {
    transform: scale(1.2);
    opacity: 0.9;
}

/* Gallery Page */
.gallery-page {
    padding: 120px 0 100px;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gallery-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.gallery-modal img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
}

.modal-close {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 8px;
}

.gallery-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.gallery-loader.active {
    opacity: 1;
    visibility: visible;
}

#modalImage {
    display: none;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--secondary);
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slide 10s linear infinite;
}

.testimonial-card {
    min-width: 350px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    text-align: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
    }
}

.images-slider {
    background: var(--light) !important;
}


.contact-page {
    padding: 120px 0 100px;
    background: var(--light);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.form-control {
    border-radius: 10px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(217, 70, 239, 0.25);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px;
    border-radius: 20px;
    color: white;
    height: 100%;
}

.contact-info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
}

.map-container {
    height: 400px;
    background: #e5e7eb;
    border-radius: 20px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9ca3af;
}

.contact-now-section {
    background: linear-gradient(135deg, var(--dark), var(--secondary), var(--secondary), var(--dark));
    padding: 50px 20px;
    color: #fff;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-number {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-number:hover {
    background: #fff;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.6rem;
    }

    .contact-number {
        font-size: 1.8rem;
        margin-top: 15px;
    }
}


/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* image slider section */

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
}

.marquee-inner .ratio {
    flex-shrink: 0;
    margin-right: 20px;
    width: clamp(240px, 20vw, 400px);
    object-fit: cover;
    overflow: hidden;
}

.marquee-inner .ratio img {
    object-fit: cover;
    transition: all 0.5s;
}

.marquee-inner .ratio:hover img {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
    -webkit-filter: brightness(50%);
    filter: brightness(50%);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-img {
        height: 400px;
        font-size: 4rem;
        margin-bottom: 30px;
    }
}

/* page heading */

.page-header {
    background: linear-gradient(180deg, var(--accent), var(--secondary));
    color: #fff;
    padding: 8rem 2rem 4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-header h1 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0.4rem;
}

.breadcrumb i {
    font-size: 12px;
    margin-right: 10px !important;
}

.breadcrumb-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 576px) {

    .page-header h1 {
        font-size: 1.4rem;
    }
}

/* footer fixed icons - whatsapp and call */

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
}

.floating-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn {
    background-color: var(--secondary);
}

.whatsapp-btn {
    background-color: #25D366;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}