/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  text-align: center;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background-color: #2c6e49;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.nav-logo h1 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #d8f3dc;
}
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #2c6e49;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

/* Offset for fixed navbar */
body { padding-top: 70px; }

/* Header */
header {
  background: #2c6e49;
  color: white;
  padding: 20px 10px;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
header h1 { font-size: 2rem; }
header p { margin-top: 5px; font-size: 1.1rem; color: #e0f7e9; }

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
}
.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}
.caption {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.caption h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.caption p { font-size: 1.2rem; }

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active { background-color: #fff; }

/* Fade Animation */
.fade { animation-name: fade; animation-duration: 1.5s; }
@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Sections */
.about, .services, .testimonials, .contact {
  padding: 50px 20px;
}
.about, .services, .testimonials {
  background: #fff;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Services */
.features-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 20px;
}
.feature {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.feature h3 {
  color: #2c6e49;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
blockquote {
  background: #fff;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  font-style: italic;
}
blockquote footer {
  margin-top: 12px;
  font-weight: 700;
  color: #2c6e49;
  font-style: normal;
}

/* Footer */
footer {
  background: #2c6e49;
  color: #fff;
  text-align: center;
  padding: 20px;
}
footer p { margin: 5px 0; font-size: 0.95rem; }
/* CEO Message Section */
.ceo-message {
  background-color: #f4faf4;
  padding: 60px 20px;
  text-align: center;
}

.ceo-message h2 {
  color: #2c6e49;
  margin-bottom: 40px;
  font-size: 2rem;
}

.ceo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.ceo-photo img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid #2c6e49;
  transition: transform 0.3s ease;
}

.ceo-photo img:hover {
  transform: scale(1.05);
}

.ceo-text {
  max-width: 550px;
  text-align: left;
}

.ceo-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ceo-text h4 {
  font-size: 1.1rem;
  color: #2c6e49;
  font-weight: 600;
}

.ceo-text h4 span {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .ceo-text {
    text-align: center;
  }
  .ceo-photo img {
    width: 180px;
    height: 180px;
  }
}

