@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&display=swap');

/* font weight = 700 */
@font-face {
    font-family: "Aeonik TRIAL";
    src: url(../fonts/aeonik-trial/aeoniktrial-bold.otf);
    font-weight: 700;
}

/* font weight = 500 */
@font-face {
    font-family: "Aeonik TRIAL";
    src: url(../fonts/aeonik-trial/aeoniktrial-regular.otf);
    font-weight: 400;
}

/* font weight = 300 */
@font-face {
    font-family: "Aeonik TRIAL";
    src: url(../fonts/aeonik-trial/aeoniktrial-light.otf);
    font-weight: 300;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --font-montagu-slab: "Montagu Slab", serif;

    --main-color: #3982B5;
    /* rgb(0, 174, 239, 1); */
    --black-color: #000000;
    /* rgb(0, 0, 0); */
    --white-color: #ffffff;
    /* rgb(255, 255, 255); */

}

/* html {
    scroll-padding-top: 220px;
} */

body {
    font-family: "Aeonik TRIAL", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 60px 0px;
}

.common-head {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-bottom: 40px;
}

.common-head h3 {
    font-family: var(--font-sanchez);
    color: #4F4F4F;
    font-size: 48px;
    line-height: 52px;
    font-weight: 700;
    text-transform: capitalize;
}

.common-head p {
    color: #4F4F4F;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
}

.common-btn {
    display: flex;
    align-items: center;
    gap: 0px;
    border-radius: 0px;
    padding: 5px 5px 5px 5px;
    background: #EAEAEA;
    width: fit-content;
}

.common-btn>span {
    background: var(--main-color);
    padding: 8px 12px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: capitalize;
    transition: var(--transition-05s);
}

.common-btn:hover>span {
    border-radius: 0px 0px 0px 0px;
}

.common-btn>i {
    transition: var(--transition-05s);
    padding: 12px 12px;
    color: #000;
}

.common-btn:hover i {
    background: var(--main-color);
    border-radius: 0px 0px 0px 0px;
    color: #fff;
}


/************************************ Header Section **************************************/
.header-section {
    position: relative;
    width: 100%;
    height: max-content;
    z-index: 10;
    background: var(--white-color);
}

.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.header-top-box {
    background: var(--main-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 10px 0px;
}

.header-top .header-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}


.header-top .header-top-social li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #133252;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top>a {
    font-size: 16px;
    font-weight: 400;
    color: #DDEEFF;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top>a i {
    color: #133252;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 10px 0px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 90px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.navbar-nav .nav-item a {
    font-weight: 400;
    font-size: 18px;
    color: #474747;
    text-transform: capitalize;
    background: transparent;
    transition: var(--transition-05s);
    padding: 5px 20px;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item li.active a {
    background: var(--main-color);
    color: var(--white-color);
    padding: 5px 20px;
}

.navbar-nav li.active a {
    background: var(--main-color);
    color: var(--white-color);
    padding: 5px 20px;
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}

.head-contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.head-contact img {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.head-contact .head-contact-info p {
    margin-bottom: 0px;
}

.head-contact .head-contact-info p.email {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 400;
    color: #54585a;
}

.head-contact .head-contact-info p.call {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: #13181f;
}

/* Dropdown wrapper */
.dropdown-custom {
    position: relative;
}

/* Dropdown menu */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    /* border-radius: 12px; */
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    list-style: none;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu-custom li a:hover {
    background: var(--main-color);
    color: var(--white-color);
    padding-left: 25px;
}

/* Arrow default state */
.dropdown-custom .fa-angle-down {
    font-size: 14px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.dropdown-custom:hover .fa-angle-down {
    transform: rotate(180deg);
    transition-delay: 0.05s;
}




/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;

}

.video-box::after {
    content: '';
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: block;
    /* background: rgba(0, 0, 0, 0.65); */
    background: linear-gradient(260deg, rgba(19, 50, 82, 0.1) 0%, rgba(19, 50, 82, 0.85) 100%);
    z-index: 1;
}

.inr-banner-section .video-box {
    height: 50vh;
}

.inr-banner-section {
    background: no-repeat center center / cover;
}

.video-box {
    position: absolute;
    inset: 0%;
    height: 95vh;
    width: 100%;
}

.video-box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 95vh;
    position: relative;
    z-index: 1;
}

.inr-banner-section {
    background: no-repeat center center / cover;
    position: relative;
    width: 100%;
}

.inr-banner-section>* {
    position: relative;
    z-index: 1;
}

.inr-banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(56, 102, 163, 0.4);
    border-radius: 30px;
}

.banner-left-inrbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 400px;
}

.banner-left-inrbox h1 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 48px;
    text-transform: capitalize;
    text-align: center;
}


.banner-box h1 {
    font-family: var(--font-montagu-slab);
    color: var(--white-color);
    font-weight: 700;
    font-size: 72px;
    line-height: 74px;
}

.inr-banner-box h1 {
    font-family: var(--font-montagu-slab);
    color: var(--white-color);
    font-weight: 700;
    font-size: 58px;
    text-transform: capitalize;
}

.banner-box p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    width: 80%;
}

