/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1765882257
Updated: 2025-12-16 10:50:57

*/
/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}




@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montage';
    src: url('assets/montage/Montage.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


/*new sub menu css*/
/* --- YOUR EDITED CSS --- */

/* 1. Set the parent LI to relative so the sub-menu aligns to it */
#menu-item-222, 
#menu-item-222 .menu-item-has-children {
    position: relative; /* This must be on ALL parents that have children */
}

#menu-item-1298,
#menu-item-1298, .menu-item-has-children {
    position: relative; /* This must be on ALL parents that have children */
}

/* 2. Hide the sub-menu by default and position it absolutely */
#menu-item-222 .sub-menu {
    display: none;        
    position: absolute;   
    top: 100%;           
    left: 0;             
    z-index: 999;        
    background-color: #183054 !important;
    min-width: 200px;
    /*box-shadow: 0px 8px 16px rgba(0,0,0,0.2);*/
    padding: 0;
    list-style: none;
    
}

#menu-item-1298 .sub-menu {
    display: none;        
    position: absolute;   
    top: 100%;           
    left: 0;             
    z-index: 999;        
    background-color: #183054 !important;
    min-width: 200px;
    /*box-shadow: 0px 8px 16px rgba(0,0,0,0.2);*/
    padding: 0;
    list-style: none;
    
}

/* 3. Show the immediate sub-menu when the parent LI is hovered */
/* Using ">" is critical so you don't open all levels at once */
#menu-item-222:hover > .sub-menu,
#menu-item-222 .sub-menu li:hover > .sub-menu {
    display: block;
}


#menu-item-1298:hover > .sub-menu,
#menu-item-1298 .sub-menu li:hover > .sub-menu {
    display: block;
}

/* 4. Ensure sub-menu items are stacked vertically */
#menu-item-222 .sub-menu li {
    display: block;
    width: 100%;
}

#menu-item-1298 .sub-menu li {
    display: block;
    width: 100%;
}

/* --- ADDED FOR NESTED SUB-MENUS --- */

/* 5. Position Level 3 (and deeper) to the RIGHT of the parent */
#menu-item-222 .sub-menu .sub-menu {
    top: 0;              /* Align with the top of the current menu item */
    left: 100%;          /* Push it to the right of the current menu item */
    margin-top: -1px;    /* Optional: fine-tune alignment */
}


#menu-item-1298 .sub-menu .sub-menu {
    top: 0;              /* Align with the top of the current menu item */
    left: 100%;          /* Push it to the right of the current menu item */
    margin-top: -1px;    /* Optional: fine-tune alignment */
}
/* 6. Prevent "Hover Tunnel" issues */
/* This ensures that when you move your mouse to the right, 
   the menu stays open. */
#menu-item-222 .sub-menu li > a {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}


#menu-item-1298 .sub-menu li > a {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

/* Adding a small arrow to show there is another menu */
#menu-item-222 .menu-item-has-children > a::after {
    content: " \25B8"; /* Small right-pointing triangle */
    font-size: 12px;
}

#menu-item-1298 .menu-item-has-children > a::after {
    content: " \25B8"; /* Small right-pointing triangle */
    font-size: 12px;
}


@media (max-width: 500px) {
    #menu-item-222 .sub-menu li > a{
    font-size: 0.8rem;
}

#menu-item-1298 .sub-menu li > a{
    font-size: 0.8rem;
}

}


/* Mobile adjustments for nested menus */
@media (max-width: 500px) {
    /* 1. Reset the "Fly-out" to "Drop-down" */
    #menu-item-222 .sub-menu .sub-menu {
        position: static;    /* This makes it flow naturally below the parent */
        width: 100%;        /* Take full width of parent */
        box-shadow: none;   /* Remove shadow to keep it clean */
        padding-left: 15px; /* Indent the sub-menu so it looks nested */
        background-color: #11223d !important; /* Slightly darker shade for contrast */
    }
    
    #menu-item-1298 .sub-menu .sub-menu {
        position: static;    /* This makes it flow naturally below the parent */
        width: 100%;        /* Take full width of parent */
        box-shadow: none;   /* Remove shadow to keep it clean */
        padding-left: 15px; /* Indent the sub-menu so it looks nested */
        background-color: #11223d !important; /* Slightly darker shade for contrast */
    }

    /* 2. Optional: Adjust arrow rotation for mobile */
    #menu-item-222 .menu-item-has-children > a::after {
        content: " \25BE"; /* Changes right-arrow to down-arrow on mobile */
    }
    
    
    #menu-item-1298 .menu-item-has-children > a::after {
        content: " \25BE"; /* Changes right-arrow to down-arrow on mobile */
    }

    /* 3. Ensure the parent container doesn't hide the content */
    #menu-item-222 .sub-menu {
        position: relative; /* Change from absolute if needed for long lists */
        min-width: 100%;
    }
}


/*new sub menue css*/

.montage-font {
    font-family: 'Montage', sans-serif;
}


.mini-box-number{
    font-size: 1.362rem;
    font-weight: 400;
    font-family: 'Albert Sans', Arial, sans-serif;
    color: #081B38;
}

.mini-box-heading{
    font-size: 1.089rem;
        font-weight: 300;
        font-family: 'Albert Sans', Arial, sans-serif;
        color: #081B38;
}

.mini-box-text{
    font-size: 1.089rem;
        font-weight: 600;
        /*font-family: 'Albert Sans', Arial, sans-serif;*/
        color: #081B38;
}

.home-worth-heading-section{
    background-color: #fff;
}


 /* Learn More Button Styles */
 .btn-view-all {
     background: transparent !important;
     border: 1px solid #fff !important;
     border-radius: 0 !important;
     color: #081B38 !important;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-size: 1.237rem;
     padding: 0.7rem 1.2rem 0.8rem 1.2rem;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: background 0.2s, color 0.2s;
 }





 .btn-view-all:hover,
 .btn-view-all:focus {
     /* background: #001f4d !important; */
     /* color: #fff !important; */
 }

 .luxery-section-main-heading-img{
/* margin-left: 24%; */
 }


