/* ==============================
   Project: WOW Real Estste
   Main CSS
================================= */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}




:root {
        --primary-color:#10264B;
      --secondary-color:#F7F5F0;
      --text-color:#1E1E1E;
      --white:#ffffff;
      --border-color:#D8D8D8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
   font-family: 'Poppins' ,  sans-serif;
  font-weight: 400;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
}
a{
    text-decoration: none;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
a:hover{
    color: #c9a25d;
}
img {
  max-width: 100%;
  height: auto;
}

/* --- */
   /* =========================
        HEADER
    ==========================*/

    .main-header{
      padding:18px 0px;
      position:sticky;
      top:0;
      z-index:999;
      background-color: var(--white);
    }

    .navbar-brand img{
      max-width:170px;
    }

    .navbar-nav{
      gap:40px;
    }

    .navbar-nav .nav-link{
      color:var(--text-color);
      font-size:15px;
      font-weight:500;
      transition:0.3s;
      position:relative;
    }

    .navbar-nav .nav-link.active{
        color: #c9a25d;
      /* color:var(--primary-color); */
      font-weight:600;
    }

    .navbar-nav .nav-link:hover{
      /* color:var(--primary-color); */
      color: #c9a25d;
    }

    /* Header Button */

   .custom-btn{
    position: relative;
    overflow: hidden;
    height: 45px;
    padding: 0px 22px;
    border-radius: 60px;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    z-index: 1;
    /* min-width: 225px; */
    max-width:fit-content;
}

/* Background Hover Animation */

.custom-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: var(--primary-color); */
    background: #c9a25d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 60px;
}

/* Icon Circle */

.custom-btn i{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #EAEAEA;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.4s ease;
}

/* Hover Effect */


.custom-btn:hover::before{
    transform: scaleX(1);
}

.custom-btn:hover i{
    background: #fff;
    color: var(--primary-color);
}

/* Small Lift Animation */

.custom-btn:hover{
     color: #fff;
    flex-direction: row-reverse;
    /* transform: translateY(-2px); */
    box-shadow: 0 10px 25px rgba(16, 38, 75, 0.18);
}

    /* =========================
        HERO BANNER
    ==========================*/

    .hero-section{
      padding-bottom:60px;
    }
    .hero-section .slick-dots{
        bottom: 15px;
    }
    .hero-section .slick-dots li button{
        border-radius: 50%;
        border: 1px solid #fff;
        width: 8px;
        height: 8px;
        padding: 0;
    }
    .hero-section .slick-dots li.slick-active button{
        background-color: #fff;
         width: 12px;
        height: 12px;
    }
     .hero-section .slick-dots li.slick-active button:before{
        content: '';
        display: none;
     }
    .hero-banner-row{
        border-radius: 45px;
        overflow: hidden;
    }
    .hero-banner{
      position:relative;
      overflow:hidden;
      border-radius:45px;
      min-height:650px;
      display:flex !important;
      align-items:center;
      max-height: 650px;
      /* background:url('../images/hero-banner.jpg') center center/cover no-repeat; */
    }

    .hero-banner::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(
        90deg,
        rgba(16,38,75,0.92) 0%,
        rgba(16,38,75,0.70) 38%,
        rgba(16,38,75,0.12) 100%
      );
    }

    .hero-content{
      position:absolute;
      z-index:2;
      padding-left:120px;
    }

    .hero-content h1{
      font-size:40px;
      line-height:1.1;
      font-weight:700;
      color:#F5F3EE;
      margin-bottom:24px;
    }

    .hero-content p{
      color:#F5F3EE;
      margin-bottom:35px;
      max-width:540px;
      overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    }

    .custom-btn.hero-btn{
     color: var(--white);
      border:1px solid rgba(255,255,255,0.6);
     background-color: transparent;
    }
    .custom-btn.hero-btn:hover{
        background-color: var(--white);
        color:  var(--white);
    }

    /* .hero-btn i{
      width:34px;
      height:34px;
      border-radius:50%;
      background:#fff;
      color:var(--primary-color);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
    }

    .hero-btn:hover{
      background:#fff;
      color:var(--primary-color);
    }

    .hero-btn:hover i{
      background:var(--primary-color);
      color:#fff;
    } */

    /* =========================
        MOBILE MENU
    ==========================*/

    .navbar-toggler{
      border:none;
      box-shadow:none !important;
    }

    .navbar-toggler i{
      color:var(--primary-color);
      font-size:28px;
    }

   

    /* --about us start-- */
    .about-img{
        position: relative;
    }
    .about-img-1{
        width: 100%;
        height: 500px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 5px 8px rgba(16, 38, 75, 0.18);
    }
    .about-img-1 img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-us{
        /* max-width: 1000px; */
        margin: 0px auto;
    }
    .about-us-inner{
        padding-left: 50px;
        padding-right: 50px;
    }
    .about-img-2{
        position: absolute;
        width: 197px;
        height: 213px;
        border-radius: 16px;
        border: 11px solid var(--white);
        overflow: hidden;
         box-shadow: 0px 5px 8px rgba(16, 38, 75, 0.18);
         right: -66px;
         bottom: -66px;
    }
        .about-img-2 img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .sub-title{
            color: #c9a25d;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
        }
        .main-title{
          font-weight: 600;
            font-size: 30px;  
            color: var(--primary-color);
             margin-bottom: 15px;
        }
        .about-content{
            padding-left: 100px;
        }

