/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Mistral';
    src: url('../fonts/MISTRAL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============== CSS Variables ================ */
:root {
    --primary-color: #EE1C24;
    --secondary-color: #595959;
    --grey-color: #1E1E1E;
    --white-color: #fff;
    --black-color: #000;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Mistral', sans-serif;
}

/* ============== Default Element Style ================ */
body {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--grey-color);
}

h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(33px, 5vw, 65px);
    line-height: 1.0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--white-color);
}

    h1 span {
        font-family: var(--font-secondary);
        font-weight: 400;
        font-size: clamp(50px, 7vw, 90px);
        line-height: 1.2;
        color: var(--primary-color);
    }

h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: var(--primary-color);
}

    h2 span {
        font-family: var(--font-secondary);
        font-weight: 400;
        font-size: clamp(36px, 6vw, 62px);
        line-height: 1.2;
        color: var(--secondary-color);
    }

h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
}

h5 {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 23px);
    line-height: clamp(18px, 4vw, 25px);
}

h6 {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.4em;
    font-weight: 600;
}

p {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 17px);
}

.text-sizes-ul li {
    font-size: clamp(16px, 2vw, 18px) !important;
    line-height: 1.4em !important;
    font-weight: 600 !important;
}

.text-font {
    font-family: var(--font-secondary);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
}

.text-secondary {
    font-family: var(--font-secondary);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
}


/* List & Anchor */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, a:hover, a:focus {
    text-decoration: none !important;
}

/* Images */
img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn_theme {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: #EE1C24;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 12px 30px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .btn_theme:hover {
        background-color: #fff;
        color: #EE1C24;
        border: 2px solid #EE1C24;
    }

/* Section Padding */
.section-padding {
    padding: 80px 0px;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

/* Responsive Adjustments */
@media (max-width:768px) {
    .section-padding {
        padding: 60px 0px;
    }

    .section-padding-top {
        padding-top: 60px;
    }

    .section-padding-bottom {
        padding-bottom: 60px;
    }
}

@media (max-width:480px) {
    .section-padding {
        padding: 40px 0px;
    }

    .section-padding-top {
        padding-top: 40px;
    }

    .section-padding-bottom {
        padding-bottom: 40px;
    }
}

/* Footer */
#footer {
    background: #F3F3F3 url('../img/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    #footer .logo img {
        max-width: 150px;
    }

    #footer .contact-details i {
        color: red;
        margin-right: 8px;
    }

.bottom-footer {
    background-color: red;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.w-black {
    color: #595959;
}

.bg-wblack {
    background: #595959;
}

.red {
    color: #EE1C24;
}

#footer ul li a {
    color: #000000;
}

.aim-box {
    background: #EE1C24;
    border-radius: 18px;
}

.img-top-radius {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#invest {
    background-image: url(../img/invest-bg-img.webp), url(../img/invest-bg-img.png);
    background-size: cover;
    background-position: center;
}

#piece-of-land {
    background-image: url(../img/piece-of-land-img.webp), url(../img/piece-of-land-img.png);
    background-size: cover;
    background-position: left center;
}

#piece-of-lands {
    background-image: url(../img/investing-with-ashtalaxmi-img.webp), url(../img/investing-with-ashtalaxmi-img.png);
    background-size: cover;
    background-position: left center;
}

.btn {
    background: #EE1C24;
    color: #fff;
    border: 1px solid #fff;
    width: fit-content;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

    .btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.6s ease-in-out;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
    }

    .btn:hover::before {
        transform: translate(-50%, -50%) scale(1);
    }

    .btn:hover {
        background: #fff;
        color: #EE1C24;
        border-color: #EE1C24;
        box-shadow: 0 0 15px rgba(238, 28, 36, 0.6);
    }

/*#banner {
    background-image: url(../img/home-banner-img.webp), url(../img/home-banner-img.png);
    background-size: cover;
    background-position: center center;
}*/

.navbar {
    background: #E9E9E9;
}

.nav-link {
    padding: 11px 28px !important;
}

@media(min-width:992px) {
    .navbar-brand {
        position: absolute;
        top: 26px;
    }

    .about-details {
        position: absolute;
        right: 50px;
    }
}

.vr-line::after {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 0;
    right: 0;
    width: 0.4px;
    background-color: #ffffff54;
    height: 570px;
}



.banner-tittle {
    padding-top: 370px;
    padding-bottom: 130px;
}

