* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", sans-serif;
}

html {
    overflow-x: hidden;
}

.video-section {
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
}

#myVideo {
    width: 100%;
    display: block;
}

.video-container video {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 20px;
    width: 100% !important;
}

.video-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-desc {
    font-size: 20px;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.4;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* adjust opacity */
    z-index: 5;
}

/* video-hero end*/
.discription {
    font-size: 18px;
    font-family: "Inter", sans-serif;
}

.text-right {
    text-align: right;
}

.contact_box a {
    text-decoration: none;
}

.menuLogoMainCls {
    width: 70px;
}

.nav-item:hover {
    color: white;
}

a.nav-link {
    color: white !important;
    font-size: 16px;
}

.main-heading h4 {
    font-family: "Cormorant", serif;
}

h1 {
    font-family: "Cormorant", serif;
    font-size: 60px;

}

h2 {
    font-family: "Cormorant", serif;
    font-size: 48px;
}

h4 {
    font-family: "Cormorant", serif;
    font-size: 22px;

}

h5 {
    font-family: "Cormorant", serif;
    font-size: 27px;
}

p {
    font-family: "Inter", sans-serif;
}

.nav_sticky_child {
    position: sticky;
    top: 0;

}

.header-main {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0;
}

.nav_sticky {
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background-color: transparent;
}


.nav_sticky.scrolled {

    background-color: #060606c9;

    top: 0px;
}

.toggel {
    color: white
}

.text-yellow {
    color: #ffc107;
    text-decoration: underline;
}

.text-color {
    color: #ffc107;

}

.img_box {
    align-items: center;
    justify-content: space-evenly;
}


.box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.box img {
    display: block;
    transition: 0.4s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    color: #fff;
}

.box:hover img {
    transform: scale(1.03);
}

.box:hover .hover-overlay {
    opacity: 1;
}