/* --- */
/* =========================
    PROJECT SECTION
========================== */

.projects-section{
    padding: 110px 0px 80px 0px;
}

.projects-wrapper{
    background: var(--primary-color);
    border-radius: 45px;
    padding: 80px 70px 30px 70px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */

.projects-wrapper::before{
    content: "";
    position: absolute;
    /* inset: 0; */
    background-image: url('../images/project-bg.png');
    opacity: 0.1;
    pointer-events: none;
    background-attachment: fixed;
   background-size: 45%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* =========================
    TOP AREA
========================== */

.projects-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.projects-top h2{
    color: #fff;
    margin: 0;
}

/* Filter */

.project-filter{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-filter button{
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.project-filter button.active{
    background: #F4EFE7;
    color: #0F2347;
    font-weight: 600;
}

.project-filter button:hover{
    background: #fff;
    color: #0F2347;
}

/* =========================
    SLIDER
========================== */

.project-slider{
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.project-item{
    padding: 0px 12px;
}

.project-img{
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    height: 300px;
}
.project-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: var(--white);
    text-align: center;
    background-color: rgba(16, 38, 75, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px 20px;
}
.project-overlay p{
    font-size: 14px;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 300;
}
.project-overlay h3{
    font-weight: 600;
    font-size: 20px;
}
.project-overlay h4{
    font-weight: 400;
    font-size: 14px;
}
.project-overlay a{
     /* color: var(--white); */
     color: #c9a25d;
     font-weight: 600;
     border-bottom: 1px solid #c9a25d;
     opacity: 0;
     margin-top: 30px;
}
.project-img:hover .project-overlay a{
    opacity: 1;
}
.custom-link{
    color: #c9a25d;
     font-weight: 600; 
     transition: 0.5s all ease-in-out;
     font-size: 17px;
     text-transform: uppercase;
     display: flex;
     align-items: center;
}

.custom-link i{
    margin-left: 10px;
    border: 2px solid #c9a25d;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 20px;
    font-size: 12px;
    transition: 0.5s ease-in-out;
}
.custom-link:hover i{
    transform: rotate(-45deg);
    border-color: var(--primary-color);
}
.custom-link.text-white i{
   border-color: #ffffff !important; 
}
.custom-link:hover{
    color: var(--primary-color);
}
.project-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-img:hover img{
    transform: scale(1.06);
}

.hero-banner-img{
    width: 100%;
    height: 100%;
}
.hero-banner-img img,
.hero-banner-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================
    SLICK DOTS
========================== */

.project-slider .slick-dots{
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
    padding: 0;
    list-style: none;
}

.project-slider .slick-dots li{
    width: 12px;
    height: 12px;
}

.project-slider .slick-dots li button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
    background: transparent;
    font-size: 0;
    padding: 0;
    transition: 0.3s;
}

.project-slider .slick-dots li.slick-active button{
    background: #fff;
}

/* Remove Default Arrow */

/* .project-slider .slick-prev,
.project-slider .slick-next{
    display: none !important;
} */



.project-slider .slick-track{
    display: flex;
}

.project-slider .slick-slide{
    height: auto !important;
}

.project-item{
    display: block !important;
    padding: 12px;
}

/* --contact us section start--- */

.contact-section {
    position: relative;
    /* background: url("../images/contact-us.jpg") center center/cover no-repeat; */
    /* background-position: center;
    background-repeat: no-repeat; */
    border-radius: 40px;
    overflow: hidden;
    margin: 50px auto;
    min-height: 500px;
    background-attachment: fixed;
}

.contact-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 38, 75, 0.75);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 80px 100px;
    min-height: 550px;
}

/* Left Content */
.contact-content {
    max-width: 450px;
    color: #fff;
}

.contact-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content p {
    /* font-size: 18px;
    line-height: 1.8; */
    margin-bottom: 35px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 14px 28px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #c9a25d;
    color: #fff;
}

/* Form Box */
.contact-form-box {
    background: #f5f4f0;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    border: 1px solid #203760;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 15px;
    outline: none;
    background-color: #f5f4f0;
}

.contact-form-box textarea {
    height: 100px;
    resize: none;
    border-radius: 8px;
}
.contact-form-box form p{
    margin-bottom: 0px;
}

.submit-btn {
    width: 100%;
    background: #000 !important;
    color: #fff;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 1;
    background-color: #c9a25d !important;
}

/* --contact us section end--- */
/* -blog section start--- */




.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.blog-image {
    height: 240px;
    background: #cfd3d9;
}
.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
}

.blog-content h3,
.blog-content h3 a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
      overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.blog-content h3 a:hover{
     font-weight: 600;
     text-decoration: none;
}
.blog-content p {
    color: #666;
    margin-bottom: 15px;
     display:block;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-content a,
.career-job-content a {
    color: #c9a25d;
    font-weight: 600;
}
.blog-content a:hover{
 text-decoration: underline;
 font-weight: 700;
}

/* Slick Dots */
.blog-section .slick-dots{
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
    padding: 0;
    list-style: none;
}

.blog-section .slick-dots li{
    width: 12px;
    height: 12px;
}

.blog-section .slick-dots li button{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: transparent;
    font-size: 0;
    padding: 0;
    transition: 0.3s;
}

.blog-section .slick-dots li.slick-active button{
    background: var(--primary-color);
}
.blog-section{
    padding-bottom: 60px;
}
/* --footer section start-- */
.footer-section {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    overflow-x: hidden;
      border-top: 2px solid;
    border-image: linear-gradient(
        90deg,
        #7a5600 0%,
        #c89b2b 20%,
        #ffe08a 50%,
        #c89b2b 80%,
        #7a5600 100%
    ) 1;
}
.quick-link{
    width: 20% !important;
    /* padding-left: 30px !important; */
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px 0 0px;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
   
}
.footer-col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    flex-direction: column;
}
.footer-col:last-child {
    border-right: none;
}
.footer-logo img {
    max-width: 170px;
}
.footer-title{
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.footer-title::after{
    content: '';
    width: 50px;
    height: 2px;
    background-color: #c89b2b;
    display: block;
    margin-top: 5px;
}
.footer-contact,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
       font-size: 18px;
    color: #c9a25d;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span {
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.footer-section hr {
    border-color: rgba(255,255,255,0.15);
    margin: 0;
}
.footer-border{
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding-bottom: 15px;
}
.footer-menu a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    margin-bottom: 15px;
    display: block;
}
.footer-menu a:hover{
    color: #c9a25d;
}
.footer-menu li a i{
    color: #c9a25d; 
    margin-right: 10px;
}


.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 5px;
}

