:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.hero-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(10, 88, 202, 0.85) 100%), url('../img/cover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-section {
    background-color: #f8f9fa;
}

.contact-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.footer {
    background-color: #212529;
    color: white;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.feature-box {
    padding: 30px;
    text-align: center;
}

.stats-section {
    background-color: #212529;
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}
