body {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.bg-primary-custom {
    background-color: #198754;
}
.text-primary-custom {
    color: #198754;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./banner.webp') no-repeat center center;
    background-size: cover;
    padding: 140px 0;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./banner-mobile.webp');
        min-height: 400px;
    }
}

.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 10px 20px rgba(0,0,0,0.1);
}
.icon-box {
    width: 60px;
    height: 60px;
    background-color: #e8f5e9;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
}
html {
    scroll-behavior: smooth;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}
.carousel-item {
    padding: 10px;
}

.logo-img { height: 50px; width: auto; }