/* FOOTER CSS - WITHOUT CTA SECTION */

.cta-footer-wrapper {
    background-color: #0b131f !important;
    background-image: url('../images/Ellipse 705.png'), url('../images/Ellipse 706-1.png');
    background-position: 1% 10%, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: 50% auto, 100% 80%;
    position: relative;
    min-height: auto;
    height: auto;
    overflow: hidden;
    padding: 60px 0 40px;
}

/* Footer */
.footer {
    padding: 20px 0 40px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    top: 0;
}

.footer-section:first-child {
    grid-column: span 1;
}

/* logo2 styling */
.logo2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    left: -130px;
}

.logo2-image {
    height: 100px;
    width: 500px;
    object-fit: contain;
}

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-section p {
    color: rgb(207, 204, 204);
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-section a {
    color: rgb(207, 204, 204);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4aa;
}

.contact-info2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.contact-info2 i {
    color: white;
    width: 20px;
}

.contact-info2 span {
    color: rgb(207, 204, 204);
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-footer-wrapper {
        background-size: 70% auto, 70% auto;
        padding: 40px 0 20px;
    }

    .footer {
        padding: 20px 0;
        height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        top: 0;
    }

    .footer-section:first-child {
        grid-column: span 1;
    }

    .logo2 {
        left: 0;
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo2-image {
        height: 60px;
        width: auto;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .contact-info2 {
        justify-content: center;
        gap: 8px;
        margin-bottom: 6px;
    }

    .contact-info2 span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-footer-wrapper {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 15px;
    }

    .logo2-image {
        height: 50px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section p {
        font-size: 0.8rem;
    }

    .contact-info2 span {
        font-size: 0.8rem;
    }
}