/* Footer */
footer {
    background-color: #ffffff;
    padding: 60px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 100px auto 0;

    box-shadow: 0 -20px 40px 0 rgba(155, 141, 208, 0.10);
}

footer ul {
    padding: 0;
}

footer .logo-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

footer .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

footer .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

footer .logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

footer .logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
    line-height: 1.2;
}

footer .logo-text .line1,
footer .logo-text .line2 {
    display: block;
}

footer .description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 24px;
}

footer .footer-content {
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

footer .social-links {
    display: flex;
    gap: 12px;
}

footer .social-link img {
    width: 20px;
}

footer .footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
}

footer .footer-links {
    list-style: none;
}

footer .footer-links li {
    margin-bottom: 12px;
}

footer .footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

footer .footer-links a:hover {
    color: #7468F1;
}

footer .contact-info-sec {
    list-style: none;
}

footer .contact-info-sec li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
}

footer .contact-info-sec li svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: #7468F1;
    color: #7468F1;
}

footer .contact-info-sec a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #7468F1;
    font-weight: 600;
    font-size: 15px;
}

footer .contact-info-sec a:hover {
    color: #7468F1;
}

footer .footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright {
    color: #222B45;
    font-size: 16px;
    font-weight: 600;
}

footer .footer-social {
    display: flex;
    align-items: center;
}

footer .footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer .footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: #6b7280;
    transition: fill 0.2s ease;
}

footer .footer-social-link:hover {
    border-color: #667eea;
    background-color: #667eea;
}

footer .footer-social-link:hover svg {
    fill: white;
}

footer .get_in_touch_sec span {
    color: #7468F1;
    font-weight: 600;
}

footer .description_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4F4F55;
}


@media screen and (max-width:1200px) {
    footer .footer-links a {
        font-size: 14px;
    }

    .footer-section .footer_section1 {
        padding: 0;
    }
}

@media screen and (max-width:1040px) {
    .logo-section.col-lg-4 {
        width: 50.333333%;
    }

    footer .footer-section.col-lg-2 {
        width: 22.666667%;
    }
}

@media screen and (max-width:992px) {
    .footer-content {
        padding-top: 10px;
    padding-bottom: 10px;
    }
}

@media screen and (max-width:768px) {
    footer {
        padding: 0;
        padding-bottom: 20px;
    }

    footer .logo-section {
        margin-bottom: 30px;
    }

    .logo-section.col-lg-4 {
        width: 100%;
    }

    footer .footer-section.col-lg-2 {
        width: 48.666667%;
    }
}

@media screen and (max-width:540px) {

    footer .footer-section.col-lg-2,
    .logo-section.col-lg-4 {
        width: 100%;
    }
}