:root {
    --primary-color: #0d6efd;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
}

.tile {
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.tile-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

footer {
    background-color: #212529;
    color: #ddd;
}

.service-card {
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e7f1ff;
    border-radius: 16px;
    font-size: 2.2rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
}

.contact-item {
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    font-size: 1.8rem;
}