.social-icons a {
    color: #fff;
    font-size: 30px;
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
     color: #c9a25d;
}

.footer-bottom {
    text-align: center;
    color: #fff;
    background: var(--primary-color);
    padding: 10px 15px;
    font-size: 16px;
     border-top: 2px solid;
    border-image: linear-gradient(
        90deg,
        #7a5600 0%,
        #c89b2b 20%,
        #ffe08a 50%,
        #c89b2b 80%,
        #7a5600 100%
    ) 1;
}


.slick-prev:before,
.slick-next:before {
    content: '';
}

.custom-arrow i {
    display: none;
    color: var(--primary-color);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #EAEAEA;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.4s ease;
}
.custom-arrow i:hover{
    background-color: var(--primary-color);
    color: #EAEAEA;
}
.title-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.title-body .main-title{
    margin-bottom: 0px;
}
/* ---about us page--- */

/* Banner */

.about-banner{
    background:
    linear-gradient(rgba(12,29,73,.75),
    rgba(12,29,73,.75));
    padding:120px 0;
    text-align:center;
    color:#fff;
    position: relative;
    overflow: hidden;
}
.about-banner .inner-banner-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.about-banner .inner-banner-img img{
        width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-banner h1{
    font-size:50px;
    margin-bottom:15px;
}

.about-banner p{
    font-size:18px;
}

/* About Section */

.about-section{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
}




.about-content p{
    margin-bottom:20px;
}

.theme-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:40px;
   color:var(--primary-color);
    color:#fff;
    text-decoration:none;
    margin-top:10px;
}

