/* ------------------------------------------------------------------------------

  Template Name: Provident
  Description: Provident Landing Page
  Author: Mudassar
  Version: 1.0
  
  1.  Global 
    
      1.1 General 
      1.2 Typography 
      1.3 Fields
      1.4 Buttons 
      1.5 Icons
      1.6 Loader  
      1.7 Helpers
 
  2.  Navbar 

      2.1 Navbar elements
      2.2 Navbar affix
      2.3 Sidebar Menu
      
  3.  Homepage

      3.1 Jumbotron
      3.2 Slider
      3.3 Section About
      3.4 Section Projects

          3.4.1 Projects Carousel

      3.5 Section Clients
      3.6 Section Partners
      3.7 Section Team
      3.8 Section Contacts
      3.9 Footer

  4.  Homepage v2

      4.1 Navbar
      4.2 Sections
      4.3 Section About
      4.4 Section Projects
      4.5 Section Partners
      4.6 Section Testimonials 
      4.7 Section Contacts

  5. Responsive styles

      5.1 Min width: 768px
      5.2 Min width 992px
      5.3 Min width 1200px 
      5.4 Min width 1550px 
      5.5 Min height 500px
      5.6 Min height 600px
      5.7 Min height 700px


      
/*-------------------------------------------------------------------------------
 1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
}

body {
    background-color: #EDEAE7;
}

html {
    /* overflow: hidden; */
}

h1,
.h1 {
    font-size: 3.428rem;
    line-height: 1.2;
    color: #000;
    letter-spacing: -0.025em;
    margin: 0.5em 0;
    font-family: "Baskervville", serif;
    font-weight: 400;
    letter-spacing: .065em;
}

h2,
.h2 {
    font-weight: 400;
    font-size: 2.571rem;
    line-height: 1.166;
    letter-spacing: 0;
    margin: 2.6rem 0;
    text-transform: uppercase;
    font-family: "Baskervville", serif;
    font-weight: 400;
    letter-spacing: .065em;
}

h3,
.h3 {
    font-weight: 600;
    font-size: 2.142rem;
    font-family: "Baskervville", serif;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #000;
    margin: 2.6rem 0;
}

h4,
.h4 {
    font-weight: 600;
    font-size: 1.714rem;
    font-family: "Baskervville", serif;
    line-height: 1.25;
    letter-spacing: 0.025em;
    color: #000;
    margin: 2.6rem 0;
}

h5,
.h5 {
    font-weight: 600;
    font-size: 1.571rem;
    font-family: "Baskervville", serif;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 2.6rem 0;
}

h6,
.h6 {
    font-weight: 600;
    font-size: 1.285rem;
    font-family: "Baskervville", serif;
    line-height: 1.3333;
    letter-spacing: 0;
    color: #000;
    margin: 2.6rem 0;
}

p {
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    line-height: 25px;
}

a {
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: #000;
}

span {
    font-family: "Lato", sans-serif;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container-xxxl {
    margin-left: auto;
    margin-right: auto;
    padding-left: .9375rem;
    padding-right: .9375rem;
    width: 100%;
}


@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl,
    .container-xxxl {
        max-width: 105rem;
    }
}

.container-fluid {
    width: 100%;
}

strong {
    font-weight: 600;
}

.success-message,
.error-message {
    display: none;
    margin-top: 2rem;
}

.submit-btn button {
    /* border-radius: 5px; */
    color: #fff;
    /* background: #04757A; */
    padding: 15px 0;
    width: 100%;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid #1A5864;
    position: relative;
    z-index: 1;
}

.submit-btn button:hover {
    background-color: #fff;
    color: #1A5864;
}

.submit-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/button-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.submit-btn button:hover::before {
    opacity: 0;
}

.section-head h2 {
    font-size: 42px;
    margin: 0;
    text-transform: uppercase;
    color: #1A5864;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-head p {
    color: #525252;
    margin-top: 10px;
    font-size: 20px;
}

/* ------- Page CSS ------- */

#header {
    height: 100px;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    position: absolute;
    width: 100%;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header .register-btn {
    background: #1E1C23;
    color: #fff;
    border-color: transparent;
}

#header .register-btn:hover {
    background: #fff;
    color: #1E1C23;
}

/* #header .register-btn{
    color: #fff;
    border-color: #fff;
}
#header .register-btn:hover img{
    filter: invert(0);
} */
/* Sticky header styles */
/* #header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
} */

#header.sticky.show {
    transform: translateY(0);
}

.logo img {
    width: 230px;
    /* filter: invert(1); */
}

#header p {
    color: white;
}

#header hr {
    width: 70%;
    color: #9B9B9B;
    border: 0.05rem solid;
}

#header .register-btn:hover img {
    filter: invert(1);
}

.register-btn img {
    max-width: 19px;
    width: 100%;
}

.register-btn:hover img {
    filter: brightness(0) invert(1);
}

.header-menu ul {
    display: flex;
    list-style-type: none;
    gap: 40px;
}

.header-menu ul li a {
    color: #fff;
    font-size: 16px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #1E3F71;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #1E3F71;
}

