/* 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 */
.logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}

@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 Section Container */
.team-container {
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
}

/* Flexbox rows */
.team-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap; /* Responsive */
}

/* Card Design */
.team-member {
    background: #ffffff;
    padding: 20px;
    width: 320px;           /* Fixed clean width */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Uniform Image Size */
.team-member img {
    width: 100%;
    height: 260px;
    aspect-ratio: 3 / 4;  
    object-fit: cover; 
    object-position: Top center;
    border-radius: 12px;
    overflow: hidden;
}

/* Name */
.team-member h4 {
    margin: 10px 0 6px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Title */
.team-member .title {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

/* Description */
.team-member p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Make equal heights */
.team-member p:last-child {
    flex-grow: 1;        
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .team-member {
        width: 100%;
        max-width: 400px;
    }
}
/* 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;
}
