/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: #f5f7f6;
    color: #222;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: url("pdf/maxresdefault.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 40px;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    margin: 10px 0;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 25px;
}

/* NAV */
nav {
    background: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    margin: 5px 10px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
}

nav a:hover {
    color: #1b5e20;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-box i {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

/* SERVICES */
.services {
    padding: 40px;
    text-align: center;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

/* CONTENT */
.content {
    padding: 40px;
}

.info-box {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
    background: #ff6347;
    color: white;
    text-align: center;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .card-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

/* hover effect */
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: gold;
}

/* selected effect */
.star-rating input:checked ~ label {
    color: gold;
}

.star-rating label {
    font-size: 40px;
    color: #ddd;
    transition: 0.3s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: gold;
}