.navbar {
  position: relative !important;
}
/* About Story Section */
.about-story {
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--black);
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 25px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: #f7a608;
  margin-bottom: 10px;
}

.stat p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
  padding: 80px 0;
  background: #f8f8f8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.value-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7a608, #e6940a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  font-size: 30px;
  color: white;
}
.value-icon svg {
  width: 30px;
  color: white;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c1810;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 80px 0;
}

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

.team-member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 30px;
  text-align: center;
}

.member-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c1810;
}

.member-info p {
  font-size: 18px;
  color: #f7a608;
  font-weight: 500;
  margin-bottom: 5px;
}

.member-info span {
  color: #666;
  font-size: 14px;
}

/* Awards Section */
.awards {
  padding: 80px 0;
  background: #f8f8f8;
}

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

.award-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7a608, #e6940a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.award-icon i {
  font-size: 30px;
  color: white;
}
.award-icon svg {
  width: 30px;
  color: white;
}

.award-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c1810;
}

.award-item p {
  color: #666;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-text h2 {
    font-size: 28px;
  }

  .story-text p {
    font-size: 16px;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-image img {
    height: 300px;
  }

  .values-grid,
  .team-grid,
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-item,
  .award-item {
    padding: 30px 20px;
  }

  .member-image {
    height: 250px;
  }

  .member-info {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .about-story,
  .values,
  .team,
  .awards {
    padding: 50px 0;
  }

  .story-text h2 {
    font-size: 24px;
  }

  .story-text p {
    font-size: 15px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .value-icon,
  .award-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon i,
  .value-icon svg,
  .award-icon i {
    font-size: 24px;
  }

  .value-item h3,
  .member-info h3 {
    font-size: 20px;
  }

  .award-item h3 {
    font-size: 18px;
  }
}
