@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

section.main-banner.mobile {
    display: none;
}

section.main-banner.desktop {
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    /* Adjust based on your fixed navbar height */
}

.bg-color1 {
    background: #be7e27;
}

.bg-color2 {
    background: #4a271f;
}

.text-primary {
    color: #242424 !important;
}

.text-secondary {
    color: #be7e27 !important;
}

.sec-p {
    padding: 80px 0;
}

.header {
    position: fixed;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 999;
    background: transparent;
}

.header {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.transparent {
    background: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    backdrop-filter: blur(8px);
}

.header.solid {
    background: #000000a6;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header .dropdown-menu {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: 0.5s !important;
    transform: translateY(20%);
    padding: 0;
    border-radius: 0;
}

.header .dropdown-menu.show {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0%);
}

.header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px !important;
    padding: 0 25px;
    font-weight: 500;
    color: #ffffff;
}


.header .navbar-expand-lg .navbar-nav .nav-link.active,
.header .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #be7e27 !important;
}


.header .dropdown-item {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
}

.header .dropdown-item.active,
.header .dropdown-item:hover {
    background: #00000050 !important;
    color: #ffffff !important;
}

.header .navbar-toggler {
    border: none !important;
    outline: none !important;
}

.header .navbar-toggler:focus,
.header .offcanvas-header .btn-close:focus {
    box-shadow: none !important;
}

.header .logos {
    display: flex;
    align-items: center;
}

.header .navbar-brand {
    width: 200px;
    border-right: 1px solid rgb(190 126 39 / 43%);
    margin: 0;
    padding: 0 15px;
}

.header .navbar-brand.sub-logo {
    width: 144px;
    padding: 0;
    padding-left: 10px;
    border: none;
}

.btn-primary {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0;
    background: #be7e27;
    border: 1px solid #be7e27;
    /* box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff; */
    font-weight: 500;
}

.btn-primary:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #0d3b63, inset -4px -4px 12px #ffffff;
}

.btn-primary:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-primary:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #0d3b63;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: #ffffff;
    border: 1px solid #2f1d1b;
}

.btn-primary:hover:before {
    top: -35%;
    background-color: #2f1d1b;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-primary:hover:after {
    top: -45%;
    background-color: #2f1d1b;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}



.btn-secondary {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    background: #2f1d1b;
    border: 1px solid #2f1d1b;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    font-weight: 500;
}

.btn-secondary:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #be7e27, inset -4px -4px 12px #ffffff;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-secondary:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #be7e27;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: #ffffff;
    border: 1px solid #be7e27;
}

.btn-secondary:hover:before {
    top: -35%;
    background-color: #be7e27;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-secondary:hover:after {
    top: -45%;
    background-color: #be7e27;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.header {
    padding: 0 25px;
}


/* hero slider start */

.hero-banner {
    width: 100%;
    /*    height: 110dvh;*/
    height: 100%;
    aspect-ratio: 16 / 9;
}

.hero-banner .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.hero-banner .slide-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    /* padding: 20px; */
    border-radius: 8px;
}

.hero-banner .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

.hero-banner .swiper-pagination-bullet-active {
    background: #be7e27;
}

.hero-banner .slide-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    /* padding: 20px; */
    /* REMOVE THIS */
    border-radius: 8px;
}

/* .hero-banner .swiper-slide.overlay-l::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 16%);
    z-index: 1;
} */

.hero-banner .swiper-slide.overlay-d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 66%);
    z-index: 1;
}

.hero-banner .slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 82px;
    width: 55%;
}

.hero-banner .slide-content h2 {
    letter-spacing: 1px;
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    color: #ffffff;
}

.hero-banner .slide-content p {
    font-size: 16px;
    line-height: 30px;
}


.hero-banner .swiper-pagination-vertical.swiper-pagination-bullets,
.hero-banner .swiper-vertical>.swiper-pagination-bullets {
    padding-top: 82px;
}

.hero-banner .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.hero-banner .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
}

.hero-banner .swiper-pagination-bullet {
    opacity: 0.9;
}

.main-h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000000;
}

.tp {
    padding-top: 25px;
}

/* hero slider end */

.flexbox .element {
    height: 100%;
}

.parallax {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


/* highlight start */

.highlight {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px 0;
}

.highlight-card-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
    margin: 0 auto;
}