@media (max-width: 991px) {
    /* Center FAQ section heading and arrow on tablet */
    .faq-right .luxery-section-main-heading-img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .faq-right .faq-main {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .luxery-section-main-heading-img{
        /* margin-left: 0%; */
     }
     
    
     
     .faq-right .accordion-button {
    padding: 1rem 1.5rem !important;
}

    /* Center FAQ section heading and arrow on mobile */
    .faq-right .luxery-section-main-heading-img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .faq-right .faq-main {
        text-align: center !important;
        font-size: 2.5rem !important;
    }
 }
 

 .hotel-slider-wrapper{
    background-color: #fff;
 }



 /* new css */
@font-face {
    font-family: 'El-Guna';
    src: url('media/montage-cinematic-logo-luxury-font-2024-11-14-19-29-15-utc/Montage.otf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'El-Guna';
    src: url('media/montage-cinematic-logo-luxury-font-2024-11-14-19-29-15-utc/Montage.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'El-Guna';
    src: url('media/montage-cinematic-logo-luxury-font-2024-11-14-19-29-15-utc/Montage.woff') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'El-Guna';
    src: url('media/montage-cinematic-logo-luxury-font-2024-11-14-19-29-15-utc/Montage.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
}



/* Enhanced Glassmorphism Navbar - Crystal Clear Glass Effect */
.navbar {

   
}


a {
    color: #fff !important;
}


/* Add subtle gradient overlay for depth */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(180deg,*/
    /*        rgba(255, 255, 255, 0.12) 0%,*/
    /*        rgba(255, 255, 255, 0.02) 100%);*/
    /*pointer-events: none;*/
    z-index: -1;
}

.video-bg-section {
    position: relative;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
}

.video-bg-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.video-bg-section .center-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.text-shadow {
    text-shadow: 2px 2px 16px #000;
}



.navbar-nav .nav-link {
    color: #fff !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 0.891rem;
    position: relative;
    transition: color 0.2s;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0rem !important;
}

.navbar-nav .nav-link.current-menu-item,
.navbar-nav .nav-link.clicked {
    color: #fff !important;
}

ul{
    list-style: none;
    padding-left: 0;
} 

.current-menu-item a{
    border-bottom: 2px solid #fff;
}

footer .current-menu-item {
    border-bottom: none;
}


.btn-login-navbar {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 0.891rem;
    padding: 0.5rem 1.2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(255, 255, 255, 0.2) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-login-navbar:hover,
.btn-login-navbar:focus {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 255, 255, 0.3) inset;
}

/* Enhanced navbar brand with glass effect */
.navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navbar links with enhanced visibility */
.navbar-nav .nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enhanced mobile navbar toggler */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Mobile navbar collapse with enhanced glass */
@media (max-width: 991px) {
    .navbar-collapse {
        /*background: rgba(255, 255, 255, 0.12) !important;*/
        /*backdrop-filter: blur(25px) saturate(180%);*/
        /*-webkit-backdrop-filter: blur(25px) saturate(180%);*/
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1rem;
        /*border: 1px solid rgba(255, 255, 255, 0.2);*/
        /*box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2),*/
        /*    0 2px 8px 0 rgba(255, 255, 255, 0.15) inset;*/
    }
}

.sea-here-text {
    white-space: nowrap;
    font-size: 4.948rem;
}

.rotating-center-text {
    min-width: 320px;
    font-size: 4.948rem;
    text-align: center;
}

/* Counter Section Styles */
.counter-section {
    position: relative;
    /*min-height: 600px;*/
    background: url('images/counter-bg.webp') center center/cover no-repeat;
}

.counter-box {
    /* Centering the content inside counter boxes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.counter-section-about {
    font-size: 0.866rem;
    color: #ffffff;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-weight: 500;
}

.luxery-section-about {
    font-size: 0.866rem;
    color: #081B38;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-weight: 500;
}

.counter-section-main-heading {
    font-size: 3.711rem;
    color: #ffffff;
    font-weight: 500;

}

.luxery-section-main-heading {
    font-size: 3.711rem;
    color: #081B38;
    font-weight: 500;
}


.counter-section-heading-discription {
    font-size: 1.286rem;
    color: #ffffff;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-weight: 500;
}

/* Learn More Button Styles */
.btn-learn-more {
    background: transparent !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1.237rem;
    padding: 0.7rem 1.2rem 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, color 0.2s;
}





.btn-learn-more:hover,
.btn-learn-more:focus {
    background: #001f4d !important;
    color: #fff !important;
}

/* Endless Slider Styles */
.endless-slider-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    background: transparent;
    /* padding: 1.5rem 0; */
    position: relative;
}

.endless-slider-track {
    display: flex;
    width: fit-content;
    animation: endless-scroll 100s linear infinite;
}

.endless-slider-track img {
    height: 80%;
    display: inline-block;
    margin: 0;
    /* Remove gap between images */
}

@keyframes endless-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sea-here-text {
        font-size: 3rem;
    }

    .rotating-center-text {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .counter-section {
        padding: 3rem 1rem;
    }
}


@media (max-width: 500px) {
    
    .display-4 {
        font-size: 1.5rem !important;
    }
    
}
/* New styles for hotels and resorts section */
.mini-box {
    background: transparent;
    border-radius: 0;
    border-top: 2px solid #fff;
    min-width: 0;
    position: relative;
    overflow: visible;
}

.mini-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: #01729E;
    z-index: 10;
    transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.mini-box:hover::before {
    width: 100%;
}

.mini-box:hover {
    border-top-color: #fff;
}

/* Responsive: stack boxes vertically on tablet/mobile */
@media (max-width: 991px) {
    .row.g-4>.col-12.d-flex.flex-row.gap-4 {
        flex-direction: column !important;
        gap: 1.2rem !important;
    }

    .row.g-4>.col-12.d-flex.flex-row.gap-4 .mini-box {
        max-width: 100% !important;
        flex: 1 1 100%;
    }
}

/* Make second row boxes same width and centered as first row */
.row.g-4>.col-12.d-flex.flex-row.gap-4 {
    justify-content: center;
}

.row.g-4>.col-12.d-flex.flex-row.gap-4 .mini-box {
    min-width: 0;
    flex: 1 1 0;
    max-width: 33.3333%;
}

/* For second row with only 2 boxes, center them and keep same width */
.row.g-4>.col-12.d-flex.flex-row.gap-4:nth-child(2) .mini-box {
    max-width: 33.3333%;
}

.hotel-slider-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-slider-content {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    /* box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13); */
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 420px;
    margin: auto;
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hotel-slider-btn {
    cursor: pointer;
    outline: none;
}

.hotel-slider-arrow-img {
    max-width: 180px;
    width: 100%;
    margin-bottom: 1rem;
}

.hotel-slider-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #001f4d;
    margin-bottom: 1.2rem;
    font-family: 'Albert Sans', Arial, sans-serif;
}

.hotel-slider-hotel-img {
    width: 100%;
    max-width: 320px;
    /* border-radius: 12px; */
    margin-bottom: 1.2rem;
}

.hotel-slider-desc {
    color: #001f4d;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.hotel-slider-click {
    color: #01729E;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-top: 1px solid #01729E;
    padding-top: 0.7rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.hotel-slider-click:hover {
    color: #fff;
    background: #01729E;
    border-radius: 4px;
    padding: 0.7rem 1rem 0.7rem 1rem;
}

@media (max-width: 991px) {
    .hotel-slider-section {
        min-height: 80vh;
    }

    .hotel-slider-content {
        padding: 1.5rem 0.7rem;
        min-height: 320px;
        max-width: 98vw;
    }

    .hotel-slider-btn {
        left: 0 !important;
        right: 0 !important;
        height: 32px !important;
    }
}


.hero-about {
    font-size: 1rem;
    font-weight: 500;
    color: #1D4178;
    margin-top: 80%;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.688rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'El-Guna', sans-serif;
}

.hero-content {
    font-size: 1.425rem;
    font-weight: 400;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 56.25rem;
}

.hero-count h1 {
    font-family: "Montaga", serif;
    font-size: 4.688rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hero-count .col:hover h1,
.hero-count .col:hover p {
    color: #1D4178;
    transition: color 0.3s ease;
}


.hero-count p {
    font-size: 1.225rem;
    font-weight: 400;
    color: #fff;
}

.video-container video {
    object-fit: cover;
}

.overlay-image {
    background: url("media/images/gradient background-2.png") center center / cover no-repeat;
    /* opacity: 0.9;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1; */
}

.learn-more-button {
    font-size: 1.363rem;
    font-weight: 400;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    margin-top: 1.5rem;
}

.learn-more-button:hover {
    background-color: #1D4178;
    border: 1px solid #1D4178;

    transition: background-color 0.3s ease, color 0.3s ease;
}



.image-strip-wrapper {
    overflow: hidden;
    width: 100%;
}

.image-strip {
    display: flex;
    animation: scrollStrip 20s linear infinite;
}

.image-strip img {
    height: 16.313rem;
    width: 20.625rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: none;
}

@keyframes scrollStrip {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* Half because we repeated the images */
    }
}

/* ===== Banner Section ===== */
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.banner-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.banner:hover .banner-inner img {
    transform: scale(1.2);
}

.banner-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.146rem;
    font-weight: 400;
    text-align: center;
    font-family: "El-Guna", sans-serif;
    z-index: 2;
}


.booking-bar-wrapper {
    position: relative;
}

.booking-bar {
    position: absolute;
    top: 335%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 0.6rem;

    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    /* reduced width */
    height: 85px;
}

.date {
    border: none;
    padding: 0.5rem;
    width: 100%;
    color: white;
    background-color: black;

}


.reserve-btn {
    background-color: #8b4513;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
}

.reserve-btn:hover {
    background-color: #D2671C;
}

.things-to-do {
    background: linear-gradient(to bottom, rgba(148, 195, 217, 1) 0%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    padding: 8rem;
}

.things-to-do-hr {
    border: 1px solid #fff;
    margin: 1rem 0;
    width: 308px;
}

.things {
    font-size: 1.094rem;
    font-weight: 400;
    color: #183054;
    margin-bottom: 1rem;
}

.things-title {
    font-family: "El-Guna", sans-serif;
    font-size: 4.688rem;
    font-weight: 400;
}


.things-image {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.home-oage-map-img{
    margin-top: 0%;
}



.circle-arrow {
    position: absolute;
    top: -100px;
    /* 👈 moves it up */
    left: 50%;
    /* center horizontally */
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #E2E2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}




.thing-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding: 3rem;
    /* More space inside */
    border-radius: 15px;
    /* Rounded corners */
    height: 100%;
    transition: transform 0.3s ease;


}


.line-container {
    width: 350px;
    /* Narrower line */
    height: 1.5px;
    background: #DDA14A;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    transition: width 0.5s ease;
    transform-origin: right;
    /* Shrink from the right side */
}

.line-fill {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background-color: #f77f00;
    transition: all 0.3s ease;
}

.thing-item:hover .line-fill {

    width: 100%;
    transition: width 0.5s ease;
    transform-origin: left;
    /* Expand from the left */
}

.thing-item .line-fill {
    transition: width 0.5s ease 0.2s;
    /* Add delay when shrinking */
    transform-origin: right;
}

/* Content Alignment */
.content-box {
    padding-left: 0;
    text-align: left;
}

.ai-feature {
    margin-right: -1rem;
    text-align: left;
}


.things-row {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    width: 1800px;
    margin-left: -9rem;

}

.powered-feature {
    width: 1500px;
    margin-left: -6rem;

}

.thing-number {
    font-size: 1.72rem;
    font-weight: 400;
    color: #183054;
    margin-top: 1rem;
}

.thing-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    color: #183054;
    margin-bottom: 0;
}

.thing-title {
    font-weight: 400;
    font-size: 3.125rem;
    color: #183054;
    font-family: "El-Guna", sans-serif;
    margin-top: 5px;
}






.btn-design {
    background-color: white;
    color: black;
    border-color: transparent;
    font-size: 1.106rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    /* Stack icon above text */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    gap: 6px;
    padding: 0.75rem 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.btn-design.active {
    background-color: #f6d1bc;
    color: black;
    border-color: #f6d1bc;

}

.tick-icon {
    width: 18px;
    height: 18px;
    display: none;
}

.btn-design.active .tick-icon {
    display: inline-block;
    border-color: #f6d1bc;


}

.category-content-box {
    transition: background-color 0.3s ease;
}


.icon-img {
    background-color: #f5f5f5;
    width: 60px;
    height: 50px;
    border-radius: 30%;
}

.active-icon {
    background-color: #183054 !important;

}

.power {
    padding: 2.7rem;

}

.info-box {
    width: 100%;
    padding: 1rem;
    align-items: center;
    cursor: pointer;
}


.booking-item input {
    background-color: #183054;
    color: white;
}

.booking-item input::placeholder {
    color: white !important;
    opacity: 1;
}


.feature-function-box {
    margin-left: 1rem;
    text-align: left;
    width: 100%;
}

.power-title {
    font-size: 2.325rem;
    font-weight: 400;
    color: #183054;
    font-family: "El-Guna", sans-serif;

}

.power-paragarph {
    font-size: 1.275rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 1rem;
}

.feature {
    font-size: 1.094rem;
    font-weight: 400;
    color: #183054;
}

.feature-title {
    font-size: 4.688rem;
    font-weight: 400;
    color: #183054;
    font-family: "El-Guna", sans-serif;
}

.feature-function {
    font-size: 1.325rem;
    font-weight: 500;
    color: black;
}

.feature-detail {
    font-size: 1.125rem;
    font-weight: 300;
    color: black;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover{
    background: transparent;
}



.view {
    font-size: 4.688rem;
    font-weight: 400;
    color: #183054;
    font-family: "El-Guna", sans-serif;
}

.carousel-icon-wrapper {
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-icon-wrapper:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel-icon-wrapper img {
    width: 100px;
    height: 100px;
}

/* Upcoming Projects Carousel Section */
.view-hh .carousel-item {
    min-height: 110vh;
    position: relative;
}

.view-hh .carousel-item > img.d-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 1.831rem;
    font-weight: 400;
    color: black;
font-family: 'Montage', sans-serif;
}

.text-main-subheading{
    font-family: 'Albert Sans', Arial, sans-serif;
     font-size: 0.989rem;
}

.card-text {
    font-size: 1.089rem;
    font-weight: 300;
    color: black;
    margin-top: 1.5rem;
    font-family: 'Albert Sans', Arial, sans-serif;

}

/* Carousel Section Responsive Styles */
@media (max-width: 1400px) {
    .view-hh .card {
        width: 30rem !important;
        height: 38rem !important;
    }

    .carousel-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .carousel-icon-wrapper img {
        width: 80px;
        height: 80px;
    }

    .card-title {
        font-size: 2rem;
    }

    .text-main-subheading {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .view-hh .card {
        width: 26rem !important;
        height: 35rem !important;
        padding: 1rem !important;
    }

    .carousel-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .carousel-icon-wrapper img {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .text-main-subheading {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .view-hh .card img[alt="Counter Section"] {
        max-width: 140px !important;
        margin: 1.5rem auto !important;
    }
}

@media (max-width: 991px) {

    .view-hh .carousel-item {
        min-height: 100vh;
    }

    .view-hh .card {
        width: 22rem !important;
        height: 32rem !important;
        padding: 0.8rem !important;
    }

    .carousel-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .carousel-icon-wrapper img {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .text-main-subheading {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }

    .view-hh .card img[alt="Counter Section"] {
        max-width: 120px !important;
        margin: 1.2rem auto !important;
    }

    .view-hh .card .card-img-top {
        width: 85% !important;
        margin-top: 0.8rem !important;
    }
}

@media (max-width: 768px) {

    .view-hh .carousel-item {
        min-height: 100vh;
    }

    .view-hh .card {
        width: 85vw !important;
        max-width: 24rem !important;
        height: auto !important;
        max-height: 90vh !important;
        padding: 0.5rem !important;
        overflow-y: auto;
    }

    .carousel-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .carousel-icon-wrapper img {
        width: 40px;
        height: 40px;
    }

    .card-title {
        font-size: 1.3rem !important;
    }

    .text-main-subheading {
        font-size: 0.9rem !important;
    }

    .card-text {
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }

    .view-hh .card img[alt="Counter Section"] {
        max-width: 80px !important;
        margin: 0.6rem auto !important;
    }

    .view-hh .card .card-img-top {
        width: 70% !important;
        margin-top: 0.5rem !important;
    }

    .view-hh .card .card-body {
        padding: 0.5rem !important;
    }

    .faq-view-all-btn {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {

    .view-hh .carousel-item {
        min-height: 100vh;
    }
    
   

    .view-hh .card {
        width: 90vw !important;
        max-width: 20rem !important;
        height: auto !important;
        max-height: 88vh !important;
        padding: 0.4rem !important;
        overflow-y: auto;
    }

    .carousel-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .carousel-icon-wrapper img {
        width: 30px;
        height: 30px;
    }

    .card-title {
        font-size: 1.15rem !important;
    }

    .text-main-subheading {
        font-size: 0.85rem !important;
    }

    .card-text {
        font-size: 0.72rem !important;
        margin-top: 0.4rem !important;
    }

    .view-hh .card img[alt="Counter Section"] {
        max-width: 70px !important;
        margin: 0.5rem auto !important;
    }

    .view-hh .card .card-img-top {
        width: 68% !important;
        margin-top: 0.4rem !important;
    }

    .view-hh .card .card-body {
        padding: 0.4rem !important;
    }

    .faq-view-all-btn {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.72rem !important;
    }

    .faq-btn-arrow {
        width: 16px !important;
    }
}

@media (max-width: 400px) {

    .view-hh .card {
        width: 92vw !important;
        max-width: 20rem !important;
        height: auto !important;
        padding: 0.5rem !important;
    }

    .carousel-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .carousel-icon-wrapper img {
        width: 25px;
        height: 25px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .text-main-subheading {
        font-size: 0.85rem;
    }

    .card-text {
        font-size: 0.7rem;
        margin-top: 0.4rem;
    }

    .view-hh .card img[alt="Counter Section"] {
        max-width: 70px !important;
        margin: 0.6rem auto !important;
    }

    .view-hh .card .card-img-top {
        width: 70% !important;
        margin-top: 0.5rem !important;
    }

    .view-hh .card .card-body {
        padding: 0.4rem !important;
    }

    .faq-view-all-btn {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.7rem !important;
    }

    .faq-btn-arrow {
        width: 14px !important;
    }
}

.reservation-bar {
    background-color: #2f2f2f;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    /* reduced width */
    height: 85px;
    /* margin-top: 5rem;
      margin-bottom:  6rem; */
}

.reservation-bar .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid gray;
    color: white;
}

.booking-bar .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid gray;
    color: white;
}


.reservation-bar .form-control::placeholder {
    color: white;
}

.reserve-btn {
    background-color: #7A370B;
    color: white;
    padding: 1.8rem 1rem;
    border: none;
    width: 200px;
    /* reduced width */
    margin-right: -0.88rem;
    border-radius: 0;

}

.reservation-item {
    display: flex;
    align-items: center;

    margin-right: 2rem;
}

@media (max-width: 768px) {
    .reservation-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .reservation-item {
        margin-bottom: 1rem;
        justify-content: start;
    }

    .reserve-btn {
        width: 100%;
    }
}




.experience-section {
    height: 10rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #9FA9B8 80%, white 100%);

    /* background: #9FA9B8;
background: linear-gradient(90deg, rgba(159, 169, 184, 1) 48%, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 1) 100%); */

}

.experience-image {
    width: 1920px;
    height: 700px;
}

.experience-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #212121;
    color: white;
    text-align: center;
    border-radius: 0.6rem;
}

.experience-btn {
    background-color: #212121;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid #fff;
    margin-top: 1rem;
}




.experience-title {
    font-family: "El-Guna", sans-serif;
}





.faq-title {
    font-size: 1.582rem;
    font-weight: 400;
    color: black;
    text-align: left;
}

.faq-detail {
    font-size: 1rem;
    font-weight: 300;
    color: black;
}


.faq-left-card {
    background-color: #fff;
    padding: 2rem;
    /*border-radius: 10px;*/
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.04);
    /*margin-bottom: 2rem;*/
    align-items: center;
    gap: 1.5rem;
    justify-content: space-around;
}

@media (max-width: 768px) {
    .faq-left-card {
        padding: 1rem;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-left-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

        .rotating-center-text {
            min-width: 100px !important;
        }
}

.faq-left-card p {
    margin: 0;
    color: #555;
    text-align: start;
    font-size: 0.792rem;
}

.faq-heading {
    color: #E35607;
    font-size: 1.094rem;
    text-align: left;
}

.faq-main {
    font-size: 2.77rem;
    font-weight: 400;
    color: black;
    margin-bottom: 1.5rem;
    text-align: left;
}

.faq-left-badge {
    /*background-color: #e1e1e1;*/
    color: #aaa;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: auto;
    border: 1px solid #081B38;
    flex-shrink: 0;
}

.faq-left-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* .faq-title-div-heading{
    margin-left: 10%;

} */

.faq-right-badge {
    /*background-color: #e1e1e1;*/
    color: #aaa;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: 10%;
    border: 1px solid #081B38;
    flex-shrink: 0;
}

.faq-right-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.faq-right .accordion-button {
    color: black;
    border-radius: 5px;
    padding: 2rem 1.5rem;
    font-size: 1.286rem;
    font-family: ALBERT SANS, sans-serif;
    background-color: transparent;
    /* Removed background for default (collapsed) state */
    transition: background-color 0.3s ease;
}

.faq-right .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.faq-right .accordion-button:not(.collapsed) {
    background-color: #081B38 !important;
    /* Apply only when active */
    box-shadow: none;
    border-color: transparent;
    color: white;
}

.faq-right .accordion-button::after {
    background-image: url("images/arrow-down-accordian.webp");
    background-color: transparent;
    /* Remove default bg */
    transform: rotate(0deg);
}

.faq-right .accordion-button:not(.collapsed)::after {
    background-image: url("images/arrow-up-accrodian.webp");
    transform: rotate(0deg);
    /* Use different image when active */
}

.faq-right .accordion-body {
    padding: 1rem 1.5rem;
    color: #333;
    font-size: 0.891rem;
    font-family: ALBERT SANS, sans-serif;
    text-align: left;
}


.faq-divider {
    border-top: 1px solid #ccc;
}

/* FAQ View All Button */
.faq-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #1F1F1F !important;
    border: 1.5px solid #1F1F1F;
    padding: 0.6rem 1.7rem;
    font-size: 1rem;
    font-family: 'Albert Sans', Arial, sans-serif;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}


.faq-view-all-btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #081B38;
    color: #1F1F1F !important;
    border: 1.5px solid #1F1F1F;
    padding: 0.6rem 1.7rem;
    font-size: 1rem;
    font-family: 'Albert Sans', Arial, sans-serif;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    /*border-bottom-right-radius: 22.5px;*/
    /*border-top-right-radius: 22.5px;*/
    /*border-bottom-left-radius: 22.5px;*/
    /*border-top-left-radius: 22.5px;*/
}

.faq-view-all-btn-nav img{
    width: 20px;
    height: 20px;
    /* background: #fff;*/
    /*border-radius: 50%;*/
    /*padding: 5px;*/
}

.faq-view-all-btn-nav:hover{
    background: transparent;
}

.faq-btn-arrow {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
   
}

.faq-view-all-btn:hover {
    background: #183054;
    color: #fff !important;
    text-decoration: none;
    border: none !important;
}

.faq-view-all-btn:hover .faq-btn-arrow {
    filter: brightness(0) invert(1);
    transform: translateX(5px);
}

/* FAQ Reverse Hover Button (Opposite of overlap-box button) */
.faq-reverse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #10213A;
    border: 1.5px solid #fff;
    padding: 0.6rem 1.7rem;
    font-size: 1rem;
    font-family: 'Albert Sans', Arial, sans-serif;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    width: 200px;
}

.faq-reverse-btn-arrow {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0);
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}

.faq-reverse-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}

.faq-reverse-btn:hover .faq-reverse-btn-arrow {
    filter: brightness(0) invert(1);
    transform: translateX(5px);
}


.dream-bar {
    background-color: #2f2f2f;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 700px;
    /* reduced width */
    margin: 0 auto;
    /* ensure horizontal centering */
}

.book-btn {
    background-color: #7A370B;
    color: white;
    padding: 0.75rem 3rem;
    border: none;
    font-weight: bold;
    white-space: nowrap;
    border-radius: 8%;
}

footer {
    background: "black"
}

.footer-subscribe {
    font-family: 'Montage', sans-serif;
    font-size: 1.237rem;
    color: #fff;
    font-weight: 400 !important;
    text-align: left;
}

.footer-subscribe-sub {
    font-family: "Albert Sans", sans-serif;
    font-size: 0.792rem;
    font-weight: 300 !important;
    color: #fff;
    text-align: left;

}

.newsletter-checks{
    font-size: 0.594rem;
    font-weight: 300 !important;
    color: #FFFFFF;
    font-family: "Albert Sans", sans-serif;
}

.footer-bottom{
    display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 1rem 0.8%;
        background-color: transparent;
        color: white;
        gap: 1rem;
      
}

.full-width-line{
border-top: 1px solid #fff;
    margin-bottom: 3%;
}


.newsletter-box input[type="email"] {
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 1rem;
    background: #01729A;
    border: none;
    color: #ffffff;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    font-size: 0.875rem;
    font-family: 'Albert Sans', Arial, sans-serif;
}



.footer-menu-head {
font-family: 'Montage', sans-serif;
    font-size: 0.989rem;
    color: #fff;
    font-weight: 300 !important;
}

.list-unstyled, .footer-list a{
    font-family: "Albert Sans", sans-serif;
    font-size: 0.863rem;
    font-weight: 300 !important;
    color: #FFFFFF !important;
    text-decoration: none;
    line-height: 2;
}

.red-start-text{
    font-family: "Albert Sans", sans-serif;
    font-size: 0.891rem;
    font-weight: 300 !important;
    color: #FFFFFF;
}



/* about page css start */

/* Navbar Glassmorphism Effect */
.navbar {
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.5) 100%) !important;*/
    /*-webkit-backdrop-filter: blur(15px);*/
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.18);*/
    /*box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);*/
    z-index: 1000;
    /*backdrop-filter: blur(3px) saturate(180%);*/
    /*-webkit-backdrop-filter: blur(30px) saturate(180%);*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: 'Albert Sans', Arial, sans-serif;
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar .nav-link {
    color: #fff !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-item a{
    color: #fff !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    padding: 5px 0px;
    /*background: #fff;*/
    /*border-bottom-right-radius: 22.5px;*/
    /*border-top-right-radius: 22.5px;*/
    /*border-bottom-left-radius: 22.5px;*/
    /*border-top-left-radius: 22.5px;*/
}

.current-menu-item  {
    
}



.nav-item a:hover {
    color: #01729A !important;
}




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

.btn-login-navbar {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-login-navbar:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        /*background: rgba(16, 33, 58, 0.95);*/
        /*backdrop-filter: blur(20px);*/
        /*-webkit-backdrop-filter: blur(20px);*/
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1rem;
        /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    }

        .home-oage-map-img{
            margin-top: 0%;
        }
}


@media screen and (min-width: 992px) and (max-width: 1150px) {
  .nav-item a{
      font-size: 0.59rem !important;
  }
  
}



 /* Ensure navbar overlays video and is transparent with glass effect */


 /*.video-bg-section {*/
 /*    position: relative;*/
 /*    height: 100vh;*/
 /*    min-height: 400px;*/
 /*    overflow: hidden;*/
 /*}*/


 

 .text-shadow {
     text-shadow: 2px 2px 16px #000;
 }

 .sea-here-text {
     white-space: nowrap;
     font-size: 3.654rem;
        /* new css */
         /* text-shadow: 0 24px 54px rgba(0, 0, 0, 0.35); */
            /* background-image: url('images/banner-text-bg.png'); */
            background-size: 100% 100%;
            background-repeat: no-repeat;
 }

 .rotating-center-text {
     min-width: 200px;
     font-size: 3.654rem;
     text-align: center;
    /* text-shadow: 0 24px 54px rgba(0, 0, 0, 0.35); */
       /* background-image: url('images/banner-text-bg.png'); */
        background-size: 100% 100%;
        background-repeat: no-repeat;
 }

 /* Counter Section Styles */
 .counter-section {
     position: relative;
     /*min-height: 600px;*/
     background: url('images/counter-bg.webp') center center/cover no-repeat;
 }

 .counter-box {
     /* Centering the content inside counter boxes */
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .counter-section-about {
     font-size: 0.989rem;
     color: #ffffff;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-weight: 500;
 }

 .luxery-section-about {
     font-size: 0.866rem;
     color: #081B38;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-weight: 500;
 }

 .counter-section-main-heading {
     font-size: 2.77rem;
     color: #ffffff;
     font-weight: 500;
     transition: color 0.2s;
 }

 .luxery-section-main-heading {
     font-size: 2.227rem;
     color: #183054;
     font-weight: 500;
 }


 .counter-section-heading-discription {
     font-size: 0.989rem;
     color: #ffffff;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-weight: 500;
     transition: color 0.2s;
 }

 /* Hover effect for counter numbers and bottom text */
 .counter-box:hover .counter-section-main-heading,
 .counter-box:hover .counter-section-heading-discription {
     color: #fff !important;
 }

 /* Learn More Button Styles */
 .btn-learn-more {
     background: transparent !important;
     border: 1px solid #fff !important;
     border-radius: 0 !important;
     color: #fff !important;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-size: 1.237rem;
     padding: 0.7rem 1.2rem 0.8rem 1.2rem;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: background 0.2s, color 0.2s;
 }


 .btn-learn-more:hover,
 .btn-learn-more:focus {
     background: #001f4d !important;
     color: #fff !important;
 }

 /* Endless Slider Styles */
 .endless-slider-wrapper {
     overflow: hidden;
     width: 100%;
     background: transparent;
     /* padding: 1.5rem 0; */
     position: relative;
 }

 .endless-slider-track {
     display: flex;
     width: fit-content;
     animation: endless-scroll 100s linear infinite;
 }

 .endless-slider-track img {
     height: 80%;
     display: inline-block;
     margin: 0;
     /* Remove gap between images */
 }

 @keyframes endless-scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .video-bg-section .center-content > .d-flex {
         flex-direction: column !important;
         text-align: center;
     }

     .sea-here-text {
         font-size: 3rem;
     }

     .rotating-center-text {
         font-size: 3rem;
         line-height: 3.5rem;
     }
     
     .page-id-106 .rotating-center-text {
         font-size: 2.5rem;
         line-height: 3.5rem;
     }

     .display-4 {
         font-size: 2.5rem;
     }

     .lead {
         font-size: 1rem;
         max-width: 100% !important;
     }

     .counter-section {
         padding: 0rem 1rem;
     }

     .values-subtitle {
         margin-left: 0% !important;
     }

     .values-heading-description-wrapper {
         margin-left: 0% !important;
     }

     .values-heading-description-wrapper {
         gap: 1rem !important;
     }

     .journey-timeline-section {
         padding: 30px 0 !important;
     }
 }

 /* New styles for hotels and resorts section */
 .mini-box {
     background: transparent;
     border-radius: 0;
     border-top: 2px solid #fff;
     min-width: 0;
     position: relative;
     overflow: visible;
 }

 .mini-box::before {
     content: "";
     position: absolute;
     top: -2px;
     left: 0;
     height: 2px;
     width: 0;
     background: #01729E;
     z-index: 10;
     transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
     pointer-events: none;
 }

 .mini-box:hover::before {
     width: 100%;
 }

 .mini-box:hover {
     border-top-color: #fff;
 }

 /* Responsive: stack boxes vertically on tablet/mobile */
 @media (max-width: 991px) {
     .row.g-4>.col-12.d-flex.flex-row.gap-4 {
         flex-direction: column !important;
         gap: 1.2rem !important;
     }

     .row.g-4>.col-12.d-flex.flex-row.gap-4 .mini-box {
         max-width: 100% !important;
         flex: 1 1 100%;
     }
 }

 /* Make second row boxes same width and centered as first row */
 .row.g-4>.col-12.d-flex.flex-row.gap-4 {
     justify-content: center;
 }

 .row.g-4>.col-12.d-flex.flex-row.gap-4 .mini-box {
     min-width: 0;
     flex: 1 1 0;
     max-width: 33.3333%;
 }

 /* For second row with only 2 boxes, center them and keep same width */
 .row.g-4>.col-12.d-flex.flex-row.gap-4:nth-child(2) .mini-box {
     max-width: 33.3333%;
 }

 /* Values Section Styles */
 .values-section {
     min-height: 100vh;
     background: rgba(238, 234, 217, 0.39);
 }

 .values-image-wrapper {
     height: 100%;
 }

 .values-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .values-image-overlay {
     position: absolute;
     bottom: 0;
     right: 0;
     padding: 1.5rem;
 }

 .values-image-overlay p {
     color: #ffffff;
     font-size: 0.9rem;
     line-height: 1.4;
     max-width: 200px;
     margin-bottom: 0;
 }

 .values-content {
     padding: 3rem;
 }

 .values-label {
     font-size: 12.073rem;
     color: #a8b899;
     font-weight: 400;
     letter-spacing: 2px;
     margin-bottom: 0;
 }

 .values-subtitle {
     font-size: 4.453rem;
     color: #081B38;
     /* font-family: 'Albert Sans', Arial, sans-serif; */
     margin-bottom: 0;
     margin-left: 11%;
     line-height: 4rem;
 }

 .values-main-heading {
     font-size: 11.757rem;
     color: #081B38;
     font-weight: 500;
     line-height: 1.1;
     margin-bottom: 1rem;
 }

 .values-heading-description-wrapper {
     gap: 2rem !important;
     margin-left: 10%;
 }

 .values-heading-left {
     flex-shrink: 0;
 }

 .values-description {
     max-width: 400px;
     flex: 1;
 }

 .values-description p {
     font-size: 1.106rem;
     color: #081B38;
     line-height: 1.8;
     font-family: 'Albert Sans', Arial, sans-serif;
     font-weight: 500;
     /* max-width: 77%; */
 }

 .values-bottom-content h4 {
     font-size: 2.5rem;
     color: #081B38;
     margin-bottom: 1rem;
 }

 .values-bottom-content p {
     font-size: 0.95rem;
     color: #081B38;
     line-height: 1.7;
     font-family: 'Albert Sans', Arial, sans-serif;
 }

 .values-arrow {
     max-width: 120px;
     width: 100%;
 }

 /* Values Section Responsive - Under 1450px */
 @media (max-width: 1520px) {
     .values-label {
         font-size: 8rem;
     }

     .values-subtitle {
         font-size: 3rem;
         line-height: 3rem;
         margin-left: 8%;
     }

     .values-main-heading {
         font-size: 8rem;
         line-height: 1.1;
     }

     .values-heading-description-wrapper {
         gap: 1.5rem !important;
         margin-left: 8%;
     }

     .values-content {
         padding: 2rem;
     }

     .values-description {
         max-width: 350px;
     }

     .values-description p {
         font-size: 1rem;
         line-height: 1.7;
     }
 }

 @media (max-width: 1200px) {
     .values-label {
         font-size: 6rem;
     }

     .values-subtitle {
         font-size: 2.5rem;
         line-height: 2.5rem;
         margin-left: 5%;
     }

     .values-main-heading {
         font-size: 6rem;
     }

     .values-heading-description-wrapper {
         gap: 1rem !important;
         margin-left: 5%;
     }

     .values-description {
         max-width: 300px;
     }

     .values-description p {
         font-size: 0.95rem;
     }
 }

 /* Center Values Section on Tablet and Mobile */
 @media (max-width: 991px) {
     .values-content {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         text-align: center;
         padding: 3rem 1.5rem;
     }

     .values-label {
         font-size: 5rem;
         text-align: center;
     }

     .values-subtitle {
         font-size: 2rem;
         line-height: 2rem;
         margin-left: 0 !important;
         text-align: center;
     }

     .values-main-heading {
         font-size: 5rem;
         text-align: center;
     }

     .values-heading-description-wrapper {
         flex-direction: column;
         align-items: center;
         gap: 1.5rem !important;
         margin-left: 0 !important;
     }

     .values-heading-left {
         width: 100%;
     }

     .values-description {
         max-width: 100%;
         text-align: center;
     }

     .values-description p {
         font-size: 1rem;
         text-align: center;
     }
 }

 @media (max-width: 768px) {
     .values-label {
         font-size: 3.5rem;
     }

     .values-subtitle {
         font-size: 1.5rem;
         line-height: 1.5rem;
     }

     .values-main-heading {
         font-size: 3.5rem;
     }

     .values-content {
         padding: 2rem 1rem;
     }

     .values-description p {
         font-size: 0.9rem;
     }
 }

 /* Timeline Slider Section Styles */
 .timeline-slider-section {
     background: url('images/slider-background.webp') center center/cover no-repeat;
     padding: 20px 0;
     position: relative;
 }

 .timeline-image-column {
     position: relative;
 }

 .timeline-image-wrapper {
     position: sticky;
     top: 100px;
     height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     max-width: 85%;
 }

 .timeline-image {
     position: absolute;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 0.6s ease-in-out;
 }

 .timeline-image.active {
     opacity: 1;
 }

 .timeline-content-column {
     position: relative;
     padding-left: 120px;
 }

 .timeline-line {
     position: absolute;
     left: 60px;
     top: 0;
     width: 4px;
     height: 90%;
     background: #01729A;
 }

 .timeline-circle {
     position: sticky;
     top: 120px;
     width: 24px;
     height: 24px;
     background: #081B38;
     border-radius: 50%;
     margin-left: -10px;
     z-index: 10;
 }

 .timeline-items-wrapper {
     position: relative;
     padding: 60px 0;
 }

 .timeline-item {
     position: relative;
     /* margin-bottom: 200px; */
     padding-left: 40px;
     min-height: 300px;
 }

 .timeline-item:last-child {
     margin-bottom: 0;
 }

 .timeline-content h3 {
     font-size: 1.979rem;
     color: #183054;
     margin-bottom: 1rem;
     font-weight: 400;
 }

 .timeline-content p {
     font-size: 1.237rem;
     color: #081B38;
     line-height: 1.8;
     font-family: 'Albert Sans', Arial, sans-serif;
     max-width: 500px;
 }

 /* Journey Timeline Section Styles */
 .journey-timeline-section {
     background: #1E3051;
     padding: 30px 0;
     position: relative;
 }

 .journey-small-text {
     font-size: 1.2rem;
     color: #183054;
     font-family: 'Albert Sans', Arial, sans-serif;
     margin-bottom: 1rem;
 }

 .journey-main-heading {
     font-size: 3.5rem;
     color: #081B38;
     font-weight: 500;
     margin-bottom: 2rem;
 }

 .journey-arrow-img {
     max-width: 120px;
     margin-bottom: 2rem;
 }

 .luxery-section-main-heading-img {
     display: block;
     margin-left: auto;
     margin-right: auto;
 }

 .journey-navigation {
     display: flex;
     justify-content: space-between;
     margin-bottom: 3rem;
     padding: 0 10%;
 }

 .journey-nav-btn {
     width: 60px;
     height: 60px;
     border: none;
     background: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .journey-nav-btn:hover {
     background: #f0f0f0;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
 }

 .journey-nav-btn img {
     width: 20px;
     height: 20px;
     object-fit: contain;
 }

 .journey-slider-container {
     overflow: hidden;
     padding: 0 50px;
     margin-bottom: 3rem;
 }

 .journey-slider-wrapper {
     display: flex;
     gap: 30px;
     transition: transform 0.5s ease;
     cursor: grab;
     user-select: none;
 }

 .journey-slider-wrapper:active {
     cursor: grabbing;
 }

 .journey-card {
     min-width: calc(60% - 15px);
     background: #87AEA4;
     /* border-radius: 8px; */
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: row;
 }

 .journey-card-image {
     width: 50%;
     overflow: hidden;
 }

 .journey-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .journey-card-content {
     width: 50%;
     padding: 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .journey-card-content h3 {
     font-size: 6.581rem;
     color: #FFFFFF;
     margin-bottom: 1rem;
 }

 .journey-card-content h4 {
     font-size: 2.474rem;
     color: #FFFFFF;
     margin-bottom: 1.5rem;
 }

 .journey-card-content p {
     font-size: 1.089rem;
     color: #FFFFFF;
     line-height: 1.5;
     font-family: 'Albert Sans', Arial, sans-serif;
 }

 .journey-bottom-timeline {
     position: relative;
     max-width: 90%;
     margin: 0 auto;
     padding: 2rem 0;
 }

 .journey-timeline-line {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     height: 2px;
     background: #D9D9D9;
     transform: translateY(-50%);
 }

 .journey-timeline-years {
     display: flex;
     justify-content: space-between;
     position: relative;
     z-index: 2;
 }

 .journey-year-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .journey-year-text {
     font-size: 1rem;
     color: #D9D9D9;
     font-family: 'Albert Sans', Arial, sans-serif;
     opacity: 0.6;
     transition: opacity 0.3s ease;
     margin-bottom: 4rem;
 }

 .journey-year-circle {
     width: 25px;
     height: 25px;
     background: #D9D9D9;
     border-radius: 50%;
     border: 8px solid #1E3051;
     transition: all 0.3s ease;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 3;
 }

 .journey-year-item.active .journey-year-text {
     opacity: 1;
     font-weight: 600;
 }

 .journey-year-item.active .journey-year-circle {
     background: #fff;
     transform: translate(-50%, -50%) scale(1.5);
 }

 /* Responsive adjustments for Values Section */
 @media (max-width: 991px) {
     .values-label {
         font-size: 3rem;
     }

     .values-main-heading {
         font-size: 3.5rem;
     }

     .values-bottom-content h4 {
         font-size: 2rem;
     }

     .values-heading-description-wrapper {
         flex-direction: column !important;
     }
 }

 @media (max-width: 768px) {
     .values-content {
         padding: 2rem;
     }

     .values-label {
         font-size: 2.5rem;
     }

     .values-main-heading {
         font-size: 2.5rem;
     }

     .values-bottom-content h4 {
         font-size: 1.8rem;
     }

     .values-heading-description-wrapper {
         flex-direction: column !important;
     }

     .timeline-content-column {
         padding-left: 40px;
     }

     .timeline-line {
         left: 15px;
     }



     .timeline-content h3 {
         font-size: 1.8rem;
     }

     .timeline-item {
         margin-bottom: 150px;
         min-height: 300px;
     }
 }

 @media (max-width: 991px) {
     .timeline-slider-section {
         padding: 40px 0;
     }

     .timeline-image-wrapper {
         position: relative;
         top: 0;
         height: 400px;
         margin-bottom: 40px;
         max-width: 100%;
     }

     .timeline-content-column {
         padding-left: 60px;
     }

     .timeline-line {
         display: block;
         left: 20px;
     }

     .timeline-circle {
         display: block;
         top: 20px;
     }



     .timeline-item {
         padding-left: 30px;
         margin-bottom: 60px;
         min-height: auto;
     }

     .timeline-content h3 {
         font-size: 1.8rem;
     }

     .timeline-content p {
         font-size: 1rem;
     }

     .journey-main-heading {
         font-size: 2rem;
     }

     .journey-card {
         min-width: 100%;
         flex-direction: column;
     }

     .journey-card-image,
     .journey-card-content {
         width: 100%;
     }

     .journey-card-content {
         padding: 2rem;
     }

     .journey-card-content h3 {
         font-size: 2rem;
     }

     .journey-card-content h4 {
         font-size: 1.5rem;
     }

     .journey-slider-container {
         padding: 0 20px;
     }

     .journey-bottom-timeline {
         max-width: 95%;
     }

     .journey-year-text {
         font-size: 0.85rem;
     }
 }

 
.awards-section {
     position: relative;
     min-height: 420px;
     padding-top: 4rem;
     padding-bottom: 4rem;
     overflow: hidden;
     background: none;
 }

 .awards-bg {
background: linear-gradient(177deg, rgba(255, 255, 255, 0.5) 0%, rgba(238, 234, 217, 0.5) 51%, rgba(238, 234, 217, 1) 100%);
     opacity: 0.18;
     z-index: 0;
     pointer-events: none;
     min-height: 100%;
     min-width: 100%;
 }

 .awards-heading {
     font-size: 3rem;
     color: #183054;
     font-weight: 400;
     margin-bottom: 3rem;
 }

 .awards-laurel {
     /* width: 70px;
            height: 70px; */
     object-fit: contain;
     margin-bottom: 1rem;
 }

 .awards-title {
     font-size: 1.35rem;
     color: #222;
     margin-bottom: 0.5rem;
 }

 .awards-desc {
     font-size: 1.1rem;
     color: #222;
     line-height: 1.3;
 }

 @media (max-width: 767px) {
     .awards-heading {
         font-size: 2rem;
     }

     .awards-laurel {
         /* width: 100px;
                height: 100px; */
     }

     .awards-title {
         font-size: 1.1rem;
     }

     .awards-desc {
         font-size: 0.95rem;
     }
 }

 /* Our Experts Section */
 .our-experts-section {
     background: #fff;
     padding: 4rem 0;
     overflow-x: hidden;
 }

 .experts-label {
     font-size: 1rem;
     color: #183054;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 0.5rem;
 }

 .experts-heading {
     font-size: 3.5rem;
     color: #183054;
     font-weight: 400;
     margin-bottom: 1.5rem;
 }

 .experts-divider {
     margin-bottom: 3rem;
 }

 .experts-divider img {
     max-width: 180px;
     width: 100%;
     height: auto;
 }

 /* Carousel Container */
 .experts-carousel-container {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     padding: 2rem 0;
     width: 100%;
     max-width: 100vw;
 }

 .experts-images-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     flex-wrap: nowrap;
     overflow: hidden;
     position: relative;
     width: 100%;
 }

 /* Expert Images */
 .expert-image {
     object-fit: 100% 100%;
     transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
     filter: grayscale(100%);
     opacity: 0.6;
     position: relative;
 }

 /* Smallest - Outer Images */
 .expert-img-1,
 .expert-img-5 {
     width: 160px;
     height: 240px;
     opacity: 0.5;
 }

 /* Medium - Second Images */
 .expert-img-2,
 .expert-img-4 {
     width: 220px;
     height: 300px;
     opacity: 0.7;
 }

 /* Largest - Center Image */
 .expert-img-3 {
     width: 340px;
     height: 440px;
     border: 10px solid #bfa46d;
     /* box-shadow: 0 0 0 8px #fff, 0 8px 30px rgba(0, 0, 0, 0.2); */
     filter: none;
     opacity: 1;
     z-index: 5;
 }

 /* Navigation Buttons */
 .expert-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #01729A;
     border: none;
     cursor: pointer;
     z-index: 10;
     padding: 12px;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(1, 114, 154, 0.3);
 }

 .expert-nav-btn:hover {
     transform: translateY(-50%) scale(1.1);
     background: #015a7a;
     box-shadow: 0 6px 16px rgba(1, 114, 154, 0.4);
 }

 .expert-nav-left {
     left: 5%;
 }

 .expert-nav-right {
     right: 5%;
 }

 .expert-nav-btn img {
     width: 24px;
     height: 24px;
     object-fit: contain;
     filter: brightness(0) invert(1);
 }

 /* Expert Details */
 .expert-details {
     margin-top: 3rem;
 }

 .expert-name {
     font-size: 2.5rem;
     color: #183054;
     margin-bottom: 0.25rem;
     font-weight: 400;
     line-height: 1.2;
 }

 .expert-position {
     font-size: 1.1rem;
     color: #183054;
     margin: 0;
     line-height: 1.4;
 }

 /* Swipe Animation - Smooth position swapping */
 .experts-images-wrapper.swiping {
     pointer-events: none;
 }

 .expert-image.animate-shift {
     transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .experts-heading {
         font-size: 2.5rem;
     }

     .expert-img-3 {
         width: 220px !important;
         height: 300px !important;
         border: 8px solid #bfa46d;
     }

     .expert-img-2,
     .expert-img-4 {
         width: 150px !important;
         height: 200px !important;
     }

     .expert-img-1,
     .expert-img-5 {
         width: 100px !important;
         height: 150px !important;
     }

     .expert-nav-btn img {
         width: 28px;
         height: 28px;
     }

     .expert-name {
         font-size: 1.8rem;
     }

     .expert-position {
         font-size: 1rem;
     }

     .experts-images-wrapper {
         gap: 0.75rem;
     }
 }

 @media (max-width: 576px) {
     .experts-heading {
         font-size: 2rem;
     }

     .expert-img-3 {
         width: 160px !important;
         height: 220px !important;
     }

     .expert-img-2,
     .expert-img-4 {
         width: 100px !important;
         height: 140px !important;
     }

     .expert-img-1,
     .expert-img-5 {
         width: 70px !important;
         height: 100px !important;
     }

     .experts-images-wrapper {
         gap: 0.5rem;
     }

     .expert-nav-left {
         left: 10px;
     }

     .expert-nav-right {
         right: 10px;
     }

     .expert-name {
         font-size: 1.5rem;
     }
 }

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('images/contact-banner.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.contact-hero-title {
    font-family: 'El-Guna', sans-serif;
    font-size: 4.688rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.contact-arrow {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: bounce 2s infinite;
    filter: brightness(0) invert(1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 400px;
        height: 70vh;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

.contact-section-title {
    font-family: 'El-Guna', sans-serif;
    font-size: 4.688rem;
    font-weight: 400;
    color: #183054;
    margin-bottom: 1.5rem;
}

.contact-divider-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-divider-arrow {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/* Left Side Content */
.contact-left-content {
    /* padding-right: 2rem; */
}

.contact-left-subtitle {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1.089rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-left-title {
    font-size: 2.77rem;
    font-weight: 400;
    color: #183054;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Form Styling */
.contact-form {
    background-color: transparent;
}

.contact-form .form-label {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1.089rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-input {
    border: none !important;
    border-bottom: 2px solid #999 !important;
    border-radius: 0 !important;
    background-color: transparent;
    padding: 0.75rem 0.5rem !important;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #666;
    transition: border-color 0.3s ease !important;
}

.contact-input:focus {
    border-bottom-color: #183054;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

.contact-input::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.contact-textarea {
    resize: none;
    min-height: 50px !important;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    line-height: 1.2;
    overflow: hidden;
    vertical-align: bottom;
}

/* Select Dropdown Styling */
.contact-input.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px 12px;
    padding-right: 2rem;
}

/* Checkbox Styling */
.contact-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 3px;
    cursor: pointer;
}

.contact-checkbox:checked {
    background-color: #183054;
    border-color: #183054;
}

.contact-checkbox-label {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-left: 0.5rem;
    cursor: pointer;
}

/* Button Styling */
.contact-submit-btn {
    background-color: #0B7C9E;
    color: #fff;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.625rem 1.5rem !important;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}



.contact-submit-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-whatsapp-btn {
    background-color: #183054;
    color: #fff;
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-whatsapp-btn:hover {
    background-color: #0f1f38;
    color: #fff;
}

.contact-whatsapp-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Responsive Design for Contact Form */
@media (max-width: 991px) {
    .contact-section-title {
        font-size: 3.5rem;
    }

    .contact-left-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .contact-left-content {
        padding-right: 0;
        text-align: center;
    }

    /* Hide line breaks on tablet and mobile */
    .desktop-br {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-section-title {
        font-size: 2.5rem;
    }

    .contact-left-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .contact-section-title {
        font-size: 2rem;
    }

    .contact-left-title {
        font-size: 1.875rem;
    }

    .contact-divider-arrow {
        width: 60px;
    }

    .contact-submit-btn,
    .contact-whatsapp-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    .contact-form .d-flex.gap-3 {
        gap: 0.5rem !important;
    }
}

/* Locations Section */
.locations-section {
    position: relative;
    padding: 0rem 0 10rem 0;
    background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
    overflow: hidden;
}

.locations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/locations-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.locations-section .container {
    position: relative;
    z-index: 1;
}

.locations-section-title {
    font-family: 'El-Guna', sans-serif;
    font-size: 4.688rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
}

.locations-divider-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.locations-divider-arrow {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/* Accordion Styling */
.locations-accordion {
    background-color: transparent;
}

.location-item {
    background-color: transparent;
    margin-bottom: 1rem;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.location-header:hover {
    background-color: #fff;
}

.location-item.active .location-header {
    background-color: #fff;
}

.location-title {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1.484rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.location-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
}

.location-toggle-icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
    /*filter: brightness(0) invert(1);*/
}

.location-icon .location-toggle-icon.plus-icon {
    opacity: 1;
}

.location-icon .location-toggle-icon.minus-icon {
    opacity: 0;
    position: absolute;
}

.location-item.active .location-icon .location-toggle-icon.plus-icon {
    opacity: 0;
}

.location-item.active .location-icon .location-toggle-icon.minus-icon {
    opacity: 1;
}

.location-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    background-color: transparent;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.location-item.active .location-content {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem 2rem;
    background-color: transparent;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.location-pin-icon {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    filter: brightness(0) invert(1);
}

.location-address p {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 0.989rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.number-details{
    font-size: 0.989rem;
}

.location-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-phone-icon {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    filter: brightness(0) invert(1);
}

.location-contact p {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.location-directions {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.location-directions:hover {
    opacity: 0.8;
    color: #fff;
}

.directions-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.location-directions:hover .directions-arrow {
    transform: translateX(5px);
}

/* Map Image Styling */
.locations-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-map-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.location-map-image.active {
    opacity: 1;
}

/* Responsive Design for Locations */
@media (max-width: 991px) {
    .locations-section-title {
        font-size: 3.5rem;
    }

    .locations-map-wrapper {
        height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 3rem 0;
    }

    .locations-section-title {
        font-size: 2.5rem;
    }

    .location-title {
        font-size: 1.25rem;
    }

    .location-header {
        padding: 1.25rem 1.5rem;
    }

    .location-item.active .location-content {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }

    .locations-map-wrapper {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .locations-section-title {
        font-size: 2rem;
    }

    .locations-divider-arrow {
        width: 60px;
    }

    .location-title {
        font-size: 1.125rem;
    }

    .location-header {
        padding: 1rem 1.25rem;
    }
}

/* Overlapping Boxes Section */
.overlap-boxes-section {
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Overlap effect, adjust as needed */
    margin-bottom: 40px;
}

.overlap-boxes-container {
    display: flex;
    justify-content: center;
}

.overlap-box {
    background: #10213A;
    color: #fff;
    /* border-radius: 16px; */
    box-shadow: 0 8px 32px rgba(16, 33, 58, 0.15);
    padding: 2.5rem 2rem 2rem 2rem; /* Increased padding for more space */
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 12px; /* Add horizontal margin between boxes */
    align-items: center;
}

.overlap-box-title {
    font-size: 1.766rem;
    font-weight: 600;
    /* margin-bottom: 1.2rem; */
}

.overlap-box-desc {
    font-size: 0.693rem;
    font-family: 'Albert Sans', Arial, sans-serif;
    /* margin-bottom: 2rem; */
    color: #e0e6ed;
    line-height: 1.7;
}

.overlap-box-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    /* border-radius: 4px; */
    padding: 0.6rem 1.7rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    width: 200px;
}

.overlap-btn-arrow {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.overlap-box-btn:hover .overlap-btn-arrow {
    filter: brightness(0);
    transform: translateX(5px);
}

.overlap-box-btn:hover {
    background: #fff;
    color: #10213A !important;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .overlap-boxes-section {
        margin-top: 10%;
    }
    .overlap-box {
        min-height: 280px;
        padding: 2rem 1rem 1.5rem 1rem;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 767.98px) {
    .overlap-boxes-container {
        flex-direction: column;
        align-items: center;
    }
    .overlap-box {
        margin-bottom: 1.5rem;
        min-height: unset;
    }
}


 /* Email input placeholder styling */
 .newsletter-box input[type="email"]::placeholder {
     color: #fff !important;
     opacity: 1;
 }

 .newsletter-box input[type="email"]::-webkit-input-placeholder {
     color: #fff !important;
     opacity: 1;
 }

 .newsletter-box input[type="email"]::-moz-placeholder {
     color: #fff !important;
     opacity: 1;
 }

 .newsletter-box input[type="email"]:-ms-input-placeholder {
     color: #fff !important;
     opacity: 1;
 }

 /* Social icon hover effects */
 .social-icons a {
     transition: transform 0.3s ease, opacity 0.3s ease;
     display: inline-block;
 }

 .social-icons a:hover {
     transform: translateY(-3px);
     opacity: 0.8;
 }

 .social-icons img {
     transition: filter 0.3s ease;
     width: 80%;
 }

 /* Checkbox alignment */
 .newsletter-checks input[type="checkbox"] {
     width: 14px;
     height: 14px;
     cursor: pointer;
 }

 /* Newsletter Submit Button - Small Size */
 .newsletter-submit-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.4rem;
     background: transparent;
     color: #fff;
     border: 1px solid #fff;
     padding: 0.4rem 1rem;
     font-size: 0.813rem;
     font-family: 'Albert Sans', Arial, sans-serif;
     text-decoration: none;
     transition: all 0.3s ease;
     border-radius: 4px;
 }

 .newsletter-btn-arrow {
     width: 14px;
     height: 14px;
     object-fit: contain;
     filter: brightness(0) invert(1);
     transition: transform 0.3s ease;
     flex-shrink: 0;
 }

 .newsletter-submit-btn:hover {
     background: #183054;
     color: #fff;
     text-decoration: none;
     border-color: #fff;
 }

 .newsletter-submit-btn:hover .newsletter-btn-arrow {
     transform: translateX(3px);
 }

 /* Center footer newsletter section on mobile and tablet */
 @media (max-width: 768px) {
     .footer-six-columns .row {
         justify-content: center !important;
     }

     .footer-six-columns .col-5 {
         flex: 0 0 100% !important;
         max-width: 100% !important;
         display: flex !important;
         justify-content: center !important;
         padding: 0 15px;
     }

     .col-5 .col-12 {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 100% !important;
         max-width: 100% !important;
         padding: 0 !important;
     }

     .footer-logos {
         display: flex !important;
         justify-content: center !important;
         text-align: center !important;
         width: 100%;
     }

     .footer-subscribe,
     .footer-subscribe-sub {
         text-align: center !important;
         width: 100%;
     }

     .newsletter-box {
         display: flex !important;
         justify-content: center !important;
         width: 100%;
     }

     .newsletter-box input[type="email"] {
         text-align: center !important;
         width: 100% !important;
         max-width: 400px;
     }

     .newsletter-checks {
         justify-content: center !important;
         flex-wrap: nowrap !important;
         gap: 0.5rem !important;
         width: 100%;
     }

     .newsletter-checks label {
         font-size: 0.7rem;
         white-space: nowrap;
     }

     .newsletter-submit-btn {
         margin: 0 auto !important;
         display: inline-flex !important;
     }

     .mt-md-4.mt-2 {
         text-align: center !important;
         display: flex !important;
         justify-content: center !important;
         width: 100%;
     }

     /* Keep other footer columns visible on mobile */
     .footer-six-columns .col-12.col-md-7 {
         flex: 0 0 100% !important;
         max-width: 100% !important;
         margin-top: 2rem;
     }

     /* Center footer bottom items on mobile */
     .footer-bottom {
         flex-direction: column !important;
         gap: 1.5rem;
     }

     .footer-bottom>div {
         text-align: center !important;
     }

     .footer-bottom .social-icons {
         justify-content: center !important;
     }
 }

/* Enquire Now Section */
.enquire-section {
   background: #0A2176;
background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
    padding: 5rem 0;
}

.enquire-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #01729A;
    line-height: 1.2;
}

.enquire-arrow-left,
.enquire-arrow-right {
    width: 50px;
    height: auto;
    opacity: 0.8;
}

.enquire-arrow-left {
    transform: rotate(180deg);
}

.enquire-subheading {
    font-size: 1.1rem;
    color: #fff;
    max-width: 800px;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: start;
}

.enquire-form {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.enquire-input {
    background: transparent;
    border: 1px solid #fff;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: #fff;
  border-radius: 0px;
    transition: all 0.3s ease;
}

.enquire-input:focus {
    background: #fff;
    border-color: #01729A;
    box-shadow: 0 0 0 0.2rem rgba(1, 114, 154, 0.15);
    outline: none;
}

.enquire-input::placeholder {
    color: #fff;
    opacity: 1;
}

select.enquire-input {
    color: #fff;
}

select.enquire-input:valid {
    color: #000 !important;
}

select.enquire-input option {
    color: #000;
    background: #fff;
}

select.enquire-input option[value=""][disabled] {
    color: #fff;
}

.enquire-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.enquire-submit-btn:hover {
    background: #01729A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 114, 154, 0.2);
}

.enquire-btn-arrow {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.enquire-submit-btn:hover .enquire-btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design for Enquire Section */
@media (max-width: 991px) {
    .enquire-heading {
        font-size: 2.5rem;
    }

    .enquire-arrow-left,
    .enquire-arrow-right {
        width: 40px;
    }

    .enquire-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .enquire-section {
        padding: 3rem 0;
    }

    .enquire-heading {
        font-size: 2rem;
    }

    .enquire-arrow-left,
    .enquire-arrow-right {
        width: 30px;
    }

    .enquire-subheading {
        font-size: 0.95rem;
    }

    .enquire-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .enquire-submit-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Ongoing Projects Section */
.ongoing-projects-section {
    background: #Fff;
    padding: 3.2rem 0;
}

.ongoing-projects-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: #183054;
    margin-bottom: 1.5rem;
}

.ongoing-arrow-img {
    max-width: 180px;
    width: 100%;
}

.ongoing-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ongoing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ongoing-card-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.ongoing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ongoing-card:hover .ongoing-card-img {
    transform: scale(1.1);
}

.ongoing-card-body {
background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
    padding: 2rem 1.5rem;
    text-align: start;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.ongoing-card-title {
    font-size: 1.778rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ongoing-card-location {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 0.989rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Button styling for ongoing cards */
.ongoing-card-body .faq-view-all-btn {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff !important;
}

.ongoing-card-body .faq-btn-arrow {
    filter: brightness(0) invert(1);
}

.ongoing-know-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Albert Sans', Arial, sans-serif;
}

.ongoing-know-more-btn:hover {
    background: #fff;
    color: #01729A;
    border-color: #fff;
}

.ongoing-btn-arrow {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.ongoing-know-more-btn:hover .ongoing-btn-arrow {
    transform: translateX(5px);
    filter: brightness(0) invert(0);
}

/* Responsive Styles for Ongoing Projects */
@media (max-width: 991px) {
    .ongoing-projects-heading {
        font-size: 2.8rem;
    }

    .ongoing-card-title {
        font-size: 1.5rem;
    }

    .ongoing-card-location {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .ongoing-projects-section {
        padding: 3rem 0;
    }

    .ongoing-projects-heading {
        font-size: 2.2rem;
    }

    .ongoing-arrow-img {
        max-width: 120px;
    }

    .ongoing-card-img-wrapper {
        height: 220px;
    }

    .ongoing-card-body {
        padding: 1.5rem 1rem;
    }

    .ongoing-card-title {
        font-size: 1.3rem;
    }

    .ongoing-card-location {
        font-size: 0.85rem;
    }

    .ongoing-know-more-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .ongoing-projects-heading {
        font-size: 1.8rem;
    }

    .ongoing-card-img-wrapper {
        height: 200px;
    }

    .ongoing-card-title {
        font-size: 1.2rem;
    }
}

/* Completed Projects Section */
.completed-projects-section {
    background: #Fff;
    /* padding: 4rem 0; */
}

.completed-projects-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: #183054;
    margin-bottom: 1.5rem;
}

.completed-arrow-img {
    max-width: 180px;
    width: 100%;
}

.completed-card {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
}

.completed-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%); 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: background 0.4s ease;
}

.completed-card:hover .completed-card-overlay {
    /* background: rgba(0, 0, 0, 0.85); */
}

.completed-card-title {
    font-size: 2.249rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}

.completed-card:hover .completed-card-title {
    margin-bottom: 0.8rem;
}

.completed-card-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.completed-card:hover .completed-card-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.completed-card-location {
    font-family: 'Albert Sans', Arial, sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.completed-know-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Albert Sans', Arial, sans-serif;
}

.completed-know-more-btn:hover {
    background: #fff;
    color: #183054;
    border-color: #fff;
}

.completed-btn-arrow {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.completed-know-more-btn:hover .completed-btn-arrow {
    transform: translateX(5px);
    filter: brightness(0) invert(0);
}

/* Responsive Styles for Completed Projects */
@media (max-width: 991px) {
    .completed-projects-heading {
        font-size: 2.8rem;
    }

    .completed-card {
        height: 400px;
    }

    .completed-card-title {
        font-size: 2rem;
    }

    .completed-card-location {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .completed-projects-section {
        padding: 3rem 0;
    }

    .completed-projects-heading {
        font-size: 2.2rem;
    }

    .completed-arrow-img {
        max-width: 120px;
    }

    .completed-card {
        height: 350px;
    }

    .completed-card-overlay {
        padding: 1.5rem;
    }

    .completed-card-title {
        font-size: 1.8rem;
    }

    .completed-card-location {
        font-size: 0.95rem;
    }

    .completed-know-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .completed-projects-heading {
        font-size: 1.8rem;
    }

    .completed-card {
        height: 300px;
    }

    .completed-card-title {
        font-size: 1.5rem;
    }

    .completed-card-overlay {
        padding: 1rem;
    }
}


/*//////////////////////////////////////////////////////////////Ragendra/////////////////////////////////////////////////////////////// */
:root {
  scroll-behavior: smooth;
  --base-font-size: clamp(16px, 2vw, 20px);
  --heading-scale: 1.2;
}

@font-face {
  font-family: "Montage";
  src: url("fonts/Montage.woff2") format("woff2"),
    url("fonts/Montage.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');


body {
  background-color: #fff;
  color: #212529;
  min-height: 100vh;
  font-family: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--base-font-size);
}

h1,
h2,
h3,
h4 {
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 4.7rem);
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h4 {
  font-size: clamp(2.5rem, 8vw, 6.2rem);
}

p {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.newsletter-checks p{
    display: flex;
    font-size: 0.6rem;
}


.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
    align-items: center;
    justify-content: center;
    /*display: flex;*/
}

footer .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
    align-items: center;
    justify-content: center;
    display: flex;
}



#main-start {
  padding: 0;
  max-width: 100%;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 6rem 1.5rem;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgb(0 0 0 / 14%) 0%, rgb(0 0 0 / 17%) 70%); */
  z-index: 1;
}

.hero-section video,.hero-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.75);
  pointer-events: none;
}
.hero-section iframe {
top: 50%;
    left: 50%;
    width: 177.7778vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
}
.single-project .hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.hero-overlay--center {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
    font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    /* letter-spacing: 0.22em; */
    text-transform: uppercase;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
    background-image: url(images/banner-text-bg.png);
    background-size: contain;
}

.hero-overlay .display-4 {
  letter-spacing: 0.08em;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  padding: 2rem;
}

.glass-card button {
  min-width: 230px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 0.75rem auto 0;
  background: linear-gradient(180deg, transparent, #fff);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.content-section {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.content-section.overlap-start {
  position: relative;
  border-radius: 0;
  z-index: 3;
  box-shadow: none;
  max-width: 90%;
  align-items: center;
  margin: -5rem auto 0;
  background-image: url(images/bg-1.png);
  background-size: contain;
  background-repeat: repeat;
}

#overview {
  border: none;
  outline: none;
}
.boder-class{    border-right: 1px solid #fff;}
.boder-class h2, .boder-class p{color: #fff;font-size: clamp(2rem, 5vw, 4.1rem);}
#overview p{color:#fff;}
.property .property-type{font-size: clamp(0.9rem, 2vw, 1.4rem); color: #01729A;}
.property {
  background: #EDEFE5;
  max-width: 90%;
  align-items: center;
  margin: auto;
}
.property a{padding: 15px 45px;
color: #183054;
font-size-adjust: from-font;
font-family: "Albert Sans", sans-serif;
font-weight: 300;
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
margin: 0 0 5% 0;
border:1px solid #183054}
.property a span::after {
  content: url("images/Vector-arrow.png");
  top: 4px;
  left: 15px;
  position: relative;
}


.parallax-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 2;
}


.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.parallax-section > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.parallax-1 {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80");
}

.parallax-2 {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80");
}

@media (max-width: 991px) {
  .parallax-section {
    background-attachment: scroll;
  }

.rera-number{
 font-size: 1rem !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}


  .hero-section video {
    position: absolute;
    height: 100%;
  }
  .content-section.overlap-start {
    margin-top: -3rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  /* Mobile font adjustments */
  h1 {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  h2 {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }
  .boder-class h2, .boder-class p {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }
}

@media (max-width: 576px) {
  /* Small mobile adjustments */
  :root {
    --base-font-size: clamp(14px, 4vw, 16px);
  }
  h1 {
    font-size: clamp(1.8rem, 15vw, 3rem);
  }
  h3 {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  .property .property-type {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }
}


/*start form here*/
/* Project page */
.project-hero {
  align-items: flex-end;
  text-align: left;
  padding: 1rem 1.5rem;
}

/* .project-hero::before {
  background: linear-gradient(180deg, rgb(0 0 0 / 40%) 0%, rgb(0 0 0 / 75%) 70%);
} */

.project-hero .hero-overlay {
  max-width: 960px;
  margin-bottom: 4rem;
}

.project-hero .hero-overlay.hero-overlay--center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: none;
  margin-bottom: 0;
}

.hero-badge {
  letter-spacing: 0.08em;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.project-about {
  position: relative;
  /*min-height: 100vh;*/
  padding: 0;
  color: #fff;
  background: #8FB2A6;
  background: #0A2176;
  background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
  overflow: hidden;
}

.project-about__inner {
  max-width: 950px;
}

.project-about__kicker {
  font-size: 0.989rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
      text-align: center;
}

.rera-number{
 font-size: 1.484rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;

}

.project-about__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.project-about__ornament-line {
  display: block;
  width: 78px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.project-about__ornament-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
}


.project-about__logo {
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: 0.22em;
  text-transform: lowercase;
}

.project-about__desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 0.989rem;
}

/*counter css start here*/
.project-about__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 1140px;
  /*margin: 3.5rem auto 0;*/
  margin: 2rem 3.5rem 0 3.5rem;
}

.project-stat {
  min-width: 210px;
}

.project-stat__value {
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 2.137rem);
  letter-spacing: 0.04em;
}

.project-stat__label {
  font-size: 0.741rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  /*margin-top: 0.65rem;*/
}

.project-stat__divider {
  position: relative;
  flex: 1 1 180px;
  max-width: 240px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.project-stat__divider::before {
  content: "";
  position: absolute;
  left: -3%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  /*background: rgba(255, 255, 255, 0.95);*/
  border: 1px solid #fff;
}

.project-stat__divider::after {
  content: "";
  position: absolute;
  right: -2%;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(255, 255, 255, 0.95);
}

.project-about__bottom-lines {
  position: relative;
  left: 0;
  right: 0;
  padding: 0 0%;
  opacity: 1;
}

/* .project-about__bottom-lines .marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
} */

.project-about__bottom-lines .marquee-track {
  display: flex;
  /* gap: 1.25rem; */
  will-change: transform;
}

.project-about__bottom-lines img {
  height: auto;
  /* border-radius: 0.85rem; */
  object-fit: cover;
  /* filter: saturate(0.95); */
  /* border: 1px solid rgba(255, 255, 255, 0.22); */
  /* box-shadow: 0 10px 24px rgb(0 0 0 / 12%); */
}

.card-keyhighlight {
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 3rem;
}

.card-keyhighlight__number {
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.237rem);
  line-height: 1;
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
}

.card-keyhighlight__title {
  color: #fff;
    font-size: clamp(1.237rem, 3.6vw, 1.5rem);
    line-height: 1.08;
    margin: 0 0 1rem;
    max-width: 13vw;
}

.card-keyhighlight__desc {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 80%;
  font-size: 0.989rem;
}

.card-keyhighlight__desc::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, transparent 40%, transparent 100%);
}
section.second-sec{
  position: relative;
    color: #fff;
    overflow: hidden;
    background: #0A2176;
background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
}
#amenties.second-sec {
    background: #0A2176;
background: linear-gradient(0deg, rgba(10, 33, 118, 1) 0%, rgba(1, 114, 154, 1) 100%);
    
}
@media (max-width: 575.98px) {
  .card-keyhighlight {
    min-height: unset;
  }
}

.everyday-video {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.everyday-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.everyday-video video,
.everyday-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.85);
  pointer-events: none;
}

.everyday-video__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 960px;
}

.everyday-video__title {
  margin: 0 0 1.75rem;
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.227rem, 6vw, 2.227rem);
  line-height: 0.95;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}


.everyday-video__btn {
	    display: inline-flex;
	    align-items: center;
	    justify-content: center;
	    gap: 0.5rem;
	    position: absolute;
	    left: 50%;
	    /*bottom: 2.5rem;*/
	    transform: translateX(-50%);
	    z-index: 2;
	    color: #fff;
	    font-size: 1rem;
	    font-weight: 400;
	    text-decoration: none;
	    font-size: clamp(1rem, 1.6vw, 1.2rem);
	    background-color: #183054;
	    border: 1px solid #183054;
	    color: #fff;
	    margin-top: 50% !important;
            
            
            background-color: #1a3a5c;
            color: #fff;
            padding: 12px 25px;
            border-radius: 0px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
}


.everyday-video__btn  .btn-arrow-dark {
            width: 16px;
            height: 16px;
            display: none;
        }
        
        .everyday-video__btn .btn-arrow-white {
            width: 16px;
            height: 16px;
            display: inline-block;
        }
        
        .everyday-video__btn:hover {
            background-color: #fff;
            color: #1a3a5c !important;
            border: 1px solid #1a3a5c;
        }

        .everyday-video__btn:hover .btn-arrow-white {
            display: none;
        }

        .everyday-video__btn:hover .btn-arrow-dark {
            display: inline-block;
        }



/*.everyday-video__btn:hover {*/
/*	  transform: translateX(-50%) translateY(-1px);*/
/*	  background: rgba(11, 40, 85, 1);*/
/*	  border-color: rgba(255, 255, 255, 0.55);*/
/*	  color: #fff;*/
/*}*/
.single-project .everyday-video iframe {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: brightness(0.85);
    pointer-events: none;
    top: 50%;
    left: 50%;
    width: 177.7778vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
}
  


.card-amenties {
position: relative;
    overflow: hidden;
    border-radius: 0rem;
    box-shadow: unset;
    aspect-ratio: 4 / 4;
    background-color: rgba(0, 0, 0, 0.08);
    background-image: var(--amenity-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-size 0.35s ease;
}

.card-amenties::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.card-amenties__label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0.35rem;
  color: #183054;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgb(0 0 0 / 18%);
}

.card-amenties .amenties-btn {
position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0;
    color: #183054 !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 12px 24px rgb(0 0 0 / 18%);
}

.card-amenties:hover {
  background-size: 108%;
}

.layout-section__kicker {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #6c757d;
  margin: 0;
}

.layout-section__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.layout-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(0, 0, 0, 0.12);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.layout-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
}

.layout-accordion .accordion-button {
  padding: 1.15rem 0;
  font-size: 2.05rem;
  font-weight: 400;
  color: #183054;
}

.layout-accordion .accordion-button::after {
  opacity: 0.8;
}

.layout-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000;
}

.layout-accordion .accordion-body {
  padding: 0 0 1.25rem;
  color: #6c757d;
  line-height: 1.7;
}

.layout-section__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
 }

.layout-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 180ms ease;
}

.layout-section__image.is-fading {
  opacity: 0;
}

@media (min-width: 992px) {
  .layout-section__media {
    position: sticky;
    top: 1.5rem;
  }
}

.map-section__media {
  position: relative;
}

.map-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.map-section__actions {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 8vh, 8.25rem);
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 2;
}

.map-section__actions .btn {
  border-radius: 0.2rem;
}

.map-section__actions a.btn.btn-dark.px-4 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid #fff;
  padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) !important;
}

.map-section__actions a.btn.btn-dark.px-4:hover {
  background-color: #183054;
  border-color: #183054;
  color: #fff;
}

.map-section__actions a.btn.btn-outline-dark.px-4 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  background-color: #183054;
  border: 1px solid #183054;
  padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) !important;
  color: #fff;
}

.map-section__actions a.btn.btn-outline-dark.px-4:hover {
  background-color: rgba(255, 255, 255, 0.13);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 575.98px) {
  .map-section__actions {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  #amenties a.everyday-video__btn {
    position: relative;
    margin: 15% auto;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    background-color: #183054;
    border: 1px solid #183054;
    padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) !important;
    /* color: #fff; */
    display: inline;
    transform: translate(0);
    left: auto;
}
  
  
}

.our-projects__title {
  color: #183054;
font-size: 2.77rem;
}

.project-about__inner h2{
font-size: 2.227rem;

}


.our-projects__tabs {
  gap: 2.5rem;
}

.our-projects__tabs .nav-link {
  border: 1px solid rgba(1, 114, 154, 0.55);
  border-radius: 0.2rem;
  padding: 0.5rem 0.5rem !important;
  color: #212529;
  background: transparent;
  font-weight: 400;
  min-width: min(340px, 90vw);
  text-align: center;
  font-size: 1.039rem;
}


.invest-slider__thumb:hover{
    background-color: transparent !important;
}

.our-projects__tabs .nav-link:hover{
    color: #212529;
}

.our-projects__tabs .nav-link.active {
  background: #071f36;
  border-color: #071f36;
  color: #fff;
}

.projects-slider-wrap {
  position: relative;
  padding: 0;
}

.projects-slider {
  width: 100%;
}

.projects-slider-wrap--vanilla {
  overflow: hidden;
}

.projects-slider.projects-slider--vanilla {
  display: flex;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-slider.projects-slider--vanilla > * {
  flex: 0 0 calc(100% / var(--projects-visible, 1));
}

.project-slide {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  background: #000;
  aspect-ratio: 16 / 9;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide__label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0px !important;
  color: #183054;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.projects-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 84, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #183054;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: none;
  z-index: 2;
  padding: 0px;
}
.single-project .projects-slider__nav, .single-project .invest-slider__nav{
position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    border: 1px solid rgb(24 48 84 / 0%);
    background: transparent;
    color: #183054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: none;
    z-index: 9;
}

.projects-slider__nav--prev {
  left: 7%;
  transform: translate(-50%, -50%);
}

.projects-slider__nav--next {
  right: 7%;
  transform: translate(50%, -50%);
}

.projects-slider .slick-slide {
  padding: 0;
}

.projects-slider .slick-list {
  overflow: hidden;
}

.projects-slider.slick-slider .slick-track {
  display: flex !important;
}

.projects-slider.slick-slider .slick-slide {
  height: auto;
}

@media (max-width: 991.98px) {
  .our-projects__tabs {
    gap: 1rem;
  }

.project-about__inner h2{
font-size: 2rem;

}


.our-projects__title {
  color: #183054;
font-size: 2rem;
}


  .our-projects__tabs .nav-link {
    padding: 0.8rem 1.25rem;
    min-width: 0;
  }

  .projects-slider-wrap {
    padding: 0;
  }

  .projects-slider__nav {
    display: none;
  }

  .projects-slider-wrap--vanilla .projects-slider__nav {
    display: inline-flex;
  }
}

.invest-slider__top {
  position: relative;
  margin-bottom: 2.75rem;
}

.invest-slider__kicker {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #183054;
  margin: 0;
}

.invest-slider__ornament {
  width: 120px;
  height: 12px;
  margin: 0.5rem auto 0.85rem;
  background: radial-gradient(circle, #183054 2px, transparent 3px) center / 12px
      12px repeat-x;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  opacity: 0.8;
}

.invest-slider__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: #183054;
}

.invest-slider__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #6f42c1;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 0.25rem;
}

.invest-slider {
  position: relative;
}

.invest-slider__frame {
  position: relative;
  padding: 0 4.25rem;
  overflow: hidden;
}

.invest-slider__slides.slick-slider {
  margin: 0;
}

.invest-slider__frame .slick-list {
  overflow: hidden;
}

.invest-slider__slides .slick-slide {
  outline: none;
}

.invest-slider--vanilla .invest-slider__slides {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.invest-slider--vanilla .invest-slider__slide {
  flex: 0 0 100%;
  width: 100%;
}

.invest-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 84, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #183054;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 3;
}

.invest-slider__nav:hover {
  transform: translateY(-50%) scale(1.03);
  /*border-color: rgba(24, 48, 84, 0.45);*/
  background: #fff;
}

.invest-slider__nav--prev {
  left: 0;
}

.invest-slider__nav--next {
  right: 0;
}

.invest-slider__gallery {
  position: relative;
  
  overflow: hidden;
  box-shadow: none;
 
}

.invest-slider__main {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 180ms ease;
}

.invest-slider__main.is-fading {
  opacity: 0;
}

.invest-slider__thumbs {
  margin-top: 1.5rem;
  display: flex;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-left: 0%;
}

.invest-slider__thumb {
	    border: 2px solid transparent;
	    padding: 0;
	    border-radius: 0.5rem;
	    overflow: hidden;
	    background: transparent;
	    box-shadow: unset;
	    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	    opacity: 0.92;
}

.invest-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  aspect-ratio: 3 / 4;
}

.invest-slider__thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.invest-slider__thumb.is-active {
	  /* border-color: rgba(24, 48, 84, 0.7); */
	  opacity: 1;
}

.invest-slider__content {
  padding-top: 1.25rem;
}

.invest-slider__content-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: #183054;
  font-family: "Montage", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.invest-slider__content-desc {
  margin: 0;
  color: #51607a;
  line-height: 1.7;
  max-width: 44ch;
}

@media (max-width: 991.98px) {
  .invest-slider__badge {
    position: static;
    display: inline-block;
    margin: 1rem auto 0;
  }

  .invest-slider__top {
    text-align: center;
  }

  .invest-slider__frame {
    padding: 0;
  }

  .invest-slider__nav {
    display: none;
  }

  .invest-slider__thumbs {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
  }
}

.project-filter h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.filter-pill {
  border: 1px solid #d3d6db;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  background: #f8f9fa;
  color: #183054;
  transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: #183054;
  color: #fff;
  border-color: #183054;
}

.featured-project h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.project-card {
  border: 1px solid #e4e7ea;
  border-radius: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 30px rgb(0 0 0 / 4%);
}

.project-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card__media img {
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.project-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.project-cta {
  position: relative;
  background: linear-gradient(135deg, #002b45 0%, #0a3c5f 50%, #0b4f6c 100%);
  overflow: hidden;
}

.project-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/bgsecond-sec.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.project-cta > .container {
  position: relative;
  z-index: 1;
}

.cta-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 40px rgb(0 0 0 / 18%);
}

@media (max-width: 767px) {
  .project-hero {
    align-items: center;
    padding: 6rem 1.25rem;
  }
  .project-hero .hero-overlay {
    margin-bottom: 2rem;
  }
  .project-about {
    min-height: auto;
    padding: 5.5rem 0 6rem;
  }
  .project-about__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0;
    margin: 2rem 0 0 0;
}
  .project-stat {
    min-width: 0;
    width: 50%;
}
  .project-stat__divider {
    display: none;
  }
  .project-about__bottom-lines {
    position: relative;
    bottom: auto;
    padding: 0 1.25rem;
    margin-top: 4rem;
  }
  .project-filter .d-flex {
    gap: 0.5rem;
  }
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: none !important ;
    color: #fff;
    text-decoration: none;
}
/*.everyday-video__btn{display:none;}*/

button.accordion-button:hover {
    color: #000;
}


.accordion-button:hover {
    z-index: 2;
    background: none ;
}





button.accordion-button{text-wrap: auto;}
/*//////////////////////////////////////////////////////////////Ragendra/////////////////////////////////////////////////////////////// */
  .newsletter-submit-btn{
    background-image: url('images/button-arrow.webp') !important;
    background-repeat: no-repeat !important;
    background-position: right center;
    padding-right: 30px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    background-size: 10px;
    background-position-x: 93%;
    border-radius: 0px;
    
}

.contact-submit-btn{
    padding-right: 7% !important;
    background-image: url('images/button-arrow.webp') !important;
    background-repeat: no-repeat !important;
    background-position: right center;
    padding-right: 30px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    background-size: 10px;
    background-position-x: 85%;
     
}

.contact-submit-btn:hover{
      background-color: #0B7C9E;
      color: #fff;
    
   } 



    .newsletter-submit-btn:hover{
       background-position-x: 90% !important;
        background-size: 14px;
    background-position-y: 50% !important;
    background-size: 10px;
    
   } 
   
  
   
   
   
   [type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: none !important;
    /*color: #fff;*/
    text-decoration: none;
}



@media (max-width: 370px){
    .contact-whatsapp-btn{
        margin-top: 10px !important;
    }
}
@media (min-width:1100px){
	.project-stat:nth-child(1){min-width:240px !important;}
	
	}

.project-about__inner {
    max-width: 1250px;
}
 #amenties a.everyday-video__btn {
 position: sticky;
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    background-color: #183054;
    border: 1px solid #183054;
    padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) !important;
    color: #fff;
    display: block;
}




