/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: green;
    color: white;
    padding: 15px;
    font-size: 30px;
    border-radius: 50px;
  
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}
.btn-get-started {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: darkgreen;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

/* Hover effect */
.btn-get-started:hover {
    background: darkgreen;
    transform: scale(1.05);
}

/* SLIDER */
.slider {
    overflow: hidden;
    height: 300px;
}

.slides {
    display: flex;
    width: 100%;
    height: 300px;
    animation: slide 9s infinite;
    object-fit: cover;
}

.slides img {
    width: 100%;
}

@keyframes slide {
    0% { margin-left: 0; }
    33% { margin-left: -100%; }
    66% { margin-left: -200%; }
}

/* CONTENT */
.content {
    text-align: center;
    padding: 40px;
}

/* SERVICES */
.services {
    padding: 40px;
    text-align: center;
    background: #f4f4f4;
}

.service-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: green;
    color: white;
    text-align: center;
    padding: 15px;
}