* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f5fff5;
  color: #333;
}

header {
  background: #007a3d;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: 100px;
  display: block;
}
.logo name{
  height: 50px;
  width: auto;
  color: white;
  display: block;
  }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}


}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 10%;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 1000px;
}

.about-text h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.about-img {
  flex: 1;
  min-width: 300px;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.hero {
  background:none;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}
/* Slider container - Full screen */
.slider {
  width: 100%;
  height: 80vh; /* Full viewport height */
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Slides container to hold all the images */
.slides {
  display: flex;
  width: 100%; /* Adjust according to the number of slides */
  height: 100%;
  animation: slide 12s infinite;  /* Sliding animation for 12 seconds */
}

/* Each individual slide */
.slide {
  width: 100%; /* Each slide takes up full width of the container */
  height: 100vh; /* Ensures each slide takes up full height of the viewport */
  object-fit: cover;  /* Ensures image covers the container and maintains aspect ratio */
  object-position: center;  /* Centers the image inside the container */
  flex-shrink: 0;  /* Prevents image from shrinking */
}

/* Sliding animation */
@keyframes slide {
  0%    { transform: translateX(0); }
  33%   { transform: translateX(0); }
  38%   { transform: translateX(-100%); }
  66%   { transform: translateX(-100%); }
  71%   { transform: translateX(-200%); }
  100%  { transform: translateX(-200%); }
}

/* Optional: Body styles for full-page layout */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scrolling */
}



section {
  padding: 4rem 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #007a3d;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background: #005f2e;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #004d26;
  color: #fff;
}
/* CSS Document */

