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

  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 */


@font-face {
    font-family: 'optima';
    src: url('../fonts/optima.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'optima bold';
    src: url('../fonts/optima-bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans Light';
    src: url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:#000;
}
h1,
.h1 {
	font-size: 3.428rem;
	line-height: 1.2;
	color: #000;
	letter-spacing: -0.025em;
	margin: 0.5em 0;
	text-transform: uppercase;
    font-family: 'optima bold';
    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: 'optima bold';
    font-weight: 400;
    letter-spacing: .065em;
}

h3,
.h3 {
	font-weight: 600;
	font-size: 2.142rem;
    font-family: 'optima bold';
	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: 'optima bold';
	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: 'optima bold';
	line-height: 1.1;
	letter-spacing: 0;
	color: #000;
	margin: 2.6rem 0;
}

h6,
.h6 {
	font-weight: 600;
	font-size: 1.285rem;
    font-family: 'optima bold';
	line-height: 1.3333;
	letter-spacing: 0;
	color: #000;
	margin: 2.6rem 0;
}
p {
	font-size: 1rem;
    font-family: 'Open Sans Light';
    line-height: 25px;
}
a {
    font-family: 'Open Sans Light';
    text-decoration: none;
    color: #000;
}
span{
    font-family: 'optima';
}
.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: 95rem;
    }
    .banner-right{
        max-width: 500px!important;
        width: 100%;
    }
}
.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: #000;
    padding: 15px 0;
    width: 100%;
    margin-top: 15px;
    font-family: 'optima';
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #000;
}
.submit-btn button:hover{
    background-color: #fff;
    color: #000;
}
.section-head h2{
    font-size: 2.8rem;
    margin: 0;
    text-transform: capitalize;
    font-family: 'optima';
    letter-spacing: 0;
}
.section-head p{
    color: #161C2D;
    margin-top: 10px;
}

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

#header{
    height: 100px;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
/* 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{
    max-width: 165px;
    width: 100%;
}
.call-to-action-btns{
    display: flex;
    gap: 15px;
}
.register-btn{
    font-family: 'optima';
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px;
    border-radius: 5px;
    font-size: 14px;
    gap: 10px;
    text-transform: uppercase;

}
.register-btn img{
    max-width: 19px;
    width: 100%;
}
.register-btn:hover img{
    filter: invert(1);
}
.white-bg{
    color: #000;
    border: 1px solid #000;
    transition: background-color 0.3s ease;
}
.white-bg:hover{
    background-color: #000;
    color: #fff;
}
.black-bg{
    background-color: #000;
    color: #fff;
    transition: background-color 0.3s ease;
    border: 1px solid #000;
}
.black-bg:hover{
    background-color: #fff;
    color: #000;
}
/* -------Banner------- */

#banner{
    background-image: url('../images/banner.jpg?v=1');
    height: 90vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}
#banner::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000057; 
    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 .container{
    height: 100%;
    position: relative;
    z-index: 1;
}
.banner-section{
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-inner{
    height: 57rem;
    padding: 140px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.banner-left .inner-logo{
    width: 100%;
    max-width: 396px;
}
.banner-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.banner-left p{
    font-size: 1rem;
    color: #fff;
    margin-top: 30px;
    max-width: 340px;
}
.banner-left .register-btn{
    max-width: 350px;
    margin-top: 20px;
}
.banner-left-text{
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}
.banner-left-text span{
    color: #fff;
    font-family: 'optima bold';
}
.banner-left-text hr{
    width: 100px;
    border: none;
    border-top: 0.5px solid #fff;
    height: 0;
}
.banner-left-bottom{
    display: flex    ;
    gap: 20px;
    margin-top: 30px;
}
.banner-left-bottom span{
    color: #fff;
    font-family: 'optima';
}
.banner-left-bottom span strong{
    color: #fff;
    font-weight: 600;
    font-family: 'optima bold';
}
.banner-right{
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.form-group{
    margin-bottom: 12px;
}
.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 input::placeholder, .form-group select::placeholder{
    color: #808080;
    font-style: italic;
}
.form-group label{
    font-family: 'optima';
    font-size: 12px;
    color: #000;
}
#sliderFormID{
    margin-top: 15px;
}
.form-img{
    text-align: center;
}
.form-img img{
    width: 100%;
    max-width: 130px;
}

/* Area Section */
#area-detail .container{
    border-bottom: 1px solid #e7e9ed;
}
.area-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 70%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.area-grid h3{
    font-family: 'optima';
    margin: 10px 0 20px;
    color: #161C2D;
    letter-spacing: 0;
}
.area-grid p{
    font-family: 'Open Sans';
    color: #161C2D;
}
.area-grid div{
    text-align: center;
}

/* Projects */
#discover-projects{
    margin-top: 130px;
}
.project-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.project h3{
    font-family: 'optima';
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 20px 0 20px 0;
    letter-spacing: 0;
    padding: 0 20px;
}
.project{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px;
    position: relative;
}
.project .property-price{
    display: flex;
    gap: 20px;
    padding: 0 20px;
}
.black-tag, .white-tag, .brown-tag{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1;
}
.black-tag{
    background-color: #000;
    color: #fff;
}
.white-tag{
    background-color: #fff;
    color: #000;
}
.brown-tag{
    background-color: #EC7777;
    color: #fff;
}
.emaar-logo{
    position: absolute;
    width: 87px !important;
    top: 20px;
    left: 10px;
    z-index: 1;
}
.project img{
    width: 100%;
}
.project .price{
    display: flex;
    margin-top: 20px;
    gap: 30px;
    padding: 0 20px;
}
.project .call-to-action-btns{
    flex-direction: column;
    margin-top: 25px;
    padding: 0 20px 20px 20px;
}
.project div span{
    font-family: 'optima';
    color: #161C2D;
}