.banner-box .common-btn {
    border-radius: 40px;
}

.banner-box .common-btn>span {
    border-radius: 40px 0 0 40px;
}

.banner-box .common-btn>i {
    border-radius: 0 40px 40px 0;
}

.custom-tabs {
    border-bottom: 1px solid #DEDEDE;
    background: var(--white-color);
    width: fit-content;
    padding: 0 20px;
}

.custom-tabs .nav-link {
    color: #8a8a8a;
    font-weight: 500;
    border: none;
    padding: 12px 24px;
}

.custom-tabs .nav-link.active {
    color: #133252;
    border-bottom: 3px solid #133252;
    background-color: transparent;
}

.tab-content {
    background: #F7F7F7 !important;
    padding: 15px;
}

.bnr-serach-mainBox {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bnr-serach-mainBox h5 {
    margin-bottom: 0;
    color: #133252;
    font-size: 16px;
    font-weight: 700;
}

.bnr-serach-mainBox .bnr-serach-mainBox .search-btn {
    width: 50px;
    height: 50px;
    border-radius: 0%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
}

.bnr-serach-mainBox .search-btn {
    width: 45px;
    height: 45px;
    border-radius: 0% !important;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
}

.inr-banner-section .bnr-serach-mainBox .search-btn {
    width: 45px;
    height: 45px;
    border-radius: 0% !important;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
}

.bnr-search-inputBox {
    display: flex;
    gap: 0px;
    background: #fff;
    width: 100%;
    padding: 10px;
    margin: auto;
    /* width: auto; */
}

.bnr-search-inputBox.resid {
    padding: 0px;
}

.bnr-icon-house {
    width: 35px;
    height: 35px;
}

.bnr-icon-house img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bnr-icon-filter {
    width: 20px;
    height: 20px;
}

.bnr-icon-filter img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bnr-search-inputBox input.search-input {
    border: none;
    width: 60%;
}

.bnr-search-inputBox input.search-input:focus {
    box-shadow: none;
}

.bnr-icon-house {
    width: 28px;
    height: 28px;
}

.bnr-icon-house img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bnr-search-box {
    width: 100%;
}

.form-select-box {
    display: flex;
    align-items: center;
}

.search-select {
    width: 120px;
    padding: 10px 15px;
    /* border: 1.5px solid #20409A; */
    color: #20409A;
    font-size: 14px;
    font-weight: 500;
    background: white;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.search-select:hover,
.search-select:focus {
    border-color: #20409A;
    background: #f8f9fa;
}

/****************************** Residential Section ***************************/
.resid-img {
    width: 100%;
    height: 400px;
}

.resid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resid-box-content {
    border: 1px solid #d2d2d2;
}

.resid-boxtop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px solid #d2d2d2;
}

.resid-boxtop h5 {
    font-family: var(--font-montagu-slab);
    margin-bottom: 0;
    font-size: 24px;
    color: var(--main-color);
    font-weight: 700;
    width: 40%;
}

.resid-boxtop p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    /* width: 60%; */
}

.resid-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d2d2d2;
}

.resid-desc p {
    padding: 10px 8px;
    margin-bottom: 0;
    font-size: 18px;
    border-right: 1px solid #d2d2d2;
    width: 33.33%;
    /* text-align: center; */
}

.resid-desc p:last-child {
    border-right: none;
}

.resid-btm {
    padding: 10px 8px;
}

.resid-btm p {
    margin-bottom: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.resid-box {
    display: inline-block;
    width: 100%;
}

.resid-box:hover {
    color: var(--black-color);
}

.pagination ul {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.pagination ul li a {
    border: 1px solid #d2d2d2;
    background: var(--main-color);
    padding: 10px 20px;
    color: var(--white-color);
}

.pagination ul li a.active {
    background: #133252;
}

/********************************** About Section ************************/
.about-section {
    position: relative;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.about-text>span {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-text h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    font-weight: 700;
    width: 60%;
    margin: auto;
}

.about-text p {
    color: #5D5D5D;
    font-size: 22px;
    font-weight: 400;
}

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

/******************************** Lease Section **********************************/
.lease-left-img {
    width: 100%;
    height: 470px;
    overflow: hidden;
}

.lease-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-05s);
    transform: scale(1);
}

.lease-left-img:hover img {
    transform: scale(1.1);
}

.lease-right-box h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lease-right-box p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.leaseForm-section {
    background: no-repeat center center / cover;
    position: relative;
}

.leaseForm-section::after {
    content: '';
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 70, 0.45);
}

.leaseForm-box {
    box-shadow: 0px 0px 14px -4px rgba(0, 0, 0, .75);
    padding: 40px;
    background: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.leaseForm-box .common-btn {
    margin-top: 40px;
    border: none;
}

.leaseForm-box {
    margin-bottom: 40px;
    text-align: center;
}

.leaseForm-box h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
}

.leaseForm-box p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.leaseForm-box form {
    margin-top: 40px;
}

/******************************** Services Section **************************************/
.ourServices-section {
    position: relative;
    height: 700px;
}

