@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

:root {

    --black-color: #343434;
    --white-color: #ffffff;
    --label-color: #495057;
    --border-color: #CED3DA;
    --secondary-color: #C09230;
    --grey-color: #EEEEEE;
    --grey-color-light: #F6F6F6;
}

a {
    text-decoration: none;
}

h6 {
    font-size: 18px;
    font-weight: 600;
}

.yellow-text {
    color: var(--secondary-color);
}

.sub-title {
    color: var(--secondary-color);
    font-size: 26px;
    font-weight: 600;
}

.sub-sub-title {
    color: var(--black-color);
    font-size: 22px;
    font-weight: 600;
}

.form-control {
    height: 44px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    border-radius: 0px;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: var(--secondary-color);
}

/* Modal */

.modal-content {
    border-radius: .3rem;
    border: 1px solid rgba(0, 0, 0, .2);
}

.modal-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem;
}

.modal-body {
    padding: 0px;
    overflow: hidden;
}

.img-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px;
    background-color: var(--grey-color-light);
    border-bottom-left-radius: 0.3rem;
}

.img-column img {
    max-width: 90px;
    margin-bottom: 12px;
}

.img-column img:last-child {
    max-width: 70px;
}

.modal-right-body {
    padding: 12px;
    text-align: center;
}

/* Right Sidebar */

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    width: fit-content;
    border-radius: 6px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 2rem;
    border: none;
    margin-bottom: 0px;
}

.secondary-btn-small {
    padding: 0.3rem 1rem;
}

.seesaw-animation {
    cursor: pointer;
    /* This ensures smooth animation */
    transform-origin: center;
    animation: seesaw 2s ease-in-out infinite;
}

