/* Mission Statement Section */
.mission-statement {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 16px;

  }
  
  .mission-statement .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .mission-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #333;
}
  
  
  .mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #495057;
  }
  
  .mission-text span {
    display: block;
    font-style: italic;
    font-weight: bold;
    color: #ed1b24;
    margin-bottom: 1rem;
  }
  

/* Our Story Section */
.story-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #333;
}
  
  
  .story-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .story-section img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  /* Mobile Styling */
  @media (max-width: 768px) {
    .story-section {
      padding: 1.5rem;
    }
  
    .story-section h2 {
      font-size: 2.5rem;
    }
  
    .story-section p {
      font-size: 0.95rem;
    }
  
    .story-section img {
      width: 90%;
    }
  }

/* Values Section */
.values {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.value-item dotlottie-player {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #ed1b24;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #0077b6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

.team-member a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #0077b6;
    text-decoration: none;
    border: 1px solid #0077b6;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.team-member a:hover {
    background: #0077b6;
    color: #fff;
}

/* Animations */
.animate-fade {
    opacity: 0;
    animation: fade-in 1s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 1s forwards;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: scale-in 1s forwards;
}

/* Keyframes */
@keyframes fade-in {
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