.ourServices-video-box {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.ourServices-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourService-left {
    padding-right: 40px;
}

.ourService-left span {
    color: #3982B5;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.ourService-left h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    width: 80%;
    margin: 10px 0px 30px;
}

.service-option-box .service-option-img {
    width: 100%;
    height: 340px;
    position: relative;
}

.service-option-box .service-option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-option-box .service-option-img::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(180deg, rgba(19, 50, 82, 0.23) 40%, rgba(19, 50, 82, 0.65) 80%);
}

.service-option-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -70px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.service-option-name h5 {
    font-family: var(--font-montagu-slab);
    font-weight: 700;
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
    width: 50%;
}

.service-option-name i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 20px;
    transform: rotate(-45deg);
    margin-right: -30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-05s);
}

.service-option-box:hover .service-option-name i {
    margin-right: 0px;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}

/******************************** Our Properties Section *********************************/
.ourProperties-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.ourProperties-head-left {
    width: 50%;
}

.ourProperties-head .ourProperties-head-left>span {
    color: #3982B5;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.ourProperties-head .ourProperties-head-left h3 {
    font-family: var(--font-montagu-slab);
    color: #282828;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
}

.ourProperties-box {
    border: 1px solid #D6E4EA;
    background: #CBCBCB;
    margin-bottom: 20px;
}

.ourProperties-box:last-child {
    margin-bottom: 0px;
}

.ourProperties-box-left {
    padding: 20px;
}

.ourProperties-box-left .ourProperties-left-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.ourProperties-box-left .ourProperties-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition-05s);
}

.ourProperties-box-left .ourProperties-left-img:hover img {
    transform: scale(1.1);
}

.ourProperties-box-right h5 {
    font-size: 34px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0;
}

.ourProperties-box-right>span {
    font-size: 24px;
    font-weight: 400;
    color: #383838;
}

.ourProperties-box-right ul {
    margin: 20px 0px 40px;
}

.ourProperties-box-right ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black-color);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding-left: 35px; */
}

.ourProperties-box-right ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3982B5;
}

/********************************** Our Cities Section ******************************/
.common-section.exploreCities-section {
    padding: 0 0 60px;
}

.exploreCities-head>span {
    color: #3982B5;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.exploreCities-head>h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.exploreCities-head>p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
}

.exploreCities-box {
    display: inline-block;
    width: 100%;
}

.exploreCities-box .exploreCities-img {
    width: 100%;
    height: 320px;
    display: inline-block;
    overflow: hidden;
}

.exploreCities-box .exploreCities-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-05s);
    transform: scale(1);
}

.exploreCities-box:hover .exploreCities-img img {
    transform: scale(1.2);
}

.exploreCities-box .exploreCities-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -50px;
    padding: 0px 20px;
    position: relative;
    z-index: 1;
}

.exploreCities-box .exploreCities-name h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0;
    margin-left: -30px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-05s);
}

.exploreCities-box:hover .exploreCities-name h5 {
    margin-left: 0px;
    visibility: visible;
    opacity: 1;
}

.exploreCities-box .exploreCities-name i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    margin-right: -30px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-05s);
}

.exploreCities-box:hover .exploreCities-name i {
    margin-right: 0px;
    visibility: visible;
    opacity: 1;
}

/*********************** Experience Commercial Ads Banner Section *************************/
.expComAdsBnr-section {
    position: relative;
    width: 99%;
    margin: auto;
    height: 600px;
}

.expComAdsBnr-video-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.expComAdsBnr-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expComAdsBnr-text {
    position: relative;
    z-index: 1;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.expComAdsBnr-text h3 {
    font-family: var(--font-montagu-slab);
    font-size: 52px;
    font-weight: 700px;
    color: var(--white-color);
    margin-bottom: 20px;
}


/******************************** Testimonial Section ***************************************/
.testiSection {
    position: relative;
}

.testiHead>span {
    color: #3982B5;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.testiHead>h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    margin: 10px 0px 20px;
}

.testiHead>p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0px 20px;
}

.extraWidth {
    margin-top: 120px;
    width: calc(100% + 120px);
}

.testi-box {
    background: #F8F8F8;
    padding: 40px 40px 20px 40px;
}

.testi-box .testi-msg p {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 700;
    width: 80%;
    margin-top: 10px;
}

.testi-box .testi-name {
    margin-top: 20px;
}

.testi-box .testi-name h5 {
    font-family: var(--font-montagu-slab);
    color: #171717;
    font-weight: 500;
    font-size: 18px;
}

.testi-box .testi-name p {
    color: #888888;
    font-weight: 400;
    font-size: 15px;
}

.testi-box .testi-review {
    margin-bottom: 20px;
}

.testi-box .testi-review i {
    color: #D8C03B;
    font-size: 20px;
}

.testi-slider.owl-carousel {
    position: relative;
}

.testi-slider.owl-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-slider.owl-carousel .owl-nav .owl-prev,
.testi-slider.owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 20px;
}

/************************************ Gallery Section **********************************/

.gallery-section {
    position: relative;
    min-height: 700px;
    height: 100%;
    overflow: hidden;
}

.gallery-head>h3 {
    font-family: var(--font-montagu-slab);
    font-size: 42px;
    font-weight: 700;
    color: #133252;
}

