@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* @font-face {
    font-family: 'Geomanist';
    src: url('/assets/fonts/geomanist-regular-webfont.woff2') format('woff2'),
        url('/assets/fonts/geomanist-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Geomanist', 'Poppins', sans-serif;
    font-weight: 300;
    /* overflow: hidden; */
}


.show {
    display: flex !important;
}

.hidden {
    display: none !important;
}

.nav-link{
    font-family: 'Geomanist', 'Poppins', sans-serif;
}

.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    color: white;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
    /* background: #000000ab; */
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)); */
    z-index: 3;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none;
}

.video-bg.active {
    display: block;
}

.banner::after {
    content: 'Actual Shot';
    position: absolute;
    color: #fff;
    bottom: 0px;
    left: 0%;
    font-size: 10px;
    padding: 3px 7px;
}

.sec-2-section::after {
    content: 'Actual Image';
    position: absolute;
    color: #fff;
    bottom: 0px;
    left: 0%;
    font-size: 10px;
    padding: 3px 7px;
}

.slide-heading {
    background: linear-gradient(90deg, #ae7e65 0%, #a3755f 35%, #996d5a 100%);
    /* font-size: clamp(1.5rem, 2.5vw, 3rem); */
    margin-bottom: 1em;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); */
    z-index: 4;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.slide-sub-heading {
    margin-bottom: 1em;
    z-index: 4;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

.flip-clock {
    display: flex;
    gap: 0.1em;
    /* font-size: clamp(2rem, 7vw, 6rem); */
    z-index: 4;
    font-size: 10rem;
    margin-top: 50px;
    align-items: center;
}

.moment-time-units-container {
    height: 1.2em;
    overflow: hidden;
    position: relative;
    width: 0.6em;
}

.moment-time-units-slide {
    position: absolute;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.moment-time-unit {
    height: 1.2em;
    line-height: 1.2em;
    text-align: center;
    font-weight: 200;
}

.moments-dots {
    padding: 0 0.1em;
}

/* Vertical Dot Navigation */
#nav-dots {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

/* Dot Wrapper (logo or dot fits here) */
.dot-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Regular dot */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #999;
    transition: transform 0.3s ease;
}

/* Active logo */
.dot-wrapper img {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .flip-clock {
        font-size: 8rem;
        /* font-size: clamp(5rem, 8vw, 5rem); */
    }

    .slide-heading {
        font-size: 0.9rem;
    }

    #nav-dots {
        right: 1rem;
        gap: 10px;
    }

    .dot-wrapper {
        width: 20px;
        height: 20px;
    }

    .dot-wrapper img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .flip-clock {
        font-size: 5rem;
        /* font-size: clamp(2rem, 10vw, 4rem); */
        margin-top: 0px;
    }

    .slide-heading {
        font-size: 0.5rem;
        /* font-size: clamp(1.2rem, 4vw, 2rem); */
    }

    .slide-sub-heading {
        margin-top: -10px;
        margin-bottom: 30px;
    }

    #nav-dots {
        right: 0.5rem !important;
        gap: 5px !important;
    }

    .dot-wrapper {
        width: 16px;
        height: 16px;
    }

    .dot-wrapper img {
        width: 16px;
        height: 16px;
    }
}

.mouse-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mouse-scroll-indicator span {
    font-size: 0.8rem;
}

.mouse-scroll-indicator img {
    width: 20px;
    height: auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Responsive size adjustments */
@media (max-width: 768px) {
    .mouse-scroll-indicator {
        bottom: 100px;
    }

    .mouse-scroll-indicator img {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .mouse-scroll-indicator {
        bottom: 100px;
    }

    .mouse-scroll-indicator img {
        width: 24px;
    }
}

.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: center;
    transition: top 0.3s ease;
    /* background: rgba(0, 0, 0, 0.4); */
    /* translucent background */
    /* backdrop-filter: blur(6px); */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-left li {
    list-style: none;
}

.nav-left a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-weight: 300;
}

.nav-logo img {
    height: 60px;
}

/* Buttons */
.btn-primary {
    padding: 8px 16px;
    border: none;
    border-radius: 999px;
    background: #cc9966;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #aa7744;
}

.btn-outline {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #cc9966;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background: #cc9966;
    color: white;
}

.hamburger,
.hamburger-close {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 11;
}

/* Responsive Header */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        gap: 1rem;
    }

    .nav-left a {
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-logo img {
        height: 36px;
    }
}

