* {
    margin: 0;
    padding: 0;
    /* font-family: serif; */
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --tertiary-color: #666;
    --quaternary-color: #f0f0f0;
    --quinary-color: #e0e0e0;
    --senary-color: #d0d0d0;
    --seventh-color: #dcdcdc;
    --gray-color: #808080;
    --maincolor: #000435;
    --theme-gold: #BF9746;
    --theme-brown: #3C2D25;
    --theme-lightBrown: #7B5523;
    --theme-darkYellow: #956C28;


}

/* ============================================
   FONT FACE DECLARATIONS - Must be before use
   ============================================ */

/* Lato Font Family - Main font with proper weights */
@font-face {
    font-family: 'Lato';
    src: url('../images/fonts/Lato/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../images/fonts/Lato/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../images/fonts/Lato/Lato-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../images/fonts/Lato/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Legacy font-family names for backward compatibility */
@font-face {
    font-family: 'lato-regular';
    src: url('../images/fonts/Lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'lato-bold';
    src: url('../images/fonts/Lato/Lato-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'lato-italic';
    src: url('../images/fonts/Lato/Lato-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'lato-light';
    src: url('../images/fonts/Lato/Lato-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../images/fonts/345c85a432359eed-s.p.eead68dd.woff2)format("woff2");
    unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: Lato Fallback;
    src: local(Arial);
    ascent-override: 101.03%;
    descent-override: 21.8%;
    line-gap-override: 0.0%;
    size-adjust: 97.69%
}

@font-face {
    font-family: optima;
    src: url(../images/fonts/optima.ttf)format("truetype");
    font-weight: 400;
    font-style: normal
}

/* Body and Global Font Settings */
body {
    /* font-family: 'Lato', 'lato-regular', Arial, sans-serif; */
    /* font-family: 'Lato'; */
    /* font-family: Lato, Lato Fallback; */
    font-family: "Avenir Next", "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */

}

p,
.overview-content {
    font-weight: 300;
    font-size: 16px;
    text-align: justify;
    color: #757575;
}


.main-color {
    color: var(--maincolor);
}

.btn-luxury {
    color: var(--primary-color);
    background: linear-gradient(135deg, #c38c34 0%, #f1cb82 50%, #e2c169 100%);
}

.btn-luxury:hover {
    color: var(--secondary-color) !important;
    background: var(--primary-color)!important;
    border: 1px solid white;
}

.gray-color {
    color: var(--tertiary-color);
}

a {
    text-decoration: none !important;
}

/*thankyou page css*/
.thannks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0px;
}

.thannks h2 {
    font-size: 50px;
}

/*end here*/
/*Navbar css*/
/*................*/
.navbar {
    justify-content: space-between;
    width: 100%;
    color: var(--secondary-color);
    background-color: var(--maincolor);
    position: sticky;
    top: 0px;
    font-weight: 600;
    z-index: 300;
}

.navbar li a {
    color: var(--secondary-color);
}


.navbar-collapse {
    flex-grow: 0 !important;
}

.navbar-toggler {
    margin: 20px;
    background-color: var(--seventh-color);
}

/* Mobile Sidebar Styles - Slide from Left to Right */
@media (max-width: 991.98px) {

    /* Overlay backdrop */
    body.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1049;
        animation: fadeIn 0.3s ease-in-out;
        pointer-events: auto;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background-color: var(--maincolor);
        z-index: 1055;
        transition: left 0.3s ease-in-out;
        padding: 60px 0 20px 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    /* Ensure navbar doesn't interfere with sidebar z-index */
    body.sidebar-open .navbar {
        z-index: 1055;
    }

    .navbar-collapse.show {
        left: 0;
    }

    /* Close button for sidebar - only visible on mobile when sidebar is open */
    .navbar-collapse .sidebar-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 35px;
        color: var(--secondary-color);
        cursor: pointer;
        line-height: 1;
        z-index: 1056;
        background: none;
        border: none;
        padding: 5px 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .navbar-collapse .sidebar-close:hover {
        transform: rotate(90deg);
        color: var(--theme-gold);
    }

    /* Hide close button when sidebar is closed */
    .navbar-collapse:not(.show) .sidebar-close {
        display: none;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 15px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        text-align: left;
        transition: background-color 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--theme-gold);
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        margin-left: 15px;
        background-color: rgba(0, 0, 0, 0.3);
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .navbar-nav .dropdown-item {
        padding: 12px 20px;
        color: var(--secondary-color) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.2s ease;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--theme-gold) !important;
    }

    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }
}

#togglenav:hover {
    color: var(--tertiary-color);
    padding-top: 5px;
    border-bottom-style: ridge;
}

.navbar-nav .dropdown-menu {
    width: fit-content;
    margin: auto;
}

.dropdown-menu li a {
    color: var(--primary-color) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--quaternary-color);
    ;
}

.call-btn:hover {
    color: var(--gray-color) !important;
}

/* Hide sidebar close button on desktop */
@media (min-width: 992px) {
    .sidebar-close {
        display: none !important;
    }
}

/*end here*/

/*banner section css*/
/*.....................*/
/*banner video css*/
#videobcg {
    height: 100VH;
    width: 100%;
    /*z-index: -100;*/
    overflow: hidden;
    object-fit: cover;
}

/*banner content css*/
.mobile-view {
    display: none;
}

.text-box {
    width: 90%;
    color: var(--secondary-color);
    position: absolute;
    bottom: 50PX;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.text-box a {
    margin-top: 1rem;
}

.text-box h1 {
    font-size: 34px;
    letter-spacing: 2px;
}

.project-btn {
    background-color: var(--maincolor);
    padding: 16px 20px;
    color: var(--secondary-color);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border: 0;
    outline: 0;
    -webkit-box-shadow: inset 0 0 var(--secondary-color);
    box-shadow: inset 0 0 var(--secondary-color);
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}

.project-btn:hover {
    -webkit-box-shadow: inset 15em 0 var(--gray-color);
    box-shadow: inset 15em 0 var(--gray-color);
    cursor: pointer;
    color: var(--primary-color);
}

/*end here*/

/*banner css*/
.swiper-wrapper {
    height: 100vh !important;

}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: 50%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.achievement h4,
.achievement h5 {
    font-size: 40px;
}

/*end here*/
.heading-part {
    font-size: 50px;
    /* font-weight: 600; */
    font-family: optima;
}

h3,
h2,
h4,
h5,
h1,
a,
input,
textarea,
button,
ul {
    font-family: optima;

}

.ip-aboout-s4-texthome {
    font-size: 40px;
    line-height: 1.2;
    color: var(--secondary-color);
    font-style: italic;
    /*margin-left: 280px;*/
    margin-left: 10%;
    /*max-width: 755px;*/

}

/**
gallery showcase css*/
#gallery-showcase .owl-item>div {
    cursor: pointer;
    margin: 6% 8%;
    transition: margin 0.4s ease;
}

#gallery-showcase .owl-item.center>div {
    cursor: auto;
    margin: 0;
}

