
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

/* Leadership Section Styling */
.leadership-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: -1px;
  }
  
  .leadership-section h1 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
  }
  
  .leadership-section h1 span {
    color: #ff0000;
    font-weight: 700;
  }
  
  /* Stats Container Styling */
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
  }
  
  .stat-item i {
    font-size: 60px; /* Increased icon size */
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .stat-item .number {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 10px;
  }
  
  .stat-item .label {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
  }
  
  /* Contact Button Styling */
  .contact-btn {
    background-color: #ffffff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .contact-btn i {
    color: red;
    font-size: 20px;
  }
  
  .contact-btn:hover {
    background-color: #f2f2f2;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
  
    .stat-item {
      max-width: 100%;
    }
  
    .leadership-section h1 {
      font-size: 22px;
    }
  
    .contact-btn {
      flex-direction: column;
      padding: 18px 16px;
    }
  }


 .contact-pill {
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  width: fit-content;
  background-color: #fff;
  margin: 0 auto;
  flex-wrap: wrap; /* Allows wrapping on very small screens */
}

.pill-left,
.pill-right {
  padding: clamp(10px, 2vw, 14px) clamp(20px, 5vw, 35px);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* Prevent text wrapping by default */
}

.pill-left {
  background-color: #f0f0f0;
  color: #333;
}

.pill-right {
  background-color: #fff;
  color: #000;
}

.phone-icon {
  color: #ff0000;
  margin-right: 10px;
  font-size: clamp(13px, 1.2vw, 15px);
}

/* Optional tweak for very narrow screens */
@media (max-width: 400px) {
  .contact-pill {
    flex-direction: column;
    align-items: stretch;
  }

  .pill-left,
  .pill-right {
    width: 100%;
    justify-content: center;
    border-radius: 0; /* Reset radius for stacked look */
  }

  .pill-left:first-child {
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
  }

  .pill-right:last-child {
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
  }
}
