/* Brand Accent Colors matching the Hartwalker Green */
:root {
    --brand-green: #82c341;
    --brand-green-hover: #6ea832;
    --dark-bg: #1c1f21;
}

.text-brand {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

/* Custom Green Button */
.btn-brand {
    background-color: var(--brand-green);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    transition: all 0.2s ease-in-out;
}

.btn-brand:hover {
    background-color: var(--brand-green-hover);
    color: #ffffff;
}

/* Hero Section Styling using MainImg1.jpg.jpg */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/MainImg1.jpg.jpg') center/cover no-repeat;
    min-height: 80vh;
}

.hero-card {
    background-color: rgba(28, 31, 33, 0.75);
    backdrop-filter: blur(4px);
}

/* Custom Icon Heights */
.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card {
    transition: transform 0.2s ease, shadow 0.2s ease;
}

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

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--brand-green);
    margin-top: 10px;
}

/* Featured Projects Gallery */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.project-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.04);
}