.gallery-head>p {
    font-size: 18px;
    font-weight: 400;
    color: #5D5D5D;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.gallery-box::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(57, 130, 181, 0.5);
    transition: var(--transition-05s);
}

.gallery-box:hover::after {
    left: 0%;
}

.gallery-box i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    transition: var(--transition-05s);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

/* Move arrow to center on hover */
.gallery-box:hover i {
    right: 50%;
    transform: translate(50%, -50%);
    visibility: visible;
    opacity: 1;
}

.gallery-head {
    background-color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 0px;
    right: 120px;
    z-index: 3;
    height: 100%;
    width: 25%;
    padding: 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.galleryBox-slider-container {
    width: calc(100% + 120px);
}

.common-section.gallery-section {
    padding: 0 0 60px 0;
}

.gallery-bottom-bg {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 400px;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-05s);
    transform: scale(1);
}

.gallery-box:hover .gallery-img img {
    transform: scale(1.2);
}

.gallery-slider.owl-carousel {
    position: relative;
}

.gallery-slider.owl-carousel {
    position: relative;
}

.gallery-slider.owl-carousel .owl-nav {
    position: absolute;
    bottom: -100px;
    left: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-slider.owl-carousel .owl-nav .owl-prev,
.gallery-slider.owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
}




/********************************* Our Blogs Section **************************************/
.ourblog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ourblog-head h3 {
    font-family: var(--font-montagu-slab);
    font-weight: 700;
    font-size: 42px;
    text-transform: capitalize;
    color: #133252;
}

.ourblog-head p {
    color: #3F3F3F;
    font-size: 18px;
    font-weight: 400;
    width: 40%;
}

.ourBlog-lwr {
    margin-top: 40px;
}

.blog-card {
    position: relative;
    background: #ffffff;
    /* border: 1px solid #eaeaea; */
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    min-height: 500px;
}

/* Base line */
.blog-card .blog-card__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C9C9C9;
    overflow: hidden;
}

/* Blue 10% part */
.blog-card .blog-card__line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background-color: #3982B5;
    transition: width 0.4s ease;
}

/* Hover → full blue */
.blog-card:hover .blog-card__line::before {
    width: 100%;
}

/* Content */
.blog-card .blog-card__content {
    padding: 20px 0px 10px;
}

.blog-card .blog-card__content>span {
    font-size: 14px;
    font-weight: 400;
    color: #525252;
    margin-bottom: 10px;
}

.blog-card .blog-card__content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #303030;
    margin: 10px 0;
}

/* .blog-card .blog-card__content p {
    font-size: 15px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 24px;
} */

.blog-card .blog-card__content p {
    font-size: 15px;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-card__image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transform-origin: top;
    transition: transform 0.45s ease;
}

/* Hover → shrink from TOP */
.blog-card:hover .blog-card__image img {
    transform: translateY(60px);
}

.blog-card .common-btn {
    position: absolute;
    left: 0px;
    /* bottom: 220px; */
    /* just above image */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 1;
}

.blog-card:hover .common-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blog-card .blog-card__content .common-btn,
.blog-card .blog-card__content .common-btn>span {
    border-radius: 40px;
}

.blog-card .blog-card__content .common-btn>i {
    border-radius: 0 40px 40px 0;
}

.blog-card .blog-card__content .common-btn:hover>span {
    border-radius: 40px 0 0 40px;
}

/* Hover effects */
.blog-card:hover .blog-card__content .common-btn {
    margin-bottom: 0px;
}



/********************************** Book Property Section **********************************/
.bookProp-section {
    position: relative;
    min-height: 600px;
    height: 100%;
    /* margin-top: 40px; */
}

.common-section.bookProp-section {
    padding: 0px;
}

.bookProp-left-box {
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bookProp-left-box h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-weight: 700;
    font-size: 72px;
    line-height: 74px;
    margin-bottom: 20px;
}

.bookProp-left-box p {
    color: #5D5D5D;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    width: 80%;
}

.bookProp-right-box {
    background-color: var(--white-color);
    min-height: 600px;
    height: 100%;
    width: 100%;
    padding: 40px;
}

.bookProp-right-head {
    text-align: center;
    padding: 40px 0px;
}

.bookProp-right-head h3 {
    font-family: var(--font-montagu-slab);
    color: #0F2041;
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
}

.bookProp-right-head p {
    color: #414141;
    font-size: 18px;
    font-weight: 400;
}

.bookProp-input-box {
    width: 100%;
}

.bookProp-input-box input,
.bookProp-input-box select,
.bookProp-input-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #D0D0D0;
}

.bookProp-input-box input::placeholder,
.bookProp-input-box textarea::placeholder {
    color: var(--black-color);
}

.bookProp-input-box select {
    padding: 12px;
}

.bookProp-right-box form .common-btn {
    margin-top: 30px;
}

/******************************** Our features Section **********************************/
.ourFeat-box {
    border: 1px solid #E5E5E5;
    padding: 20px;
    min-height: 200px;
    height: 100%;
}

.ourFeat-box .ourfeat-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 20px;
}