#gallery-showcase .owl-item:not(.center)>div:hover {
    opacity: .75;
}

#gallery-showcase .owl-theme .owl-nav [class*='owl-']:hover {
    color: black !important;
}

#gallery-showcase .owl-carousel .owl-nav button.owl-next,
#gallery-showcase .owl-carousel .owl-nav button.owl-prev,
#gallery-showcase .owl-carousel button.owl-dot :hover {
    background-color: transparent !important;
    color: black;
}

#gallery-showcase .owl-item.center .heading-wrapper {
    color: white;
    transform: translateY(0%);
    opacity: 1 !important;
    pointer-events: all;
}

.heading-wrapper {
    position: absolute;
    top: 0;
    padding: 12% 35% 0 5%;
    transform: translateY(10%);
    opacity: 0;
    pointer-events: none;
    transition: all 1s ease 0.6s;
    background-color: rgba(0, 0, 0, 0.3);
}

/*About page css*/
.about-banner {
    height: 100%;
    background: linear-gradient(rgba(0, 4, 53, 0.6), rgba(0, 4, 53, 0.6)), url("../images/bg-contact.webp") no-repeat top/cover;
    /* filter: grayscale(1); */
}

.ip-about-s3-row p {
    text-align: justify;
    font-family: optima !important;
}

.first-letter-big {
    font-style: normal !important;
    font-size: 60px;
    float: left;
    position: relative;
    margin-top: -8px;
    line-height: 1;
    margin-right: 15px;
    color: var(--maincolor);
}

.ip-about-section-3 {
    position: relative;
    margin-bottom: 105px;
}

.ip-about-s3-accent {
    position: absolute;
    background: var(--maincolor);
    width: 33px;
    height: 839px;
    top: 0;
}

.ip-about-s3-accent.accent-left {
    left: 0;
}

.ip-about-s3-accent.accent-right {
    right: 0;
}

.ip-about-s3-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    max-width: 1042px;
}

.ip-about-s3-img {
    width: 386px;
    width: 37.1%;
}

.ip-about-s3-img img {
    display: block;
}

.ip-about-s3-text {
    width: 62.9%;
    padding-left: 7.4%;
}

#content .ip-about-s3-text.ip-about-text p:first-child {
    margin-top: 0;
}

#content .ip-about-s3-text.ip-about-text p {
    margin-bottom: 24px;
}

.ip-about-s3-text.ip-about-text .first-letter-big {
    margin-left: -20px;
    margin-top: -10px;
    margin-right: 5px;
}

.ip-about-section-4 {
    position: relative;
    padding: 74px 0 0;
}

/* .ip-about-section-4:before {
    content: '';
    position: absolute;
    bottom: 107px;
    right: 0;
    top: 0;
    background: var(--maincolor);
    width: 580px;

} */

.ip-aboout-s4-box {
    position: relative;
    background: linear-gradient(rgba(0, 4, 53, 0.8), rgba(0, 4, 53, 0.8)), url(../images/bg-contact.webp) center/cover no-repeat;
    /* margin-right: 74px; */
    filter: hue-rotate(360deg);
    padding: 90px 0 90px;
}

.ip-aboout-s4-text {
    font-size: 53px;
    line-height: 1.2;
    color: var(--secondary-color);
    font-style: italic;
    padding: 0 5.4%;
    /* max-width: 755px; */
    display: flex;
    flex-direction: column;
}

