@charset "utf-8";
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #C4F5E8;
}

/* Header */
header {
    background: #0B6E85;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation */
nav {
    background: #0B6E85;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
	font-size: 35px;
}

/* Hero */
.hero {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 6px #000;
    font-size: 2.2rem;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    background: #daf1ff;
    padding: 40px 20px;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Contact Form */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #0B6E85;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0B6E85;
    color: white;
    margin-top: 40px;
}
/* Responsive Slider */
.slider {
  position: relative;
  width: 100%;
  height: 450px; 
  overflow: hidden;
  margin: 0 auto 20px auto;
  list-style: none;
  padding: 0;
}

.slider li {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%; 
  top: 0;
  left: 0;
  transition: opacity .95s ease-in-out;
}

.slider li.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  display: block;
}