.sidebar-box {
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .08);
    ;
    margin-bottom: 30px;
    overflow: hidden;
}

.sidebar-title {
    background: #04205c;
    color: #fff;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
}

.service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: .4s;
}

.service-link:last-child {
    border: none;
}

.service-link:hover {
    background: #0eb4fa;
    color: #fff;
    padding-left: 30px;
}


.contact-card {
    background: linear-gradient(135deg, #1d1d1d, #2e2e2e);
    color: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    position: sticky;
    top: 30px;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -70px;
    right: -70px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0eb4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 34px;
    color: #fff;
}

.contact-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: #ddd;
    line-height: 28px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .08);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    width: 50px;
    height: 50px;
    background: #0eb4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.contact-info small {
    color: #ccc;
    display: block;
}

.contact-info h5 {
    margin: 3px 0 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.contact-btn {
    display: block;
    width: 100%;
    background: #0eb4fa;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: .3s;
}

.contact-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}

.service-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 469px) {
    .service-img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }
}


.service-content {
    background: #fcfcfc;
    padding: 35px;
    border-left: 5px solid #0d6efd;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.service-content h2,
.service-content h3,
.service-content h4 {
    color: #1b1b1b;
    font-size: 30px;
    font-weight: 700;
    margin: 35px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ececec;
}

.service-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.service-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}

.service-content img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}

.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.service-content table th,
.service-content table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.service-content table th {
    background: #0d6efd;
    color: #fff;
}

@media(max-width:768px) {
    .service-content {
        padding: 20px;
    }

    .service-content h2,
    .service-content h3,
    .service-content h4 {
        font-size: 24px;
    }
}