.ip-aboout-s4-text-line {
    display: block;
    width: 100%;
}

.ip-aboout-s4-text-line-1 {
    text-align: right;
    margin-bottom: 10px;
}

.ip-aboout-s4-text-line-2 {
    text-align: left;
}

.ip-about-section-5 {
    position: relative;
    margin-bottom: 105px;
}

.ip-about-s5-accent {
    position: absolute;
    background: var(--maincolor);
    width: 33px;
    height: 839px;
    top: 0;
}

.ip-about-s5-accent.accent-left {
    left: 0;
}

.ip-about-s5-accent.accent-right {
    right: 0;
}

.ip-about-s5-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    max-width: 1042px;
}

.ip-about-s5-img {
    width: 386px;
    width: 37.1%;
}

.ip-about-s5-img img {
    display: block;
}

.ip-about-s5-text {
    width: 62.9%;
    padding-left: 7.4%;
}

#content .ip-about-s5-text.ip-about-text p:first-child {
    margin-top: 0;
}

#content .ip-about-s5-text.ip-about-text p {
    margin-bottom: 24px;
}

.ip-about-s5-text.ip-about-text .first-letter-big {
    margin-left: -20px;
    margin-top: -10px;
    margin-right: 5px;
}

.ip-about-s5-text {
    padding-right: 7.4% !important;
    padding-left: 0;
}

.ip-about-s5-text p {
    text-align: justify;
}

/*.....................	*/
/*featured property css*/
/*....................*/

.project-btn {
    background-color: var(--maincolor);
    padding: 16px 20px;
    color: var(--secondary-color);
    font-size: 16px;
    font-family: optima;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border: 0;
    outline: 0;
    -webkit-box-shadow: inset 0 0 var(--secondary-color);
    box-shadow: inset 0 0 var(--secondary-color);
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}

.project-btn:hover {
    -webkit-box-shadow: inset 15em 0 var(--gray-color);
    box-shadow: inset 15em 0 var(--gray-color);
    cursor: pointer;
    color: var(--primary-color);
}

.btn:hover {
    background: var(--maincolor);
}

/*.........................................*/
/*home page luxury/uberluxury/premium section*/
/*................................................*/
.hover-img:hover:after {
    bottom: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.hover-bg {
    overflow: hidden;
    background: 0
}

.hover-bg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: #000000bf;
    background-position: center;
    background-size: contain;
    top: auto;
    bottom: -100%;
    left: 0;
    right: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    z-index: -1
}

.hover-bg:hover:after {
    bottom: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.image-box .box-content p {
    font-size: 16px;
    font-family: optima;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 22px
}

.image-box .box-content h4 {
    font-size: 33px;
    font-family: optima;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 47px;
    background: var(--primary-color);
    text-align: center;
}

.image-box .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    padding: 10px;
    padding-left: 55px;
    padding-right: 42px;
    padding-bottom: 34px
}

.image-box img {
    position: relative;
    z-index: -1;
    width: 100%;
    filter: grayscale(1);
    /*height:100%;*/
}

.image-box:hover img {
    filter: grayscale(0);
}

.image-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-box:hover {
    background: 0
}

/* Equal height columns for featured projects */
.projects .row>div {
    display: flex;
    flex-direction: column;
}

.projects .row>div>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.projects .row>div>a>.image-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.projects .row>div>a>.image-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.projects .row>div>a>.image-box {
    min-height: 400px;
}

/*.......................*/
/*builder section css*/
/*.....................*/

.builder-section {
    margin-top: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
    background: linear-gradient(rgba(0, 4, 53, 0.8), rgba(0, 4, 53, 0.8)), url(../images/bg-contact.webp) no-repeat top / cover;
    /* background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/bg-contact.webp") no-repeat center/cover; */
}

.builder .owl-nav,
.builder .owl-dots {
    display: none;
}

/*testimonial section css*/
.testimonials {
    padding: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../images/web-img.webp") no-repeat center/cover;
}

.testimonials-section {
    /* background: var(--bg-color); */
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* Testimonials Section */
.testimonials-title {
    font-size: 33px;
    font-weight: bold;
    color: var(--maincolor);
    text-align: center;
}

.testimonials-underline {
    width: 80px;
    height: 3px;
    background: var(--theme-gold);
    margin-bottom: 20px;
}

.testimonials-description {
    font-size: 16px;
    color: var(--maincolor);
    line-height: 1.8;
    opacity: 0.8;
    text-align: center;
}

.testi-box {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(157, 0, 93, 0.3);
    background: var(--maincolor);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    min-height: 300px;
}

.testi-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(157, 0, 93, 0.4);
}

.testi-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--theme-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 0;
}

.testi-text {
    padding-top: 20px;
    font-size: 18px;
    text-align: left;
    color: var(--primary-text);
    /* line-height: 1.6; */
    margin-bottom: auto;
    font-style: italic;
    flex: 1;
}

.testi-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--theme-gold);
    margin-bottom: 5px;
    margin-top: auto;
}

.testi-role {
    font-size: 14px;
    color: var(--primary-text);
    opacity: 0.7;
    margin: 0;
}

button.owl-dot {
    background: var(--theme-gold) !important;
}

