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

/* Header Styles */
header {
    background: #f8f8f8;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e7e7e7;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #004d40;
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #004d40;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header nav {
        margin-top: 15px;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    background: url('https://plus.unsplash.com/premium_photo-1661423503763-7f4ae0e45462?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8Y3VzdG9tZXIlMjBzZXJ2aWNlJTIwaGVhZHNldCUyMGRhcmt8ZW58MHx8MHx8fDA%3D') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero h1 {
    font-size: 48px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #004d40;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background: #00695c;
}

/* Sections Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #004d40;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 15px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    border-top-color: #004d40;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .service-card {
        width: 80%;
        margin: 15px auto;
    }
}

.service-card .icon {
    font-size: 48px;
    color: #004d40;
    margin-bottom: 20px;
}

/* About Section */
#about {
    background: #fff;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-content, .about-image {
    flex: 1;
    padding: 20px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    text-align: center;
}

#contact p {
    font-size: 18px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 15px;
    width: 40%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    border-top-color: #004d40;
}

.contact-card .icon {
    font-size: 48px;
    color: #004d40;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #004d40;
}
