:root {
    --primary: #2a7a5c;
    --secondary: #1f5d46;
}

/* Navigation */
.navbar {
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, #f0faf7 0%, #d4efe8 100%);
}

.text-p {
    font-size: 3.4rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
    text-transform: none;
    color: #2a2a2a;
}

.icn {
    color: #da261a;
}

/* Services */
.shadow-hover {
    transition: all 0.3s ease;
}
.shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 122, 92, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-card:hover .project-overlay {
    opacity: 1;
}

/* Client Logos */
.client-logo img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.client-logo:hover img {
    filter: grayscale(0);
}

/* Testimonial */
.testimonial {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/bg1.jpg');
    background-size: cover;
    background-position: center;
}

/* Buttons */
.btn-p {
    background-color: #da261a;
    border-color: #da261a;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    color: #fff;
}
.btn-p:hover {
    background-color: transparent;
    border-color: #da261a;
    border-radius: 6px;
    border: 1px solid;
    color: #da261a;
    cursor: pointer;
}
.border-1 {
    border-color: #da261a;
}
.ft-link {
    text-decoration: none;
    color: #f0faf7;
}
.client-logo {
    width: 100px;
}
.lead2 {
    font-size: 1.25rem;
    color: black;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .col-lg-4 {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    .hero img {
        max-width: 300px;
    }
    .client-logo {
        width: 70px;
    }
}