.highlight-card-container .highlight {
    width: 30%;
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #be7e27;
    transition: 0.5s;
}

.highlight-card-container .highlight:hover {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.highlight-card-container .highlight .highlight-icon img {
    transition: 0.5s;
}

.highlight-card-container .highlight:hover .highlight-icon img {
    transform: rotateY(360deg);
}

.highlight-card-container .highlight p {
    width: 80%;
    margin: 0 auto;
}

.highlight .highlight-icon {
    width: 80px;
    height: 80px;
}

.highlight .highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight p {
    /* color: #ffffff; */
    text-align: center;
    font-size: 14px;
}

/* highlight end */

.inn-s {
    padding-top: 40px;
}



/* Thank You Page Css */
/* Fullscreen background image */
.ty-bg {
    position: fixed;
    inset: 0;
    background-image: url('../images/about.jpg');
    ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Dark overlay for readability */
.ty-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .55));
    z-index: -1;
}


/* Centered gradient card */
.ty-card {
    width: min(92vw, 820px);
    padding: clamp(1.25rem, 2vw + 1rem, 2.25rem);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
}


.ty-card h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.ty-card p {
    margin: 0 0 1.25rem;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
    color: rgba(255, 255, 255, 0.92);
}


.ty-brand {
    display: inline-block;
    margin-bottom: .35rem;
    font-size: clamp(.9rem, .8rem + .3vw, 1rem);
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, 0.75);
}


.ty-actions {
    margin-top: 1.25rem;
}


.btn {
    display: inline-block;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    color: #0b0b0b;
}

/* Thank You Page Css */


/* configuration-start */

.configuration .c-card {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: 0.5s;
    padding: 20px;
}

.configuration .c-card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.configuration .c-card .c-image {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
}

.configuration .c-card .c-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.configuration .c-card .c-content {
    padding-top: 20px;
    border-top: 1px solid #0d3b631f;
}

.configuration .c-card .c-content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.configuration .c-card .c-content a {
    margin-top: 5px;
}

/* configuration-end */


/* pricing-modal start */



.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

.submit-icon,
.submit-icon2,
.submit-icon3,
.submit-icon4 {
    display: none;
}


.rotating i {
    color: #d0da46;
}

.submit-icon.rotating-show,
.submit-icon2.rotating-show,
.submit-icon3.rotating-show,
.submit-icon4.rotating-show {
    display: inline-block;
    vertical-align: middle;
}

@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.pricing-modal .modal-header {
    text-align: center;
    border-bottom: 0;
    justify-content: center;
    padding: 0;
}

.pricing-modal .modal-body {
    padding: 0;
}

.pricing-modal .modal-content {
    padding: 40px 30px;
    border-radius: 5px;
}

.pricing-modal .modal-content #contact-form {
    margin-top: 30px;
}

.pricing-modal .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
}

.pricing-modal .modal-header .btn-close:focus {
    box-shadow: none;
    border: none;
}

.pricing-modal .form-control {
    padding: 12px 0;
    border-radius: 5px;
    font-size: 16px;
    border-color: unset;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.329);
    border-radius: 0;
}

.pricing-modal .form-control::placeholder {
    color: #000000;
}

.pricing-modal .btn-2.submit-btn {
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0 auto;
    width: 100%;
    background: none;
    margin-top: 20px;
}

/* pricing-modal end */

/* aminites start */

.amenities .nav.nav-pills {
    justify-content: center;
    gap: 20px;
}

.amenities .nav-pills .nav-link.active,
.amenities .nav-pills .show>.nav-link {
    background-color: #2f1d1b;
    border-color: #2f1d1b;
    border-radius: 0;
}

.amenities .nav-pills .btn-primary {
    box-shadow: rgb(0 0 0 / 23%) 0px 8px 24px;
    border-radius: 0;
}

.amenities .list1 {
    padding-left: 0;
}

.amenities .list1 li {
    position: relative;
    padding: 5px 0 5px 24px;
    /* color: #ffffff; */
    font-weight: 500;
}

.amenities .list1 li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '\f219';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2f1d1b;
}


/* aminites end */


/* gallery slider start */


.gallery-section h2 {
    text-align: center;
}

.gallery-section .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
}