/* Stats */

.stats-section{
    background-color:var(--primary-color);
    padding:80px 0;
    border-radius:40px;
    width:90%;
    margin:auto;
}

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

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h3{
    font-size:42px;
    color:#c9a25d;
}

/* Mission */

.mission-section{
    padding:100px 0;
}



.mission-card{
    background:#f7f7f7;
    padding:40px;
    border-radius:25px;
    height: 100%;
    text-align: center;
}

.mission-card i{
    font-size:45px;
    color:var(--primary-color);
    margin-bottom:20px;
}

.mission-card h3{
    margin-bottom:15px;
}

/* Why Us */

.why-us{
    padding-bottom:100px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}




.why-card{
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
}

.why-card i{
    font-size:40px;
    color:var(--primary-color);
    margin-bottom:20px;
}

.why-card h4{
    margin-bottom:15px;
}

/* CTA */

.about-cta{
    padding:100px 0;
    text-align:center;
    color:var(--white);
    background-image: url(../images/hero-banner.jpg);
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.about-cta::before{
    content: '';
    background-color:var(--primary-color);
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.about-cta h2{
    font-size:45px;
    margin-bottom:20px;
    font-weight: 700;
}

.about-cta p{
    max-width:700px;
    margin:0 auto 30px;
}

/* ---contact us--- */


/* Contact Info */

.contact-info-section{
    padding:80px 0;
}

.contact-info-wrapper{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.contact-card{
    width:350px;
    padding:35px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
}

.contact-card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background: var(--primary-color);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
}

.contact-card .icon i{
    font-size:22px;
}
.contact-card h3{
    font-weight: 700;
    font-size: 25px;
}
 .contact-card a{
        color: var(--primary-color);
    }
/* Contact Form */

.contact-form-section{
    padding:80px 0 80px;
    /* background-image: url(../images/hero-banner.jpg); */
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.contact-form-section::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.8;
    z-index: -1;
    top: 0;
    left: 0;
}
.contact-wrapper-main{
    display:flex;
    gap:50px;
    align-items:center;
    padding: 30px 80px;
}

.contact-wrapper-main .contact-content{
    width:45%;
    max-width: 45%;
}



.section-subtitle{
    color:#c9a25d;
    font-weight:600;
}

.contact-content h2{
    /* font-size:48px; */
    color:var(--white);
    margin:15px 0;
}

.contact-content p{
    margin-bottom:25px;
}

.contact-list{
    list-style:none;
    padding:0;
}

.contact-list li{
    margin-bottom:15px;
}
.contact-list li a{
    color: #fff;
}
.contact-list i{
    color:#c9a25d;
    width:25px;
}





/* Map */

.map-section{
    padding-bottom:100px;
    padding-top: 50px;
}

.map-wrapper{
    overflow:hidden;
    border-radius:30px;
}

.map-wrapper iframe{
    width:100%;
    height:500px;
    border:0;
}

/* Responsive */

@media(max-width:991px){

    .contact-wrapper{
        flex-wrap:wrap;
    }

    .contact-content,
    .contact-form-box{
        width:100%;
    }

    .contact-banner h1{
        font-size:42px;
    }

    .contact-content h2{
        font-size:34px;
    }

    .contact-card{
        width:100%;
    }
   
}

/* -----our-projecrs start---- */
.projects-page{
    padding-bottom: 60px;
}
.careers-jobs{
    padding-bottom: 60px;
}
.our-project-row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.our-project-col{
    width: 25%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.our-project-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    height: 100%;
}
.blog-image{
    transition: all ease 0.5s;
}
.our-project-card h4{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    border-top: 1px solid var(--primary-color);
    padding-top: 8px;
}
.our-project-card h4 span{
    font-weight: 400;
    font-size: 16px;
}
.our-project-card:hover .blog-image{
    transform: scale(1.1);
}
.our-project-body{
    padding: 50px 0px 60px 0px;
    overflow-x: hidden;
}
.project-filter-row .form-select{
    border: 1px solid #203760;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13px;
    outline: none;
    background-color: transparent;
    color: var(--primary-color);
    width: 100%;
    min-width: 150px;
}
.filter-btn{
    border: 1px solid #203760;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13px;
    outline: none;
    color: var(--primary-color);
    background-color: var(--white);
    margin-right: 14px;
    /* width: 100%; */
}
.filter-btn:hover,
.filter-btn.active{
    background-color: var(--primary-color);
    color: var(--white);
}
.project-filter-row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    /* margin-right: -7px;
    margin-left: -7px; */
}
.project-filter-row .form-group{
    padding-right: 7px;
    padding-left: 7px;
    /* width: 100%; */
}
.custom-serach{
    border: 1px solid #203760;
    border-radius: 30px;
    padding: 1px 22px;
    font-size: 13px;
    outline: none;
    background-color: transparent;
    color: var(--primary-color);
    width: 100%;
    height: 37.5px;
}
.custom-serach input::placeholder{
    font-size: 13px;
}
.custom-serach .form-control{
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    border: 0px;
    background-color: transparent;
    font-size: 13px;
}
.custom-serach .btn{
    color: var(--primary-color);
    outline: none !important;
    box-shadow: none !important;
    border: 0px;
}
.custom-pagination .page-link{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    margin: 0 8px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
}
.custom-pagination .page-item.active .page-link{
    background-color: var(--primary-color);
    color: var(--white);
}
.custom-pagination .page-link:hover{
     background-color: var(--primary-color);
    color: var(--white);
}
/* -----our-projecrs end---- */
/* ====================================
PROPERTY BANNER
==================================== */



/* ====================================
BREADCRUMB
==================================== */

.breadcrumb-section{
    padding:20px 0;
    background:#fff;
}

.breadcrumb-section ul{
    display:flex;
    gap:10px;
    list-style:none;
    margin:0;
    padding:0;
}

.breadcrumb-section a{
    color:var(--primary-color);
    text-decoration:none;
}

/* ====================================
PROPERTY INFO
==================================== */

.property-info-section{
    padding:70px 0;
    background:#f8f8f8;
}

.property-info-section h1{
    font-size:48px;
    font-weight:700;
    color:var(--primary-color);
}

.property-tags{
    margin:20px 0;
}

.property-tags span{
    display:inline-block;
    margin-right:10px;
    font-size:13px;
    color:#c9a25d;
    text-transform:uppercase;
    font-weight: 500;
}

.property-specs{
    display:flex;
    gap:50px;
    margin-top:30px;
}

.spec-item label{
    display:block;
    color:#777;
    font-size:14px;
}

.spec-item strong{
    color:var(--primary-color);
}

.property-price h2{
    color:var(--primary-color);
    font-weight:700;
    font-size:42px;
}

/* ====================================
DESCRIPTION
==================================== */

.property-description{
    padding:80px 0;
}

.property-description h3{
    color:var(--primary-color);
    margin-bottom:20px;
}

.property-map iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:15px;
}