.single-project .projects-slider__nav:hover, .single-project:hover, .invest-slider__nav:hover{
    background: none !important;
}



.invest-slider__thumb:focus{
    background: none !important;
}


.wpcf7-list-item-label{
    margin-left: 3px;
}

.wpcf7-spinner{
    margin-left: 1%;
}


.first-row-class .mini-box:nth-last-child(1){display:none}

.postid-236 .hero-title{
    display: none;
}

.footer-six-columns .wpcf7-form.init{display:none;}


@media (max-width: 500px) {
  
.contact-submit-btn{
    padding-right: 10% !important;
    background-image: url('images/button-arrow.webp') !important;
    background-repeat: no-repeat !important;
    background-position: right center;
    padding-right: 30px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    background-size: 14px;
    background-position-x: 85%;
     
}
}



 /* Image change transition */
        .home-oage-map-img {
            transition: opacity 0.3s ease-in-out;
        }

        /* Active state for mini-box */
        .mini-box.active {
            /* background-color: rgba(24, 48, 84, 0.05) !important; */
        }

        /* Cursor pointer for clickable boxes */
        .mini-box {
            cursor: pointer;
        }
        .single-project p b{font-weight:800;}
        .postid-956 .project-about,.postid-956 .project-abouts,.postid-956 .map-section, .postid-956 .our-projects-section, .postid-956 .everyday-video {display:none;}


 /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f0d4bb;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            transition: opacity 0.5s ease-out;
        }

        #loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loading-gif {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
        }

        /* Loading Screen */

