

/* SECTION */
.csharp-services-pro {
    padding: 20px 0;
    background: #ffff;
}

.csharp-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.18);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    margin-bottom: 14px;
}

.value-card h4 {
    margin-bottom: 8px;
    font-size: 17px;
    color: #0f172a;
}

.value-card p {
    color: #475569;
    font-size: 14px;
}

.csharp-highlights {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-card {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 14px;
    padding: 18px;
    min-width: 220px;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

.highlight-card h4 {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 8px;
}

.highlight-card p {
    color: #64748b;
    font-size: 13px;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

/* LEFT TABS */
.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: radial-gradient(circle at 12% 30%, rgba(37, 99, 235, 0.14), transparent 60%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: 0.35s;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* LEFT ACTIVE BORDER */
.service-tab::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    height: 0;
    width: 4px;
    background: linear-gradient(#2563eb, #6366f1);
    border-radius: 10px;
    transition: 0.3s;
}

.service-tab.active::before {
    height: 70%;
}

/* ICON */
.service-tab i {
    font-size: 18px;
    color: #6366f1;
    transition: 0.3s;
}

/* ACTIVE TAB */
.service-tab.active {
    background: radial-gradient(circle at 12% 30%, rgba(37, 99, 235, 0.14), transparent 60%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-tab.active i {
    color: #2563eb;
}

/* HOVER */
.service-tab:hover {
    transform: translateX(6px);
    background: #fff;
}

/* RIGHT CONTENT WRAPPER */
.service-content-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

/* TOP BORDER ACCENT */
.service-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #2563eb, #6366f1);
}

/* CONTENT */
.service-content {
    display: none;
    animation: fadeUp 0.5s ease;
}

.service-content.active {
    display: block;
}

/* TITLE */
.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* DESCRIPTION */
.service-content p {
    color: #64748b;
    margin-bottom: 15px;
}

/* LIST */
.service-content ul {
    margin-top: 15px;
    padding-left: 0;
}

.service-content ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
    color: #334155;
    font-size: 14px;
}

/* CUSTOM CHECK ICON */
.service-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TAG BOX */
.tag-box {
    display: inline-block;
    background: #eef2ff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #4338ca;
    margin: 10px 0 15px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px) {
    .service-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }

    .service-tab {
        min-width: 200px;
    }

    .service-content-wrapper {
        margin-top: 20px;
        padding: 20px;
    }
}