@keyframes seesaw {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.right-aside {
    position: fixed;
    top: 0;
    right: 0;
    width: 384px;
    height: 100vh;
    z-index: 1;
}

.right-aside .aside-header {
    padding: 0px 12px;
    background-color: var(--grey-color-light);
}

.top-cta {
    display: flex;
    align-items: center;
    width: 100%;
}

.top-cta-btn {
    background-color: var(--black-color);
    color: var(--white-color);
    font-size: 16px;
    text-align: center;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0px;
}

.top-cta-btn:first-child {
    border-bottom-left-radius: 1vw;
    border-right: 0.5px solid var(--white-color);
    width: 80%;
}

.top-cta-btn:last-child {
    border-bottom-right-radius: 1vw;
    width: 100%;
}


/* Main */

.main {
    width: calc(100% - 384px);
}

.navbar-brand img {
    max-width: 100px;
}

.navbar {
    width: calc(100% - 384px);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.header-nav {
    height: auto;
}

#navbarNav {
    height: 58px;
}

.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item .active {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel {
    height: 100%;
    overflow: hidden;
}
                                                                                                                    
/* Project Cards */
.projectHeader {
    position: relative;
    margin-top:58px;
}

.project-card {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 282px;
    text-align: center;
    border: 1px solid var(--white-color);
}

.project-card .card-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.project-card .card-body .project-title {
    font-size: 24px;
    font-weight: 600;
}

.project-card .card-body .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 12px 16%;
    background-color: var(--grey-color-light);
    margin-bottom: 12px;
}

.project-card .card-body .other-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 6px;
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.project-card .card-body .other-details div {
    width: 100%;
    padding: 8px;
    border: 1px dashed var(--white-color);
}

.project-card .card-body .other-details p {
    margin-bottom: 0px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.main-title {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-style {
    margin: 1vw 0;
    position: relative;
    overflow: hidden;
    padding: 30px 40px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.slide-card {
    border: none;
    width: 312px;
    border-radius: 0px;
    position: relative;
    transition: all ease-in-out 0.5s;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.slide-card-btn {
    border-radius: 0px;
    width: 100%;
}

.slide-card .overlay {
    transition: all ease-in-out 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-card .overlay .overlay-btn {
    border-radius: 0px;
    padding: 12px 24px;
    border: 1px solid var(--grey-color);
    color: var(--white-color);
    background-color: var(--black-color);
    position: absolute;
    top: 40%;
    opacity: 0;
    transition: all ease-in-out 0.5s;
    z-index: 2;
}

.slide-card:hover .overlay {
    background-color: #343434;
    width: 100%;
    height: 84%;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0px;
}

.slide-card:hover .overlay-btn {
    opacity: 1;
}

.owl-theme .owl-dots {
    display: none !important;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 43%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.owl-nav button {
    margin: 0;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: var(--grey-color-light) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

.owl-nav button:hover {
    opacity: 1;
}

.owl-nav button span {
    font-size: 28px;
}

.owl-nav button span:hover {
    color: var(--label-color) !important;
}

.gallery-img {
    border-radius: 12px;
    transition: all ease-in-out 0.3s;
}

.gallery-img:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.video-container {
    position: relative;
    height:480px;
    overflow: hidden;
}

.video-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 18%;
    left: 0;
    color: var(--white-color);
    width: 100%;
    height: 60%;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all ease-in-out 0.3s;
}

.video-overlay .bi {
    font-size: 4.5rem;
    transition: all ease-in-out 0.3s;
}

.video-overlay h4 {
    transition: all ease-in-out 0.3s;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-size: 28px;
    margin-bottom: 0px;
}

.video-container:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-container:hover .video-overlay .bi {
    font-size: 5rem;
}

.video-container:hover .video-overlay h4 {
    font-size: 3rem;
}

ul {
    list-style: none;
}

.newlist li:before {
    content: '✓';
    font-weight: 800;
    margin-right: 10px;
    font-size: 13px;
    margin-left: -22px;
}

@media only screen and (max-width: 1462px) {
    .right-aside {
        width: 320px;
    }

    .top-cta-btn {
        padding: 8px;
    }

    .navbar {
        width: calc(100% - 320px);
    }

    .main {
        width: calc(100% - 320px);
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 15px;
        padding: 6px;
        text-align: center;
        width: fit-content;
    }
}

@media only screen and (max-width: 1320px) {
    .navbar-nav .nav-item .nav-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-nav .nav-item .nav-link i {
        margin: 0px !important;
    }

    .navbar-brand img {
        max-width: 120px;
    }
}

@media only screen and (max-width: 1182px) {
    .top-cta-btn {
        font-size: 14px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .right-aside {
        width: 280px;
    }

    .top-cta-btn {
        padding: 8px;
    }

    .navbar {
        width: calc(100% - 280px);
    }

    .main {
        width: calc(100% - 280px);
    }
}

@media only screen and (max-width: 1182px) {
    .right-aside {
        display: none;
    }

    .navbar {
        width: 100%;
    }

    .main {
        width: 100%;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 6px;
    }

    .navbar-brand img {
        max-width: 160px;
    }
}

.floor_plan_card{
    width:312px !important;
}

@media only screen and (max-width: 992px) {
    #navbarNav {
        height: auto !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }
    .video-overlay h4{
        font-size:1.75rem;
    }
    .video-container:hover .video-overlay h4{
        font-size:2rem;
    }
    .navbar-nav .nav-item .nav-link {
        width: 100%;
        font-size: 16px !important;
        padding: 6px;
        flex-direction: row;
        column-gap: 4px;
    }

    .carousel {
        height: auto;
    }

    .project-card {
        position: relative;
        width: 97.5%;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
        border: none;
        border-radius: 0px !important;
        margin-bottom: 24px;
    }

    .project-card .card-header {
        border-radius: 0px !important;
    }

    .project-card .card-body .details {
        margin: auto;
        padding: 12px;
        align-items: center;
    }

    .project-title {
        text-transform: uppercase;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .table-pricing tbody,
    .table-pricing td,
    .table-pricing th,
    .table-pricing thead,
    .table-pricing tr,
    table.table-pricing {
        display: block;
        text-align: center;
        border-bottom: 1px solid #e1e1e1;
    }

    .table>thead {
        display: none;
    }

    .table-pricing td {
        padding: 3px;
    }

    .table-pricing .price-table-btn {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 6px;
    }

    .secondary-btn-small {
        border-radius: 2px;
        font-size: 14px;
    }

    .price-type {
        font-size: 18px;
        font-weight: 600;
    }
    .sub-title{
        text-align: center;
        font-size: 20px;
    }
    .sub-sub-title{
        font-size: 16px;
    }
    .slide-card{
        width: 100% !important;
    }
    .mob-m-b{
        margin-bottom: 12px;
    }
    .title_text{
        flex-direction: column;
        row-gap: 8px;    
    }
    .rera-qr{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .rera-qr img{
        max-width: 120px;
    }
    .rera-qr p{
        text-align: center;
    }
    .project-declamir{
        font-size: 14px
    }
    .section-style{
        padding: 24px !important;
    }
    .floor_plan{
        flex-direction: column;
    }
}

.modal-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.modal-footer a{
    color: var(--white-color);
    font-size: 24px;
}


.main-content{
    margin-top: 172px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.main-content div{
    text-align: center;
}

label.error {
    color: red;
    text-align: left;
    display: block;
    font-size: 12px;
}
.float-btn{
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: none;
    align-items: center;
}
.float-btn a{
    width: 100%;
    color: var(--white-color);
    padding: 8px 16px;
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 992px) {
    .float-btn{
        display: flex;
    }
    .whatsapp_btn{
        display: none;
    }
    
}
@media only screen and (max-width: 764px) {
    .project-card {
        width: 96.5%;
    }
}
@media only screen and (max-width: 682px) {
    .project-card {
        width: 96%;
    }
}
@media only screen and (max-width: 492px) {
    .project-card {
        width: 95%;
    }
}
@media only screen and (max-width: 412px) {
    .project-card {
        width: 94%;
    }
}