﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Headings */
h4, h2 {
    font-weight: bold;
}

.link-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

    .link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

.link-card-body {
    padding: 15px;
    text-align: center;
}

.link-card i {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.link-card h6 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.link-card p {
    font-size: 14px;
    color: #6c757d;
}

/* Quick Links */
.quick-link {
    text-decoration: none;
}

.quick-card {
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

    .quick-card:hover {
        transform: scale(1.05);
    }

.icon-size {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Featured Tools */
.custom-card {
    height: 100%;
    text-align: center;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.blue-gradient {
    background: linear-gradient(135deg, #66b3ff, #a066ff);
}

.green-gradient {
    background: linear-gradient(135deg, #75d685, #60c27d);
}

.yellow-gradient {
    background: linear-gradient(135deg, #ffcc80, #ffa726);
}

.card-footer {
    background: transparent;
    color: white;
}
