
    
/* Section background */
.meta-feature-sections {
    padding: 80px 0;
    background: #f4f7fb; /* light grey like your screenshot */
    font-family: 'Poppins', sans-serif;
}

/* Container */
.mf-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card block */
.mf-block {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Alternate layout */
.mf-block.reverse {
    flex-direction: row-reverse;
}

/* Text side */
.mf-text {
    flex: 1;
    padding: 40px 40px 40px 50px;
}

.mf-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #004c8c;           /* deep blue heading */
    margin-bottom: 18px;
}

.mf-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4f5b6b;
}

/* Image side */
.mf-image {
    flex: 1;
    min-height: 260px;
}

.mf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* keeps aspect while filling area */
    display: block;
}
.meta-service-buttons {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.msb-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.msb-item {
    background: #ffffff;
    padding: 15px 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0c3c62;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0px 0px 18px rgba(0, 180, 255, 0.25);
    border: 2px solid transparent;
}

.msb-item .msb-icon {
    font-size: 22px;
    color: #009fdf;
}

.msb-item.active {
    background: #009fdf;
    color: #ffffff;
    box-shadow: 0px 0px 18px rgba(0, 162, 232, 0.55);
}

.msb-item.active .msb-icon {
    color: #ffffff;
}

.msb-item:hover {
    box-shadow: 0px 0px 18px rgba(0, 162, 232, 0.45);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 768px) {
    .msb-item {
        padding: 12px 22px;
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .mf-block,
    .mf-block.reverse {
        flex-direction: column;
    }

    .mf-text {
        padding: 30px 20px 25px;
    }

    .mf-image {
        min-height: 220px;
    }
}

.client-strip {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.client-title {
    font-size: 32px;
    font-weight: 700;
    color: #17487b;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.client-subtitle {
    font-size: 16px;
    color: #7c8ca1;
    margin-bottom: 30px;
    letter-spacing: 1.3px;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-slide {
    display: inline-block;
    animation: scroll 22s linear infinite;
}

.logos-slide img {
    height: 80px;
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.3s ease;
}

.logos-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Smooth continuous animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .logos-slide img {
        height: 55px;
        margin: 0 25px;
    }
}


/* Keyframes for continuous scroll */
@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Make sure both tracks sit in one row */
.clients-slider .clients-track {
    white-space: nowrap;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .clients-title {
        font-size: 26px;
    }
    .client-logo {
        padding: 0 25px;
    }
    .client-logo img {
        max-height: 55px;
    }
}

    