.testimonials-section .owl-carousel .owl-item {
    display: flex;
    height: 100%;
}

.testimonials-section .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-section .owl-stage .owl-item {
    display: flex;
    align-items: stretch;
}

.testimonials-section .owl-item .new {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.testimonials-section .owl-item .new .testi-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.testimonials .owl-prev,
.testimonials .owl-next {
    font-size: 33px !important;
    color: var(--maincolor) !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot :hover {
    background-color: transparent !important;
}

.testi-cl {
    border: none;
    background: transparent;
    color: var(--main-color);
    font-weight: 600;
}

.testi-cl:hover {
    color: var(--primary-color) !important;
    border: none;
}

.testi-cl h4 {
    padding: 20px 0;
    font-size: 33px;
    font-weight: 600;
}

.testi-cl p {
    font-size: 16px;
}

.contact {
    position: relative;
    background-attachment: fixed;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/bg-contact.webp") no-repeat center/cover;
}

.contact .info {
    padding: 30px;
    background: transparent;
    width: 100%;
    box-shadow: 0 0 11px 0px #efefef73;
}


.contact .info i {
    font-size: 16px;
    color: var(--secondary-color);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 16px;
    display: inline-block;
    background: #000;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #000;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: gray;
    color: #fff;
}

.contact .php-email-form {
    padding: 30px;
    background: transparent;
    width: 100%;
    box-shadow: 0 0 11px 0px #efefef73;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 14px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
    background-color: #00000012;
    color: #fff;
    border: none;
    border-bottom: 2px solid white;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #000;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #fff;
    border: 0;
    padding: 12px 34px;
    color: #000;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: gray;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*end here */

/*...............................*/
/*Home page property section*/
/*.................................*/

.community-section .img-wrap img {
    margin: 0 auto 80px;
}

.community-section .center-block:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 458px;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.white-btn {
    background-color: #ffff;
    padding: 21px 23px;
    color: #000;
    font-size: 16px;
    font-family: optima;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border: 0;
    outline: 0;
    -webkit-box-shadow: inset 0 0 #000;
    box-shadow: inset 0 0 #000;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out
}

.white-btn svg {
    margin-right: 4px
}

.white-btn:hover {
    -webkit-box-shadow: inset 15em 0 #000;
    box-shadow: inset 15em 0 #000;
    cursor: pointer;
    color: #ffff
}

.white-btn:hover svg circle,
.white-btn:hover svg path {
    stroke: #ffff;
    fill: #ffff
}

.white-btn:hover svg#path-icon circle,
.white-btn:hover svg#path-icon path {
    stroke: #ffff;
    fill: none
}

.community-section .center-block {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 458px;
    height: 594px;
    top: 150px;
    bottom: 0;
    padding: 60px 37px 60px 60px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.community-section .center-block .features .icon-box:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #bab8b8;
    position: absolute;
    left: -42px
}

.community-section .center-block:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 458px;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 80%);
    z-index: -1;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.community-section .center-block .features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.community-section .center-block:hover:before {
    width: 100%;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.community-section .center-block:hover .features,
.community-section .center-block:hover .button-block {
    opacity: 1;
    -webkit-transition: all .8s ease-in;
    transition: all .8s ease-in
}

.community-section .center-block:hover .img-wrap {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.community-slider .swiper-button-next {
    width: 75px;
    height: 75px;
    background: url(../images/slider-right-white.svg) no-repeat;
    background-size: 75px 75px;
    right: 102px;
    top: 45%;
    -webkit-transition: .5s ease;
    transition: .5s ease
}

.community-slider .swiper-button-next:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.community-slider .swiper-button-next:after {
    display: none
}

.community-section .button-block .block-wrap {
    margin: 0 16px
}

.community-section .button-block .block-wrap svg {
    display: inline-block
}

.community-section .center-block:hover {
    width: 1200px
}

.community-section .button-block {
    margin-top: 40px;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.community-section .center-block .features h5 {
    font-size: 16px;
    letter-spacing: 1.8px;
    line-height: 22px;
    color: #ffff;
    margin-bottom: 0;
    font-family: optima;
    font-weight: 400;
}

.community-section .img-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 30%;
    margin: auto;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.community-section .img-wrap img {
    margin: 0 auto 80px
}

/*end here*/

/*location page css*/

.location-page {
    height: 100%;
    background: #000000eb;
    padding: 65px 0;
}

.inter-page {
    padding: 110px 0 !important;
}

.location-page .card {
    height: 350px;
    border: 2px solid #fff;
    border-radius: 0px;
}

.location-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), url("../images/gurgaon-1.webp") no-repeat center/cover;
}

.location-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), url("../images/noida-1.webp") no-repeat center/cover;
}

.location-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), url("../images/delhi.webp") no-repeat center/cover;
}

.location-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
}

.testi img {
    /*height:70px;*/
    width: auto !important;
}

/*.......................*/
/*Gurgaon page css*/
/*.....................*/

/*Over effect start*/

.container1 {
    position: relative;
    height: 100%;
}

.overlayRC {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #000000e8;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.container1:hover .overlayRC {
    bottom: 0;
    height: 100%;
}

.thumbinfo {
    border: 2px solid #ffffff;
    /*padding: 20px;*/
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}

