/* Public CSS for the website */
body {
    padding-top: 56px; /* Account for fixed navbar */
}

.carousel-item {
    height: 600px;
    background: #333;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.carousel-caption {
    bottom: 30%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.navbar-brand i {
    margin-right: 8px;
}

footer {
    margin-top: 50px;
}

.btn {
    border-radius: 4px;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Additional styles for a modern look */
.bg-primary-gradient {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.h-100 {
    min-height: 250px;
}