.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    text-align: center;
}

.hero-content .col-12{
    position: relative;
    display: inline-block;
    padding: 40px 80px;
    z-index: 2;
}

/* Dark shadow background */
.hero-content .col-12::before{
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.45);

    filter: blur(20px);

    transform: scale(1.2);

    z-index: -1;
}

/* Title */
.hero-title{
    color: #fff;
    font-size: 80px;
    font-weight: 350;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Subtitle */
.hero-subtitle{
    color: #f5f5f5;
    font-size: 24px;
    margin: 0;
    letter-spacing: 1px;
}



@media only screen and (max-width: 768px){

    .property-slider-section{
        position: relative;
        height: 70vh;
        overflow: hidden;
    }

    .property-slider-section img{
        height: 70vh;
        object-fit: cover;
    }

    .hero-content{
        top: 52%;
        width: 90%;
        padding: 0 15px;
    }

    .hero-title{
        font-size: 42px !important;
        line-height: 1.1;
        letter-spacing: 1px;
        word-break: break-word;
    }

    .hero-subtitle{
        font-size: 20px !important;
        line-height: 1.5;
    }

    .hero-content .col-12{
        padding: 20px 25px;
    }
}




.hero-title{
    font-size: clamp(42px, 6vw, 90px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.8),
        0 8px 30px rgba(0,0,0,0.6);
}

.hero-subtitle{
    font-size: 24px;
    font-weight: 600;
    color: #fff;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.8);
}



@media only screen and (max-width: 768px){

    .hero-title{
        font-size: 32px !important;
        line-height: 1.2;
        word-break: keep-all;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .hero-subtitle{
        font-size: 18px !important;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-content{
        width: 100%;
    }
}












/* cards hover effect */
/* SECTION TITLE */
.section-title{

    color: #15383f;

    font-weight: 700;

}

/* CARD */
.project-card{

    position: relative;

    overflow: hidden;

    /* border-radius: 20px; */

    cursor: pointer;

    transition: all 0.5s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

/* IMAGE */
.project-card img{

    width: 100%;

    display: block;

    transition: all 0.5s ease;

}

/* HOVER EFFECT */
.project-card:hover{

    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.25);

}

/* IMAGE ZOOM */
.project-card:hover img{

    transform: scale(1.08);

}

/* POPUP BACKGROUND */
.project-popup{

    display: none;

    position: fixed;

    z-index: 99999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;

    padding: 20px;

}

/* POPUP IMAGE */
.popup-content{

    max-width: 90%;
    max-height: 90%;

    /* border-radius: 15px; */

    animation: zoomIn 0.4s ease;

}

/* CLOSE BUTTON */
.close-popup{

    position: absolute;

    top: 20px;
    right: 35px;

    color: #fff;

    font-size: 50px;

    cursor: pointer;

    z-index: 999999;

}

/* ANIMATION */
@keyframes zoomIn{

    from{

        transform: scale(0.7);

        opacity: 0;

    }

    to{

        transform: scale(1);

        opacity: 1;

    }

}

/* MOBILE */
@media(max-width:768px){

    .project-card{

        /* border-radius: 15px; */

    }

    .close-popup{

        font-size: 40px;

        right: 20px;

    }

}










/* POPUP BACKGROUND */
.project-popup{

    display: none;

    position: fixed;

    z-index: 99999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;

}

/* POPUP IMAGE */
.popup-content{

    max-width: 85%;
    max-height: 85%;

    object-fit: contain;

    /* border-radius: 10px; */

}

/* CLOSE BUTTON */
.close-popup{

    position: absolute;

    top: 20px;
    right: 35px;

    color: #fff;

    font-size: 50px;

    cursor: pointer;

}