/* About Hero Section */
.about-hero {
  background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Who We Are Section */
.who-we-are {
  padding: 6rem 2rem;
  background: #0a1120;
  /* Matches dark theme background */
  position: relative;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-text .overline {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.who-text h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.who-text .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.who-desc p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.who-media {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.video-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(18, 26, 51, 0.8), rgba(0, 136, 255, 0.2)), url('../assets/images/code-bg.jpg');
  /* Fallback or gradient */
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder i {
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.5));
}

.who-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.video-placeholder:hover i {
  transform: scale(1.1);
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .who-text h2 {
    font-size: 2.5rem;
  }

  .video-placeholder {
    height: 300px;
  }
}

/* Team Section (Horizontal Layout) */
.team-section {
  padding: 4rem 2rem 6rem;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(18, 26, 51, 0.4), transparent 50%);
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  align-items: flex-start;
  gap: 2.5rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.team-member img {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.team-member-info {
  flex: 1;
  text-align: left;
  padding: 0;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.team-member-info h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: left;
}

/* Move social links to be inline or absolutely positioned if needed via HTML change, 
   but for now styling them to fit the new layout */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem;
  }

  .team-member img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
  }

  .team-member-info {
    text-align: center;
  }

  .team-member-info p {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}



.social-links a:hover {
  color: #fff;
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Vision Section */
.vision-section {
  padding: 6rem 2rem;
  background: radial-gradient(circle at center, #0B132B 0%, #060B1A 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements for depth */
.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(65, 255, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.vision-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 4rem auto 0;
}

.vision-card {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.vision-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Glow on hover */
.vision-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.vision-card:hover::after {
  transform: translateX(100%);
}

/* Vision Icon Wrapper */
.vision-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.vision-icon-wrapper i {
  font-size: 3.5rem;
  transition: all 0.3s ease;
  color: #2563eb;
  /* Bright Blue from image */
}

/* Unified Icon Styling */
.icon-mission i,
.icon-vision i,
.icon-goal i {
  color: #2563eb;
  filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.3));
}

.vision-card:hover .vision-icon-wrapper i {
  filter: drop-shadow(0 0 25px rgba(37, 99, 235, 0.6));
  transform: scale(1.1);
  color: #3b82f6;
  /* Lighter blue on hover */
}

.vision-content {
  flex: 1;
  text-align: left;
}

.vision-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vision-card p {
  color: rgba(255, 255, 255, 0.45);
  /* Muted text per design */
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Highlight keywords in paragraph if needed, or keeping it plain */

/* Responsive specific to stack */
@media (max-width: 768px) {
  .vision-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .vision-content {
    text-align: center;
  }

  .vision-icon-wrapper {
    width: auto;
    padding-top: 0;
  }
}

/* Credentials Section */
.credentials-section {
  padding: 4rem 2rem;
}

.credentials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.credentials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.credentials-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.credential-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.credential-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.credential-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(var(--primary-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.credential-card:hover .credential-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotateY(180deg);
}

.credential-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.credential-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.credential-list i {
  color: var(--primary-color);
  margin-top: 4px;
}

.credential-metrics {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  background: rgba(var(--primary-color-rgb), 0.1);
  border-color: var(--primary-color);
}

.metric span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.3);
}

.metric p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Join Us CTA */
.join-us-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
}

.join-us-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .join-us-cta h2 {
    font-size: 2rem;
  }
}