.ourFeat-box .ourfeat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ourFeat-box .ourfeat-text h3 {
    font-family: var(--font-montagu-slab);
    font-size: 24px;
    font-weight: 700;
}

.ourFeat-box .ourfeat-text p {
    color: #5D5D5D;
    font-weight: 400;
    font-size: 16px;
}


/***************************************** Contact Us Page *******************************/
.contact-head {
    text-align: center;
    margin-bottom: 40px;
}

.contact-head h3 {
    font-family: var(--font-montagu-slab);
    color: #133252;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0px;
}

.contact-head p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 400;
}

.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 150px;
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}

.contact-card:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.contact-card:hover i {
    color: var(--white-color);
}

.contact-card i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 25px;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-name {
    width: 70%;
}

.contact-card .contact-name h4 {
    font-family: var(--font-sanchez);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.contact-card .contact-name p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.iframe-box {
    width: 100%;
    height: 480px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}

.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}

.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

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

.form-contact-box select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    color: #4F4F4F;
}

.form-contact-box option:hover {
    background: var(--main-color) !important;
}


/******************************** Footer Section *********************************************/
.footer-section {
    background: #133252;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
}

.footer-top {
    padding: 40px 0px;
}

.footer-logo {
    /* width: 100px;
    height: 100px; */
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-top-left h3 {
    font-family: var(--font-montagu-slab);
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: var(--white-color);
}

.footer-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}


.footer-top-social li a {
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-top-right {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-top-right-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-top-right-left h5 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
}

.footer-top-right-left p {
    color: #D8EFFF;
    font-size: 16px;
    font-weight: 400;
    width: 80%;
}

.footer-top-right-form {
    width: 60%;
}

.footer-top-right-form form {
    width: 100%;
    background: var(--white-color);
    padding: 6px;
}

.footer-top-right-form form input {
    width: 79%;
    padding: 10px;
    border: none;
    color: #5F5F5F;
    font-size: 15px;
}

.footer-top-right-form form button.send-btn {
    width: 20%;
    padding: 12px;
    border: none;
    background: var(--main-color);
    color: var(--white-color);
}

.footer-para p {
    font-size: 16px;
    color: #D8EFFF;
    font-weight: 400;
    width: 90%;
}

.footer-para h5 {
    font-family: var(--font-montagu-slab);
    font-size: 28px;
    color: var(--white-color);
    /* background: var(--main-color); */
    width: 70%;
    /* text-align: center; */
    /* padding: 15px; */
    margin-bottom: 20px;
}

.footer-para img {
    width: 100%;
    height: auto;
}

.footer-para img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-box h5 {
    font-family: var(--font-marcellus);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #A2D4F6;
    transition: var(--transition-05s);
}

.footer-links li a:hover {
    color: var(--main-color);
}

.footer-contact-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A2D4F6;
    font-size: 14px;
}

.footer-contact-links li a>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-links li:last-child a {
    color: var(--white-color);
    font-weight: 700;
    font-size: 16px;
}


.footer-mid {
    border-top: 1px solid #2F5168;
    border-bottom: 1px solid #2F5168;
    padding: 40px 0px;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0px;
    color: #A8A8A8;
    font-size: 14px;
    font-weight: 400;
}

.footer-copyright p {
    margin-bottom: 0;
}

.bookProp-left-box ul {
    margin: 20px 0px;
}

.bookProp-left-box ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.bookProp-left-box ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background: var(--main-color);
    margin-top: 6px;
}

.lease-right-box>div {
    margin-bottom: 14px;
}

.active-nav {
    background: #000 !important;
    color: #fff !important;
}






/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1401px) and (max-width: 1539px) {
    .extraWidth {
        width: calc(100% + 50px);
    }

    .galleryBox-slider-container {
        width: calc(100% + 50px);
    }

    .gallery-head {
        width: 30%;
        padding: 40px;
    }

    .footer-top-social {
        flex-wrap: wrap;
    }

    .footer-para h5 {
        font-size: 16px;
        width: 50%;
        padding: 10px;
    }

    .bookProp-left-box h3 {
        font-size: 54px;
        line-height: 58px;
    }

    .exploreCities-head>h3 {
        font-size: 28px;
        line-height: 30px;
        margin: 10px 0 10px;
    }

    .exploreCities-head>span {
        font-size: 14px;
    }

    .exploreCities-head>span {
        font-size: 16px;
    }

    .ourProperties-box-left .ourProperties-left-img {
        height: 400px;
    }

    .banner-box h1 {
        font-size: 60px;
        line-height: 66px;
    }

    .about-text h3 {
        width: 70%;
    }

    .footer-contact-links li a span {
        width: 80%;
    }

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

    .testiHead>h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .extraWidth {
        margin-top: 40px;
    }

    .testi-slider.owl-carousel .owl-nav {
        top: -60px;
    }

    .testi-box {
        padding: 20px 20px 20px 20px;
    }

    .testi-box .testi-msg p {
        font-size: 18px;
        width: 95%;
    }

    .resid-desc p {
        font-size: 15px;
    }
}

