﻿footer {
    background-color: var(--greyish-color);
}

.footer_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-bottom: 2px solid #424242;
    border-radius: 0px 0px 5px 5px;
}

.footer_logos {
    margin-top: 60px;
    width: 224px;
    height: 394px;
    text-align: left;
}

.gradient-text {
    height: 24px;
    width: 154px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 37.5px;
    text-align: left;
    background: linear-gradient( 90deg, var(--caveat-color) 0%, var(--btn-bgcolor) 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: var(--font-family2);
}

.footer_content p {
    margin-top: 10px;
    height: 84px;
    width: 215px;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 20.8px;
    color: #242424;
    text-align: left;
}

.social_logo {
    margin-top: 50px;
    height: 93px;
    width: 223px;
}

    .social_logo img {
        height: 36px;
        width: 36px;
    }

        .social_logo img:hover {
            cursor: pointer;
            scale: 1.2;
        }

.social_logos1 img {
    margin-right: 5px;
}

.social_logos_two img {
    margin-right: 5px;
}

.footer_content button {
    margin: 30px 0px 0px 50px;
    width: Hug (105px) px;
    height: Hug (44px) px;
    padding: 10px 25px 10px 25px;
    gap: 0px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 24px;
    background-color: var(--btn-bgcolor);
    border: 1px solid var(--btn-bgcolor);
    color: var(--basic_color);
}

.accordion2-container {
    margin-top: 30px;
    width: 243px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: visible;
}

.accordion2-header {
    font-size: 0.875rem;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 20.8px;
    color: var(--btn-bgcolor);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .accordion2-header .icon {
        width: 12px;
        height: 12px;
        background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230d3c85" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E') no-repeat center center;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    .accordion2-header.open .icon {
        transform: rotate(180deg);
    }

    .accordion2-header.open {
        margin-bottom: 0px;
    }

.accordion2-content {
    display: none;
    font-size: 0.95rem;
    color: #333;
}

    .accordion2-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .accordion2-content ul li:last-child {
            border-bottom: none;
        }

        .accordion2-content ul li a {
            text-decoration: none;
            color: #242424;
            transition: color 0.3s;
        }

            .accordion2-content ul li a:hover {
                color: #0056b3;
            }

.footer_dropdown {
    margin-top: 60px;
    margin-bottom: 80px;
}

    .footer_dropdown li {
        margin-bottom: 5px;
        margin-top: 5px;
        text-align: left;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 20.8px;
    }

.copyright {
    height: 88px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: var(--greyish-color);
}

    .copyright p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 20.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #5a5656;
    }

.dev-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.dev-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .dev-modal-content h2 {
        margin-bottom: 10px;
        color: #003366;
    }

    .dev-modal-content p {
        margin-bottom: 20px;
        font-size: 16px;
    }

.dev-close-button {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .dev-close-button:hover {
        background-color: #cc0000;
    }
.accordion2-content ul li:hover{
    cursor:pointer;
}

@media (min-width: 576px) {
    .footer_content {
        flex-direction: row;
        justify-content: center;
    }

    .footer_logos {
        height: 419px;
    }

    .footer_content p {
        margin-top: 0px;
        height: 104px;
        font-size: 1rem;
    }

    .footer_content button {
        margin-top: 10px;
    }

    .footer_dropdown {
        margin-top: 45px;
        margin-left: 40px;
    }

    .gradient-text {
        margin-top: 0;
        height: 24px;
        margin-bottom: 10px;
    }
}

@media (min-width: 922px) {
    .footer_content {
        margin-left: 20px;
    }

    .footer_logos {
        height: 398px;
        width: 223px;
    }

    .footer_content button {
        margin-top: 25px;
    }

    .gradient-text {
        height: 30px;
    }

    .accordion2-container {
        flex-direction: row;
        justify-content: start;
        width: 690px;
    }

    .footer_dropdown_section1 {
        display: flex;
    }

    .accordion2-header .icon {
        display: none;
    }

    .accordion2-content {
        display: block;
        margin-top: -30px;
    }

    #explore-sec {
        height: 191px;
        width: 95px;
    }

    #service-sec {
        height: 160px;
        width: 231px;
    }

    #legal-sec {
        height: 200px;
        width: 361px;
    }

    #contact-sec {
        width: 361px;
        height: 160px;
    }

    .footer_dropdown {
        margin-top: 0px;
        margin-left: 40px;
        margin-bottom: 0px;
    }

    .footer_content button {
        margin-top: 35px;
    }

    .gradient-text {
        margin-top: 0;
        height: 24px;
        margin-bottom: 10px;
    }
}

@media (min-width: 1200px) {
    .footer_content {
        margin-left: 0px;
        height: 454.97px;
    }

    .footer_dropdown_section1 {
        display: flex;
    }

    .accordion2-header span {
        font-size: 1rem;
        font-weight: 600;
        line-height: 20.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .accordion2-header .icon {
        display: none;
    }

    .accordion2-content {
        margin-top: -20px;
    }

    #explore-sec {
        height: 191px;
        width: 109px;
    }

    #service-sec {
        height: 160px;
        width: 259px;
    }

    #legal-sec {
        height: 200px;
        width: 421px;
    }

    #contact-sec {
        width: 421px;
        height: 160px;
    }

    .accordion2-section {
        margin-left: 30px;
    }

    .footer_dropdown {
        width: 850px;
    }

        .footer_dropdown li {
            font-size: 1rem;
        }

    .footer_content button {
        margin-top: 32px;
    }
}

@media (min-width: 2000px) {
    footer {
        display: flex;
        justify-content: center;
        align-items: end;
        height: 454.97px;
    }

    .footer_content {
        height: 454.97px;
        width: 1400px;
        height: 398px;
    }

    .footer_logos {
        margin-top: 0px;
    }

    .footer_content button {
        margin-top: 16px;
        font-size: 1rem;
    }

    .footer_dropdown_section1 {
        display: flex;
        height: 398px;
    }

    .accordion2-section {
        margin-bottom: 20px;
    }

    #explore-sec {
        height: 191px;
        width: 109px;
    }

    #service-sec {
        height: 160px;
        width: 259px;
    }

    #legal-sec {
        height: 200px;
        width: 421px;
    }

    #contact-sec {
        width: 421px;
        height: 160px;
    }

    .accordion2-section {
        margin-left: 50px;
    }

    .footer_dropdown {
        margin-left: 40px;
        margin-bottom: 30px;
        width: 850px;
    }

    .copyright {
        height: 128px;
    }
}