.contentAmen {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    width: 100%;
    padding: 20px;
}

/*end here*/

/*contact us page css*/
.contactImg {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/beautiful-city.webp") no-repeat center/cover;
    filter: grayscale(1);
}

/* .contact-form {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: -100px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/bg-contact.webp") no-repeat center/cover;
} */
.contact-text-title {
    font-family: optima !important;
    font-weight: 800;
    font-size: 18px;
}

label {
    font-weight: 600;
}

.contact-form input {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
}

.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
}

.contact-form .form-control:focus {
    color: white;
    background-color: transparent;
    border-color: white;
}

.contactI {
    background: var(--maincolor);
}

.contact-page-title h3,
.builder-page-title h3 {
    text-transform: uppercase;
    margin: 90px;
    font-weight: 600;
    font-size: 30px;
}

.contact-btnsend {
    background: #000;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.address-contact {
    background-color: #000;
    text-align: center;
    padding: 32px 20px 0px 20px;
    border-radius: 5px;
    position: relative;
    height: 100%;
}

.Phone-contact {
    background-color: #000;
    text-align: center;
    padding: 32px 20px 0px 20px;
    border-radius: 5px;
    position: relative;
    height: 100%;
}

.email-contact {
    background-color: #000;
    text-align: center;
    padding: 32px 20px 0px 20px;
    border-radius: 5px;
    position: relative;
    height: 100%;
}

.call-points {
    padding: 30px 30px 20px 30px;
    text-align: center;
}

.address-img {
    box-shadow: 0px 3px #fff;
    background-color: #000000;
    border-radius: 100%;
    position: absolute;
    top: 0;
    padding: 14px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fa-whatsapp {
    border-radius: 100%;
    font-size: 18px;
    color: #1ea20e;
    padding: 3px;
}

.contact-last {
    background-color: #c59247;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    margin: 0;
}

.gurgaon-himachal-1 {
    background-color: #e5e5e5;
}

.detail {
    background: black;
    padding: 10px 0 10px 0;
}

/*end here*/

.footer {
    background: black;
    color: white;
}

.footer-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    display: inline-block;
}

.footer-menu ul li {
    width: auto;
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    padding: 0 0 0 12px;
}

.footer-menu ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: rgb(127, 127, 127);
    border-radius: 100%;
    transform: translateY(-50%);
}

.footer-section ul li a {
    font-family: optima;
    font-size: 16px;
    text-decoration: none;
}

.footer-mid {
    color: rgb(127, 127, 127);
    font-weight: 400;
    font-family: optima;
    font-size: 12.5px;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.footer li a:hover {
    color: #fff;
}

.main-footer a:hover {
    color: #fff;
}

.copyright {
    font-size: 10px;
}

.copyright a {
    color: rgb(171 162 162);
}


/*..........................*/
/*whatsapp icon css*/
/*..........................*/


.whatsapp-icon {
    z-index: 999 !important;
    display: flex !important;
    position: fixed;
    bottom: 30px;
    left: 20px;
}

.whatsapp-icon img {
    border-radius: 50%;

}


/*..........................*/
/*newsletter css*/
/*..........................*/

.newsletter-popup .newsletter-popup-container h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    padding: 10px 0 10px;
    color: #4d5561;
}

.newsletter-popup .newsletter-popup-container h3 i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4d5561;
    color: #fff;
    margin-right: 10px;
}

.newsletter-popup .newsletter-popup-container p {
    margin: 0;
    padding: 15px 0;
    color: #8d9092;
}

.newsletter-popup .newsletter-popup-container form {
    width: 90%;
    display: flex;
    padding: 15px 0 10px;
}

.newsletter-popup .newsletter-popup-container form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.newsletter-popup .newsletter-popup-container form input::placeholder {
    color: #8d9092;
}

.newsletter-popup .newsletter-popup-container form button {
    width: 180px;
    appearance: none;
    background-color: #4d5561;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.newsletter-popup .newsletter-popup-container form button:hover {
    background-color: #424953;
}

.newsletter-popup .newsletter-popup-container .newsletter-msg {
    padding: 5px 0;
}

/*.......................*/
/*All project page*/
/*........................*/
.project-banner {
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8)), url("../images/aria-79-img.webp") no-repeat top/cover;
    /*filter:grayscale(1);*/
}

.uberluxury-banner {
    color: white;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.8)), url("../images/gulshan-img.webp") no-repeat top/cover;
}

.luxury-banner {
    color: white;
    height: 100%;
    background: linear-gradient(rgba(0, 255, 255, 0.2), rgba(0, 0, 0, 0.8)), url(../images/emaar-banner.webp) no-repeat top/cover;
}

.premium-banner {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/ggl-img.webp) no-repeat top/cover;
    color: white;
}

#allproject {
    padding: 50px 0;
    background: #3b3b3b;

    position: relative;

}

.allproject-wrap {
    position: relative;
}

.allproject-grid {
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 3px;

}

.luxury-properties-item {
    padding: 3px;
    width: 33.33%;
}

.luxury-properties-item a {
    position: relative;
    display: block;
}

.luxury-properties-item a::before,

.luxury-properties-item a::after {

    content: "";
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 2;

}