/* @media (min-width: 1500px) {
    
} */
@media (min-width: 1540px) and (max-width: 1639px) {
    .extraWidth {
        width: calc(100% + 35px);
    }

    .galleryBox-slider-container {
        width: calc(100% + 35px);
    }
}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1640px) and (max-width: 1739px) {
    .extraWidth {
        width: calc(100% + 55px);
    }

    .galleryBox-slider-container {
        width: calc(100% + 55px);
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1740px) and (max-width: 1899px) {
    .extraWidth {
        width: calc(100% + 100px);
    }

    .galleryBox-slider-container {
        width: calc(100% + 100px);
    }

}

@media (min-width: 1740px) {
    .container {
        max-width: 1690px;
    }
}

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .extraWidth {
        width: calc(100% + 40px);
    }

    .galleryBox-slider-container {
        width: calc(100% + 40px);
    }

    .navbar-brand {
        height: 60px;
    }

    .navbar-nav .nav-item a {
        font-size: 14px;
        padding: 5px 10px;
    }

    .banner-box h1 {
        font-size: 66px;
        line-height: 70px;
    }

    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item .active {
        background: var(--main-color);
        color: var(--white-color);
        padding: 5px 10px;
    }

    .about-text>span {
        font-size: 16px;
    }

    .about-text h3 {
        font-size: 34px;
        width: 80%;
    }

    .about-text p {
        font-size: 20px;
    }

    .ourService-left h3 {
        font-size: 34px;
        line-height: 40px;
        width: 100%;
    }

    .ourServices-section {
        height: 600px;
    }

    .service-option-box .service-option-img {
        height: 250px;
    }

    .service-option-name h5 {
        font-size: 18px;
    }

    .service-option-name {
        margin-top: -60px;
        padding: 0 10px;
    }

    .service-option-name i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .ourProperties-head .ourProperties-head-left h3 {
        font-size: 34px;
        line-height: 40px;
    }

    .ourProperties-head-left {
        width: 55%;
    }

    .ourProperties-head .ourProperties-head-left>span {
        font-size: 16px;
    }

    .ourProperties-box-right h5 {
        font-size: 26px;
    }

    .ourProperties-box-right>span {
        font-size: 20px;
    }

    .ourProperties-box-right ul li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .common-btn>span {
        font-size: 14px;
    }

    .exploreCities-head>h3 {
        font-size: 34px;
        line-height: 40px;
    }

    .exploreCities-head>span {
        font-size: 16px;
    }

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

    .exploreCities-box .exploreCities-img {
        height: 280px;
    }

    .exploreCities-box .exploreCities-name h5 {
        font-size: 14px;
    }

    .exploreCities-box .exploreCities-name {
        margin-top: -45px;
        padding: 0px 10px;
    }

    .testiHead>span {
        font-size: 16px;
    }

    .testiHead>h3 {
        font-size: 34px;
        line-height: 38px;
    }

    .extraWidth {
        margin-top: 80px;
    }

    .testi-box {
        padding: 30px 20px 20px 20px;
    }

    .testi-box .testi-msg p {
        font-size: 18px;
        width: 90%;
    }

    .testi-box .testi-name h5 {
        font-size: 16px;
    }

    .gallery-head {
        width: 35%;
        padding: 30px;
    }

    .gallery-head>h3 {
        font-size: 34px;
    }

    .ourblog-head h3 {
        font-size: 34px;
    }

    .ourblog-head p {
        font-size: 15px;
        width: 50%;
    }

    .blog-card .blog-card__content>span {
        font-size: 13px;
    }

    .blog-card .blog-card__content h3 {
        font-size: 20px;
    }

    .blog-card .blog-card__content p {
        font-size: 14px;
        line-height: 20px;
    }

    .bookProp-left-box h3 {
        font-size: 52px;
        line-height: 66px;
    }

    .bookProp-left-box p {
        font-size: 16px;
        width: 90%;
    }

    .bookProp-right-box {
        padding: 20px;
    }

    .bookProp-right-head {
        padding: 20px 0px;
    }

    .bookProp-right-head h3 {
        font-size: 34px;
    }

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

    .ourFeat-box .ourfeat-icon {
        height: 40px;
        width: 40px;
    }

    .ourFeat-box .ourfeat-text h3 {
        font-size: 20px;
    }

    .footer-top-left h3 {
        font-size: 34px;
        line-height: 42px;
    }

    .footer-top-right-left h5 {
        font-size: 20px;
    }

    .footer-top-right-left p {
        font-size: 14px;
        width: 100%;
    }

    .footer-top-social {
        flex-wrap: wrap;
    }

    .footer-para p {
        font-size: 14px;
        width: 100%;
    }

    .footer-para h5 {
        font-size: 24px;
        width: 100%;
    }

    .footer-links {
        gap: 5px;
    }

    .footer-links li a {
        font-size: 15px;
        line-height: 28px;
    }

    .footer-box h5 {
        font-size: 18px;
    }

    .bnr-search-inputBox {
        width: 100%;
        gap: 0px;
    }

    .inr-banner-section .bnr-serach-mainBox .search-btn {
        border-radius: 0% !important;
    }

}

