﻿
.reference-link {
    display: block;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

    .reference-link h5 {
        margin-bottom: 10px;
        color: #333;
    }

    .reference-link p {
        font-size: 0.95rem;
        color: #666;
    }

    .reference-link:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }




.service-details-wrapper {
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.05);
}

.service-details-header {
    text-align: center;
    margin-bottom: 35px;
}

    .service-details-header h2 {
        font-weight: 800;
        color: #222;
    }

    .service-details-header .subtitle {
        font-size: 1.1rem;
        color: #777;
        max-width: 700px;
        margin: auto;
    }

.service-details-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: #f8f9fc;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all .3s ease;
}

    .feature-card:hover {
        background: #ffffff;
        box-shadow: 0px 10px 25px rgba(0,0,0,0.07);
    }

    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 700;
        color: #222;
    }

    .feature-card p {
        color: #666;
        line-height: 1.6;
    }

.service-cta-box {
    margin-top: 50px;
    padding: 35px;
    text-align: center;
    background: linear-gradient(135deg, #005bea, #00c6fb);
    border-radius: 16px;
    color: #fff;
}

    .service-cta-box .cta-btn {
        margin-top: 20px;
        display: inline-block;
        padding: 12px 28px;
        background: #fff;
        color: #005bea;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: .3s;
    }

        .service-cta-box .cta-btn:hover {
            background: #f0f0f0;
        }



h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}