/* Why invest in emaar */
#invest-emaar{
    margin-top: 130px;
}
#invest-emaar .container{
    padding: 80px 40px;
    background-color: #FAFAFA;
}
.invest-first{
    display: flex;
    gap: 30px;
}
.invest-first-left{
    width: calc(60% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
}
.invest-first-right{
    width: 40%;
}
.invest-first-left .section-head p{
    max-width: 75%;
}
.invest-first-right img{
    width: 100%;
}
.invest-first-left .register-btn{
    max-width: 300px;
    margin-bottom: 20px;
}
.invest-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.invest-grid-item{
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
}
.invest-grid-item img{
    max-width: 23px;
    width: 100%;
}
.invest-grid-item div{
    display: flex;
    gap: 10px;
    align-items: center;
}


.invest-grid-item p{
    margin-top: 20px;
}

/* 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{
    margin-top: 130px;
}

.map-container {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    overflow: hidden;
    margin-top: 30px;
}

.map {
    width: 100%;
    height: 804px;
    background: url('../images/map.jpg?v=4');
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    background-position: bottom;
    background-repeat: no-repeat;
}

.map.zoomed {
    transform: scale(1.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pointer {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #161C2D;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.location-card img{
    width: 100%;
}
.pointer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    background-color: #00000080;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.pointer:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.location-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(52, 152, 219, 0.2);
    overflow: hidden;
}

.location-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.location-card .card-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.location-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="50" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>');
}

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

.location-card .travel-time {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}
.location-card h4 {
    color: #161C2D;
    margin: 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 15px;
    font-family: 'optima';
    margin-top: 10px;
    letter-spacing: 0;
}
.location-card h3 {
    color: #161C2D;
    margin: 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 15px;
    font-family: 'optima';
    margin-top: 5px;
    letter-spacing: 0;
}
.location-card p{
    padding: 0 15px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 15px;
    color: #161C2D;
}
.location-card .description {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 0.95rem;
}

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

.location-box {
    background: #FAFAFA;
    border-radius: 15px;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s;
}

.location-box:hover::before {
    left: 100%;
}

.location-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    border-color: #161C2D;
}

.location-box h3 {
    color: #161C2D;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'optima';
    letter-spacing: 0;
}

.location-box p {
    color: #161C2D;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.location-type {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}


/* Book Consultation */
#book-consultation{
    margin-top: 130px;
}
.book-section{
    display: flex;
}
.book-img{
    width: 45%;
}
.book-right{
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}
.book-img img{
    width: 100%;
}
.book-right .call-to-action-btns{
    margin-top: 70px;
}

/* FAQ Section */

#faq{
    margin-top: 130px;
    background-color: #000;
    padding: 70px 0;
}
#faq .faq-con {
    border-radius: 7px;
}
#faq .section-head h2{
    color: #fff;
}
.faq {
    margin: 50px 0 0;
    background-color: #fff;
    border-top: 4px solid #777777;
    border-radius: 7px;
}
.faq-item {
    border-bottom: 1px solid #ccc;
}
.faq-question {
    cursor: pointer;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
}
.faq-answer ul{
    margin: 10px 0 10px 20px;
}
.faq-question span {
    font-size: 17px;
}
.faq-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}
.faq-answer {
    display: none;
    padding: 15px 20px;
    line-height: 1.5;
    font-family: futura-pt, Helvetica, sans-serif;
    font-size: 15px;
    transition: max-height 0.4s ease;
    opacity: 0;
    font-family: 'optima';
}
.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: #fff;
    font-family: 'optima bold';
}
.faq-support div nav:nth-child(2){
    color: #ffffffb1;
    font-family: 'optima';
    margin-top: 5px;
}
.faq-top .white-bg{
    background-color: #fff;
}
.faq-top .white-bg:hover{
    border: 1px solid #fff;
    background-color: #000;
}