.luxury-properties-item a::before {

    bottom: 1.938vw;
    width: 0.313vw;
    height: 6.438vw;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.luxury-properties-item a:hover:before {

    bottom: 0;
    height: 100%;
}

.luxury-properties-item a::after {

    top: 0;
    width: 100%;
    height: 100%;
    border: 0.438vw solid #fff;
    opacity: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.luxury-properties-item a:hover:after {
    opacity: 1;
}

.luxury-properties-item-inner-wrapper {

    position: relative;
    overflow: hidden;
}

.luxury-properties-item-photo {

    position: relative;
    z-index: 1;
}

.luxury-properties-item-photo::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, transparent, #000);
    opacity: .8;
    pointer-events: none;
}

.luxury-properties-item-photo canvas {

    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.luxury-properties-item-content-status-city {

    position: absolute;
    top: 2.063vw;
    left: 2.375vw;
    z-index: 1;
    opacity: 0;
}

.luxury-properties-item-content-status-city div {

    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: optima;
    font-size: 1.563vw;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0.75vw;
    line-height: 1;
}

.luxury-properties-item-content-status-city div:first-child {

    padding-left: 0;

}

.luxury-properties-item-content-status-city div:last-child:after {

    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 2.313vw;
    background-color: #fff;
    pointer-events: none;
}

.luxury-properties-item-content {

    position: absolute;
    bottom: -5.688vw;
    left: 0;
    padding: 0 0 2.063vw 2.375vw;
    z-index: 1;
    min-height: 12.250vw;
}

.luxury-properties-item-content-address {

    font-family: optima;
    font-size: 1.563vw;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;

}

.luxury-properties-item-content-address div {

    font-size: 1.125vw;
    line-height: 1.8;
    margin-top: 0.313vw;

}

.luxury-properties-item-content-features {

    margin: 0 0 0.125vw !important;
    opacity: 0;

}

.luxury-properties-item-content-features li {

    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: optima;
    font-size: 1.125vw;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    text-transform: uppercase;
    padding: 0 0.563vw;
}

.luxury-properties-item-content-features li:first-child {

    padding-left: 0;
}

.luxury-properties-item-content-features li::after {

    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1vw;
    background-color: #fff;
    pointer-events: none;
}

.luxury-properties-item-content-features li:last-child:after {

    opacity: 0;

}



.luxury-properties-item-content-price {
    font-size: 2.438vw;
    font-weight: 400;
    color: #fff;
    opacity: 0;
}

.luxury-properties-item-link-label {

    position: absolute;
    bottom: 2.375vw;
    right: 1.938vw;
    font-size: 0.938vw;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    width: 9vw;
    padding: 0.875vw 0;
    background-color: #fff;
    z-index: 1;
    opacity: 0;

}

.luxury-properties-item a:hover .luxury-properties-item-content-features,

.luxury-properties-item a:hover .luxury-properties-item-link-label,

.luxury-properties-item a:hover .luxury-properties-item-content-price {

    opacity: 1;
    line-height: 1;

}

.luxury-properties-item a:hover .luxury-properties-item-content {

    bottom: 0;

}

.luxury-properties-item a:hover .luxury-properties-item-content-status-city {

    opacity: 1;

}

.allproject-cta {

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 2vw 15px;

}

.allproject-cta a {
    display: block;
    width: 298px;
    max-width: 100%;
    border: 2px solid #000;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    margin: 0 11px;
    padding: 18px 15px 16px;
    transition: all .3s ease;
}

.allproject-cta a:hover {

    background-color: #fff;
    border-color: #fff;
    color: #000;

}


p.text-center.back-to-listing,
p.text-center.no-results {
    width: 100%;
}

.luxury-properties-item a:hover .luxury-properties-item-photo::before {
    background: linear-gradient(to bottom, #000, #000, #000) !important;
}

/*end here*/

/*....................*/
/*all project home page*/
/*.......................*/
.tab-section .nav-tabs .nav-link.active {
    border-bottom: 2px solid #000;
    color: #161616;
    background: 0 0
}

@media screen and (max-width: 767px) {
    .nav-logo {
        margin: auto;
    }

    .heading-part {
        font-size: 40px;
    }

    .testi-cl {
        height: 100%;
    }

    .location-page {
        padding: 100px 0 90px 0;
    }

    .all-part-section {
        padding: 1rem !important;
    }

    .about-banner {
        height: 60vh !important;
    }

    .whatsapp-icon {
        bottom: 90px;
        right: 10px;
    }

    .content h2 {
        font-size: 3em;
    }

    .banner-logo {
        padding: 100px 0 100px 0;
    }

    .call-action {
        /* margin: 50px auto; */
        width: 90%;
    }

    .contact-page-title h3 {
        margin: 20px;
    }

    .contact-form {
        margin-left: 0px;
    }

    .hidden-xs {
        display: none !important;
    }

    .ip-about-section-4:before {
        max-width: 90%;
    }

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        font-size: 40px;
        text-align: center;
    }

    .text-box {
        top: 50%;
    }

    #videobcg {
        height: 65vh;
    }

    .heading-part {
        font-size: 30px;
        font-weight: 600;
    }

    .testi-cl h4 {
        font-size: 32px;
    }

    /*.mobile-view{*/
    /*    display:block!important;*/
    /*}*/
    /*.desktop-view{*/
    /*    display:none;*/
    /*}*/
}


@media only screen and (max-width: 991px) {

    .ip-about-s3-row,
    .ip-about-s5-row {
        display: block;
    }

    .ip-about-s3-img,
    .ip-about-s5-img {
        max-width: 360px;
        display: block;
        margin: 0 auto 30px;
    }

    .ip-about-s3-img,
    .ip-about-s5-img,
    .ip-about-s3-text,
    .ip-about-s5-text {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .ip-aboout-s4-box {
        margin-right: 0;
        padding: 80px 0;
    }

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        margin: 0 auto;
        padding: 0 15px;
    }

    .first-letter-big {
        margin-left: 0 !important;
    }

    .luxury-properties-item {

        width: 50%;

    }

    .luxury-properties-item-content {
        bottom: -73px;
        padding: 0 0 29px 18px;
        min-height: 136px;
    }

    .luxury-properties-item a::before {
        bottom: 16px;
        width: 4px;
        height: 48px;
    }

    .luxury-properties-item a::after {

        border: 4px solid #fff;

    }

    .luxury-properties-item-content-status-city {

        top: 22px;
        left: 22px;

    }

    .luxury-properties-item-content-status-city div {

        font-size: 18px;
        padding: 0 12px;

    }

    .luxury-properties-item-content-status-city div:first-child:after {

        height: 27px;

    }

    .luxury-properties-item-content-address {

        font-size: 25px;

    }

    .luxury-properties-item-content-address div {

        font-size: 18px;
        margin-top: 0;

    }

    .luxury-properties-item-content-features {

        margin-bottom: 5px;

    }

    .luxury-properties-item-content-features li {

        font-size: 16px;

        padding: 0 9px;

    }

    .luxury-properties-item-content-features li::after {

        height: 14px;

    }

    .luxury-properties-item-content-price {

        font-size: 22px;

    }

    .luxury-properties-item-link-label {

        bottom: 18px;
        right: 18px;
        font-size: 15px;
        width: 120px;
        padding: 10px 0;

    }


    .allproject-cta {

        display: block;

    }

    .allproject-cta a {
        margin: 15px auto;
    }

}

@media only screen and (max-width: 1199px) {

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        margin-left: 10%;

        font-size: 50px;
        max-width: 650px;
    }

    .luxury-properties-item-content {

        bottom: -6.3vw;

    }
}


