.main-container {
    display: flex;
}

.right-side {
    width: 75%;
}

.left-side {
    width: 25%;
    position: fixed;
    left: 75%;
}

.navbar-custom {
    border-bottom: 1px solid #000000;
    padding: 0px !important;
    background-color: #ffffff !important;
}

.logo {
    max-width: 18vw;
    height: 3vw;
    /* padding: 5px; */
}

.custome-menu {
    font-weight: 400;
    color: #000000 !important;
}

.custome-menu i {
    padding: 10px;
}

.common-btn {
    background-color: #171101;
    border-radius: 0.5rem;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.normal-btn {
    background-color: #171101;
    border-radius: 0.5rem;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-25deg);
    animation: shine 2s infinite;
}

.container-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.banner-img {
    height: 100vh;
    width: 100%;
}

.info-box {
    position: absolute;
    top: 18%;
    left: 1%;
    border-radius: 10px !important;
    width: 30%;
}

.info-box-content {
    padding: 10px;
    background-color: #000000;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.info-box-content p {
    margin-bottom: 0px !important;
    color: #ffffff;
    font-size: .875rem;
    font-weight: 600;
}

.property-info-div {
    padding: 10px;
    background-color: #ffffff;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.property-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px !important;
}

.address-txt {
    margin-bottom: 0px !important;
    color: #4b5563;
    font-size: .875rem;
}

.grid-div {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-title {
    margin-bottom: 0px !important;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.grid-content {
    margin-bottom: 0px !important;
    font-size: .875rem;
    color: #4b5563;
}

.offer-div {
    background-color: #17110199;
    color: #ffffff;
    position: relative;
    padding: 10px 0px;
    border-radius: 10px;
}

.offer-div ul {
    margin-bottom: 0px !important;
}

.main-property-name {
    color: #000000;
    font-size: 2.25rem;
}

.unit-plan-img {
    filter: blur(2px);
    height: 200px;
    width: 100%;
    cursor: pointer;
}

.unit-plan-txt {
    background-color: #000000;
    color: #ffffff;
    margin-bottom: 0px !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

.card {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 84%), transparent 60%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 16px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 1;
}

.card-content h3 {
    margin: 0;
    font-size: 1rem;
}

.map-img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.virtual-tour {
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Increased darkness */
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
    /* Ensures it stays above the dark overlay */
}

.play-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.overlay h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

.overlay p {
    font-size: 18px;
    max-width: 90%;
    margin: 0 auto;
}

.main-logo {
    width: 140px;
    height: 90px;
}

.small-heading {
    font-size: 13px;
    font-weight: 700;
}

.legal-list-ul {
    font-size: 12px;
}

.small-content {
    font-size: 12px;
}

.disclaimer-div {
    background-color: #F3F4F6;
    padding: 10px;
    border-radius: 10px;
}

.footer-list-ul {
    list-style: none;
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}

.footer-list-ul li {
    margin-right: 20px;
    border: 1px solid #f6f6f6;
}

.footer-list-ul li a {
    text-decoration: none;
    color: #000000;
}

.call-icon-div {
    background-color: #171101;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    font-size: 13px;
}

.call-icon {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
}

.call-us-txt {
    margin-bottom: 0px !important;
    color: #ffffff;
}

.link-normal {
    text-decoration: none !important;
    color: #fff !important;
}

.ride-img {
    width: 60px;
    height: 60px;
}

.book-site-visit-div {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #F3F4F6;
    padding: 10px 15px;
    border-radius: 10px;
}

.book-site-visit-txt {
    margin-bottom: 0px !important;
}

/* Pop Up Design */

.popup-left {
    background: url('../img/elevation.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 2rem;
    min-height: 100%;
}

.popup-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.popup-left>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .popup-left,
    .popup-right {
        width: 100%;
        padding: 1.5rem;
    }
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


/* Responsive styles */
@media (max-width: 768px) {
    .main-container {
        display: flex;
    }

    .right-side {
        width: 100%;
    }

    .left-side {
        display: none;
    }

    .info-box {
        position: relative;
        top: 0;
        left: 0;
        border-radius: 10px !important;
        width: 100%;
        padding: 20px;
        /* border: 1px solid #000000; */
    }

    .mobile-margin {
        margin-top: 20px;
    }

    .common-btn {
        background-color: #171101;
        border-radius: 0.5rem;
        color: #ffffff !important;
        padding: 5px 10px;
        border: none;
        cursor: pointer;
        font-size: .8rem;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

    .normal-btn {
        background-color: #171101;
        border-radius: 0.5rem;
        color: #ffffff !important;
        padding: 10px;
        border: none;
        cursor: pointer;
        font-size: .8rem;
        font-weight: 500;
    }
}