.logo img {
    max-width: 165px;
    width: 100%;
    visibility: hidden;
}

.call-to-action-btns {
    display: flex;
    gap: 15px;
}

.register-btn {
    font-family: "Lato", sans-serif;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 30px;
    font-size: 18px;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-btn img {
    max-width: 19px;
    width: 100%;
}

.white-bg {
    color: #1A5864;
    background-color: transparent;
    border: 1px solid #1A5864;
    transition: background-color 0.3s ease;
}

.white-bg:hover {
    background-color: #1A5864;
    color: #fff;
}

.black-bg {
    background-color: #1A5864;
    color: #fff;
    transition: background-color 0.3s ease;
    border: 1px solid #1A5864;
    position: relative;
    z-index: 1;
}

.black-bg:hover {
    background-color: #fff;
    color: #1A5864;
}

.black-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/button-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.black-bg:hover::before {
    opacity: 0;
}

/* -------Banner------- */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #F4FAFF;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
    z-index: 99;
}

.sticky-bottom-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sticky-bottom-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.sticky-bottom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 1;
}

/* Hide placeholder when video is loaded and playing */
.sticky-bottom-video[data-loaded="true"]~.sticky-bottom-placeholder {
    display: none;
}

.sticky-bar-p {
    color: #fff;
    font-size: 23px;
}

.sticky-bottom-bar span {
    color: #fff !important;
    font-weight: 600;
}

.sticky-bottom-bar.hidden-bottom-bar {
    transform: translateY(100%);
}

.sticky-bottom-left img {
    width: 128px;
    position: relative;
    ;
    /* filter: invert(1); */
}

.sticky-bar-head {
    position: relative;
}

.sticky-bottom-content .register-btn {
    width: 270px;
    position: relative;
    background-color: #fff;
    border-color: #fff;
    color: #1A5864;
    z-index: 1;
}

.sticky-bottom-content .register-btn:hover {
    background: transparent;
    color: #fff;
}

.sticky-bottom-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.sticky-bottom-btn {
    background: #fff;
    color: #113c6e;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.side-contact-bar {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    padding: 5px 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mob-only-flex {
    display: none !important;
}

.side-contact-bar.hidden-side-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(60px);
}

.side-contact-bar span {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #161616;
    text-align: center;
}

.side-contact-bar .side-btn:nth-child(2) {
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.side-contact-bar .side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    padding: 15px 0;
}

.side-contact-bar .side-btn img {
    width: 28px;
    height: 28px;
}

.side-contact-bar {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    padding: 5px 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-contact-bar.hidden-side-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(60px);
}

.side-contact-bar span {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #161616;
    text-align: center;
}

.side-contact-bar .side-btn:nth-child(2) {
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.side-contact-bar .side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    padding: 15px 0;
}

.side-contact-bar .side-btn img {
    width: 28px;
    height: 28px;
}



#banner {
    background-image: url('../images/banner.jpg?v=2');
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
}

@media (min-resolution: 192dpi) {
    #banner {
        width: 100%;
        height: 100vh;
        background: url(../images/banner-retina.jpg?v=2) center center / cover no-repeat;
        background-position: center center;
        display: flex;
        align-items: center;
    }
}

/* #banner::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 100%;
    background: linear-gradient(250.03deg, rgba(0, 0, 0, 0) 19.19%, rgb(0 72 98 / 85%) 81.34%);
    z-index: 0;
} */

#banner .container-fluid {
    padding: 0;
    z-index: 1;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#banner .container {
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner-section {
    height: 100%;
    display: flex;
}

