:root {
    --primary-color: #ff6600; /* Construction Orange */
    --secondary-color: #212529; /* Dark Gray */
    --light-bg: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background-color: #333; /* Fallback */
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

/* Services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
}
.service-img {
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Footer */
footer a:hover {
    color: var(--primary-color) !important;
}