@media only screen and (max-width: 567px) {
    .luxury-properties-item {

        width: 100%;

    }

}

@media(min-width: 1800px) {
    .community-section .center-block {
        width: 708px
    }
}

@media(max-width: 1600px) {
    .community-section .center-block {
        width: 957px;
        height: 100%;
    }
}

@media(max-width: 991.98px) {
    .community-section .center-block {
        position: relative;
        margin: auto;
        width: 85%;
        height: auto;
        top: 0;
        padding: 30px;
        background: rgba(0, 0, 0, .5);
        margin: 30px auto 118px
    }
}

@media(max-width: 575.98px) {
    .community-section .center-block {
        padding: 30px 10px 30px 30px
    }

    #gallery-showcase p {
        display: none;
    }
}



@media(max-width: 1600px) {
    .community-section .center-block:before {
        width: 303px
    }
}

@media(max-width: 991.98px) {
    .community-section .center-block:before {
        display: none
    }
}



@media(max-width: 1600px) {
    .community-section .center-block .features .sm-in-lap {
        width: auto
    }

    .community-section .center-block .features .sm-in-lap1 {
        width: 28px
    }

    .community-section .center-block .features .sm-in-lap2 {
        width: 25px
    }

    .community-section .center-block .features .sm-in-lap3 {
        width: 32px
    }
}

@media(max-width: 767.98px) {
    .community-section .center-block .features .sm-in-lap {
        width: 37px;
        height: 37px
    }
}

@media(max-width: 991.98px) {
    .community-section .center-block .features {
        opacity: 1 !important;
        display: block;
        margin-left: 0;
        margin-right: 0
    }
}

@media(min-width: 1280px) and (max-width:1600px) {
    .community-section .center-block .features .col-3 {
        width: 23%
    }
}

.community-section .center-block .features .icon-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px
}

@media(max-width: 1600px) {
    .community-section .center-block .features .icon-box {
        min-width: 205px
    }
}

@media(max-width: 991.98px) {
    .community-section .center-block .features .icon-box {
        margin-bottom: 38px;
        margin-left: auto;
        margin-right: auto;
        width: 100%
    }
}



@media(max-width: 1600px) {
    .community-section .center-block .features .icon-box:after {
        left: -22px
    }
}

@media(max-width: 991.98px) {
    .community-section .center-block .features .icon-box:after {
        display: none
    }
}

.community-section .center-block .features .icon-box .ms-3 {
    margin-left: 20px !important
}

@media(max-width: 1600px) {
    .community-section .center-block .features .icon-box .ms-3 {
        margin-left: 9px !important
    }

    .community-section .center-block .features .lg-box {
        min-width: 264px
    }

    .community-section .center-block .features h5 {
        font-size: 14px;
        line-height: 15px;
        padding-right: 33px
    }

    .community-section .img-wrap img {
        width: 200px;
        margin-bottom: 51px
    }
}

