.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1d43fe, #9fa9db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: rotate(6deg) scale(1.05);
}

.service-content .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content .title a {
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.service-content .title a:hover {
    color: #1d43fe;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #1d43fe;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.read-more span {
    transition: 0.3s;
}

.read-more:hover span {
    transform: translateX(4px);
}

.read-more:hover {
    color: #e85a00;
}

/* PARTNERS */
.partner__card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.partner__card:hover {
    transform: translateY(-8px);
}

.partner__logo {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.partner__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner__card .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner__card .note {
    font-size: 13px;
    color: #888;
}

/* LEADER TEAM CAR */
.team-modern {
    position: relative;
    text-align: center;
    padding-top: 60px;
}

/* Floating avatar (key difference) */
.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important;
}

.team-modern:hover .team-avatar {
    transform: translateY(-6px) scale(1.05);
}

/* Card body (separate floating card) */
.team-box {
    background: #fff;
    margin-top: -40px;
    padding: 70px 20px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.team-modern:hover .team-box {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(29, 67, 254, 0.12);
}

/* Name */
.team-box .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-box .name a {
    color: #222;
    text-decoration: none;
}

.team-box .name a:hover {
    color: #1d43fe;
}

/* Role */
.team-box .role {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Social */
.social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f3f6ff;
    color: #1d43fe;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 13px;
}

.social a:hover {
    background: #1d43fe;
    color: #fff;
    transform: translateY(-3px);
}
.injectable {
    filter: brightness(0) invert(1);
}

/*  */
/* =========================
   CERTIFICATE MODERN CLEAN UI
========================= */

.certificate-modern {
    position: relative;
    text-align: center;
    padding-top: 60px;
    transition: 0.3s ease;
}

/* FLOATING AVATAR */
.certificate-avatar {
    width: 105px;
    height: 105px;
    margin: 0 auto;

    border-radius: 50%;
    overflow: hidden;

    background: #fff;
    border: 3px solid #f1f5f9;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    transition: 0.3s ease;
}

/* IMAGE */
.certificate-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ICON BASE */
.certificate-avatar i {
    font-size: 42px;
}

/* REAL PDF COLOR */
.pdf-icon {
    color: #e11d48; /* PDF red (modern Adobe-like red) */
}

/* FILE ICON */
.file-icon {
    color: #64748b;
}

/* HOVER FLOAT */
.certificate-modern:hover .certificate-avatar {
    transform: translateY(-6px) scale(1.06);
}

/* CARD */
.certificate-box {
    background: #ffffff;
    margin-top: -45px;

    padding: 75px 22px 26px;

    border-radius: 20px;

    border: 1px solid #f1f5f9;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: 0.3s ease;
}

/* hover feel */
.certificate-modern:hover .certificate-box {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.1);
}

/* NAME */
.certificate-box .name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

/* FROM */
.certificate-box .role {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
}

/* ACTIONS */
.certificate-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.view-btn {
    padding: 9px 14px;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;

    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);

    transition: 0.25s ease;
}

.view-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.official-btn {
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #f8fafc !important;
    color: #1d4ed8 !important;

    border: 1px solid #e2e8f0;

    transition: 0.25s ease;
}

.official-btn:hover {
    background: #1d4ed8 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.title,.footer__widget-title {
    font-family: "Kantumruy Pro";
}



.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    height: 110px;
}

.brand-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;

    /* IMPORTANT: keep real colors */
    filter: none;
    opacity: 1;

    transition: transform 0.25s ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.brand-item:hover img {
    transform: scale(1.05);
}
