/* === Global Reset === */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    color: #2e7d32;
}

p {
    font-family: 'Merriweather', serif;
    color: #444;
}

section {
    padding: 4rem 1rem;
}

/* === Floating Contact Button === */
.minimal-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.contact-btn {
    background: #2e7d32;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

/* === Hero Section === */
.hero {
    background-image: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("images/landscape.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 7rem 1rem;
}

.hero-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(3px);
    max-width: 700px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #f1f1f1;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    background: #ffb300;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.btn:hover {
    background: #ffa000;
    transform: translateY(-2px);
}

/* === Services === */
.section-title {
    text-align: center;
    margin: 2rem 0;
    font-size: 2rem;
    position: relative;


}

.service-area{
background:#f6f8f5;
padding:60px 20px;
margin-top:60px;
}

.service-area-container{
max-width:900px;
margin:auto;
text-align:center;
}

.service-area h2{
font-size:32px;
margin-bottom:20px;
font-family:'Poppins',sans-serif;
}

.service-area-text{
font-size:18px;
line-height:1.7;
color:#555;
}



.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #2e7d32;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.service-card {
    flex: 0 0 260px;
    background: #fff;
    padding: 1.75rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.service-card p {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Services */
@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 100%;
    }
}

/* === Before & After Sliders === */
.before-after {
    background: #f5f5f5;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: auto;
}

.ba-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    height: 450px;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-resize {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: none;
}

.ba-slider {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
}

/* Slider Track */
.ba-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.ba-slider::-moz-range-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

/* Slider Thumb */
.ba-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: #2e7d32;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
    margin-top: -9px;
}

.ba-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #2e7d32;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 992px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .ba-wrapper {
        height: 300px;
    }
}

/* === Contact Section === */
.quick-contact {
    background: #f9f9f9;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.quick-contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2e7d32;
}

.contact-link {
    display: block;
    margin: 1rem 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

.contact-link:hover {
    color: #1b5e20;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #2e7d32;
    color: white;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}