@media (max-width: 1199px) {
    .banner-box h1 {
        font-size: 58px;
        line-height: 64px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .navbar-brand {
        height: 60px;
    }

    .navbar-nav .nav-item a {
        font-size: 13px;
    }

    .footer-contact-links li a {
        font-size: 13px;
    }

    .footer-contact-links li:last-child a {
        font-size: 14px;
    }

    .footer-para h5 {
        font-size: 18px;
    }

    .footer-top-left h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .footer-top-right-form form input {
        width: 78%;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 5px;
        border-top: 1px solid #f4f4f4;
        border-bottom: 1px solid #f4f4f4;
        box-shadow: 0 0 12px rgba(0, 0, 0, .75);
    }

    .common-section {
        padding: 30px 0px;
    }

    .navbar-toggler-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #74747470;
        background: rgba(var(--white-color), 1);
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.23) !important;
    }


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

    .navbar-toggler {
        padding: 6px;
        border: none;
        background: rgba(var(--main2-color), 1);
        border-radius: 4px;
    }

    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown-custom:hover .dropdown-menu-custom,
    .dropdown-custom.open .dropdown-menu-custom {
        display: block;
    }

    .exploreCities-box .exploreCities-img {
        height: auto;
    }

    .ourServices-video-box {
        position: relative;
        width: 100%;
    }

    .ourServices-section {
        height: 100%;
    }

    .common-section.ourServices-section {
        padding: 0px 0px 30px;
    }

    .ourService-left {
        padding-right: 0px;
    }

    .ourProperties-box-right {
        padding: 0px 0px 20px;
    }

    .ourProperties-box-left {
        padding: 0px;
    }

    .bookProp-left-box {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0px;
    }

    .lease-right-box h3 {
        font-size: 30px;
    }

    .leaseForm-box h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .leaseForm-box {
        padding: 20px;
    }

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

    .leaseForm-box .common-btn {
        margin-top: 20px;
    }

    .extraWidth {
        width: 100%;
    }

    .resid-boxtop h5 {
        font-size: 20px;
        width: 40%;
    }

    .resid-desc p {
        font-size: 14px;
    }

    .resid-btm p {
        font-size: 14px;
    }


}

