/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #404040;
    background-color: #f5f5f5;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: #95d055;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Parallax Sections */
.parallax {
    background: url('parallax-bg.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Interactive Sections */
.interactive-box {
    text-align: center;
    padding: 20px;
    background: #95d055;
    color: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.interactive-box:hover {
    transform: scale(1.05);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 20px;
}

.service-item {
    background: #95d055;
    color: white;
    padding: 15px;
    border-radius: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* Contact */
#contact {
    background: #404040;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Footer */
footer {
    background: #202020;
    color: white;
    text-align: center;
    padding: 10px;
}