.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/about-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  backdrop-filter: blur(50px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}


.about-hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: 1200px;
  width: 90%;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  color: #ffffff;
}

/* About Story */
.about-story {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-size: 1rem;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}


.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-light);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mv-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.team-section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}


.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    will-change: transform;
}

.team-photo {
    width: 120px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--light-gray);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.position {
   
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bio {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.values-section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(111, 190, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
      .about-hero {
    height: 80vh;
    min-height: 500px;
    text-align: center;
  }
  
  .about-hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.2rem;
    max-width: 100%;
  }

    
    .about-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
     .about-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
}