/* Popup Form Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup-container {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s ease-in-out;
        }
        
        .popup-container h2{
            font-size: 2rem;
        }

        .popup-overlay.active .popup-container {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            font-size: 2rem;
            color: #183054 ;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .popup-close:hover {
            transform: rotate(90deg);
            background-color: #183054 !important;
            color: #fff !important ;
        }

        /* Popup Form Styles */

.fab-fa-youtube, .fab .fa-youtube{
             display: none !important;
         }
         
         
       .postid-414 .old-Brochure-button, .postid-365 .old-Brochure-button, .postid-291 .old-Brochure-button, .postid-346 .old-Brochure-button, .postid-417 .old-Brochure-button, .postid-227 .old-Brochure-button, .postid-152 .old-Brochure-button, .postid-236 .old-Brochure-button{
             display: none !important;
         }
         
         .postid-296 .new-Brochure-button, .postid-416 .new-Brochure-button, .postid-418 .new-Brochure-button{
             display: none !important;
         }



.hero-bottom-content {
  /*padding: 40px 20px !important;*/
  /*background: #fff !important;*/
  position: relative !important;
  width: 100% !important;
}

.hero-bottom-content .container {
  max-width: 100% !important;
}

.hero-bottom-content .row {
  width: 100% !important;
  margin: 0 !important;
}