@media (max-width: 991px) {
    .vr-line::after {
        display: none;
    }

    .banner-tittle {
        padding-top: 210px;
        padding-bottom: 100px;
    }
}

.recent-bg {
    background-image: url(../img/recent-tittle-bg-img.png);
    background-size: cover;
    background-position: center center;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
    margin: auto;
}

@media(max-width:576px) {
    .recent-bg {
        background-image: url(../img/mobile-recent-bg-img.png);
        background-size: cover;
        background-position: center center;
        position: absolute;
        bottom: 0px;
        width: 100%;
        left: 0px;
        right: 0px;
        margin: auto;
    }

    #piece-of-land, #piece-of-lands {
        background-image: url(../img/mobile-peace-img.webp), url(../img/mobile-peace-img.png);
        background-size: cover;
        background-position: left center;
    }

    .bg-piece {
        background: #595959d1;
        /*   padding: 20px 40px;*/
    }
}


#inner-banner {
    background-image: url('../img/inner-banner-img.png'), url('../img/inner-banner-img.webp');
    background-size: cover;
    background-position: top center;
    margin-top: 50px;
    background-repeat: no-repeat;
}

.content-down {
    padding: 130px 0 60px 0;
}

.inner-tab {
    background: #EE1C24;
    width: fit-content;
}

    .inner-tab span {
        font-size: clamp(35px, 4vw, 55px);
    }

.bg-red {
    background: #EE1C24;
}

.icons {
    border: 1px solid #ffff;
    border-radius: 50%;
    padding: 8px 9px 8px 9px;
}

.text-red {
    color: #EE1C24;
}

.get-in-touch-bg {
    background-image: url(../img/get-in-touch-bg.png);
    background-size: 50% 100%;
    background-position: left;
    background-repeat: no-repeat;
}

@media(max-width: 992px) {
    .get-in-touch-bg {
        background-size: cover;
        background-position: center;
    }
}

.form-control:focus {
    box-shadow: 0 0 0 .25rem rgb(255 0 0 / 25%) !important;
}

.form-control {
    color: #EE1C24 !important;
}

.form-floating label {
    color: #8F8F8F !important;
    font-weight: 600 !important;
}

.map {
    height: 100%;
    width: 100%;
}

@media(min-width: 992px) {
    .maps {
        position: absolute;
        width: 50%;
        right: 0;
        top: 0;
        height: 100%;
    }
}

@media(max-width: 992px) {
    .map {
        height: 350px;
    }
}

#footer a:hover, .link-hover:hover, .navbar ul li a:hover {
    color: #EE1C24 !important;
}


#projects .bg_property {
    background: #595959;
    margin-top: -19px;
    position: relative;
    z-index: 1111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

#projects .clip_path {
    background: #ee1c24;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    border-bottom-left-radius: 15px;
}

.sold_out {
    position: absolute;
    top: 20px;
    right: 0px;
    background: #ee1c24;
    padding: 2px 20px;
    color: #fff;
}

@media(max-width:576px) {
    #projects .clip_path {
        clip-path: unset;
        border-bottom-left-radius: unset;
    }
}


#project-detail table {
    border: none !important;
    border-collapse: collapse;
    width: 100%;
}

#project-detail tr {
    border-left: 6px solid #ee1c24;
    border-right: 6px solid #ee1c24;
}

#project-detail tbody tr:last-child {
    border-bottom: 6px solid #ee1c24;
}

#project-detail thead tr {
    border-top: 6px solid #ee1c24;
    border-bottom: 6px solid #ee1c24;
}

#project-detail th {
    background-color: #EE1C24 !important;
    color: #fff !important;
}

#project-detail td {
    border: 2px solid #fff;
    padding: 10px;
    text-align: center;
}

#project-detail tbody tr:nth-child(even) td {
    background-color: #E9E9E9;
}

#project-detail tbody tr:nth-child(odd) td {
    background-color: #EBACAE;
}

@media (max-width: 768px) {
    #project-detail .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #project-detail th,
    #project-detail td {
        white-space: nowrap;
    }
}

.active {
    color: #EE1C24 !important;
    font-weight: 600 !important;
}

.text-black-hover:hover {
    color: #000 !important;
}

.text-size h3 a {
    font-size: 25px !important;
    font-weight: 500 !important;
}

@media(max-width: 992px) {
    .navbar-brand img {
        width: 100px !important;
    }
}

#projects .bg_property {
    z-index: 1029;
}