.banner-right {
    width: 50%;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.banner-left .inner-logo {
    width: 100%;
    max-width: 170px;
}

.banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-left h1 {
    font-size: 42px;
    text-transform: uppercase;
    margin-top: 30px;
    max-width: 85%;
    color: #fff;
}

.banner-left p {
    max-width: 85%;
    color: #fff;
    font-size: 24px;
}

.banner-left .register-btn {
    margin-top: 40px;
    background: #fff;
    color: #1A5864;
}

.banner-left .register-btn:hover {
    background: #1A5864;
    color: #fff;
}

.banner-left-text {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.banner-left-text span {
    color: #062A34;
    font-family: "Lato", sans-serif;
    font-weight: 500;
}

.banner-left-text hr {
    width: 100px;
    border: none;
    border-top: 0.5px solid #062A34;
    height: 0;
}

.banner-left-bottom {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.banner-left-bottom span {
    color: #062A34;
    font-family: "Lato", sans-serif;
}

.banner-left-bottom span strong {
    color: #062A34;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.banner-left-bottom img {
    filter: invert(1);
}

.animated-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translate(-50%);
}

.animated-scroll-btn:hover {
    /*transform: scale(1.05);*/
}

/* Circle Container - No animation */
.scroll-circle {
    width: 38px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

/* Arrow Animation Container */
.animated-arrow-container {
    position: relative;
    width: 30px;
    height: 40px;
    overflow: hidden;
}

/* Arrow Image - Only this animates */
.moving-arrow {
    position: absolute;
    width: 20px;
    height: 28px;
    left: 50%;
    margin-left: -10px;
    animation: arrowFlow 2.5s ease-in-out infinite;
}

/* Arrow Image Element */
.moving-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Single Arrow Animation */
@keyframes arrowFlow {
    0% {
        top: -25px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 45px;
        opacity: 0;
    }
}

/* Text Styles - No animation */
.scroll-caption {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 0 !important;
}

.form-group {
    margin-bottom: 12px;
}

.form-group textarea {
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 3px;
    padding-left: 15px;
    color: #161C2D;
    font-size: 12px;
    margin-top: 4px;
    padding-top: 10px;
    height: 110px;
    font-family: "Lato", sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 45px;
    border: 1px solid #E2E2E2;
    border-radius: 3px;
    padding-left: 15px;
    color: #161C2D;
    font-size: 12px;
    margin-top: 4px;
}

.form-group .iti--allow-dropdown {
    margin-top: 4px;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #808080;
    font-style: italic;
}

.form-group label {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #000;
}

#sliderFormID {
    margin-top: 15px;
}

.form-img {
    text-align: center;
}

.form-img img {
    width: 100%;
    max-width: 130px;
}

.form-group input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 0;
}

.mort-check {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 20px 0;
    font-weight: 600;
}

/* About */
#body-wrap {
    /* margin-top: -100px;  */
    position: relative;
    z-index: 2;
    transition: margin-top 0.6s ease;
}

#body-wrap.scroll-up {
    margin-top: -100px;
    /* Stay at initial overlap */
}

#body-wrap.scroll-down {
    margin-top: -150px;
    /* Pull up 200px more */
}

#about {
    /*background-color: #F8F8F8;*/
}

#about nav {
    color: #75736F;
    font-size: 2.5rem;
    margin: 40px auto 20px;
    text-align: center;
    font-family: "Lato", sans-serif;
    position: relative;
    display: inline-block;
    padding-left: 40px;
}

.about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-inner p {
    color: #000;
    text-align: center;
}

.about-inner img {
    width: 100%;
    max-width: 700px;
}

/* Area Section */
#area-detail {
    /* background-color: #F8F8F8; */
}

#area-detail .container {
    border-bottom: 1px solid #e7e9ed;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.area-grid-item img {
    opacity: 0.5;
    width: 40px;
}

/* .area-gid-2 img {
    opacity: 0.5;
} */

.area-grid-item {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.area-grid div p {
    max-width: 100%;
    text-align: left;
    margin-top: 6px;
}

.area-grid h3 {
    font-family: "Lato", sans-serif;
    margin: 0;
    color: #1E1C23;
    letter-spacing: 0;
    font-size: 28px;
    text-align: left;
    font-weight: 500;
}

.area-grid p {
    font-family: "Lato", sans-serif;
    color: #776E6E;
    opacity: 0.7;
}

.area-grid div {
    text-align: center;
    width: 100%;
}

.area-grid img {
    /* opacity: 0.5; */
}

.invest-cta-btns {
    display: flex;
    gap: 15px;
}

/* Projects Grid Layout */
#discover-projects {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.section-head {
    /* text-align: center; */
    margin-bottom: 60px;
}


.section-head p {
    color: #666;
    font-size: 18px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    /* transform: scale(1.05); */
}

.new-launch-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    height: 30px;
    z-index: 2;
    line-height: 1;
}

.handover-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #04757A;
    color: #fff;
    padding: 8px 15px;
    height: 30px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
}

.project-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-type {
    margin-bottom: 10px;
}

.property-type span {
    padding: 7px 18px;
    font-size: 12px;
    color: #000000;
    border-radius: 15px;
    border: 1px solid #000000;
    font-weight: 600;
    font-family: "NeueMontreal", sans-serif;
    position: relative;
}

.property-type span::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 12px;
    background: url(../images/icons/type.svg) no-repeat center center;
    background-size: contain;
    margin-right: 6px;
    margin-bottom: -1px;
}

.project-card .project-title {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 13px;
    letter-spacing: 0;
    font-family: "Lato", sans-serif;
    cursor: pointer;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.stat span {
    font-weight: 600;
    color: #040404;
}

.stat img {
    width: 20px;
    height: 20px;
}

.brochure-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #04757A;
    color: #04757A;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.brochure-btn .icon-lock {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/lock.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -4px;
    vertical-align: middle;
}

.brochure-btn:hover .icon-lock {
    background-image: url('../images/lock-open.svg');
}

.brochure-btn:hover {
    background: #04757A;
    color: #fff;
}


@media (max-width: 991px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #discover-projects .section-head p {
        text-align: center;
    }

    .sticky-bottom-video {
        display: none;
    }

    .sticky-bottom-placeholder {
        opacity: 0;
    }
}

