/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  background-color: #fff;
}

/* Header Top */
.container-head {
  padding: 15px;
  line-height: 1.6;
}

.bg-green {
  background-color: green;
}

.container-head a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: transform 0.2s;
}

.social-icons a:hover {
  color: #00b894;
  transform: scale(1.2);
}

/* Header Logo & Company Name */
.headtop {
  background-color: #f5f5f5;
  padding: 15px 0;
  border-bottom: 2px solid #ccc;
}

.logo-header {
  width: 150px;
  height: auto;
}

.company-name {
  font-size: 32px;
  font-weight: 600;
  color: #2e8b57;
}

@media (max-width: 768px) {
  .company-name {
    font-size: 20px;
  }
  .logo-header {
    width: 100px;
  }
}

/* Navbar */


.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
}

.nav-link:hover {
  background-color: #495057;
  border-radius: 4px;
}

/* Team Section */
.team-container {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.team-member {
  margin: 15px;
  width: 320px;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 18px;
  color: black;
  margin: 10px 0 5px;
}

.team-member .title {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .team-member {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .team-member {
    width: 100%;
  }
}

/* Footer */
.footer-section {
  background-color: green;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

.seperator-in-footer {
  display: block;
  width: 80px;
  height: 3px;
  background-color: #00b894;
  margin: 30px auto;
}

.social-icon ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon a {
  font-size: 20px;
  color: #fff;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon a:hover {
  background: #00b894;
}

.footer-section .copyright {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 20px;
}