.gallery-section .gallery-swiper a {
    display: block;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: #fff;
    background: rgb(190 126 39);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    /* Position in the middle vertically */
    transform: translateY(-50%);
    z-index: 10;
    transition: 0.5s;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: #0d3b63;
}

.gallery-swiper .swiper-button-next {
    right: 10px;
    margin-top: 5px;
}

.gallery-swiper .swiper-button-prev {
    left: 10px;
    margin-top: 5px;
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 18px;
}


/* gallery slider end */


/* locations start */

.locations {
    color: #fff;
}

.locations .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 10px;
}

.locations .accordion-button {
    background: #ffffff;
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 50px;
    /* space for + - icon */
}

.locations .accordion-button .icon {
    position: absolute;
    right: 20px;
    font-size: 28px;
    top: 50%;
    transform: translateY(-50%);
}

.locations .accordion-button .icon::before {
    content: "+";
    color: #000000;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}


.locations .accordion-button:not(.collapsed) {
    background: #be7e27;
    border-color: #be7e27;
    color: #fff;
    border-radius: 0;
}

.locations .accordion-button:not(.collapsed) .icon::before {
    content: "–";
    color: #fff;
}

.locations .accordion-body {
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 0;
    margin-top: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.locations .accordion-button::after {
    display: none;
    /* removes default Bootstrap arrow */
}

.locations .accordion-button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #0d3b63;
    padding: 10px 20px;
    letter-spacing: 0.5px;
}

.locations .accordion-button.collapsed {
    color: #000000;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0;
}


.locations .list2 {
    padding-left: 0;
    margin-bottom: 0;
}

.locations .list2 li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
}

.locations .list2 li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #be7e27;
}


/* locations end */

/* luxury start */

.luxury .highlight-card-container .highlight {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 20px 15px;
}

/* luxury end */

/* about start */
.about-feature {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-feature-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-feature .feature-icons {
    width: 70px;
    height: 70px;
}

.about-feature .feature-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-feature .feature-content p {
    font-size: 18px;
    line-height: 28px;
    padding-top: 10px;
    /* color: #ffffff; */
    font-weight: 600;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

/* about end */


/* contact form start */

.contact-container {
    border-radius: 0;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border: 1px solid #be7e2763;
}

.contact-section .contact-info {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 0;
    border-right: 1px solid #be7e2763;
}

.contact-section .contact-info ul {
    padding-left: 0;
    margin-top: 30px;
}

.contact-section .contact-info ul li {
    display: grid;
    grid-template-columns: 34px auto;
    align-items: center;
    color: #000000;
    gap: 0 15px;
    padding: 10px 0;
}

.contact-section .contact-info ul li svg {
    background: #2f1d1b;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #ffffff;
    padding: 10px;
}

.contact-section .contact-info ul li a,
.contact-section .contact-info ul li a p {
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-section #contact-form {
    padding: 40px 30px;
}

.contact-section #contact-form .main-h2 {
    margin-bottom: 20px;
}


.contact-section #contact-form .form-control {
    padding: 12px 0;
    border-radius: 5px;
    font-size: 16px;
    border-color: unset;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.329);
    border-radius: 0;
}

.contact-section #contact-forml .form-control::placeholder {
    color: #000000;
}

.contact-section #contact-form .btn-2.submit-btn,
#contact-form2 .btn-2.submit-btn2,
#contact-form3 .btn-2.submit-btn3,
#contact-form4 .btn-2.submit-btn4 {
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0 auto;
    background: none;
    display: block;
    margin-top: 20px;
}

.contact-section #contact-form,
.contact-section .contact-info {
    min-height: 400px;
}

.contact-section .social {
    display: flex;
    gap: 0 5px;
    margin: 0 !important;
}


