* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', Arial, sans-serif;
}

:root {
    --heading: #26538D;
    --footeBG: #7b7b7b;
    --bgColor: rgb(234 234 234 / 14%);
    --bodyText: rgb(79, 79, 79);
    --textColor: rgb(234 234 234);
}


html,
body {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    font-size: clamp(0.875rem, 0.5rem + 0.7813vw, 1.125rem);
    /* background-color: var(--bgColor); */
}

a {
    text-decoration: none;
}

/* Add a black background color to the top navigation */
header {
    background-color: rgb(234 234 234);
    width: 100%;
    margin: auto;
    transition: all 0.4s ease-in-out;
}

.active {
    position: fixed;
    top: 0;
    z-index: 5;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

/* Style the container */
.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Style the logo */
.logo {
    max-width: 100px;
    height: 55px;
}

/* Style the navigation links */
.nav-links {
    display: block;
}

.nav-links a {
    color: var(--heading);
    margin: 7px 9px;
    text-transform: uppercase;
}

.nav-links a:hover {
    background-color: var(--heading);
    color: #f7f7f7;
    padding: 5px 8px;
    border-radius: 10px;
    transition: all 300ms ease-in;
}

.navPhone {
    background: var(--heading);
    color: white !important;
    padding: 8px 17px;
    border-radius: 50px;
}

/* Style the toggle icon */
.toggle-icon {
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none;
    top: 20px;
    right: 30px;
    /* Initially hide toggle icon */
}

/* Style the menu items for mobile */
.menu-items {
    flex-direction: column;
    background-color: var(--heading);
    position: absolute;
    /* top: 100%; */
    left: 0;
    width: 100%;
    height: 100dvh;
    display: none;
    animation: menuTop linear 700ms;
}

.menu-items.active {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    opacity: 1;
    z-index: 1;
}

@keyframes menuTop {
    0% {
        top: 100%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.menu-items a {
    padding: 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.menu-items a:hover {
    background-color: #444;
}

/* Style the toggle icon bars */
.toggle-icon .bar {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
    transition: transform 0.3s ease;
    /* Transition for icon rotation */
}

/* Rotate the bars to cross when active */
.toggle-icon.active .bar:nth-child(1) {
    transform: rotate(-135deg) translate(-5px, 6px);
}

.toggle-icon.active .bar:nth-child(2) {
    display: none;
}

.toggle-icon.active .bar:nth-child(3) {
    transform: rotate(135deg) translate(-5px, -6px);
}

/* Media query for mobile devices */
@media only screen and (max-width: 930px) {

    /* Show the toggle icon and hide navigation links */
    .nav-links {
        display: none;
    }

    .toggle-icon {
        display: block;
    }

    /* Show the bars on smaller screens */
    .toggle-icon .bar {
        display: block;
    }
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
    /* padding: 50px 0; */
}

.section-heading {
    display: none;
}

section:nth-of-type(even) {
    color: var(--bodyText);
    background: white;
}

section:nth-of-type(odd) {
    color: var(--bodyText);
    background: var(--bgColor);
}

h1 {
    font-size: clamp(1.75rem, 1rem + 1.5625vw, 2.25rem);
}

h2 {
    font-size: clamp(1.625rem, 1.0625rem + 1.1719vw, 2rem);
}

h3 {
    font-size: clamp(1.5rem, 1.125rem + 0.7813vw, 1.75rem);
}

h4 {
    font-size: clamp(1.3125rem, 1.0313rem + 0.5859vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 0.8438rem + 0.5859vw, 1.3125rem);
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
}


.summary {
    display: grid;
    grid-template-columns: 3fr 2fr;
    /* gap: 20px; */
    place-items: center;
}

.summary>div {
    padding: 20px;
}

.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1.8s;
    -moz-animation-duration: 1.8s;
    -ms-animation-duration: 1.8s;
    -o-animation-duration: 1.8s;
    animation-duration: 1.8s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

.banner img {
    margin-top: -5px;
}


.left {
    width: 100%;
}

.right {
    width: 100%;
}

.summaryBox {
    margin-bottom: 10px;
}

.summaryBox-Items {
    color: var(--proheading);
    display: flex;
    align-items: center;
}

.summaryBox-Items hr {
    width: 50px;
    margin-right: 15px;
}

.summaryHeading {
    color: var(--heading);
    margin-bottom: 35px;
}

.summaryItems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.summaryItem {
    width: 100%;
    padding: 10px 10px 10px 0px;
    margin-bottom: 20px;
}

.summaryItem-heading h5,
.summaryItem-heading hr {
    margin-bottom: 10px;
}

.summaryText {
    color: var(--footeBG);
}

.form-container {
    border: 1px solid var(--heading);
    padding: 30px;
}

form {
    width: 100%;

}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
}

.mobileInput {
    display: flex;
    margin-bottom: 10px;
    /* padding: 10px; */
    width: 100%;
    /* border: 1px solid black; */
    align-items: center;
    justify-content: space-between;
}

select,
option {
    margin-bottom: 10px;
    border: none;
    background: none;
    color: var(--heading);
}


input[type=tel] {
    border: none;
}

input::placeholder,
.mobileInput::placeholder,
textarea::placeholder {
    color: var(--heading);
}

input,
.mobileInput,
textarea {
    border-bottom: 1px solid var(--heading);
    background-color: transparent;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}

input[type=submit] {
    background-color: var(--heading);
    color: #f7f7f7;
}

.slider {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 10px;
    padding: 40px 10px;
}

.aboutSlider {
    display: inherit;
    place-items: center;
}

.about {
    padding: 40px 0;
}

.about>div {
    padding: 5px;
}

.aboutText>* {
    margin-bottom: 14px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    aspect-ratio: 16/9;
}

.slideshow-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slideshow-container video[type="poster"] {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.slideshow-container img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* The dots/bullets/indicators */
.dots {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
    display: none;
}


/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.1s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}

.aboutText ul {
    margin-left: 20px;
    margin-top: 15px;
}

.aboutText ul li {
    margin-bottom: 7px;
}

.amenitiesBox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.amenitiesItem {
    position: relative;
}

.itemImage {
    position: relative;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.itemImage img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.itemText {
    width: 100%;
    position: absolute;
    bottom: 8%;
    padding: 5px;
    font-size: 10px !important;
    text-align: center;
    color: var(--textColor);
    background-color: var(--heading);
    backdrop-filter: blur(20px);
}

.price-table {
    overflow-x: scroll;
    overflow-y: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

/* @media (width>768px) {
    .mobile-rera {
        display: none;
    }
} */
.rera-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.rera-image img {
    max-width: 100px;
}

.rera-number {
    text-align: center;
    margin-top: 8px;
}

@media (width<=767px) {
    .mobile-rera {
        display: block;
    }
}

th {
    background-color: var(--heading);
    color: #f7f7f7;
}

th,
td {
    text-align: left;
    border: 1px solid var(--bodyText);
    padding: 10px;
}

.location {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    place-items: center;
}

.locationText {
    text-align: left !important;
    width: 100%;
}

.accordion__header {
    padding: 1em;
    background-color: var(--bgColor);
    color: var(--heading);
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion__header>* {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.accordion__header.is-active {
    background-color: var(--heading);
    color: #f7f7f7;
}

.accordion__toggle {
    margin-left: 10px;
    height: 3px;
    background-color: var(--proheading);
    width: 13px;
    display: block;
    position: relative;
    flex-shrink: 1;
    border-radius: 2px;
}

.accordion__toggle::before {
    content: "";
    width: 3px;
    height: 13px;
    display: block;
    background-color: var(--proheading);
    position: absolute;
    top: -5px;
    left: 5px;
    border-radius: 2px;
}

.is-active .accordion__toggle {
    background-color: var(--proheading);
}

.is-active .accordion__toggle::before {
    display: none;
}


.accordion__body {
    display: none;
    padding: 1em;
    border: 1px solid #ccc;
    border-top: 0;
}

.accordion__body ul {
    margin-left: 10px;
}

.accordion__body.is-active {
    display: block;
}

.virtualBox,
.virtualBg {
    position: relative;
}

.virtualBg img {
    object-fit: fill;
    aspect-ratio: 16/9;
}

.virtualCTA {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.virtualCTA a i {
    color: white;
    font-size: xx-large;
}

.footerBox {
    font-size: 12px;
    text-align: center;
    display: grid;
    gap: 10px;
}

.stickyCTA {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stickyCTA i {
    font-size: 40px;
    color: var(--heading);
    padding: 10px;
}

.page-wrapper {
    width: 100%;
    height: 100%;
    background: url(https://goo.gl/OeVhun) center no-repeat;
    background-size: cover;
    display: none;
}

.blur-it {
    filter: blur(4px);
}

a.btn {
    width: 200px;
    padding: 18px 0;
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--heading);
    border-radius: 0;
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bgColor);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 600px;
    height: max-content;
    display: block;
    /* margin: 50% 0 0 -300px; */
    position: relative;
    top: 50%;
    left: 50%;
    background: #fff;
    opacity: 0;
    border: 1px solid var(--heading);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
}

.modal-wrapper.open .modal {
    /* margin-top: -200px; */
    opacity: 1;
}

.head {
    width: 100%;
    padding: 12px 30px;
    overflow: hidden;
    background-color: var(--bgColor);
    outline: none;
    border: none;
}

.btn-close {
    font-size: 28px;
    display: block;
    float: right;
    color: var(--heading);
}

.content {
    padding: 5% 10% 10% 10%;
    background-color: var(--bgColor);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--heading);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.form-footer a {
    background-color: var(--heading);
    padding: 10px;
    color: #f7f7f7;
}

footer {
    margin: 20px 0;
}

.footer-link a {
    color: var(--heading);
    padding: 5px 9px;
}

.footer-link a:not(:last-child) {
    border-right: 2px solid var(--heading);
}

@media screen and (min-width:930px) and (max-width:1150px) {
    .nav-links a {
        font-size: 14px;
    }
}

@media (width<=991px) {
    .slider {
        grid-template-columns: 1fr;
        padding: 25px 10px;
    }
}

@media (width<=768px) {

    .banner img,
    .menu-container {
        padding: 10px;
    }

    .row {
        margin: 25px 0;
    }

    .about {
        padding: 20px 0;
    }

    .summary,
    .location {
        grid-template-columns: 1fr;
        /* gap: 0; */
    }

    .modal {
        width: 90%;
        height: max-content;
    }
}

@media (width<=600px) {
    .amenitiesBox {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}