/* Hide desktop nav and buttons on small screens */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger,
    .hamburger-close {
        display: block;
    }

    .hamburger-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        height: 100vh;
        left: 0;
        width: 100vw;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(4px);
        padding: 1rem;
        z-index: 11;
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        align-items: center;
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(6px);
        display: flex;
        gap: 1rem;
        padding: 0.75rem 1rem;
        justify-content: space-between;
        z-index: 10;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .btn-primary.w-full,
    .btn-outline.w-full {
        width: 100%;
    }

    .main-header {
        padding: 0.8rem 1rem;
    }

    .nav-logo img {
        height: 32px;
    }
}

@media (min-width: 769px) {

    .hamburger,
    .mobile-actions,
    .mobile-menu {
        display: none !important;
    }
}

.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

.login-overlay.show {
    display: block;
}

.login-modal-wrapper {
    position: absolute;
    top: 80px;
    /* Adjust as per header height */
    right: 40px;
    /* Aligns under the LOGIN button */
    display: flex;
    justify-content: flex-end;
}

.login-modal {
    background: linear-gradient(to bottom right, #b86c4a, #c68a65);
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    max-width: 90vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-icon {
    opacity: 0.6;
}

.login-heading {
    font-size: 1rem;
    margin-bottom: 25px;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: 300;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.login-input {
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    border-bottom: 1px solid #ffffff99;
    text-align: center;
}

input {
    color: #ffffff99;
}

::placeholder {
    color: #ffffff99;
}

.login-submit {
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.login-submit:hover {
    background: #333;
}

@media (max-width: 480px) {
    .login-modal {
        padding: 30px 20px;
        width: 90%;
    }

    .login-heading {
        font-size: 0.95rem;
    }

    .login-modal-wrapper {
        top: 30%;
        right: 10%;
    }
}


.sec-1-section {
    position: relative;
    width: 100%;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sec-1-overlay {
    max-width: 600px;
    padding: 40px;
background-image: url('/assets/images/section-1-img.jpg') no-repeat center center;
	  
    background-size: cover;
    z-index: 2;
}

.sec-1-heading {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Decorative lines */
.sec-1-top-left-lines,
.sec-1-bottom-right-lines {
    position: absolute;
    display: flex;
    gap: 5px;
    z-index: 3;
    opacity: 0.6;
}

.sec-1-top-left-lines {
    top: 60px;
    left: 220px;
    opacity: 0.2;
    height: 100px;
}

.sec-1-bottom-right-lines {
    bottom: -70px;
    right: 150px;
    height: 100px;
    opacity: 0.4;
}

.sec-1-line {
    width: 3px;
    height: 100px;
    background-color: #4f3c32;
}

.sec-1-container {
    position: relative;
    background-color: #000000;
    padding: 100px 150px;
}

.sec-1-img-container {
    background: url('./../images/second-scroll.jpg') no-repeat center center;
    background-size: cover;
    padding: 70px;
    height: 400px;
}

/* .sec-1-img-container::after { */
.waterMark::after {
    content: "Actual image";
    position: relative;
    color: #ffffff;
    bottom: -40px;
    right: 0;
    font-size: 8px;
    text-shadow: 0px 0px 15px #000;
    z-index: 9;
    opacity: .5;
}

.sec-1-heading {
    color: #fff;
}

.sec-1-paragraph {
    color: #fff;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 200;
    white-space: pre-line;
}

/* Responsive */
@media (max-width: 768px) {
    .sec-1-container {
        padding: 50px 30px;
    }

    .sec-1-img-container {
        padding: 20px;
        background-position: 35%;
    }

    .sec-1-overlay {
        padding: 20px;
    }

    .sec-1-heading {
        font-size: 18px;
    }

    .sec-1-paragraph {
        font-size: 14px;
    }

    .sec-1-top-left-lines {
        top: 30px;
        left: 50px;
        height: 40px;
    }

    .sec-1-bottom-right-lines {
        bottom: -20px;
        right: 30px;
        height: 40px;
    }
}

.sec-2-section {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('./../images/third-section-img.png') no-repeat center center;
    background-size: cover;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

.sec-2-overlay {
    max-width: 900px;
    padding: 0px 30px;
    z-index: 2;
}

.sec-2-heading {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.sec-2-paragraph {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 200;
}

/* Decorative Lines (top-right corner) */
.sec-2-top-right-lines {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}

.sec-2-line {
    width: 3px;
    height: 30px;
    background-color: #d9cdc2;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .sec-2-overlay {
        padding: 20px 15px;
    }

    .sec-2-heading {
        font-size: 18px;
    }
}

.sec-3-section {
    /* background-color: #f3f0ef; */
    background-image: url('./../images/section-3-bg.png');
    padding: 60px 20px;
    color: #000;
}

.sec-3-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sec-3-heading {
    display: flex;
    /* justify-content: space-evenly; */
    margin-bottom: 50px;
    align-items: center;
    padding: 20px 100px;
}

.sec-3-heading h3 {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 10px;
    line-height: 1;
}

.sec-3-heading p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-left: 60px;
}

.sec-3-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.sec-3-card {
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    position: relative;
}

.sec-3-line-top {
    width: 16px;
    height: 50px;
    margin: 0 auto 20px auto;
    background: repeating-linear-gradient(to bottom,
            #9b7464,
            #9b7464 4px,
            transparent 4px,
            transparent 8px);
}

.sec-3-image-wrapper {
    position: relative;
    overflow: hidden;
}

.sec-3-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.sec-3-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Name tag always visible */
.sec-3-name-tag {
    /* background-image: url('./../images/section-4-bg.jpg'); */
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 60%;
    background: linear-gradient(90deg, #c98b6a, #94614e);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-weight: 200;
    font-size: 20px;
    z-index: 2;
    text-transform: uppercase;
}

/* Overlay hidden until hover */
.sec-3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    /* above the name tag */
    background: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.sec-3-overlay-dark {
    background: rgba(0, 0, 0, 0.75);
}

.sec-3-image-wrapper:hover .sec-3-overlay {
    opacity: 1;
}

.sec-3-description {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sec-3-role {
    font-size: 14px;
    color: #f4f4f4;
}

/* Decorative lines */
.sec-3-top-left-lines {
    position: absolute;
    display: flex;
    z-index: 3;
    top: -15px;
    left: 70px;
    opacity: 1;
    height: 30px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .sec-3-profiles {
        flex-direction: column;
        align-items: center;
    }

    .sec-3-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .sec-3-section {
        padding: 0 20px 30px;
    }

    .sec-3-heading {
        align-items: start;
        padding: 0;
        padding-top: 20px;
        flex-direction: column;
    }

    .sec-3-heading h3 {
        margin-bottom: 20px;
    }

    .sec-3-heading p {
        margin-left: 0;
    }

    .sec-3-card {
        margin-bottom: 15px;
    }
}

.sec-4-wrapper {
    /* background: linear-gradient(90deg, #945b3d, #d59a7b); */
    background-image: url('./../images/section-4-bg.jpg');
    padding: 100px 200px;
    color: white;
}

.sec-4-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.sec-4-left {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.sec-4-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.sec-4-right {
    flex: 2;
    min-width: 300px;
    padding-left: 50px;
}

.sec-4-title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

.sec-4-description {
    font-size: 16px;
    line-height: 1.4;
    color: #f3f3f3;
    opacity: 0.8;
    font-weight: 200;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sec-4-wrapper {
        padding: 30px;
    }

    .sec-4-container {
        flex-direction: column;
        text-align: center;
    }

    .sec-4-right {
        padding: 20px 0 0;
    }

    .sec-4-title {
        font-size: 18px;
    }

    .sec-4-description {
        font-size: 12px;
    }
}

.sec-5-wrapper {
    background: #000000;
    color: #fff;
    padding: 60px 20px 20px;
}

.sec-5-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.sec-5-heading {
    font-size: 30px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 200;
}

.sec-5-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sec-5-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.sec-5-field {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sec-5-field label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #ccc;
}

.sec-5-field input,
.sec-5-field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ba7e5e;
    padding: 10px 5px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.sec-5-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 12px;
}

.sec-5-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sec-5-submit {
    background-color: #ba7e5e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.sec-5-submit:hover {
    background-color: #a56447;
}

@media screen and (max-width: 768px) {
    .sec-5-wrapper {
        padding: 30px 20px 20px;
    }

    .sec-5-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sec-5-heading {
        margin-bottom: 20px;
    }

    .sec-5-field {
        width: 100%;
        max-width: 400px;
    }
}

.sec-6-wrapper {
    width: 100%;
    height: 138px;
    margin-top: -1px;
}

.sec-6-wrapper video {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .sec-6-wrapper {
        height: 37px;
    }
}


.footer-wrapper {
    background-color: #202020;
    color: #ccc;
    padding: 60px 130px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-top-nav {
    display: flex;
    gap: 30px;
    /* justify-content: center; */
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-top-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}

.footer-disclaimer {
    /* max-width: 1000px; */
    margin: 0 0 10px 0;
    color: #c9c4c4;
    font-size: 12px;
    font-weight: 100;
    line-height: 1.2;
    text-align: left;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 30px; */
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-c1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 370px;
}

.footer-c1 .footer-logo {
    width: 200px;
}

.footer-c1 p {
    font-size: 10px;
    text-align: left;
}

.footer-c2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    padding: 0 100px;
    width: 500px;
}

.footer-c2 .footer-logo {
    width: 90px;
}

.footer-c2 p {
    font-size: 10px;
    text-align: left;
}

.footer-logo {
    /* max-width: 160px; */
    /* margin-bottom: 10px; */
}

.footer-qr {
    max-width: 70px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 8px;
    color: #999;
    /* margin-left: 10px; */
    font-weight: 300;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
}

.footer-links .pp {
    /* border-left: 1px solid #999; */
    padding-left: 10px;
}

.footer-links img {
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 768px) {
    .footer-wrapper {
        padding: 20px;
        padding-bottom: 95px;
    }

    .footer-main {
        /* flex-direction: column; */
        gap: 10px;
    }

    .footer-c1 {
        width: 40%;
        flex-direction: column;
        height: 100px;
        gap: 10px;
    }

    .footer-c1 .footer-logo {
        width: 130px;
    }

    .footer-c1 p {
        font-size: 9px;
        text-align: center;
        width: 120px;
    }

    .footer-c2 {
        width: 30%;
        flex-direction: column;
        height: 150px;
        padding: 0;
        border: none;
        gap: 10px;
    }

    .footer-c2 p {
        text-align: center;
        font-size: 9px;
        width: 100px;
    }

    .footer-c2 .footer-logo {
        width: 90px;
    }

    .footer-qr{
        width: 35px;
    }

    .footer-bottom {
        text-align: center;
        gap: 10px;
    }

    .footer-bottom p {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
    }

    .footer-top-nav {
        justify-content: center;
    }

    .footer-disclaimer {
        text-align: center;
    }
}

/* Overview Page Start */
.overview-section1-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #3a3737;
}

.overview-section1-left,
.overview-section1-right {
    width: 50%;
}

.overview-section1-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-section1-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    overflow: visible;
}

.overview-section1-bg-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    /* Ensures it's not clickable */
}

.overview-section2-bg-letter {
    position: absolute;
    top: 45%;
    left: 40%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    /* Ensures it's not clickable */
}

.overview-section1-content {
    position: relative;
    z-index: 1;
}

.overview-section1-content {
    max-width: 700px;
}

.overview-section1-subtitle {
    font-size: 0.9rem;
    color: #d6d6d6;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.overview-section1-divider {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto 20px;
    border: none;
}

.overview-section1-heading {
    font-size: 30px;
    /* color: #fff5dd; */
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 300;
}

.overview-section1-text {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 200;
}

.overview-section1-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background-color: #c68a65;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.overview-section1-button:hover {
    background-color: #b5724f;
}

@media (max-width: 768px) {
    .overview-section1-container {
        flex-direction: column;
        height: auto;
    }

    .overview-section1-left,
    .overview-section1-right {
        width: 100%;
        height: auto;
    }

    .overview-section1-right {
        padding: 30px 20px;
    }

    .overview-section1-heading {
        font-size: 1.5rem;
    }
}

/* location section start */
.overview-connectivity-wrapper {
    background: linear-gradient(to right, #b86c4a, #c68a65);
    color: #fff;
    position: relative;
}

.overview-connectivity-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: linear-gradient(90deg, #c98b6a, #94614e);
}

.overview-connectivity-box {
    flex: 1;
    padding: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-connectivity-box:last-child {
    border-right: none;
}

.overview-connectivity-box h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 200;
    line-height: 1.2;
}

.overview-connectivity-box h3 span {
    font-size: 1rem;
    font-weight: 300;
    margin-left: 2px;
}

.overview-connectivity-box p {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-top: 5px;
    color: #f2f2f2;
}

.overview-connectivity-cta a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.3s ease;
}

.overview-connectivity-cta a:hover {
    opacity: 0.85;
}

.overview-connectivity-arrow {
    margin-left: 8px;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .overview-connectivity-container {
        flex-wrap: wrap;
    }

    .overview-connectivity-box {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .overview-connectivity-box:nth-child(2n) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .overview-connectivity-box:last-child {
        border-bottom: none;
        border-left: none;
    }
}

@media (max-width: 640px) {
    .overview-connectivity-box {
        flex: 1 1 100%;
        border-left: none !important;
        border-right: none !important;
    }

    .overview-connectivity-box:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .overview-connectivity-cta a {
        font-size: 1rem;
        padding: 15px 0;
    }
}

.overview-connectivity-image-section {
    width: 100%;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
}

.overview-connectivity-image-section .map-btn {
    position: absolute;
    text-decoration: none;
    top: 5%;
    right: 6%;
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    background: #fff;
    color: #000;
    font-weight: 400;
    z-index: 10;
    cursor: pointer;
}


.overview-connectivity-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .overview-connectivity-image-section img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
}

/* location section end */

/* Overview Page end */



/* amenities start */

/* Overview Page Start */
.amen-section1-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #be8c6e 0%, #b28167 35%, #a1735d 80%, #916654 100%);
    /* background-color: #3a3737; */
}

.amen-section1-left,
.amen-section1-right {
    width: 100%;
}

.amen-section1-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amen-section1-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    overflow: visible;
}

.amen-section1-bg-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    /* Ensures it's not clickable */
}


.amen-section1-content {
    position: relative;
    z-index: 1;
}

.amen-section1-content {
    max-width: 700px;
}

.amen-section1-content img {
    opacity: 0.8;
    margin: 10px 0;
}

.amen-section1-subtitle {
    font-size: 0.9rem;
    color: #d6d6d6;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.amen-section1-divider {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto 20px;
    border: none;
}

.amen-section1-heading {
    font-size: 30px;
    font-weight: 300;
    /* color: #fff5dd; */
    margin-bottom: 20px;
    line-height: 1.4;
}

.amen-section1-text {
    font-size: 16px;
    color: #f3f3f3;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 200;
}

.amen-section1-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background-color: #c68a65;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.amen-section1-button:hover {
    background-color: #b5724f;
}