.hero-bottom-content .col-md-6 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.hero-bottom-text {
   font-size: 1rem;
  font-weight: 500;
  color: #fff !important;
  margin: 0 !important;
  max-width: 400px !important;
  margin-left: auto !important;
  text-align: right !important;
  padding-right: 20px !important;
}

@media (max-width: 768px) {
  .hero-bottom-content {
    padding: 15px 15px !important;
    bottom: -50%;
  }
  
  .home-oage-map-img {
      max-width: 350px !important;
  }
  
  .hero-bottom-content .row {
    justify-content: center !important;
  }
  
  .hero-bottom-content .col-md-6 {
    display: flex !important;
    justify-content: center !important;
  }
  
  .hero-bottom-text {
font-size: 1rem;
    text-align: center !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
  }
} 
         

 /* Social Media Sidebar */
        .social-float-btn {
            position: fixed;
            bottom: 15%;
            right: 0px;
            width: 45px;
            height: 45px;
            background-color: hsla(60,20%,98%,.5);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9998;
            box-shadow: 0 4px 12px rgba(1, 114, 154, 0.4);
            transition: all 0.3s ease;
            border: 1px solid hsla(60,20%,98%,.5);
            padding: .5rem .5rem;
        }

        .social-float-btn:hover {
            background-color: #015a7a;
            transform: scale(1.1);
        }
        
        .social-float-btn:focus {
    background-color: hsla(60,20%,98%,.5);
}

        .social-float-btn svg {
            width: 30px;
            height: 30px;
            color: #ffffff;
        }

        .social-sidebar {
            position: fixed;
            top: 0;
            right: -150px;
            width: 50px;
            height: 100%;
            background-color: hsla(60,20%,98%,.5);
            box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            transition: right 0.4s ease;
            padding: 30px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-sidebar.active {
            right: 0;
        }

        .social-sidebar-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
            width: 100%;
        }

        .social-sidebar-close {
            background: transparent;
            border: none;
            font-size: 2rem;
            color: #000;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .social-sidebar-close:hover {
            transform: rotate(90deg);
             background: transparent;
              color: #000;
        }
        
        .social-sidebar-close:focus {
    background-color: hsla(60,20%,98%,.5);
}

        .social-sidebar-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .social-sidebar-item {
            /*width: 60px;*/
            /*height: 60px;*/
            /*background-color: rgba(255, 255, 255, 0.1);*/
            /*border-radius: 50%;*/
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-sidebar-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .social-sidebar-item img {
            width: 35px;
            height: 35px;
            /*filter: brightness(0) invert(1);*/
        }

        .social-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .social-sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Social Media Sidebar */



.amenties-btn{
pointer-events: none;
}


.invest-slider__thumb .is-active img{
    display: none !important;
}

/*property page project over view 5th box hiding start*/

 .postid-296 .project-overview-grid.no-track-box .overview-track-box, .postid-152 .project-overview-grid.no-track-box .overview-track-box, .postid-416 .project-overview-grid.no-track-box .overview-track-box, .postid-346 .project-overview-grid.no-track-box .overview-track-box, .postid-291 .project-overview-grid.no-track-box .overview-track-box, .postid-414 .project-overview-grid.no-track-box .overview-track-box, .postid-365 .project-overview-grid.no-track-box .overview-track-box, .postid-227 .project-overview-grid.no-track-box .overview-track-box {
            display: none !important;
        }


.postid-296 .project-overview-grid.no-track-box, .postid-152 .project-overview-grid.no-track-box, .postid-416 .project-overview-grid.no-track-box, .postid-346 .project-overview-grid.no-track-box, .postid-291 .project-overview-grid.no-track-box, .postid-414 .project-overview-grid.no-track-box, .postid-365 .project-overview-grid.no-track-box, .postid-227 .project-overview-grid.no-track-box{
            grid-template-columns: repeat(3, 1fr);
            max-width: 1200px;
        }
        
        @media (max-width: 768px) {
            .postid-416 .project-overview-grid, .postid-296 .project-overview-grid, .postid-152 .project-overview-grid, .postid-346 .project-overview-grid, .postid-291 .project-overview-grid, .postid-414 .project-overview-grid, .postid-365 .project-overview-grid, .postid-227  {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        
        @media (max-width: 480px) {
            .postid-416 .project-overview-grid.no-track-box, .postid-296 .project-overview-grid.no-track-box, .postid-152 .project-overview-grid.no-track-box, .postid-346 .project-overview-grid.no-track-box, .postid-291 .project-overview-grid.no-track-box, .postid-414 .project-overview-grid.no-track-box, .postid-365 .project-overview-grid.no-track-box, .postid-227 .project-overview-grid.no-track-box{
                grid-template-columns: 1fr;
            }
        }
        
        


.rotating-center-text {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
}

.footer-list a {
    border-bottom: none !important;
}



.postid-417 .future-slider-dynmic{
    display: none;
}


.search-results .entry-title{
    font-size: 2rem;
    margin-top: 5%;
text-align: center;
}

.search-results .post .wp-post-image {
    max-height: 100%;
    
}

.page-id-1907 #content {
    padding-top: 5% !important;
}


.page-id-1907 .entry-title {
    text-align: center;
    font-size: 3.711rem;
    color: #183054;
}

.page-id-1907 .heading-sec-link {
    justify-content: center !important;
}



.projects-slider__nav:hover {
    background: rgba(255, 255, 255, 0.92) !important;
}
