/* TBI - About Page Specific Styles */

/* About Hero Banner */
.about-hero {
  position: relative;
  background-color: var(--primary-brand);
  background-image: linear-gradient(135deg, var(--primary-brand) 0%, #003366 100%);
  color: #fff;
  padding: 100px 0 80px;
  overflow: hidden;
}

.about-hero .shape-blob {
  opacity: 0.15;
}

/* Editorial Blockquote */
.editorial-quote {
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark-brand);
}

.editorial-quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -25px;
  color: var(--accent);
  opacity: 0.2;
}

/* Stats Cards */
.stat-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: var(--primary-light);
  color: var(--primary-brand);
}

.stat-card:nth-child(2n) .stat-icon {
  background-color: var(--accent-light);
  color: var(--accent);
}

/* Team Profile Cards */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
  background-color: #f8f9fa;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info .team-name {
  color: var(--dark-brand);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.team-info .team-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Awards Cards */
.award-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s;
}

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

.award-icon-box {
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 15px;
  border-radius: 12px;
}

/* Vertical Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-container {
  padding: 15px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 4px solid var(--primary-brand);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-container.right-side::after {
  border-color: var(--accent);
}

.left-side {
  left: 0;
}

.right-side {
  left: 50%;
}

.right-side::after {
  left: -10px;
}

.timeline-content {
  padding: 25px;
  background-color: #fff;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-top: 4px solid var(--primary-brand);
}

.right-side .timeline-content {
  border-top: 4px solid var(--accent);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brand);
  margin-bottom: 10px;
}

.right-side .timeline-year {
  color: var(--accent);
}

/* Timeline Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
  }
  .timeline-container::after {
    left: 21px;
  }
  .right-side {
    left: 0%;
  }
}

/* Achievement grid */
.achievement-img-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.achievement-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.achievement-img-wrapper {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.achievement-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.achievement-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brand);
  line-height: 1.5;
}

/* Founder Profile */
.founder-profile-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
}

.founder-social-follow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  padding: 10px 20px;
  background-color: #f8f9fa;
  border-radius: 50px;
  width: fit-content;
}

.founder-social-follow span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}

.founder-social-follow a {
  font-size: 1.2rem;
  color: var(--dark-brand);
  transition: color 0.2s;
}

.founder-social-follow a:hover {
  color: var(--accent);
}

.founder-role-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border-left: 4px solid var(--primary-brand);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.founder-role-card:nth-child(even) {
  border-left-color: var(--accent);
}

.founder-role-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.founder-role-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(246, 118, 39, 0.05);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.founder-role-card:nth-child(even) .founder-role-icon {
  background-color: rgba(33, 134, 224, 0.05);
  color: var(--accent);
}

.founder-role-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
  border: 1px solid #eee;
}

.founder-role-title {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 2px;
  font-size: 1.05rem;
}

.founder-role-subtitle {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 0;
}

/* Public Impact */
.public-impact-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.public-impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.public-impact-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.public-impact-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.public-impact-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-uppercase: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  display: block;
}

.public-impact-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-brand);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Instagram Profile Mockup Card */
.instagram-mockup-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.2s;
  text-align: left;
}

.instagram-mockup-card:hover {
  transform: translateY(-2px);
  border-color: #d1d1d1;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.instagram-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ff3040;
  object-fit: cover;
}

.instagram-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: #262626;
  margin-bottom: 2px;
}

.instagram-fullname {
  font-size: 0.8rem;
  color: #8e8e8e;
  margin-bottom: 0;
}

.instagram-stats {
  display: flex;
  gap: 15px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 10px 0;
  margin-bottom: 15px;
}

.instagram-stat-item {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #262626;
}

.instagram-stat-num {
  font-weight: 700;
  display: block;
  font-size: 0.9rem;
}

.instagram-bio {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #262626;
  margin-bottom: 15px;
}

.instagram-bio a {
  color: #00376b;
  text-decoration: none;
}

.instagram-follow-btn {
  background-color: var(--primary-brand);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 6px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.2s;
}

.instagram-follow-btn:hover {
  background-color: var(--primary-secondary);
}

.founder-roles-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.founder-mini-role-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  border-left: 4px solid var(--primary-brand);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.founder-mini-role-card:nth-child(even) {
  border-left-color: var(--primary-secondary);
}

.founder-mini-role-card:hover {
  transform: translateX(4px);
}

.founder-mini-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: rgba(246, 118, 39, 0.05);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.founder-mini-role-card:nth-child(even) .founder-mini-role-icon {
  background-color: rgba(255, 138, 0, 0.05);
  color: var(--primary-secondary);
}

.founder-mini-role-title {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 1px;
  font-size: 0.95rem;
}

.founder-mini-role-desc {
  font-size: 0.8rem;
  color: var(--secondary);
  margin-bottom: 0;
}
