/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(44, 107, 59, 0.9); /* Transparent background with green */
  padding: 20px 20px;
}

header .logo h1 {
  color: white;
  font-size: 10px;  /* Adjust font size for logo text */
  font-weight: 600;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 20px; /* Reduced gap between menu items */
  margin-left: auto; /* Align menu to the right */
}

nav .menu li {
  display: inline-block;
}

nav .menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;  /* Reduced font size for menu items */
  padding: 8px 15px;  /* Reduced padding for smaller menu */
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav .menu li a:hover {
  background-color: #ff8c00;
  color: white;
  border-radius: 5px;
}

/* Hero Section */
#hero {
  background: url('hero-image.jpg') no-repeat center center/cover;
  color: white;
  padding: 150px 20px;
  text-align: center;
  position: relative;
}

#hero .hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

#hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

#hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #ff8c00;
  padding: 10px 25px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e07b00;
}

/* Service Section */
#services {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

#services h2 {
  font-size: 35px;
  margin-bottom: 40px;
  color: #2C6B3B;
}

.service-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service {
  background-color: #fff;
  padding: 30px;
  width: 280px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.service:hover {
  transform: translateY(-10px);
}

.service h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2C6B3B;
}

.service p {
  font-size: 16px;
  color: #777;
}

/* Footer with Social Links */
footer {
  background-color: #2C6B3B;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  font-size: 14px;
  margin-top: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #ff8c00;
  color: white;
}

.social-icon {
  margin-left: 5px;
  font-size: 20px;
}
