/* .cert-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    height: 100%;
}

.cert-card:hover {
    transform: translateY(-6px);
}

.cert-card.active {
    border-left: 5px solid #0C2318;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
} */

.cert-badge {
    font-size: 12px;
    font-weight: 600;
    color: #0C2318;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
 /* width: 100%;
    height: 100%; */
    transition: opacity 0.4s ease-in-out;
}


/* .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 700px;  
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    transition: opacity 0.4s ease-in-out;
    border-radius: 12px;
} */





  
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* ============================= */
/* CARD DESIGN */
/* ============================= */

.marquee-card {
    flex: 0 0 25.333%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
}

/* Tablet → 2 Cards */
@media (max-width: 991px) {
    .marquee-card {
        flex: 0 0 50%;
    }
}

/* Mobile → 1 Card */
@media (max-width: 767px) {
    .marquee-card {
        flex: 0 0 100%;
    }
}

/* ============================= */
/* CONTENT STYLING */
/* ============================= */

.marquee-card h5 {
    margin: 20px 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1dbf73;
}

.marquee-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.marquee-card .icon {
    font-size: 38px;
    color: #1dbf73;
    transition: 0.4s ease;
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.marquee-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 60px rgba(29,191,115,0.35);
}

.marquee-card:hover .icon {
    transform: rotate(10deg) scale(1.2);
    color: #0b3d2e;
}

.marquee-card:hover h5 {
    color: #0b3d2e;
}

/* Bottom Accent Line */
.marquee-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1dbf73, #0b3d2e);
    transition: 0.3s ease;
}

.marquee-card:hover::after {
    height: 6px;
}



/* client marquee */


/* 

    .client-marquee{
    overflow: hidden;
    width:100%;
    background:#fff;
    padding:20px 0;
}

.client-track{
    display:flex;
    gap:40px;
    width:max-content;
    animation:marquee 25s linear infinite;
}

.client-track img{
    width:160px;
    height:160px;
    object-fit:contain;
    flex-shrink:0;
    filter:grayscale(100%);
    transition:0.3s;
}

.client-track img:hover{
    filter:grayscale(0);
    transform:scale(1.1);
    cursor: pointer;
}

@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

} */