@media (max-width: 767px) {
    #discover-projects {
        padding: 60px 0;
    }

    .project-stats {
        flex-direction: column;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile-only project visibility */
    .project-card.project:nth-child(n+6) {
        display: none;
    }

    .project-card.project.show-mobile {
        display: flex !important;
    }

    .project-content {
        padding: 25px 10px;
    }

    .load-more-container.mobile-only-flex {
        display: flex !important;
        justify-content: center;
        margin-top: 40px;
    }
}

.load-more-btn {
    padding: 15px 40px;
    background: #04757A;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #035a5e;
}

.load-more-container.d-none {
    display: none;
}


.project {
    position: relative;
    /* overflow: hidden; */
}

.project .project-swiper {
    width: 50%;
    position: relative;
}

.project .project-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.project .project-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Make navigation buttons smaller and positioned properly */
.project .swiper-button-next,
.project .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.project .swiper-button-next:after,
.project .swiper-button-prev:after {
    font-size: 12px;
}

.swiper-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    z-index: 2;
    pointer-events: auto;
}

.swiper-overlay-link:hover~.swiper-button-prev,
.swiper-overlay-link:hover~.swiper-button-next {
    pointer-events: auto;
}

.project .swiper-wrapper {
    flex-wrap: nowrap !important;
}

.project .swiper-slide:not(:first-child) {
    display: none;
}

.swiper-initialized .swiper-slide {
    display: block !important;
}

/* Position pagination properly */
.project .swiper-pagination {
    bottom: 10px;
}

.project .swiper-pagination-bullet {
    /*background-color: #fff;*/
    opacity: 0.7;
    width: 8px;
    height: 8px;
}

.project .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

.hover-zones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    pointer-events: none;
}

.hover-zone {
    flex: 1;
    height: 100%;
    pointer-events: all;
    cursor: pointer;
}

/* Full img */
#full-img {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 40px;
}

.full-img {
    display: flex;
}

.full-img img {
    width: 100%;
    margin-top: 40px;
}


#full-img .section-head h2 {
    text-align: center;
}

/* Why invest in emaar */
#invest-emaar {
    background-color: #F3F4F1;
    background: url('../images/abt-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#invest-emaar .container {
    padding: 80px 40px;
}

.invest-first {
    display: flex;
    gap: 30px;
}

.invest-first-left {
    width: calc(64% - 30px);
}

.invest-first-right {
    width: 35%;
}

.invest-first-left .section-head p {
    /* max-width: 75%; */
}

.invest-first-right img {
    width: 100%;
}

.invest-first-left .section-head {
    max-width: 90%;
}

.invest-first-left .register-btn {
    margin-bottom: 20px;
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.invest-grid::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0px;
    top: 50%;
}

.invest-grid-item {
    /* background-color: #fff; */
    padding: 30px;
    border-radius: 5px;
}

.invest-grid .invest-grid-item:nth-child(2),
.invest-grid .invest-grid-item:nth-child(5) {
    border-right: 1px solid #0000001A;
    border-left: 1px solid #0000001A;
}

.invest-grid-item span {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    color: #000;
}

.invest-grid-item img {
    max-width: 48px;
    width: 100%;
}

.invest-grid-item div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.invest-grid-item p {
    margin-top: 20px;
    font-size: 20px;
    color: #000;
    opacity: 0.7;
}

/* Video Section */
#videoArea {
    margin-top: 130px;
}

.videoImage {
    position: relative;
}

/* .videoImage:before {
    content: "";
    background-color: #215a9236;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
} */
.videoBtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video-btn img {
    max-width: 100px;
}

.videoImage img {
    width: 100%;
    margin-top: 30px;
}

.video-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Map Area */
#location-map {
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

#location-map::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url(../images/abt-bg.jpg);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    background-size: cover;
    background-repeat: no-repeat;
}



#location-map .section-head {
    display: block !important;
    margin-bottom: 35px;
}

.map-wrap img {
    width: 100%;
}

.nearby-locations {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 42px 0;
    margin-top: -4px;
}

.nearby-location p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.nearby-location p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-top: 10px;
}

.nearby-location:not(:last-child) {
    border-right: 1px solid #0000001A;
}

/* Signs */
#signs {
    background: #F5F5F5;
    background-image: url(../images/newsletter-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#signs .section-head {
    text-align: center;
    margin: 0;
}

#signs .container {
    display: flex;
    justify-content: center;
    padding: 70px 0;
}

#signs .container>div {
    background: linear-gradient(160.97deg, #FFFFFF 12.82%, #F2F2F2 100.49%);
    max-width: 80%;
    padding: 50px 30px;
    width: 100%;
}

.sign-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

#signs .submit-btn {
    text-align: center;
}

#signs .submit-btn button {
    max-width: 300px;
    margin-top: 30px;
}

/* Expert Section */
#expert {
    background: #F5F5F5;
    padding: 90px 0 70px;
}

#expert .section-head h2 {
    font-size: 32px;
}

#expert .section-head p {
    font-size: 16px;
}

#expert .call-to-action-btns {
    margin-top: 50px;
}

.expert-wrap {
    display: flex;
    padding: 50px 50px 0 50px;
    background: #fff;
    gap: 50px;
}

.expert-left {
    width: 75%;
}