@media (max-width: 768px) {
    .amen-section1-container {
        flex-direction: column;
        height: auto;
    }

    .amen-section1-left,
    .amen-section1-right {
        width: 100%;
        height: auto;
    }

    .amen-section1-right {
        padding: 30px 20px;
    }

    .amen-section1-heading {
        font-size: 1.5rem;
    }
}

/* section 2 start */
.amen-pool-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.amen-pool-section::after {
    content: "Actual image";
    position: absolute;
    color: #ffffff;
    bottom: 10px;
    left: 0;
    font-size: 10px;
    padding: 3px 7px;
    text-shadow: 0px 0px 15px #000;
    z-index: 9;
}

.amen-pool-image {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

.amen-pool-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    pointer-events: none;
}

.amen-pool-title {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
    font-family: 'Poppins', 'Georgia', serif;
}

.topLeft {
    position: absolute;
    bottom: 12%;
    left: 10%;
    font-size: 18px;
    width: 330px;
    background-size: cover;
    padding: 15px;
}

.amen-pool-caption {
    font-size: 0.8rem;
    opacity: 0.8;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .amen-pool-overlay {
        padding: 20px;
    }

    .amen-pool-title {
        font-size: 1.8rem;
    }

    .amen-pool-caption {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .amen-pool-title {
        font-size: 1.4rem;
    }
}


/* section 2 end */

/* amenities end */

/* gallery start */

/* Overview Page Start */
.gallery-section1-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #be8c6e 0%, #b28167 35%, #a1735d 80%, #916654 100%);
    /* background-color: #3a3737; */
}

