       /* Services Section */
       .services-section {
        background-color: #f8f9fa;
    }

    .service-item {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .service-icon i {
        font-size: 40px;
        color: #17a2b8;
        transition: color 0.3s ease;
    }

    .service-item:hover .service-icon i {
        color: #007bff;
    }

    .service-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        margin-top: 10px;
        transition: color 0.3s ease;
    }

    .service-item:hover .service-title {
        color: #007bff;
    }

    .service-link {
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .service-item {
            padding: 15px;
        }

        .service-title {
            font-size: 16px;
        }
    }

  /* Certificate Styling */
.certificate-card img {
max-width: 90%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}

.certificate-card img:hover {
transform: scale(1.05);
}

/* Carousel Buttons */
.custom-btn .carousel-control-prev-icon,
.custom-btn .carousel-control-next-icon {
background-color: black;
border-radius: 50%;
width: 40px;
height: 40px;
background-size: 50% 50%;
}

.carousel-control-prev,
.carousel-control-next {
top: 50%;
transform: translateY(-50%);
}

/* Button Hover */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
background-color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.d-md-block {
    display: none !important;
}
}