.expert-right {
    width: 25%;
}

.expert-right img {
    width: 307px;
    margin-top: -120px;
}

/* Book Consultation */
#book-consultation {
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
}

#book-consultation:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/book-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.book-section {
    display: flex;
    padding: 10px 0;
}

.book-img {
    width: 45%;
    display: flex;
}

#book-consultation .section-head h2 {
    color: #fff;
}

/* Only apply gradient if browser supports it */


.book-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
    padding-left: 40px;
}

.book-right .section-head p {
    color: #fff;
}

.book-img img {
    width: 100%;
}

.book-right .call-to-action-btns {
    margin-top: 70px;
}

/* FAQ Section */

#faq {
    padding: 70px 0;
    background-color: #fff;
}

#faq .faq-con {
    border-radius: 7px;
}

.faq {
    margin: 50px 0 0;
    background-color: #fff;
}

.faq-item {
    margin-bottom: 4px;
}

#faq .section-head {
    margin-bottom: 0;
}

.faq-question {
    cursor: pointer;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
}

.faq .faq-item:last-child {
    border-bottom: none;
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-question span {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    line-height: 1.5;
    font-size: 17px;
    transition: max-height 0.4s ease;
    opacity: 0;
    font-family: "Lato", sans-serif;
    color: #35373C;
}

.faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-support {
    display: flex;
    gap: 10px;
}

.support-img img {
    width: 100%;
    max-width: 22px;
}

.faq-support div nav:nth-child(1) {
    color: #131313;
    font-family: "Lato", sans-serif;
}

.faq-support div nav:nth-child(2) {
    color: #062A34;
    font-family: "Lato", sans-serif;
    margin-top: 5px;
}

/* .faq-top .white-bg{
    background-color: #fff;
}
.faq-top .white-bg:hover{
    border: 1px solid #fff;
    background-color: #000;
} */


/* Form Section */
#vist-area {
    background: url(../images/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#vist-area .container {
    display: flex;
    justify-content: center;
    padding: 70px 0;
    z-index: 1;
    position: relative;
}

#vist-area .container>div {
    background: #FFFFFFF5;
    max-width: 80%;
    padding: 50px 30px;
    width: 100%;
}

#vist-area .form-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

#vist-area .section-head {
    text-align: center;
    margin: 0;
}

#vist-area .section-head h2 {
    /* text-transform: uppercase; */
}

#visitPop .submit-btn {
    text-align: center;
    margin-top: 30px;
}

#visitPop .submit-btn button {
    max-width: 400px;
}

#vist-area .section-head p {
    color: #353535;
}

.footer-flex {
    display: flex;
    gap: 10px;
}

.footer-flex .form-group {
    width: 50%;
}

.visit-content {
    width: 100%;
    padding: 0;
}

.visit-content .section-head h2 {
    display: none;
}

.visit-content .section-head p {
    display: none;
}

.footer-quote {
    width: 65%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* Footer Bar */
#bottom-bar {
    background-color: #0E2F36;
    display: flex;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 108px;
}

#bottom-bar img {
    max-width: 125px;
    width: 100%;
}

#bottom-bar hr {
    color: #FFFFFF;
    opacity: 0.1;
    margin-top: 20px;
    margin-bottom: 16px;
    border-width: 1px;
}

#bottom-bar p {
    text-align: center;
    color: #fff;
    font-size: 12px !important;
    margin-bottom: 0;
}

#bottom-bar p strong {
    color: #fff;
}

#bottom-bar p:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 10px;
}

#bottom-bar .container {
    text-align: center;
}

#bottom-bar a {
    margin-top: 10px;
    text-align: center;
    font-size: 12px !important;
    color: #fff;
    font-style: underline;
    text-decoration: underline;
}

/* Popup code */
.autoPopup {
    border-radius: 10px;
    padding: 40px;
    background: #fff;
    max-width: 500px;
    position: relative;
}

.autoPopup .section-head {
    margin-bottom: 20px;
}

#contactPopup .section-head h2,
#brochurePopup .section-head h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    text-align: center;
    text-transform: initial;
    margin-bottom: 5px;
}

#contactPopup .section-head p,
#brochurePopup .section-head p {
    text-align: center;
}

.autoPopup-description {
    color: white;
    padding: 30px 45px 0px;
}

.autoPopup-description h3 {
    color: white;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.autoPopup-description p {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    line-height: 2rem;
    margin-top: 15px;
}

.agent-wrap {
    display: flex;
    align-items: center;
}

.mt40,
.mt40-desk-only {
    margin-top: 40px;
}

.agent-wrap .agent-photo img {
    max-width: 115px;
    border-radius: 25px;
}

.agent-wrap .agent-contact {
    flex-basis: 215px;
    padding-left: 14px;
}

.agent-wrap .agent-contact p {
    margin: 0;
    line-height: 1.6;
}

.autoPopup-description p {
    color: white;
}

.agent-wrap .agent-contact a {
    color: white;
    text-decoration: none;
}

.autoPopup-form {
    background: white;
    border-radius: 30px;
}

.autoPopup .flex-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#autoPop,
#brochureFormPopup {
    margin-top: 20px;
}

