.main-footer .footer-center-sec {
	position:relative;
}

.main-footer .footer-center-sec::after {
    content: "";
    width: 1px;
    height: 100px;
    background-color: #ffffff26;
    position: absolute;
    left: -30px;
    top: 25%;
}
.main-footer .footer-center-sec::before {
    content: "";
    width: 1px;
    height: 100px;
    background-color: #ffffff26;
    position: absolute;
    right: 50px;
    top: 25%;
}

/* popup css */

/* Overlay */
/* .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Popup Container */
.modal {
/*     width: 1000px;
    max-width: 95%; */
    background: #000;
    display: flex;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* Image Section */
.modal-image {
    width: 60%;
    background: url('https://fornoblewomen.com/wp-content/uploads/2026/02/MicrosoftTeams-image.jpg') center/cover no-repeat;
    min-height: 550px;
}

/* Content Section */
.modal-content {
    width: 40%;
    padding: 80px 60px;
    background: #000;
    position: relative;
}

/* Overlapping Heading */
.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    position: absolute;
    left: -180px;   /* makes it overlap image */
    top: 120px;
    color: #fff;
}
span.Square_color {
    color: #fff;
}

/* Small paragraph */
.modal-content p {
    margin-top: 300px;
    font-size: 15px;
    color: #fff;
    max-width: 300px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .modal {
        flex-direction: column;
    }

    .modal-image {
        width: 100%;
        min-height: 350px !important;
    }

    .modal-content {
        width: 100%;
        padding: 40px;
    }

    .modal-content h2 {
        position: static;
        font-size: 36px;
        margin-bottom: 20px;
			  color:#fff;
    }

    .modal-content p {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .modal-image {
        width: 100%;
        min-height: 350px !important;
    }
}