/* ====================================
AMENITIES
==================================== */

.amenities-section{
    background:#f8f8f8;
    padding:80px 0;
}

.section-title{
    color:var(--primary-color);
    margin-bottom:40px;
    font-weight:700;
}

.amenity-box{
    background:var(--primary-color);
    color:#fff;
    border-radius:12px;
    padding:10px 20px;
    text-align:center;
    transition:.3s;
}

.amenity-box:hover{
    transform:translateY(-5px);
}

.amenity-box img{
    width:45px;
    margin-bottom:15px;
}

/* ====================================
CONTACT SECTION
==================================== */

.contact-property-section{
    padding:80px 0;
}

.agent-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.agent-card img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.agent-card h4{
    color:var(--primary-color);
    font-weight:700;
}

.agent-card span{
    color:#c9a25d;
}

.agent-card ul{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.agent-card li{
    margin-bottom:12px;
}

.enquiry-form{
    background:url('../images/contact-us.jpg');
    background-size:cover;
    background-position:center;
    border-radius:15px;
    padding:50px;
    position:relative;
}

.enquiry-form::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(13,35,76,.75);
    border-radius:15px;
}

.enquiry-form *{
    position:relative;
    z-index:2;
}

.enquiry-form h2{
    color:#fff;
    margin-bottom:25px;
}

