﻿/* WHO WE ARE SECTION */
.who-we-are-modern {
    width: 100%;
    padding: 90px 0;
    background: linear-gradient(135deg, #005eff, #00c6ff);
    position: relative;
    overflow: hidden;
}

    .who-we-are-modern::before,
    .who-we-are-modern::after {
        content: "";
        position: absolute;
        background: rgba(255,255,255,0.18);
        filter: blur(60px);
        border-radius: 50%;
    }

    .who-we-are-modern::before {
        width: 220px;
        height: 220px;
        top: -40px;
        left: -40px;
    }

    .who-we-are-modern::after {
        width: 300px;
        height: 300px;
        bottom: -70px;
        right: -70px;
    }

.wwa-modern-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.wwa-modern-image img {
    width: 100%;
    max-width: 600px;
    height: 420px;
    object-fit: fill;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    /* animation: floatImg 4s 
ease-in-out infinite !important; */
}

@keyframes floatImg {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.wwa-modern-content {
    flex: 1;
    color: white;
    animation: fadeUp 1.2s ease-out forwards;
    flex: 1 1 500px;
}

.wwa-modern-image,
.wwa-modern-content {
    flex: 1 1 500px;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wwa-badge {
    background: rgba(255,255,255,0.25);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    backdrop-filter: blur(6px);
}

.wwa-modern-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.wwa-modern-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-bottom: 25px;
}

.wwa-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 22px;
    margin-bottom: 25px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}

    .point i {
        color: #5df591;
        font-size: 20px;
    }

.wwa-btn {
    display: inline-block;
    background: #ffffff;
    color: #0047b1;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .wwa-btn:hover {
        background: #e4e8ff;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 940px) {
    .wwa-modern-image img {
        width: 90%;
        margin: auto;
        display: block;
    }

    .wwa-modern-content {
        text-align: center;
    }

    .wwa-points {
        grid-template-columns: 1fr;
    }
}


/* footer */
.mms-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    background: #fafafa;
    border-top: 1px solid #eee;
    z-index: 1000;
}

.atl-footer-wrapper * {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.atl-footer-wrapper {
    width: 100%;
    background: #f4f6f8;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.atl-footer-card {
    background: #ffffff;
    width: 90%;
    max-width: 1350px;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.atl-footer-columns {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.atl-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0d2342;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.atl-col ul {
    list-style: none;
    padding: 0;
}

    .atl-col ul li {
        margin: 3px 0;
        padding: 2px 0;
    }

        .atl-col ul li a {
            color: #334866;
            text-decoration: none;
            font-size: 14px;
            transition: 0.2s ease;
        }

            .atl-col ul li a:hover {
                color: #0052cc;
                text-decoration: underline;
            }

.atl-footer-logo {
    width: 135px;
    margin-bottom: 15px;
}

.atl-more {
    margin-top: 14px;
    display: inline-block;
    font-weight: 600;
    color: #0052cc;
    font-size: 14px;
    transition: 0.2s ease;
}

    .atl-more:hover {
        text-decoration: underline;
        transform: translateX(2px);
    }

.atl-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e3e7ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.atl-bottom-left {
    font-size: 14px;
    color: #44556f;
}

.atl-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .atl-bottom-right a {
        font-size: 14px;
        color: #294470;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .atl-bottom-right a:hover {
            color: #0052cc;
            text-decoration: underline;
        }

.atl-lang {
    font-size: 14px;
    color: #294470;
}

/* Responsive */
@media (max-width: 1000px) {
    .atl-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .atl-footer-columns {
        grid-template-columns: 1fr;
    }

    .atl-footer-card {
        padding: 40px 25px;
    }

    .atl-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}