.gallery-section1-left,
.gallery-section1-right {
    width: 100%;
}

.gallery-section1-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-section1-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    overflow: visible;
}

.gallery-section1-bg-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    /* Ensures it's not clickable */
}


.gallery-section1-content {
    position: relative;
    z-index: 1;
}

.gallery-section1-content {
    max-width: 700px;
}

.gallery-section1-content img {
    opacity: 0.8;
    margin: 10px 0;
}

.gallery-section1-subtitle {
    font-size: 0.9rem;
    color: #d6d6d6;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 400;
}

.gallery-section1-divider {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto 20px;
    border: none;
}

.gallery-section1-heading {
    font-size: 30px;
    /* color: #fff5dd; */
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 300;
    text-transform: uppercase;
}

.gallery-section1-text {
    font-size: 16px;
    color: #f3f3f3;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 200;
}

.gallery-section1-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background-color: #c68a65;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.gallery-section1-button:hover {
    background-color: #b5724f;
}

@media (max-width: 768px) {
    .gallery-section1-container {
        flex-direction: column;
        height: auto;
    }

    .gallery-section1-left,
    .gallery-section1-right {
        width: 100%;
        height: auto;
    }

    .gallery-section1-right {
        padding: 30px 20px;
    }

    .gallery-section1-heading {
        font-size: 1.5rem;
    }
}


/* gallery end */
#mapView iframe {
    width: 100%;
    height: 100vh;
    max-height: 500px;
}

/* for 1920  */
@media (min-width: 1441px) and (max-width: 1920px){
    .nav-logo img{
        height: 100px;
    }
    .nav-left a{
        font-size: 1.2rem;
    }
    .slide-content h2{
        font-size: 2rem;
    }
    .slide-content h3{
        font-size: 3.5rem;
    }
    .banner-connectivity-wrapper{
        max-width: 1350px;
    }
}