.project {
    position: relative;
    overflow: hidden; /* This prevents carousel from going outside */
}

.project .project-swiper {
    width: 100%;
    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;
}

/* 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;
}


/* Form Section */
#vist-area{
    margin-top: 130px;
}
#vist-area .container{
    background-color: #FAFAFA;
    padding: 60px 45px;
    border-radius: 20px;
}
.form-container{
    display: flex    ;
    justify-content: space-between;
}
.visit-content{
    width: 35%;
    padding: 40px;
}
.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-quote img{
    width: 76%;
    margin-bottom: 40px;
}
/* Footer Bar */
#bottom-bar {
    height: 80px;
    background-color: #000;
    display: flex;
    align-items: center;
    margin-top: 130px;
}
#bottom-bar p {
    text-align: center;
    color: #fff;
    font-size: 12px !important;
    margin-bottom: 0;
}




/* Popup code */
.autoPopup {
    border-radius: 10px;
    padding: 40px;
    background: #fff;
    max-width: 500px;
    position: relative;
}
#contactPopup .section-head h2, #brochurePopup .section-head h2{
    font-size: 1.7rem;
    line-height: 1.3;
    text-align: center;
}
#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: 9999;
    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;
}


/* Responsive */
@media (max-width: 991px) {
    p{
        font-size: 14px;
    }
    .banner-right{
        display: none;
    }
    .register-btn{
        font-size: 12px;
    }
    .register-btn img{
        max-width: 13px;
    }
    .logo img{
        max-width: 130px;
    }
    .banner-inner{
        justify-content: center;
    }
    .banner-left p{
        text-align: center;
    }
    .banner-left .inner-logo{
        max-width: 280px;
    }
    .banner-left > div{
        text-align: center;
    }
    .banner-left{
        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;
    }
    .project-grid{
        grid-template-columns: 1fr 1fr;
    }
    .invest-first{
        flex-direction: column-reverse;
    }
    .invest-first-left{
        width: 100%;
        align-items: center;
    }
    .invest-first-right{
        width: 100%;
        max-height: 220px;
        overflow: hidden;
        display: flex;
        align-items: center;
        border-radius: 4px;
    }
    .invest-first-left .section-head h2{
        text-align: center;
    }
    .invest-first-left .section-head p{
        max-width: 100%;
        text-align: center;
    }
    .invest-first-left .register-btn{
        margin-top: 20px;
    }
    .invest-grid{
        grid-template-columns: 1fr 1fr;
    }
    .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;
    }
    .book-right .call-to-action-btns{
        margin-top: 30px;
        justify-content: center;
    }
    #faq{
        background-color: #fff;
        padding: 0;
    }
    #faq .section-head h2{
        color: #000;
    }
    .faq-support, .faq-top .call-to-action-btns{
        display: none;
    }
    .faq{
        background-color: #FAFAFA;
    }
    .form-container{
        flex-direction: column-reverse;
    }
    .footer-quote .show-info{
        text-align: center;
    }
    .footer-quote{
        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: 0 45px;
    }
    .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;
    }
    #header .container{
        justify-content: center;
    }
    #header {
        height: 80px;
    }
    .area-grid{
        grid-template-columns: 1fr 1fr;
    }
    .area-gid-3 {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 20px;
    }
    .area-grid div img{
        height: 32px;
    }
    #discover-projects, #invest-emaar, #videoArea, #location, #book-consultation, #faq, #vist-area, #bottom-bar{
        margin-top: 70px;
    }
    .project-grid{
        grid-template-columns: 1fr;
    }
    .section-head h2{
        font-size: 1.6rem;
    }
    .invest-grid {
        grid-template-columns: 1fr;
    }
    .map{
        height: 30vh;
        background-size: cover;
    }
    .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%;;
    }
    .location-box p {
        font-size: 15px;
    }
    .location-box h3 {
        font-size: 15px;
    }
    .faq-top{
        justify-content: center;
    }
    .visit-content .section-head p{
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    .visit-content .booking-form-area{
        background-color: #fff;
        padding: 0;
    }
    #visitPop .form-group input,#visitPop .form-group select{
        background-color: #FAFAFA;
        border: none;
        border-bottom: 1px solid #57575773;
        border-radius: 0;
    }
}