/* .streamlit_config {
primaryColor: #180157;
backgroundColor: #ffffff;
secondaryBackgroundColor:#f9ebff;
textColor: #180157;
} */

/* Footer Styles */
footer {
    /* background: #0f4e91; */
    background: var(--dark-purple);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    /* width: 100%; */
}


footer .container {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 80%;
}

#footer-logo a img {
    width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.footer-column {
    flex: 1 1 300px;
    padding: 10px;
    box-sizing: border-box;
    /* border: solid 1px var(--pink); */
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-info img {
    width: 200px;
    /* Adjust the size as needed */
    height: auto;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav li {
    margin-top: 8px;
}

.footer-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    /* padding: 0.5em 0; */
    /* Adjust padding to fit your design */
    overflow: hidden;
    /* Ensures the pseudo-element doesn't spill outside the anchor */
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    /* Thickness of the underline */
    bottom: 0;
    /* Position right at the bottom of the link */
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-in-out;
}

.footer-nav a:hover::after,
.footer-nav a:focus::after{
    transform: scaleX(1);
    transform-origin: left;
}

.social-media a {
    margin-right: 20px;
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

.social-media a:hover {
    color: var(--pink);
}

footer p {
    margin-top: 20px;
}

/* .footer-column {
    border: solid 1px red;
} */

.footer-column a {
    text-decoration: none;
    /* Remove underline from the link */
}

.footer-column a img {
    margin-right: 4px;
    margin-bottom: 10px;
    width: 42px;
    height: auto;
}

.footer-column a {
    color: var(--white);
}

.footer-column p {
    /* display: flex; */
    align-items: center;
    margin: 5px 0;
}

.footer-column p i {
    margin-right: 10px;
}

.column-title {
    font-size: 1.4em;
    /* margin-top: 10px; */
}

.footer-column p a {
    color: #fff;
    text-decoration: none;
}

/* .footer-column p a:hover {
    text-decoration: underline;
} */

/* Contact section styles */

.social-media {
    padding-left: 20px;
}

#copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding-bottom: 10px;
    text-align: center;
}

.flex-item a {
    color: var(--pink);
    text-decoration: none;
}

.flex-item a:hover {
    text-decoration: underline;
}

.full-sentence,
.policies {
    text-align: center;
}

.full-sentence{
    margin-right: 8px;
}
.policies a{
    margin: 0 8px;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #contact-section {
        text-align: center;
    }

    #contact-section p,
    #contact-section .social-media {
        justify-content: center;
    }

    .flex-item,
    .full-sentence,
    .policies {
        flex: 1 1 100%;
    }
    .full-sentence {
    margin-right: 0px;
}

}

.nav-logo {
    margin-left: 4px;
    margin-bottom: 3px;
}


/* Chatbot icon */
#chatbot-icon {
    position: fixed;
    bottom: 11px;
    right: 11px;
    width: 32px;
    height: 32px;
    background-color: var(--violet);
    color: var(--white);
    border: 2px solid var(--pink);
    border-radius: 50% 50% 50% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

/* Chatbot window */
#chatbot-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 485px;
    border: 4px solid var(--pink);
    background-color: var(--violet);
    border-radius: 17px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

/* Chatbot header */
#chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px;
    background-color: var(--violet);
    color: #fff;
    /* border-bottom: 2px solid var(--pink); */
    border-radius: 15px;
    /* only border radius on bottom */
}

/* Title */
#chatbot-title {
    flex-grow: 1;
    text-align: center;
    /* font-size: 1.25em; */
    font-weight: bold;
    /* margin-left: -25px;  */
}

/* Close button */
#chatbot-close {
    font-size: 2em;
    cursor: pointer;
    margin-right: 10px;
    color: #fff;
}

#chatbot-close:hover {
    color: var(--pink);
}

/* Iframe container */
#chatbot-iframe {
    flex: 1;
    width: 100%;
    border: none;
    /* border-radius: 15px; */
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}