/* General Section Styling */
section {
    /* padding: 50px; */
    text-align: center;
    background-color: #0e0d0d;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(242, 5, 210, 0.873);
}

/* Section Title */
/*.section-title {*/
/*    font-size: 2.5rem;*/

/*    margin-bottom: 20px;*/
/*    color: #f901ecde;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1.5px;*/
/*}*/
.section-title {
  font-size: 2.6rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ff6ad5, #ff2fd4, #c800ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff2fd4, transparent);
  display: block;
  margin: 18px auto 0;
}

/* Section Description */
.section-description {
    font-size: 1.2rem;
    color: #ece9ece2;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

/* Team Section */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    background-color: #020202d2;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(247, 243, 243, 0.926);
    width: 300px;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 2px solid #f700ff;
}

.team-name {
    font-size: 1.5rem;
    color: #ed02f1e4;
    margin-bottom: 5px;
    font-weight: bold;
}

.team-role {
    font-size: 1rem;
    color: #edeaedee;
}

/* Our Vision and Mission Sections */
.vision-section, .mission-section, .values-section {
    background-color: #060505;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(236, 2, 197, 0.894);
    margin: 20px auto;
    max-width: 900px;
}

/* Values Section */
.values-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.values-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #eae5e5;
    position: relative;
    padding-left: 25px;
}

.values-list li::before {
    content: "✓"; /* Unicode for a checkmark */
    color: #007BFF; /* Accent color */
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
  font-size: 2.6rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ff6ad5, #ff2fd4, #c800ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff2fd4, transparent);
  display: block;
  margin: 18px auto 0;
}

}
