body { background-color: var(--bg-dark-purple); }

/* --- HERO BANNER --- */
.hero-section {
  background:
    linear-gradient(rgba(32, 5, 32, 0.7), rgba(32, 5, 32, 0.9)),
    url("../../images/about-us/our-team.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 95vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-section h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
  max-width: 700px;
}

.hero-section .lead {
  font-size: 0.93rem !important;
  margin-bottom: 0.5rem !important;
  max-width: 580px;
}

.hero-section .btn {
  padding: 0.55rem 1.4rem !important;
  font-size: 0.88rem !important;
}

.accent-text {
  color: var(--accent);
}

/* --- SECTION SPACING --- */
.look-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color-page);
}

.milestone-section {
  padding-top: 20px;
}

/* --- ABOUT IMAGE FRAME --- */
.about-img-frame {
  position: relative;
  border: 1px solid var(--accent);
  padding: 15px;
  border-radius: 20px;
}

.about-img-frame img {
  border-radius: 10px;
}

/* --- MISSION / VISION CARDS --- */
.mv-card {
  background: var(--deep-purple-page);
  border: 1px solid var(--border-color-page);
  padding: 40px;
  height: 100%;
  transition: var(--transition1);
}

.mv-card:hover {
  border-color: var(--accent);
}

/* --- CORE VALUE CARDS --- */
.core-value-card {
  background: linear-gradient(145deg,
      rgba(32, 5, 32, 0.4),
      rgba(10, 10, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.core-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right,
      rgba(249, 181, 34, 0.1),
      transparent);
  opacity: 0;
  transition: 0.5s;
}

.core-value-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.core-value-card:hover::before {
  opacity: 1;
}

.value-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(249, 181, 34, 0.12);
  border: 1px solid rgba(249, 181, 34, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9b522;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  transition: 0.5s;
}

.value-icon-wrapper i {
  color: #f9b522 !important;
  position: relative;
  z-index: 3;
}

.core-value-card:hover .value-icon-wrapper {
  background: #f9b522;
  border-color: #f9b522;
  color: #000;
  box-shadow: 0 0 20px rgba(249, 181, 34, 0.4);
}

.core-value-card:hover .value-icon-wrapper i {
  color: #000 !important;
}

/* --- AWARD SECTION --- */
.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.award-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.award-item img {
  max-width: 100%;
  max-height: 50px;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: all 0.4s ease;
}

.award-item:hover {
  background: rgba(249, 181, 34, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(249, 181, 34, 0.1);
}

/* --- LABELS & ACCENTS --- */
.label-accent {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
  vertical-align: middle;
  margin-right: 10px;
}

/* --- ICON BOX --- */
.icon-box {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(251, 176, 52, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  background: rgba(251, 176, 52, 0.05);
}

@media (max-width: 991px) {
  .hero-section {
    background-attachment: scroll !important;
  }
}

@media (max-width: 991px) {
  .hero-section {
    background-attachment: scroll !important;
  }
}