.full_imge {
    background: url('./assets/images/full_img.jpg   ');
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    background-size: cover;
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-title {
    font-family: 'CormorantBold';
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-about p {
    font-size: 16px;
    line-height: 24px;
    color: #d1d1d1;
}

/* Social + Contact Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdcdc;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.iconCls {
    margin-right: 8px;
    font-size: 20px;
}

.footer-address {
    color: #d1d1d1;
    line-height: 22px;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    color: #bfbfbf;
}

.google-review-section {
    width: 100%;
    padding: 30px 0px;
    background: #f8f8f8;
}

.review-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.review-title span {
    color: #ff5722;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 100%;
}

.review-box:hover {
    transform: translateY(-5px);
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
}

.review-rating {
    margin: 8px 0;
    font-size: 18px;
    color: gold;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

.hotel-enquiry-section {
    background: #fafafa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.btn-primary {
    background: #0d6efd;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
}

.enquiry-image img {
    width: 100%;
    height: 510px;
    border-radius: 15px;
}

.btn-primary {
    background: #0d6efd;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
}

.form-input,
.form-textarea {
    border-radius: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid #cfcfcf !important;
    transition: 0.3s;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.btn_style {
    background: #ffcc0000;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #000000 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;

    &:hover {
        background-position: 0;
        color: #ffffff;
        border: 2px solid #000000;
    }
}


.btn_style_black {
    background: #ffcc0000;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #000000 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;

    &:hover {
        background-position: 0;
        color: #ffffff;
        border: 1px solid #000000;
    }
}

.btn_style_white {
    background: #ffcc0000;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    background-image: linear-gradient(45deg, #ffffff 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background-position 400ms ease-in-out;
    width: 170px;

    &:hover {
        background-position: 0;
        color: #000000;
        border: 1px solid #ffffff;
    }
}




.slide_bottom-box {
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    background-size: cover;
    background-position: center;
    height: 550px;
    padding: 20px;
    position: relative;
    margin: 10px;
    border-radius: 0;
}

.slide-content_box {
    position: absolute;
    bottom: 0px;
    background: #00000094;
    margin: 0px;
    padding: 5px 20px;
    text-align: start;
    width: 100%;
    left: 0px;
}

.slide-text {
    margin: 0px;
}

.slide-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.discover-section {
    padding: 30px 0px;
    text-align: center;
}

.slide-text {
    font-size: 15px;
    opacity: 0.9;
}

/* Example Backgrounds */
.slide-pool {
    background-image: url('./assets/images/water_pool.jpeg');
}

.slide-wedding {
    background-image: url('./assets/images/Destination-Wedding.jpg');
}

.slide-conference {
    background-image: url('./assets/images/confrence_crousel.jpg');
}

.slide-villa {
    background-image: url('./assets/images/Luxurious_Villa.jpg');
}

.slide-restaurant {
    background-image: url('./assets/images/restaurant.png');
}

/* ----------------index  end---------------*/





/* --------------------gallery-------------------- */

.bg {
    background-image: url('./assets/images/banner_gallery.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-top: -180px; */
    padding: 210px 0px;
}


.banner_inner {
    padding: 100px 0px;
}



.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

/* optional tiny zoom on hover */
.gallery-item:hover img {
    transform: scale(1.02);
}

/* The icon button (hidden until hover) */
.zoom-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 2;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .25);
}

.gallery-item:hover .zoom-btn,
.gallery-item:focus-within .zoom-btn {
    opacity: 1;
}

/* On touch devices (no hover), keep the icon visible so users can tap */
@media (hover: none) {
    .zoom-btn {
        opacity: 1;
    }
}



h5.title.text-center {
    color: white;
    font-size: 25px;
}

.col-lg-4 h3 {
    font-size: 40px !important;
    font-family: "Cormorant", serif;
    text-align: right;

}

h3 {
    font-family: "Cormorant", serif;
    font-size: 30px;
}

img.manager_img {
    width: 100%;
}

.title {
    margin-top: -40px;
}

.stats-section {
    background-image: url('./assets/images/stats-section.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 14px;
    opacity: 0.8;
}


.custom-btn {
    background-color: rgb(90 90 90 / 95%);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
}

.custom-btn:hover {
    background-color: rgb(90 90 90 / 95%);
    color: #fff;
}

/* IMAGE OVERLAY STATS */
.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 10px;
    background: rgb(90 90 90 / 95%);
}

.stat-num {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
}

.goal-section .tracking-wide {
    letter-spacing: 2px;
    font-size: 12px;
}


/*------- confrence------*/

.bg_confrence {
    background-image: url('./assets/images/conffrence_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 234px 0px;
}


.seat-card {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 18px;
}

.seat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.seat-img {
    height: 170px;
    object-fit: cover;
    transition: 0.35s ease;
}

.seat-card:hover .seat-img {
    transform: scale(1.08);
}

.highlight-box {
    text-align: center;
    padding: 35px 20px;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.highlight-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    color: #777;
    font-weight: 500;
}

.shadow-effect:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: transparent;
}

/*----------------- wedding ----------------*/
.bg_wedding {
    background-image: url('./assets/images/wedding__banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 234px 0px;
    background-position: center;
}

.Catering {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}


.services-section {
    background: #1d0f5d;
    color: #fff;
    position: relative;
}

.services-heading {
    font-size: 40px;
    letter-spacing: 4px;
    color: #000000;
}

.wedding__list {
    font-size: 15px;
    font-family: 'Roboto', serif;
}

/* a.btn.btn-danger.px-4 {
        font-size: 11px;
        padding: 0px;
        margin: 0px;
        display: none !important;
    } */

/* blog page style */
/* ============ CARD STYLES ============ */
.blog-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

/* image */
.card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 18px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.card-text {
    overflow: hidden;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #222;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #222;
    color: #fff;
}

/* ============ CARD STYLES ============ */
.blog-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    position: relative;
    top: 200px;
    margin-bottom: 200px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
    margin-top: 120px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 18px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.card-text {
    overflow: hidden;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #222;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #222;
    color: #fff;
}

/* =========== BLOG PAGE =========== */
.blog-full {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.blog-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-date {
    color: #777;
    margin-bottom: 25px;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 14px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.blog-contact {
    background-color: white;
    margin-top: 190px;
}

/*-------------------------- room------------------------------------------- */
/* Card Wrapper */
.space-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.space-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.space-card .card-body {
    padding: 20px 22px;
}

.location {
    font-size: 14px;
    color: rgb(220 53 69);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.space-card .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.space-card .card-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.badge-person {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.book-btn {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    margin-top: 5px;
    transition: 0.3s;
}

.book-btn:hover {
    color: rgb(220 53 69);
    text-decoration: underline;
}

.small {
    font-size: 22px !important;
}

.fw-semibold {
    font-size: 48px;
}

.navbar-light .navbar-toggler {
    color: rgb(255 255 255 / 55%);
    border-color: rgb(255 255 255 / 100%);
}

i.fa-solid.fa-bars {
    color: #ffffff;
}

/*---------------- ----responsive ------------*/
@media (max-width:576px) {
    .video-container video {
        height: 60vh !important;

    }

    .video-title {
        font-size: 28px !important;
    }

    .my-5 {
        margin: 22px 0px !important;
    }

    .mb-3 {
        margin: 0px !important;
    }

    .py-5 {
        padding: 0px 12px !important;
    }

    .discover-section {
        padding: 10px 0px;
    }

    h2 {
        font-size: 37px;
    }

    .video-overlay {
        padding: 5px;
    }

    .menuLogoMainCls {
        width: 70px;
    }

    .video-overlay {
        top: 60%;
    }

    .video-desc {
        font-size: 13px;
    }

    .space-card img {
        height: 200px;
    }

    .fw-semibold {
        font-size: 27px;
    }

}

/* ------screen 768 start --------*/
@media (max-width: 768px) {

    .video-container video {
        height: 80vh;

    }

    /* .navbar-collapse {
        padding: 10px 35px;
    } */

    .reputation {
        gap: 25px
    }

    .col-lg-4 h3 {
        font-size: 28px !important;
        font-family: "Cormorant", serif;

    }

    img.manager_img {
        width: 100%;
        height: 100%;
    }

    .bg {

        padding: 80px 0px;
    }

    .bg_confrence {

        padding: 80px 0px;
    }

    .bg_wedding {
        padding: 80px 0px;

    }

    .banner_inner {
        padding: 100px 0px 20px 0px;
    }

    .Catering {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

    }

    .Catering__text p {
        font-size: 12px;
    }

    .section-title {
        text-align: center;
        margin-top: 20px;
    }

    .btn-primary {
        font-size: 16px;
    }

    .hotel-enquiry-section {
        padding: 20px 10px;
    }

    .enquiry-image img {
        height: auto;
    }

    /*.slide_bottom-box {*/
    /*    height: auto;*/
    /*}*/

    .footer {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .discription {
        font-size: 12px;

    }

    .review-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .discription {
        font-size: 12px;

    }
    .slide_bottom-box
    {height:450px;}
}

/* ----screen 768 end ---*/

@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #000;
        /* dark background */
        padding-top: 80px;
        transition: all 0.4s ease;
        z-index: 9999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Close Icon */
    .close-menu {
        position: absolute;
        top: 25px;
        right: 20px;
        font-size: 32px;
        cursor: pointer;
        display: none;
        color: #fff !important;
        z-index: 99999;
    }

    .navbar-collapse.show .close-menu {
        display: block;
    }

    /* Mobile nav links white */
    .navbar-nav .nav-link {
        color: #fff !important;
        padding: 12px 20px;
        font-size: 18px;
    }
}


@media (min-width: 992px) {
    .navbar-collapse {
        position: static;
        height: auto;
        background: transparent;
        padding: 0;
    }

    .close-menu {
        display: none !important;
    }
}

/* ----screen 992 start ---*/
@media (max-width: 992px) {

    .video-container video {
        height: 90vh;
    }

    .col-lg-4 h3 {
        font-size: 28px !important;
        font-family: "Cormorant", serif;
    }

    img.manager_img {
        width: 100%;
        height: 100%;
    }

    .bg {
        padding: 100px 0px;
    }

    .bg_confrence {
        padding: 100px 0px;
    }

    .bg_wedding {
        padding: 100px 0px;

    }

    .Catering__text p {
        font-size: 12px;
    }

    .video-title {
        font-size: 40px
    }

    .video-desc {
        font-size: 18px;
    }

    /* room */
    .space-card img {
        height: 200px;
    }

    .fw-semibold {
        font-size: 27px !important;
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ----screen 992 end ---*/


/* ----screen 1240 start ---*/
@media (max-width:1240px) {
    .video-title {
        font-size: 48px;
    }
}

/* ----screen 1240 end ---*/




/* @media (min-aspect-ratio: 16/9) {
    #myVideo {
        width: 100vh;
        height: auto;
    }

}

@media (max-aspect-ratio: 16/9) {
    #myVideo {
        width: auto;
        height: 100vh;
    }

} */