#main_footer {
    position: relative;
    background-color: #111 !important;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
}

#main_footer img {
    position: absolute;
    max-height: 80px;
    left: 7vw;
    top: 3vh;
}

#main_footer ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: left;
    left: 22%;
    top: 28%;
}

#main_footer .menu{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: left;
    left: 40%;
    top: 28%;
}

#main_footer ul li {
    list-style: none;
    margin: 10px 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#main_footer ul li a {
    color: white;
    text-decoration: none;
}

#main_footer ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* ===========================
   Decorative Carousel Lines
   =========================== */
.footer-carousel-lines::before {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.footer-carousel-lines .footer-line-left,
.footer-carousel-lines .footer-line-right,
.footer-carousel-lines .footer-line-center {
    position: absolute;
    top: 0vh;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}
.footer-carousel-lines .footer-line-left {
    left: 20%;
}
.footer-carousel-lines .footer-line-center {
    left: 50%;
}
.footer-carousel-lines .footer-line-right {
    right: 20%;
}
.footer-carousel-lines .footer-line-top{
    position: absolute;
    top: 15vh;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}
.footer-carousel-lines .footer-line-bottom{
    position: absolute;
    bottom: 15vh;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer_round{
    position: absolute;
    width: 35vw;       
    height: 70vh;      
    border : 1.5px solid #ccc;
    border-radius: 50%;
    left: 2.5vw;
    top: 15vh;
    z-index: 2000;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #main_footer .col-md-6,
    #main_footer .col-md-3 {
        text-align: center !important;
        margin-top: 20px;
    }
}

/* Footer Headings */
#main_footer h4 {
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    left: 53%;
    top: 30%;
    color: #ffffff;
}
#main_footer .text {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    top: 50%;
    left: 82vw;
    width: 17vw;
    transform: rotate(90deg);
    color: #ffffff;
}

/* Footer Paragraph */
#main_footer .address{
    position: absolute;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    left: 53%;
    top: 38%;
    width: 20vw;
    color: #ffffff;
}
#main_footer .copyright{
    position: absolute;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 0;
    left: 22%;
    top: 85%;
    color: #ccc;
    width: 22vw;
}
#main_footer .social-text{
    position: absolute;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    left: 88%;
    top: 80%;
    text-transform: uppercase;
}


/* Address & Contact Button */
#main_footer a.btn-light {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: absolute;
    left: 53%;
    top: 60%;
}

#main_footer a.btn-light:hover {
    background-color: #f39c12;
    color: #ffffff;
}
/* Responsive Column Text Alignments */
@media (min-width: 768px) {
    #main_footer .text-md-start {
        text-align: left !important;
    }
    #main_footer .text-md-end {
        text-align: right !important;
    }
}

@media (max-width: 767.98px) {
    #main_footer .text-md-end {
        text-align: center !important;
    }
}

.footer-social-media-icons{
    position: absolute;
    top: 90vh;
    right: 2vw;
    display: flex;
    gap: 15px;
    z-index: 1060;
}
.footer-social-media-icons a {
    color: white;
    width: 3vw;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}
.footer-social-media-icons a:hover {
    background-color: #fff;
    color: #000;
}