.enquiry-form input,
.enquiry-form textarea{
    width:100%;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    padding:14px 15px;
}

.enquiry-form button{
    background:#c9a25d;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
}

/* --- */

.our-project-filter{
    margin-bottom: 30px;
}
/* --- */
.blog-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.property-meta span:nth-child(2) {
    color: #cfcfcf;
}
.property-meta.career-job-meta span{
    color: var(--text-color) !important; 
}
.our-project-body .blog-content h3 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.our-project-body .blog-content p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.property-location i {
    color: #000;
    font-size: 15px;
}

.property-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #EAEAEA;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.action-btn i {
    font-size: 15px;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* --- */
.property-gallery-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.property-gallery-main{
    width: 65%;
    padding-right: 15px;
    padding-left: 15px;
    height: 100%;
    height: 600px;
}
.property-gallery-main a,
.property-gallery-thumb a{
    display: block;
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
    width: 100%;
}
.property-gallery-main a:hover img,
.property-gallery-thumb a:hover img{
    transform: scale(1.1);
    transition:0.5s all ease-in-out;
}

.property-gallery-side{
   width: 35%;
    padding-right: 15px;
    padding-left: 15px;  
    height: 100%;
     height: 600px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
.property-gallery-main img,
.property-gallery-side img{
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}
.property-gallery-thumb{
    position: relative;
    overflow: hidden;
    height: 48%;
    /* max-height: 275px; */
}
.property-gallery-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
   background: #1E1E1E99;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 30px;
   opacity: 1;
   transition: 0.5s ease;
   display: none;
}
.property-gallery-overlay a{
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}
.property-gallery-thumb:hover .property-gallery-overlay{
    opacity: 1;
}
.property-detail-grid .property-actions{
    align-items: center;
    justify-content: center;
}
.property-detail-grid{
    padding: 50px 0px;
}
.property-feature-detail{
    padding: 30px 0px;
}
.property-info-col h2{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.property-info-col ul{
    list-style: none;
    padding: 0;
}
.property-info-col ul li{
    display: flex;
    margin-bottom: 15px;
}
.property-info-col ul li span{
    width: 120px;
}
.property-info-col{
    padding: 30px;
    border-radius: 15px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, .08); */
    height: 100%;
    background-color: var(--white);
}
.property-info-body{
    background: var(--primary-color);
    padding: 80px 70px;
    position: relative;
    overflow: hidden;
}
.property-info-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/bg-icon-1.png);
    opacity: 0.04;
    pointer-events: none;
    background-attachment: fixed;
}
.property-detail-grid .action-btn{
    width: 45px;
    height: 45px;
}
.property-detail-grid .action-btn i{
    font-size: 20px;
}
.property-address i{
    font-size: 22px;
    text-align: left;
}
.property-info-col strong{
    padding-right: 10px;
}
.residental-small-text{
    border-top: 1px solid var(--primary-color);
    padding-top: 8px;
}
.residental-small-text p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.dropdown-menu li a{
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px;
}
.dropdown-menu li a:hover{
    background-color: #c9a25d;
    /* background-color: var(--primary-color); */
    color: var(--white);
}

.single-blog-image{
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.single-blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* -- */

/* =========================================
   Language Switcher
========================================= */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
}


/* Language links */

.language-switcher a {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Separator */

.language-switcher a + a::before {
    content: "|";
    color: #B5B5B5;
    margin: 0 10px;
    font-weight: 400;
}


/* Active language */

.language-switcher a.active {
    color: #c9a25d;
    font-weight: 700;
}


/* Hover */

.language-switcher a:hover {
    color: #c9a25d;
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .language-switcher a {
        font-size: 14px;
    }

    .language-switcher a + a::before {
        margin: 0 8px;
    }

}

.menu-item-has-children span{
    position: relative;
}
.menu-item-has-children span::after{
    content: '\f107';
    color: var(--primary-color);
    font-family: 'fontawesome';
    display: inline-block;
    margin-left: 10px;
}
.dropdown-menu .menu-item:hover a{
    color: #fff;
}
.menu-item-has-children .dropdown-menu span::after{
    display: none;
}

/* Floating WhatsApp */

.wow-whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    transition: all .3s ease;
}

.wow-whatsapp-float:hover{
    color:#fff;
    transform: scale(1.08);
}

.modal-body .contact-form-box{
    max-width: 100%;
    background: transparent;
}

