@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@100;300;400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: 'Poppins', 'Battambang', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

header {
  background-color: #fff;
  color: white;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.logo{
  width:180px;
}

a{
 color:#ecad20;   
}

nav {
  display: flex;
  justify-content: center;
  background-color: #019d4a;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  padding:0 10px;
}

nav a.active {
  background:#ecad20;
  border-radius:10px;
}

nav a:hover {
  background:#ecad20;
  border-radius:10px;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: #333;
}

.slides img {
  width: 100%;
  height: auto;
  display: none;
}

.slides img.active {
  display: block;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.slider-buttons button:hover {
  background-color: black;
}

.about, .services, .blogs, .contact {
  padding: 20px;
  text-align: left;
  min-height: 550px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
