* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

html,
body {
    margin: 0;
    padding: 0;
    height: auto;
    scroll-behavior: smooth !important;
    width: 100%;
    background-color: #1e1818 !important;
    color: white !important;
}

.site-btn {
    position: absolute;
    right: 4%;
    top: 5%;
    padding: 10px 20px;
    background: linear-gradient(45deg, #eaa51d, #ffb347);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    z-index: 999;
    font-size: 14px;
}

/* BLINK ANIMATION */
.blink-btn {
    animation: blinkAnim 1s infinite ease-in-out;
}

@keyframes blinkAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.site-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ec9d0c, #e29518);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.main-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 150px;
    z-index: 1000;
}

/* Navbar default */
.custom-navbar {
    transition: 0.3s;
    background: transparent;
}

/* Scroll ke baad */
.custom-navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link {
    color: #fff !important;
}

.custom-navbar.scrolled .nav-link {
    color: #000 !important;
}

#pano {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

/* 🔥 HOTSPOT */
.custom-hotspot {
    position: relative;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.dot-outer {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    animation: pulse 1.2s infinite;
}

.dot-inner {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border: 3px solid #eaa51d;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.line {
    position: absolute;
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.label-wrapper {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.custom-hotspot:hover .label-wrapper {
    transform: translateX(-50%) translateY(-5px);
}

.label-top {
    display: flex;
    align-items: center;
    background: #eaa51d;
    border-radius: 25px;
    padding: 6px 14px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.label-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.label-title {
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.label-distance {
    background: white;
    color: black;
    font-weight: bold;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 3px;
}

/* 🔥 LOADER */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    z-index: 10;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #eaa51d;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.navbar {
    position: fixed !important;
    width: 100%;
    z-index: 99;
    background-color: transparent !important;
}

.navbar img {
    width: 150px;
}

.navbar .nav-link {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff !important;
}


.navbar .nav-link.active {
    color: #eaa51d !important;
}

.navbar .nav-link:hover {
    color: #eaa51d !important;
}

.navbar-toggler-icon {
    filter: invert(100%);
}

.custom-navbar {
    transition: all 0.3s ease;
    background-color: transparent !important;

}


.custom-navbar.scrolled {
    background-color: #fffffff0 !important;
    border-bottom: 2px solid #eaa51d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link {
    color: white !important;
}

.custom-navbar.scrolled .nav-link {
    color: black !important;
}

.custom-navbar.scrolled .nav-link.nav-link.active {
    color: #eaa51d !important;
}

.home {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.home video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.1;
}

.about {
    overflow-x: hidden;
}



.about .img1 {
    height: 600px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #eaa51d;
}

.about .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .subimg {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 250px;
    width: 250px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #eaa51d;
}

.about .subimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about h2 {
    font-size: 36px;
    color: #eaa51d;
    margin-bottom: 20px;
}

.about p {
    font-size: 15px;
    color: #d6d6d6;
    line-height: 1.6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about button {
    background-color: #eaa51d;
    color: #fff;
    border: none;
    margin-top: 1rem;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about button:hover {
    background-color: #dea917;
}

.discover-top {
    background-color: #eaa51d;
    color: #1e1818;
    text-align: center;
    padding: 60px 20px;
}


.discover-top h2 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}


.discover-top h6 {
    font-size: 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    font-weight: 600;
}

.discover-top button {
    background-color: #1e1818;
    color: #fff;
    border: none;
    margin-top: 1rem;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discover-top button:hover {
    background-color: #333;
}

.dis-bottom {
    background-image: url('./assets/disc.jpg');
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    position: relative;
}

.dis-bottom .overlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.438);
    padding: 4rem 0;
}


.dis-bottom .overlayer h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.dis-bottom .overlayer a {
    color: #eaa51d;
    font-weight: 600;
    font-size: 16px;
    padding-top: 20px;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



.amenities .container {
    position: relative;
    z-index: 2;
}

.amenity-card {
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    color: #fff;
}

.amenity-card:hover {
    transform: translateY(-8px);
    border-color: #ad8c1d;
}

.icon {
    width: 70px;
    height: 70px;
    background: #eaa51d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
}

.amenity-card h5 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
}

.amenity-card p {
    font-size: 12px;
    opacity: 0.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.amenity-card span {
    border-bottom: 2px solid #eaa51d;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.video-section {
    background: #f5f5f5;
}

.main-heading {
    font-size: 36px;
    font-weight: 600;
    color: #eaa51d;
}

.sub-heading {
    color: #eaa51d;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sub-heading::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #eaa51d;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-8px);
}

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

.video-content {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-content i {
    color: red;
    font-size: 20px;
}

.video-content i::before {
    vertical-align: -5px !important;

}

.video-content span {
    font-weight: 500;
    color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
}

.layout-section {
    background: url('./assets/layout.jpg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.layout-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.layout-section .container {
    position: relative;
    z-index: 2;
}

.text-section h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
}

.main-image {
    border: 2px solid #eaa51d;
    border-radius: 10px;
}

.main-image img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

/* Thumbnails */
.thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.thumbnails {
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}


.thumb img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.thumb span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.thumb.active {
    border: 2px solid #D4AF37;
}

.thumbnails {
    overflow-x: auto;
    flex-wrap: nowrap;
}

#planTitle {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}


.layout-details {
    color: #fff;
}

#planList {
    padding: 0;
    list-style-type: none !important;
}


#planList li {
    list-style-type: none !important;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.gallery-title {
    font-size: 32px;
    font-weight: 600;
    color: #eaa51d;
}

.gallery-sub {
    color: #777;
}

.view-all {
    color: #eaa51d;
    text-decoration: none;
    font-weight: 500;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.overlay h5,
.overlay h4 {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.overlay small {
    opacity: 0.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.gallery-card {
    height: 250px;
}

/* Hover effect */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* Large card height */
.gallery-card.large {
    height: 100%;
    min-height: 500px;
}

.work-section {
    padding: 80px 0;
}

.work-title {
    color: #fff;
    font-size: 40px;
}

.work-sub {
    color: #f7f7f7;
    letter-spacing: 1px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.work-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.work-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.work-nav {
    width: 120px;
    position: relative;
}

.work-nav .swiper-button-next,
.work-nav .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #eaa51d;
    border-radius: 50%;
    color: #fff !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-nav .swiper-button-next:after,
.work-nav .swiper-button-prev:after {
    font-size: 15px;
}

.work-nav .swiper-button-next:hover,
.work-nav .swiper-button-prev:hover {
    background: #dea917;
    scale: 0.9;
    transition: 0.3s;


}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay h4 {
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.overlay p {
    margin-top: 10px;
    opacity: 0.9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Bottom section */
.bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.bottom a {
    color: #fff;
    text-decoration: underline;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



.bottom span {
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.work-card:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}


.faq-section {
    background: #f7f7f7;
}

.faq-title {
    font-size: 36px;
    font-weight: 600;
    color: #eaa51d;
}

.faq-sub {
    color: #eaa51d;
    letter-spacing: 2px;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.faq-sub::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #eaa51d;
    display: block;
    margin: 8px auto 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #555;
    margin-top: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active span {
    transform: rotate(45deg);
}

.contact-section {
    background: #f5f5f5;
}

.contact-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* FORM */
.form-area h5 {
    font-weight: 600;
    color: #2c3e50;
}

.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #D4AF37;
}

/* BUTTON */
.submit-btn {
    border: 1px solid #ccc;
    padding: 10px 25px;
    color: #fff !important;
    background-color: #eaa51d !important;
}

.submit-btn:hover {
    background: #D4AF37;
    color: #fff;
}

/* RIGHT SIDE */
.contact-info {
    position: relative;
    background: url('./assets/contact.jpeg') center/cover no-repeat;
    color: #fff;
}

.contact-info .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 30px;
    height: 100%;
}

.contact-info h5 {
    font-weight: 600;

}

.contact-info hr {
    width: 60px;
    border: 2px solid orange;
    opacity: 1;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.contact-info i {
    font-size: 18px;
}


.footer-section {
    background: #2c2c2c;
    color: #fff;
}

.footer-logo {
    width: 250px;
}

.tagline {
    font-size: 13px;
    color: #bbb;
    margin-top: 10px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Headings */
.footer-section h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p,
.footer-section strong {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding: 15px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width:767px) {
    .about .img1 {
        height: 350px;
    }

    .controls button {
        height: 30px;
        width: 30px;
    }

    .main-logo {
        top: 12px;
        left: -8px;
    }

    .about .subimg {
        width: 150px;
        height: 150px;
    }

    .discover-top h2 {
        font-size: 20px;
    }

    .discover-top h6 {
        font-size: 14px;
    }





    .main-image img {
        height: 300px;
    }

    .gallery-title {
        font-size: 32px;
    }

    .gallery-card.large {
        min-height: 400px;
    }

    .dis-bottom .overlayer h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding: 22px;
        background: #0000009c;
        border-radius: 12px;
    }



    .amenities {
        height: 630px;
        margin-top: 2rem;
        overflow-y: scroll;

    }

    .main-image img {
        height: 350px;
    }
.amenities
    .wow {
        animation: none !important;
        visibility: visible !important;
    }
}