.contact-section .maha-qr {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

.contact-section .maha-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* contact form end */


/* download browsher start */

.floating-brochure {
    position: fixed;
    right: 24px;
    bottom: 94px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #2f1d1b;
    /* Blue */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #be7e27;
    /* Gold Border */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.2s ease;
}

.floating-brochure i {
    font-size: 16px;
    color: #be7e27;
    /* Gold Icon */
}

.floating-brochure:hover {
    background: #2f1d1b;
    /* Gold on Hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.floating-brochure:hover i {
    color: #0d3b63;
    /* Blue Icon on Hover */
}

.img-overlap {
    position: relative;
}

.image1-overlap {
    position: absolute;
    width: 70%;
    height: 520px;
    left: 0;
    top: 0;
}

.image2-overlap {
    position: absolute;
    width: 70%;
    height: 520px;
    top: 0;
    right: 0;
    margin-top: 70px;
}

.image1-overlap img,
.image2-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.left-box,
.right-box {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.left-box img,
.right-box img {
    width: 95%;
    height: 95%;
    margin-top: 35px;
    object-fit: cover;
}

.left-box img {
    margin-left: 35px;

}

.right-box img {
    margin-right: 35px;
}

.left-box::before {
    position: absolute;
    left: 0;
    top: 0;
    background: #be7e27;
    width: 90%;
    height: 90%;
    content: '';
    z-index: -1;
}


.right-box::before {
    position: absolute;
    right: 0;
    top: 0;
    background: #be7e27;
    width: 90%;
    height: 90%;
    content: '';
    z-index: -1;
}

.fixed-form #contact-form3 .form-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 40px;
    align-items: center;
}

.fixed-form,
.fix-enquiry-btn {
    padding: 10px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #2f1d1b;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.fix-enquiry-btn {
    display: none;
    padding: 0;
}

.fixed-form #contact-form3 .btn-2.submit-btn3 {
    margin: 0;
    margin-top: 5px;
    text-align: right;
}

.fixed-form #contact-form3 .form-control {
    border-radius: 5px;
    font-size: 14px;
    border-color: unset;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.329);
    border-radius: 0;
    color: #000000;
    background-color: transparent;
    padding: 10px;
}

.fixed-form #contact-form3 .form-control::placeholder {
    color: #000000;
}

.fixed-form .msg3 {
    width: 300px;
    margin: 0 auto;
}

.fixed-form .msg3 .alert {
    margin-top: 10px;
}

.fixed-form .msg3 .alert {
    margin-bottom: 10px;
    padding: 10px;
}

.fixed-form .btn-primary {
    padding: 6px 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #be7e27;
    font-size: 14px;
}

.legal-footer {
    margin-bottom: 67px;
    background: #000000a6;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#about-us .project-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: auto;
    /* optional */
}

#about-us .ribbon-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(190 126 39);
    color: #fff;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
}

.contact-section h2.maha {
    letter-spacing: 1.5px;
}

.contact-section a.maha {
    font-size: 13px;
}

#contact-form3 .main-h2 {
    text-align: right;
    font-size: 20px !important;
    line-height: 30px;
    font-weight: 500;
}

.grecaptcha-badge {
    z-index: 9999 !important;
}

@media (max-width: 576px) {
    .floating-brochure {
        right: 16px;
        bottom: 40px;
        padding: 10px 16px;
        font-size: 14px;
    }
}



/* download browsher end */

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-area {
        flex: 1 1 100%;
    }
}


/* contact form end */


.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    font-weight: 600;
}


@media (min-width: 1200px) and (max-width: 1599px) {
    .header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 15px;
    }

    .highlight-card-container .highlight p {
        width: 100%;
    }

}

@media (min-width: 1200px) and (max-width: 1460px) {
    .header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 10px;
    }

    .header {
        padding: 0 20px;
    }

    .header .container-fluid {
        padding: 0;
    }


}

@media (min-width: 1200px) and (max-width: 1399px) {
    .image1-overlap {
        position: absolute;
        width: 70%;
        height: 650px;
        left: 0;
        top: 0;
    }

    .image2-overlap {
        position: absolute;
        width: 70%;
        height: 650px;
        top: 0;
        right: 0;
        margin-top: 90px;
    }
}