.community-section .center-block .features .icon-box:first-child:after {
    display: none
}


@media(max-width: 991.98px) {
    .community-section .center-block .features .lg-box {
        min-width: 205px
    }
}



@media(min-width: 1800px) {
    .community-section .center-block .features h5 {
        font-size: 18px;
        line-height: 24px;
        padding-right: 51px
    }
}

@media(max-width: 575.98px) {
    .community-section .center-block .features h5 {
        padding-right: 0;
        padding-left: 15px
    }

    .swiper-wrapper {
        height: 100% !important;

    }
}


@media(max-width: 991.98px) {
    .community-section .img-wrap {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
        margin: auto !important
    }

    .community-section .button-block .block-wrap {
        margin: 24px auto;
        text-align: center;
        width: 50%
    }

    .community-section .button-block .block-wrap a.white-btn {
        display: block;
        padding: 18px 40px;
        font-size: 16px
    }

    .community-section .button-block .block-wrap a.white-btn:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #000
    }

    .image-box .box-content h4 {
        line-height: 29px;
        font-size: 25px;
        margin-bottom: 20px
    }

    .image-box .box-content p {
        margin-bottom: 0
    }

    .image-box .box-content {
        padding-left: 37px;
        padding-bottom: 30px
    }

    .image-box img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%
    }

    .image-box {
        margin-bottom: 31px;
        height: 408px
    }

    .community-section .center-block:hover {
        width: 85%
    }

    .community-section .button-block {
        opacity: 1 !important;
        display: block;
        margin-top: 42px
    }

    .community-section .img-wrap img {
        margin-bottom: 55px
    }

    .community-section .center-block .features h5 {
        font-size: 16px;
        line-height: 24px
    }

    .community-section .center-block .features h5 br {
        display: none
    }
}

@media(max-width: 1399.98px) {
    .community-section .button-block {
        margin-top: 0
    }

    .community-section .center-block:hover {
        padding-top: 45px
    }
}

@media(max-width: 1600px) {
    .community-section .button-block .block-wrap {
        margin: 0 15px
    }

    .community-section .button-block .block-wrap a.white-btn {
        font-size: 10px
    }

    .community-section .button-block .block-wrap a.white-btn:hover {
        -webkit-box-shadow: inset 22em 0 #000;
        box-shadow: inset 22em 0 #000
    }

    .image-box .box-content h4 {
        font-size: 27px;
        line-height: 32px;
        margin-bottom: 37px
    }

    .image-box .box-content p {
        font-size: 16px
    }

    .image-box .box-content {
        padding-left: 38px
    }
}

@media(max-width: 767.98px) {
    .community-section .button-block .block-wrap {
        margin: 24px 0;
        text-align: center;
        width: 100%
    }
}

@media(min-width: 1200px) {
    .community-section .center-block:hover {
        width: 957px;
        height: auto;
        padding-top: 80px;
        /*margin-bottom: 50px*/
    }
}

@media(min-width: 1800px) {
    .image-box .box-content h4 {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 43px
    }

    .image-box .box-content p {
        line-height: 30px;
        font-size: 17px
    }

    .community-section .center-block:hover {
        width: 1388px;
        top: 313px
    }
}

/* Contact Form Section Styles - Dark Theme - Exact Match */
.contact-section-bg {
    position: relative;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/bg-banner.jpeg') center/cover no-repeat; */
    background: linear-gradient(rgba(0, 4, 53, 1), rgba(0, 0, 0, 0.6), rgba(0, 4, 53, 1));
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-dark-card {
    /* background: #1a1a1a; */
    background: var(--maincolor);
    /* background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); */
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
    min-height: 550px;
    border: none;
}

.contact-info-section {
    min-height: 100%;
    height: 100%;
    padding-right: 2rem;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 3rem !important;
}

.contact-label {
    color: #ffc107;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.contact-value {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.contact-phone-icon {
    color: #ffc107;
    font-size: 1rem;
}

.contact-phone-number {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-phone-number a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone-number a:hover {
    color: #ffc107;
}

.contact-form {
    min-height: 100%;
}

.contact-input {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-input::placeholder {
    color: #999;
    opacity: 0.8;
}

.contact-input:focus {
    background-color: #ffffff;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    outline: none;
}

.contact-submit-btn {
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    padding: 14px 30px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffc107 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #ffffff;
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Border between columns */
@media (min-width: 992px) {
    .contact-dark-card .border-start {
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}

/* Responsive Design for Contact Form */
@media (max-width: 991px) {
    .contact-dark-card .row {
        flex-direction: column;
    }

    .contact-info-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-dark-card .border-start {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 2.5rem;
        margin-top: 2.5rem;
    }

    .contact-main-title {
        font-size: 2.25rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-item.mt-auto {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .contact-dark-card {
        padding: 2.5rem 1.5rem !important;
        border-radius: 15px;
    }

    .contact-main-title {
        font-size: 1.75rem !important;
    }

    .contact-phone-number {
        font-size: 1.5rem;
    }

    .contact-section-bg {
        min-height: auto;
        padding: 3rem 0;
    }
}