.mfp-close-btn-in .mfp-close {
    color: #000;
}

.social-media-icon {
    position: fixed;
    bottom: -50px;
    max-width: 85px;
    right: 16px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 11;
    display: none;
}

.social-media-icon ul {
    list-style: none;
}

.social-media-icon ul li {
    width: 100%;
    float: left;
    position: relative;
    margin-left: 15px;
    margin-top: 11px;
    max-width: 62px;
}

.ion-android-call:before {
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../images/call.png);
    position: absolute;
    left: 18px;
    background-size: cover;
    top: 20px;
}

.ion-social-whatsapp-outline:before {
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../images/whatsapp.png);
    position: absolute;
    left: 18px;
    background-size: cover;
    top: 20px;
}

.social-media-icon ul li a {
    display: inline-flex;
    align-items: center;
    padding: 0px 10px;
    font-size: 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0px 2px 6px rgb(0, 0, 0, 0.1);
    transition: 0.8s all;
    margin: 5px 0;
    text-decoration: none;
    text-align: center;
}

.social-media-icon ul li .call-btn {
    background: #50afe4;
}

.social-media-icon ul li a .icon {
    font-size: 25px;
    width: 34px;
    height: 51px;
}

.icon {
    display: inline-block;
}

.social-media-icon ul li .whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn::before {
    content: "";
    width: 58px;
    position: absolute;
    height: 50px;
    left: 0;
    animation: pulse 1.5s infinite;
    background-color: #25d366;
    border-radius: 10px;
}

.call-btn::before {
    content: "";
    width: 58px;
    position: absolute;
    height: 50px;
    left: 0;
    animation: pulse 1.5s infinite;
    background-color: #50afe4;
    border-radius: 10px;
}

.social-media-icon ul li a span {
    display: inline-flex;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 0;
    -webkit-transition: max-width 0.8s;
    overflow: hidden;
    font-size: 16px;
    margin-left: 5px;
}

/*.social-media-icon ul li a:hover span {*/
/*	max-width: 300px;*/
/*	transition: max-width 1.6s;*/
/*	-webkit-transition: max-width 1.6s;*/
/*}*/
.grecaptcha-badge {
    visibility: hidden;
}

.tab-only {
    display: none;
}

@media (max-width: 1800px) {}

@media (max-width: 1600px) {}

@media (max-width: 1440px) {
    .banner-left {
        padding: 50px;
    }

    .banner-left h1 {
        font-size: 3rem;
        max-width: 60%;
    }

    #body-wrap.scroll-down {
        margin-top: -30px;
    }

    .form-img-text {
        right: 51%;
    }

    .side-contact-bar span {
        font-size: 10px;
    }

    .side-contact-bar .side-btn img {
        width: 22px;
        height: 22px;
    }

}

@media (max-width: 1199px) {
    .about-inner img {
        max-width: 400px;
    }

    .banner-left h1 {
        font-size: 2rem;
    }

    .banner-left .inner-logo {
        max-width: 150px;
    }

    #body-wrap {
        margin-top: -55px;
    }



    .register-btn {
        font-size: 14px;
        /* width: 200px; */
    }

}