@media (min-width: 1200px) and (max-width: 1366px) {
    .header .navbar-brand {
        margin-right: 0;
        width: 160px;
    }

    .header .navbar-brand.sub-logo {
        width: 130px;
    }

    .header .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px !important;
    }

    .hero-banner .slide-content h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (min-width: 220px) and (max-width: 991px) {
    .header .navbar-nav {
        background: #ffffff;
    }

    .header .dropdown-menu {
        display: none !important;
        visibility: unset !important;
        opacity: unset !important;
        transition: unset !important;
        transform: unset;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

    .header .dropdown-menu.show {
        visibility: unset !important;
        opacity: unset !important;
        transform: unset;
        display: block !important;
        background: transparent;
        border: none;
    }

    .header .dropdown-item {
        border-bottom: none;
        border-bottom: 1px solid #000000;
        padding-left: 36px;
    }

    .header .offcanvas {
        width: 100% !important;
        border: 0;
        background: #be7e27;
        height: 100vh;
    }

    .header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 20px;
        border-bottom: 1px solid #000000;
    }

    .header .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link {
        border-top: 1px solid #000000;
    }

    .header .navbar-toggler-icon {
        width: 30px;
        height: 30px;
        background-size: cover;
        font-weight: 600;
    }

    .parallax.m-parallax-bg {
        background-image: none !important;
        height: 100% !important;
        min-height: 100% !important;
    }

    .hero-banner .slide-content {
        width: 90%;
    }

    .hero-banner .slide-content h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .header {
        padding: 0;
    }

    .highlight-card-container {
        width: 100%;
    }

    .highlight-card-container {
        gap: 30px 20px;
        flex-wrap: wrap;
    }

    .highlight-card-container .highlight {
        width: 48%;
    }

    .about-feature {
        width: 100%;
    }

    .about-feature .feature-content p {
        width: 100%;
    }

    .contact-section #contact-form,
    .contact-section .contact-info {
        min-height: 100%;
    }

    .sec-p {
        padding: 60px 0;
    }

    .header .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background: #be7e27;
        margin-top: -40px;
    }

    .header .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link,
    .header .navbar-expand-lg .navbar-nav .nav-link {
        border: none;
    }

    .header .navbar-expand-lg .navbar-nav .nav-link.active,
    .header .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #0d3b63 !important;
    }

    .header .navbar-expand-lg .navbar-nav .nav-link {
        color: #ffffff;
        font-size: 18px !important;
    }

    .header .offcanvas-header .btn-close {
        font-size: 0;
        width: 40px;
        height: 40px;
        opacity: 1;
        z-index: 9999;
    }

    .header .offcanvas-header .btn-close i {
        font-size: 30px;
        color: #ffffff;
    }


    .header .offcanvas-header .btn-close i::before {
        font-weight: 500 !important;
    }

    .header .navbar-toggler {
        order: 1;
        padding: 0;
    }

    .header .navbar-toggler i {
        font-size: 40px;
        color: #ffffff;
        font-weight: 500;
    }

    .header .navbar-toggler i::before {
        font-weight: 500 !important;
    }

    .img-overlap {
        height: 600px;
    }

    .hero-banner {
        touch-action: pan-y !important;
        /* allow vertical scrolling */
        overflow: hidden !important;
        /* keep slides hidden */
    }

    .amenities {
        width: 90%;
        margin: 0 auto;
    }

    .fixed-form h2.main-h2 {
        font-size: 16px !important;
    }

    .fixed-form #contact-form3 .form-control {
        padding: 5px 0;
        font-size: 14px;
    }

    .floating-brochure {
        bottom: 50px;
    }

    #contact-form3 .main-h2 {
        font-size: 15px !important;
        line-height: 25px;
    }

    #about-us .project-wrapper {
        height: 400px !important;
        min-height: 400px !important;
    }

    #about-us .project-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-section .contact-info{
        border-right: 0;
        border-bottom:1px solid #be7e2763;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    section.main-banner.mobile {
        display: block;
    }

    section.main-banner.desktop {
        display: none;
    }

    /*.hero-banner {
        width: 100%;
        height: 105dvh;
    }*/
    .hero-banner {
        width: 100%;
        height: initial;
        aspect-ratio: 7 / 10;
    }
}

@media (min-width: 220px) and (max-width: 767px) {

    .header .btn-primary {
        display: none;
    }

    .fixed-form {
        display: none;
    }

    .legal-footer {
        margin-bottom: 0;
    }

    section.main-banner.mobile {
        display: block;
        padding-top: 70px;
    }

    section.main-banner.desktop {
        display: none;
    }

    .hero-banner .slide-content {
        padding-top: 22px;
    }
}



@media (min-width: 576px) and (max-width: 767px) {
    .hero-banner {
        width: 100%;
        height: initial;
        aspect-ratio: 7 / 10;
    }

    .header {
        background: #000000b0;
    }
}

