/* Page Specific CSS for aboutus.html */

/* Header section styling */
.about-hero {
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--neutral-light);
  padding: 60px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--font-primary);
  margin-bottom: 16px;
}

.about-hero h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--font-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Image rounding and drop shadows */
.img-fluid.rounded.shadow {
  border-radius: 16px !important;
  box-shadow: var(--shadow-md) !important;
}

/* Strengths list customization */
.strengths-section {
  background-color: var(--bg-base);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: 40px;
}

.strengths-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 800;
}

.strengths-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--font-secondary);
}

.strengths-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
  color: var(--primary-color);
}

/* Director's message card styling */
.director-card {
  border: 1px solid var(--neutral-light) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background-color: var(--bg-elevated);
}

.director-card .card-body {
  padding: 50px !important;
  position: relative;
}

.director-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--primary-color);
}

.director-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.director-card p.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--font-secondary);
  font-style: italic;
}

/* What sets us apart block */
.apart-section {
  background: var(--bg-elevated);
  border: 1px solid var(--neutral-light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.apart-section h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.apart-section p {
  color: var(--font-secondary);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* Director Avatar wrapper */
.director-avatar-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(17, 24, 250, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-size: 26px;
}

/* Core Values Grid */
.values-grid {
  margin-top: 40px;
}
.value-card {
  background: var(--bg-elevated);
  border: 1px solid var(--neutral-light);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(17, 24, 250, 0.2);
}
.value-card .value-icon {
  width: 60px;
  height: 60px;
  background: rgba(17, 24, 250, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary-color);
  font-size: 24px;
}
.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--font-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Timeline Layout */
.timeline-section {
  padding: 80px 0;
}
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--neutral-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-elevated);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-left {
  left: 0;
}
.timeline-right {
  left: 50%;
}
.timeline-right::after {
  left: -10px;
}
.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-elevated);
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--neutral-light);
  box-shadow: var(--shadow-sm);
}
.timeline-date {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--font-secondary);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .timeline-container::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 21px;
  }
  .timeline-right {
    left: 0%;
  }
}

