/* ===== Interview Categories – Premium Redesign ===== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    background-color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
}

/* Section Title */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.025em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4361ee;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Category Cards */
.category-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.category-card {
    background: white;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e0e7ff;
}

/* Icon Box */
.icon-box {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    background: #f1f5f9;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #4361ee;
    transition: all 0.4s ease;
}

.category-card:hover .icon-box {
    background: #4361ee;
    color: white;
    transform: rotate(5deg) scale(1.1);
}

/* Category Title */
.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: #4361ee;
}

/* Pagination */
.pagination-box {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.pagination-box a:hover {
    background: #f8fafc;
    color: #4361ee;
    border-color: #4361ee;
    transform: translateY(-2px);
}

.pagination-box a.active-page {
    background: #4361ee;
    color: white;
    border-color: #4361ee;
    box-shadow: 0 4px 14px 0 rgba(67, 97, 238, 0.39);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .category-card { padding: 30px 15px; }
    .icon-box { width: 70px; height: 70px; font-size: 30px; }
    .category-title { font-size: 1.2rem; }
}