@media (min-width: 220px) and (max-width: 575px) {

    .header .navbar-brand {
        margin-right: 0;
        width: 140px;
        padding-left: 0;
    }

    .header {
        background: #000000b0;
    }

    .header .navbar-brand.sub-logo {
        width: 110px;
    }

    .hero-banner .slide-content h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-banner .slide-content p {
        font-size: 15px;
        line-height: 25px;
    }

    .main-h2 {
        font-size: 26px;
        line-height: 36px;
    }

    p {
        font-size: 15px;
    }

    .highlight-card-container .highlight {
        width: 100%;
    }

    .amenities .list1 {
        margin-bottom: 0;
    }

    .inn-s {
        padding-top: 20px;
    }

    .gallery-section .swiper-slide img {
        height: 300px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .about-feature {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .about-feature-card {
        width: 47%;
    }

    .about-feature .feature-content p {
        font-size: 16px;
        font-weight: 500;
    }

    .contact-section .contact-info {
        padding: 30px 20px;
    }

    .contact-section .contact-info ul li {
        gap: 0 10px;
    }

    .contact-section .contact-info ul li a,
    .contact-section .contact-info ul li a p {
        font-size: 14px;
    }

    .header .offcanvas-header .btn-close i,
    .header .navbar-toggler i {
        font-size: 30px;
    }

    .header .offcanvas-header .btn-close i {
        padding: 0;
    }

    .tp {
        padding-top: 16px;
    }

    .about-feature .feature-icons {
        width: 60px;
        height: 60px;
    }

    .amenities .list1 li {
        font-size: 15px;
        padding: 7px 0 7px 24px;
    }

    .img-overlap {
        height: 380px;
    }

    .image1-overlap,
    .image2-overlap {
        height: 300px;
    }

    .main-banner {
        height: 90%;
    }

    .hero-banner {
        width: 100%;
        /*        height: 600px;*/
        height: initial;
        aspect-ratio: 7 / 10;
    }

    .hero-banner .swiper-slide {
        height: 600px;
    }

    .left-box,
    .right-box {
        height: 300px;
    }

    .left-box img,
    .right-box img {
        margin-top: 20px;
    }

    .left-box img {
        margin-left: 20px;
    }

    .right-box img {
        margin-right: 20px;
    }

    #about-us .project-wrapper {
        height: 250px !important;
        min-height: 250px !important;
    }

    #about-us .project-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .legal-footer p {
        font-size: 12px;
    }

    .fix-enquiry-btn {
        display: block;
        background: unset;
    }

    .fix-enquiry-btn .btn-secondary {
        width: 100%;
        box-shadow: unset;
        text-align: center;
        padding: 10px;
        overflow: hidden;
        border-radius: unset;
        margin-bottom: -8px;
    }

    .legal-footer {
        margin-bottom: 44px;
    }

    .header {
        padding: 10px 0;
    }


    /*.main-banner.mobile .hero-banner{
    width: 100%;
    height: 100% !important;
}
.swiper-slide {
    background-size: contain !important;
    background-repeat: no-repeat;
}
.swiper-slide.stat {
    background-size: contain !important;
    background-repeat: no-repeat;
}
section.main-banner.mobile {
    height: 700px;
}*/

    .main-banner .swiper-slide {
        position: relative;
        text-align: center;
    }

    .main-banner .swiper-slide img {
        width: 100%;
        height: auto !important;
        /* Keeps aspect ratio */
        display: block;
        max-width: 500px;
        /* Optional: prevent stretching beyond your designed size */
        margin: 0 auto;
        /* Center align if smaller */
    }

    .swiper-slide .container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        z-index: 2;
    }

}

/* Floating WhatsApp icon */
.whatsapp-float {
    position: fixed;
    bottom: 170px;
    /* distance from bottom edge */
    right: 30px;
    /* distance from right edge */
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Image styling */
.whatsapp-icon {
    width: 50px;
    height: 50px;
    display: block;
}

a.btn-primary.wa {
    background: #00b73b;
    border: 1px solid #008b31;
}

.btn-primary:hover:before {
    top: -35%;
    background-color: #008b31;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

a.btn-primary.wa:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #008b31;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.container.video {
    margin-top: 50px;
    padding: 0% 10%;
}

.container.video iframe {
    width: 100%;
    height: 500px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 95px;
        right: 15px;
        padding: 8px;
    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }

    .container.video iframe {
        width: 100%;
        height: 350px;
    }

    .container.video {
        padding: 0% 5% !important;
    }
}