.modal-body  .contact-form-box input, 
.modal-body .contact-form-box textarea, 
.modal-body .contact-form-box select{
    background: transparent;
}

/* =========================================================
   DIGITAL BUSINESS CARD
   ========================================================= */

.digital-business-card {
    min-height: 100vh;
    padding: 60px 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card-wrapper {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(16, 41, 91, 0.15);
    text-align: center;
}

/* Profile Image */

.business-card-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: var(--primary-color);
}

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

/* Content */

.business-card-content {
    padding: 30px 25px 35px;
}

.business-card-name {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.business-card-position {
    margin: 0 0 25px;
    color: #777;
    font-size: 16px;
    font-weight: 500;
}

/* Contact Buttons */

.business-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.business-card-btn {
    flex: 1;
    min-height: 50px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.call-btn {
    background: var(--primary-color);
    color: #ffffff;
}

.call-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.business-card-btn i {
    font-size: 18px;
}

/* QR Code */

.business-card-qr {
    margin: 10px auto 25px;
}

.business-card-qr img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Save Contact */

.save-contact-btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    border: 0;
    border-radius: 8px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-contact-btn:hover {
    background: #c9a25d;
    color: #ffffff;
}

.save-contact-btn i {
    margin-right: 8px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .digital-business-card {
        padding: 25px 15px;
    }

    .business-card-wrapper {
        max-width: 100%;
        border-radius: 18px;
    }

    .business-card-image {
        height: 300px;
    }

    .business-card-content {
        padding: 25px 20px 30px;
    }

    .business-card-name {
        font-size: 26px;
    }

    .business-card-position {
        font-size: 15px;
    }

    .business-card-actions {
        gap: 8px;
    }

    .business-card-btn {
        font-size: 14px;
        padding: 10px;
    }

    .business-card-qr img {
        width: 130px;
        height: 130px;
    }

}

/* =========================================
   Project Gallery
========================================= */

.project-gallery-section {
    padding: 70px 0;
}

.project-gallery-heading {
    text-align: center;
    margin-bottom: 35px;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.project-gallery-link {
    display: block;
    overflow: hidden;
}

.project-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.04);
}


/* Tablet */

@media (max-width: 991px) {

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

    .project-gallery-item img {
        height: 240px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .project-gallery-section {
        padding: 30px 0;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-gallery-item img {
        height: 220px;
    }

}


/* =========================================
   Project Gallery Lightbox
========================================= */

.project-gallery-modal {
    background: rgba(0, 0, 0, 0.75);
}

.project-gallery-modal .modal-dialog {
    max-width: 1100px;
    width: calc(100% - 40px);
    margin: 30px auto;
}

.project-gallery-modal .modal-content {
    position: relative;
    background: #000;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gallery-modal .modal-body {
    padding: 45px 80px;
    width: 100%;
    height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#projectGalleryModalImage {
    display: block;

    max-width: 100%;
    max-height: 560px;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;
}


/* =========================================
   Close Button
========================================= */

.project-gallery-close {
    position: absolute;
    top: 15px;
    right: 18px;

    z-index: 20;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 28px;
    line-height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.2s ease;
}

.project-gallery-close:hover {
    background: #d6a64f;
    color: #fff;
}


/* =========================================
   Previous / Next Buttons
========================================= */

.project-gallery-prev,
.project-gallery-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 20;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #10295b;

    font-size: 28px;
    line-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.2s ease;
}

.project-gallery-prev {
    left: 18px;
}

.project-gallery-next {
    right: 18px;
}

.project-gallery-prev:hover,
.project-gallery-next:hover {
    background: #d6a64f;
    color: #fff;
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .project-gallery-modal .modal-dialog {
        width: calc(100% - 20px);
        margin: 20px auto;
    }

    .project-gallery-modal .modal-content {
        min-height: 70vh;
        border-radius: 8px;
    }

    .project-gallery-modal .modal-body {
        height: 70vh;
        padding: 50px 45px;
    }

    #projectGalleryModalImage {
        max-width: 100%;
        max-height: 60vh;
    }

    .project-gallery-close {
        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;

        font-size: 24px;
    }

    .project-gallery-prev,
    .project-gallery-next {
        width: 38px;
        height: 38px;

        font-size: 23px;
    }

    .project-gallery-prev {
        left: 0px;
    }

    .project-gallery-next {
        right: 0px;
    }

}