.about-section {
  text-align: left;
  padding: 140px 1px 20px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.about-badge {
  display: inline-block;
  font-size: 14px;
  background-color: #f0eeee;
  color: #000000;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 0.25px solid #f0eeee;
}


.about-heading {
  font-family: 'Manrope', 'Inter';
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
  max-width: 1000px;
  line-height: 1.2;
}

.about-description {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  line-height: 1.4;
}
/* Mission and Vision */
.mission-vision {
  padding: 40px 20px 5px;
  background-color: #ffffff;
  margin-top: -40px;
}

.mv-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #f8f9fb;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mv-image {
  flex: 1.5; /* slightly more space */
  margin-top: 10px;
}

.mv-image img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  max-width: 100%;
}

/* TEXT BLOCK */
.mv-text {
  padding: 30px 20px;
  flex: 0.7;
}

.mv-text h2 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 20px;
  text-align: left;
}

.mv-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
}

.mv-text strong {
  font-weight: 600;
  color: #111827;
}

/* Desktop layout */
@media (min-width: 768px) {
  .mv-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 40px;
  }

  .mv-image {
    flex: 1.2; /* More space to image */
  }

  .mv-image img {
    border-radius: 16px;
    height: auto;
    width: 100%;
    max-width: none; /* remove any limit on width */
  }

  .mv-text {
    flex: 1;
    padding: 0;
  }
}
.mv-features-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.mv-features-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mv-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.mv-feature-item .icon {
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.mv-feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.mv-feature-item p {
  color: #6b7280;
  font-size: 14px;
  max-width: 300px;
}

/* Responsive grid layout on desktop */
@media (min-width: 768px) {
  .mv-features-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.team-members {
  padding: 60px;
  background-color: #fff;
}

.team-header {
  max-width: 1200px; /* Match .about-section */
  margin: 0 auto 40px;
  padding: 0 1px;     /* Match horizontal padding */
  text-align: left;
}
                        

.team-header h2 {
  font-family: 'Manrope','Inter';
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000000;
}

.team-header p {
  font-size: 16px;
  color: #374151;
  max-width: 700px;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-card {
  position: relative;
  width: 250px; /* Increased size */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 450px; /* Increased height */
  object-fit :cover;
  display: block;
}

.team-info {
  position: absolute;
  bottom: 0;
  background-color: white;
  width: 100%;
  padding: 15px;
  text-align: left;
}

.team-info h4 {
  margin: 0;
  font-size: 18px;
  color: #111827;
}

.team-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b7280;
}

/* Remove LinkedIn icon completely */
.linkedin-icon {
  display: none;
}

.join-team {
  padding: 80px 20px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.jt-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.jt-left {
  flex: 1;
}

.jt-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 500px;
}

.jt-badge {
  display: inline-block;
  font-size: 14px;
  background-color: #f0eeee;
  color: #000000;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 0.25px solid #f0eeee;
}

.jt-header {
  font-family: 'Manrope', 'Inter';
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  max-width: 600px;
  line-height: 1.2;
}

.jt-image {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.jt-right-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.jt-button {
  padding: 12px 24px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.jt-button:hover {
  background-color: #333333;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .jt-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .jt-right {
    align-items: center;
    text-align: center;
  }

  .jt-button {
    align-self: center;
  }
}
