body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Gradient Heading Bar */
.useful-links-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
    color: white;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Carousel Items */
.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Quick Links Box */
.quick_links_box {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    width: 210px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick_links_box img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}

/* Hover Effect */
.quick_links_box:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .quick_links_box {
        height: 90px;
        width: 90px;
    }

    .quick_links_box img {
        max-width: 120px;
        max-height: 120px;
    }
}
