/* Services Page Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.services {
    background: #f1f3f6;
    padding: 3rem 0;
    text-align: center;
}
.service-tabs {
    margin-bottom: 2rem;
}
.tab-btn {
    background: #fff;
    color: #1a237e;
    border: 1px solid #1a237e;
    padding: 0.6rem 1.2rem;
    margin: 0 0.5rem;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
    background: #1a237e;
    color: #fff;
}
.service-grids {
    max-width: 900px;
    margin: auto;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-grid.animated {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.service-card {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(40,53,147,0.08);
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a237e;
    transition: box-shadow 0.2s;
}
.service-card:hover {
    box-shadow: 0 6px 24px rgba(40,53,147,0.15);
}
.hidden {
    display: none;
}