/* Responsive */
@media (max-width: 991px) {
    .banner-section {
        flex-direction: column;
        justify-content: center;
    }

    .banner-left,
    .banner-right {
        width: 100%;
    }

    .banner-left>div {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .banner-section {
        background: none;
    }

    .desktop-cta {
        display: none;
    }

    .banner-left h1 {
        max-width: 86%;
    }

    #header .container {}

    .tab-only {
        display: block;
    }

    .desktop-tab {
        display: none;
    }

    .header-menu.active {
        transform: translateX(0);
    }

    .header-menu ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    #signs .container>div {
        max-width: 100%;
    }

    #vist-area .container>div {
        max-width: 100%;
    }

    .footer-quote {
        width: 100%;
        align-items: flex-end;
        justify-content: center;
    }

    .visit-content {
        width: 100%;
        padding: 0;
    }

    .visit-content .section-head h2 {
        display: block;
        font-size: 22px;
        margin-bottom: 30px;
    }

    #vist-area {
        margin-top: 65px;
    }

    .visit-content {
        margin-top: 45px;
    }

    .header-menu ul li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #071C35;
    }

    .sticky-bottom-left,
    .sticky-bottom-left-btn,
    .sticky-bar-head {
        display: none !important;
    }

    .sticky-bottom-content {
        justify-content: center;
        position: relative;
    }

    .sticky-bottom-content .register-btn {
        width: 170px;
    }

    #about nav {
        font-size: 2rem;
        text-align: center;
    }

    p {
        font-size: 14px;
    }

    .register-btn {
        font-size: 14px;
    }

    .register-btn img {
        max-width: 13px;
    }

    .logo img {
        max-width: 130px;
        visibility: visible;
    }

    .sticky-socials {
        display: flex !important;
        width: 100%;
        gap: 10px;
    }

    .sticky-socials div:first-child {
        width: 50%;
    }

    .sticky-socials div:nth-child(2) {
        width: 50%;
        display: flex;
    }

    .sticky-socials div:nth-child(2) a {
        display: flex;
        background: #26D366;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
        gap: 6px;
        border-radius: 8px;
    }

    .sticky-socials div:nth-child(1) a {
        display: flex;
        background: #50AFE4;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
        gap: 6px;
        border-radius: 8px;
    }

    .sticky-socials a img {
        max-width: 23px;
        width: 100%;
    }

    .sticky-socials a p {
        color: #fff;
    }

    #header {
        height: 110px;
    }

    .banner-inner {
        justify-content: center;
    }

    .banner-left p {
        text-align: center;
        font-size: 17px;
    }

    .banner-left .inner-logo {
        display: none;
    }

    .invest-grid {
        gap: 20px;
    }

    #vist-area {
        padding-bottom: 50px;
    }



    .banner-left {
        justify-content: center;
    }

    #banner::before {
        width: 100%;
    }

    .invest-grid-item {
        border-top: 1px solid #0000001A;
    }

    .invest-grid-item:nth-child(1),
    .invest-grid-item:nth-child(2) {
        border-top: none !important;
    }

    .invest-grid::before {
        display: none;
    }

    .invest-grid .invest-grid-item:nth-child(2),
    .invest-grid .invest-grid-item:nth-child(5) {
        border-left: none;
        border-right: none;
    }

    .invest-cta-btns {
        justify-content: center;
    }

    .book-img img {
        max-width: 70%;
    }

    .book-img {
        justify-content: center;
    }

    .banner-left-bottom {
        display: none;
    }

    .area-grid {
        /* max-width: 90%; */
    }

    .area-grid div img {
        max-width: 33px;
    }

    .area-grid h3 {
        font-size: 1.5rem;
    }

    .section-head h2 {
        font-size: 2rem;
        text-align: center;
    }

    .section-head p {
        text-align: center;
    }

    .invest-first {
        flex-direction: column-reverse;
    }

    .invest-first-left {
        width: 100%;
        align-items: center;
    }

    .invest-first-right {
        display: none !important;
        width: 100%;
        max-height: 220px;
        overflow: hidden;
        display: flex;
        align-items: center;
        border-radius: 4px;
    }

    .invest-first-left .section-head {
        max-width: 100%;
    }

    .invest-first-left .section-head p {
        max-width: 100%;
        text-align: center;
    }

    .form-img-text {
        right: 41%;
    }

    .footer-quote {
        width: 100%;
        align-items: flex-end;
        justify-content: center;
    }

    .footer-quote .show-info {
        width: 100%;
        text-align: right;
    }

    .invest-first-left .register-btn {
        margin-top: 20px;
    }

    .invest-grid-item img {
        max-width: 41px;
    }

    .invest-grid-item p {
        font-size: 16px;
    }

    .invest-grid-item span {
        font-size: 20px;
    }

    .invest-grid {
        grid-template-columns: 1fr 1fr;
    }



    #expert .call-to-action-btns {
        justify-content: center;
    }

    #expert .section-head p {
        text-align: center;
    }

    .expert-right {
        display: flex;
        justify-content: center;
    }

    .expert-right img {
        margin-top: 0;
    }

    .video-btn img {
        max-width: 60px;
    }

    .map {
        height: 68vh;
        background-repeat: no-repeat;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
        padding: 40px 0 0;
    }

    .location-box:nth-child(5) {
        grid-column: 1 / -1;
        /* Span both columns */
        justify-self: center;
        /* Center the box horizontally */
    }

    .location-box {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px;
    }

    .location-box h3 {
        margin: 0;
        font-size: 16px;
    }

    .location-box p {
        margin: 0;
        font-size: 16px;
    }

    .location-card {
        min-width: 254px;
        max-width: 260px;
    }

    .location-card h4 {
        font-size: 12px;
    }

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

    .video-cta {
        justify-content: center;
    }

    .map {
        background-position: 45%;
    }

    .book-section {
        flex-direction: column;
    }

    .book-img {
        width: 100%;
    }

    .book-right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
        padding-right: 0;
    }

    .nearby-locations {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }

    .expert-left {
        width: 100%;
    }

    .expert-right {
        width: 100%;
    }

    .expert-wrap {
        flex-direction: column;
    }

    .book-right .section-head p {
        text-align: center;
    }

    .book-right .call-to-action-btns {
        margin-top: 30px;
        justify-content: center;
        margin-bottom: 35px;
    }

    #faq {
        background-color: #fff;
        padding-top: 50px;
    }

    .faq-support,
    .faq-top .call-to-action-btns {
        display: none;
    }

    .faq {
        background-color: #FAFAFA;
    }

    .form-container {
        flex-direction: column-reverse;
        padding-top: 50px;
        margin-top: 0;
    }

    .visit-content .section-head {
        /* margin-top: 40px; */
    }

    .footer-quote .show-info {
        text-align: center;
    }

    .footer-quote {
        display: none;
        width: 100%;
        align-items: flex-end;
    }

    .visit-content {
        width: 100%;
        padding: 0;
    }

    .visit-content .section-head h2 {
        display: block;
        font-size: 22px;
        margin-bottom: 30px;
    }

    #vist-area .container {
        /* background-color: #fff; */
    }

    #vist-area .container>.section-head {
        display: none;
    }

    #vist-area .container {
        padding: 45px 45px 0;
    }

    #expert {
        padding: 70px 0 70px;
    }

    .visit-content .booking-form-area {
        /* background-color: #FAFAFA; */
        /* padding: 60px; */
        border-radius: 10px;
    }
}

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

    .map-container {
        height: 265px;
    }

    .locations-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    #header .call-to-action-btns {
        display: none;
    }



    .area-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: none;
        margin: 0;
    }



    .area-grid-item {
        border-top: 1px solid #0000001A;
        padding: 20px 0;

    }



    .area-gid-3 {
        border-bottom: 1px solid #0000001A;
    }

    .footer-flex {
        flex-direction: column;
    }

    .footer-flex .form-group {
        width: 100%;
    }

    .faq-question span {
        font-size: 13px;
    }

    .nearby-locations {
        grid-template-columns: 1fr 1fr;
    }

    .faq-answer {
        font-size: 13px;
    }

    .area-grid div img {
        height: 32px;
    }

    #vist-area {
        margin-top: 0 !important;
        padding-bottom: 25px;
    }

    #videoArea,
    #locationn,
    #vist-area {
        margin-top: 70px;
    }

    .form-container {
        padding-top: 5px;
    }

    #invest-emaar {
        margin-top: 0;
    }

    .invest-first-left .section-head h2 {
        /* text-align: left!important; */
    }

    .invest-first-left .section-head p {
        font-size: 15px;
    }

    .area-grid div p {
        text-align: left !important;
    }

    .invest-cta-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .banner-left {
        padding: 50px 10px;
    }

    .banner-left h1 {
        max-width: 100%;
    }

    .banner-left p {
        max-width: 100%;
    }

    #invest-emaar .container {
        padding: 50px 15px;
    }

    #faq {
        padding: 50px 0 60px;
        background: #F6F1ED;
    }

    .invest-grid-item:nth-child(2) {
        border-top: 1px solid #0000001A !important;
    }

    #vist-area .container {
        padding: 40px 15px;
    }

    #vist-area .section-head p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.3;
    }

    #bottom-bar img {
        max-width: 87px;
    }

    #book-consultation {
        padding-bottom: 30px;
        padding-top: 15px;
    }

    #book-consultation .section-head {
        margin-bottom: 0;
    }

    .book-img img {
        max-width: 87%;
    }

    .book-right {
        padding-right: 0;
    }

    .faq {
        margin: 0;
    }



    #map {
        height: 350px;
    }

    #signs .container {
        padding: 70px 15px 70px;
    }

    .side-contact-bar {
        display: none;
    }

    .mob-only-flex {
        display: flex !important;
    }



    .sign-flex {
        grid-template-columns: 1fr;
    }



    #expert .section-head h2 {
        font-size: 1.4rem;
    }



    .location-card img {
        height: 75px;
    }

    .location-card .card-content {
        padding: 6px;
    }

    .section-head h2 {
        font-size: 1.6rem;
        text-align: center;
    }



    .expert-wrap {
        padding: 50px 15px 0 15px;
    }

    .expert-left .call-to-action-btns div {
        width: 100%;
    }

    /* .nearby-location:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 50%;
    } */

    .invest-grid-item {
        padding: 30px 0;
    }

    #vist-area .container>div {
        padding: 50px 15px;
    }

    .footer-quote {
        display: none;
    }

    .invest-grid {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .map {
        height: 30vh;
        background-size: cover;
    }

    #bottom-bar {
        height: auto;
        padding: 20px 0;
    }

    .invest-first-left .register-btn {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
    }



    .banner-left .inner-logo {
        max-width: 130px;
    }

    .location-card {
        min-width: 0;
        max-width: 110px;
        border-radius: 4px;
    }

    .location-card p {
        display: none;
    }

    .location-card h3 {
        font-size: 10px;
    }

    .location-card h4 {
        font-size: 7px;
        margin-top: 3px;
    }

    .location-box {
        width: 100%;
    }

    .mfp-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .location-box p {
        font-size: 15px;
    }

    .location-box h3 {
        font-size: 15px;
    }

    .section-head p {
        font-size: 15px;
    }

    .faq-top {
        justify-content: center;
    }



    .visit-content .section-head p {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .nearby-location:not(:last-child) {
        border-right: none;
    }

    .visit-content .booking-form-area {
        /* background-color: #fff; */
        padding: 0;
    }

    #vist-area .form-container {
        margin-top: 0;
    }

    #vist-area .container {
        padding: 45px 15px;
    }

    #visitPop .form-group input,
    #visitPop .form-group select {
        background-color: #FAFAFA;
        border: none;
        border-bottom: 1px solid #57575773;
        border-radius: 0;
    }
}