@media (max-width: 767px) {
    .leaseForm-box {
        width: 100%;
    }

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

    .lease-right-box h3 {
        font-size: 28px;
    }

    .header-top {
        justify-content: center;
        gap: 20px;
    }

    .header-top a>span {
        display: none;
    }

    .header-top a>i {
        font-size: 18px;
    }

    .banner-box h1 {
        font-size: 46px;
        line-height: 52px;
    }

    .banner-box {
        min-height: 65vh;
    }

    .video-box {
        height: 65vh;
    }

    /* .bnr-serach-mainBox .search-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    } */

    .bnr-serach-mainBox h5 {
        font-size: 14px;
    }

    .bnr-serach-mainBox {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .tab-content {
        background: #F7F7F7 !important;
        padding: 6px;
    }

    .about-text>span {
        font-size: 13px;
    }

    .about-text h3 {
        font-size: 24px;
        width: 85%;
    }

    .about-text p {
        font-size: 15px;
    }

    .ourService-left span {
        font-size: 13px;
    }

    .ourService-left h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .service-option-name h5 {
        font-size: 20px;
        width: 100%;
    }

    .service-option-name {
        margin-top: -40px;
        padding: 0 10px;
    }

    .ourProperties-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ourProperties-head-left {
        width: 100%;
    }

    .ourProperties-head .ourProperties-head-left h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .ourProperties-box-right {
        padding: 0px 10px 20px;
    }

    .ourProperties-box-left .ourProperties-left-img {
        height: auto;
    }

    .exploreCities-head>span {
        font-size: 13px;
    }

    .exploreCities-head>h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .exploreCities-head>p {
        font-size: 14px;
    }

    .expComAdsBnr-text {
        height: 300px;
    }

    .expComAdsBnr-text h3 {
        font-size: 38px;
    }

    .testiHead>span {
        font-size: 13px;
    }

    .testiHead>h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .testiHead>p {
        font-size: 14px;
    }

    .testi-slider.owl-carousel .owl-nav {
        top: -60px;
        right: auto;
    }

    .ourblog-head {
        flex-direction: column;
        width: 100%;
    }

    .ourblog-head p {
        font-size: 15px;
        width: 100%;
    }

    .blog-card .blog-card__image {
        height: auto;
    }

    .ourFeat-box .ourfeat-text h3 {
        font-size: 18px;
    }

    .ourFeat-box .ourfeat-text p {
        font-size: 14px;
    }

    .ourFeat-box {
        min-height: auto;
    }

    .footer-links {
        grid-template-columns: repeat(1, 1fr);
    }

    .header-top {
        flex-wrap: wrap;
    }

    .gallery-head {
        position: relative;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 100%;
        padding: 20px;
    }

    .lease-left-img {
        height: auto;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-card .contact-name h4 {
        font-size: 16px;
    }

    .contact-card .contact-name p {
        font-size: 13px;
    }

    .contact-card i {
        --ehw-bg: 35px;
        font-size: 18px;
        border-radius: 4px;
    }

    .contact-form {
        padding: 12px;
    }

    .contact-form {
        border-radius: 10px;
    }

    .ourProperties-box {
        margin-bottom: 10px;
    }

    .row {
        gap: 12px 0px;
    }

    .leaseForm-box .common-btn {
        margin-top: 20px;
    }

    .navbar-brand img {
        object-fit: contain;
    }

    .bookProp-left-box h3 {
        font-size: 52px;
        line-height: 1;
    }

    .expComAdsBnr-section {
        height: auto;
    }

    .bookProp-left-box ul {
        margin-bottom: 20px;
    }

    .bookProp-left-box {
        height: auto;
        padding: 20px 0px;
    }

    .ourServices-section {
        height: auto;
    }

    .service-option-name {
        margin-top: -40px;
        margin-bottom: 20px;
    }

    .gallery-slider.owl-carousel .owl-nav {
        bottom: -50px;
    }

    .gallery-slider.owl-carousel .owl-nav .owl-prev,
    .gallery-slider.owl-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .banner-box p {
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }

    .communityGuid {
        margin-bottom: 0px;
    }

    .banner-left-inrbox h1 {
        font-size: 36px;
    }

    .resid-img {
        height: 220px;
    }

    .resid-desc p {
        font-size: 12px;
        white-space: nowrap;
    }


}


@media (max-width: 575px) {
    .leaseForm-box h3 {
        font-size: 22px;
    }

    .contact-head p {
        font-size: 14px;
    }

    .contact-head h3 {
        font-size: 22px;
    }

    .leaseForm-box {
        padding: 20px;
    }

    .leaseForm-box p {
        font-size: 13px;
    }

    .lease-right-box h3 {
        font-size: 24px;
    }

    .lease-right-box p {
        font-size: 14px;
    }

    .navbar-brand {
        height: 56px;
    }

    .banner-box h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-box p {
        color: #fff;
        font-weight: 400;
        font-size: 15px;
        width: 100%;
    }

    .header-top {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header-top>a>span {
        display: block;
        font-size: 12px;
    }

    .header-section .common-btn>span {
        display: none;
    }

    .common-btn>i {
        padding: 2px 6px;
    }

    .bnr-serach-mainBox h5 {
        display: none;
    }

    .about-text h3 {
        font-size: 20px;
        width: 100%;
    }

    .about-text p {
        font-size: 14px;
    }

    .service-option-name {
        margin-top: -60px;
    }

    .common-section {
        padding: 20px 0px;
    }

    .expComAdsBnr-text h3 {
        font-size: 24px;
    }

    .testi-box .testi-msg p {
        font-size: 15px;
        width: 100%;
    }

    .testi-box .testi-name h5 {
        font-size: 14px;
    }

    .testi-box .testi-name p {
        font-size: 14px;
    }

    .gallery-img {
        height: auto;
    }

    .bookProp-left-box h3 {
        font-size: 24px;
    }

    .bookProp-right-head h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .bookProp-right-head {
        padding: 0px 0px;
    }

    .bookProp-right-box .common-btn span {
        display: block;
    }

    .footer-top-right {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top-right-left {
        width: 100%;
    }

    .footer-top-right-form {
        width: 100%;
    }

    .inrAbt .about-text p {
        font-size: 14px;
    }

    .banner-left-inrbox h1 {
        font-size: 28px;
    }

    .banner-left-inrbox {
        min-height: 200px;
    }

    .bookProp-input-box input,
    .bookProp-input-box select,
    .bookProp-input-box textarea {
        font-size: 12px;
    }

    .ourProperties-box-left {
        padding: 0px;
    }

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        width: 180px;
    }

    .resid-img {
        height: auto;
    }

    .bnr-search-inputBox {
        flex-wrap: wrap;
    }

    .bnr-search-inputBox input.search-input {
        width: 100%;
        gap: 10px;
    }

    .search-select {
        width: 160px;
    }



}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */

/* ===============================
   COMMUNITY GUIDE – LIGHT PREMIUM
================================= */

.communityGuid {
    background: #f7f8f6;
    /* soft luxury light */
    padding: 90px 0;
}


/* ===============================
   CONTENT CARD
================================= */

.communityGuid {

    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    /* margin-bottom: 40px; */
    border: 1px solid #ececec;
}

/* heading */
.communityGuid h3 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    position: relative;
}

/* luxury underline accent */
.communityGuid h3::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3982B5, #fff);
    display: block;
    margin-top: 10px;
    border-radius: 6px;
}

/* paragraph */
.communityGuid p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}


/* ===============================
   LINK GRID
================================= */

.list-group2 {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

/* item */
.list-group2 li {
    background: #ffffff;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid #ececec;
}

/* link */
.list-group2 li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* arrow */
.list-group2 li a::before {
    content: "→";
    color: #a5c768;
    font-weight: 700;
    transition: 0.3s;
}

/* hover */
.list-group2 li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #a5c768;
}

.list-group2 li:hover a {
    color: #111;
}

.list-group2 li:hover a::before {
    transform: translateX(5px);
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    .communityGuid {
        padding: 30px;
    }

    .communityGuid h3 {
        font-size: 26px;
    }
}