﻿.hero {
    min-height: 50vh;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/Images/backgroundLog.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1.5rem 1rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-hero {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

#about img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.service-card {
    border: none;
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

    .service-card:hover {
        background-color: #e9ecef;
        transform: translateY(-5px);
    }

.service-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.service-card h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #6c757d;
}
.bg-section {
    background: linear-gradient(45deg, #2a323c, #00c6ff);
}
.bg-text {
    color: #6097d1!important;
}
.btn-log {
    background: linear-gradient(45deg, #2a323c, #00c6ff);
}
.text-btn {
    color: var(--bs-navbar-brand-color)
    !important;
}