/* About Page Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e3a8a, #0f2770);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.about-hero-title {
  font-family: Montserrat, Inter, system-ui;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #0b0d13;
}

.about-hero-title::first-line {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2770 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2770 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.about-hero-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 600px;
}

.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: Montserrat, Inter, system-ui;
  font-size: 32px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* About Hero Visual */
.about-hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.about-cards {
  position: relative;
  z-index: 2;
}

.about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a, #0f2770);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card-1 {
  transform: translateX(-20px) rotate(-2deg);
}

.about-card-2 {
  transform: translateX(20px) rotate(2deg);
}

.about-card-3 {
  transform: translateX(-10px) rotate(-1deg);
}

.about-card:hover {
  transform: translateY(-8px) !important;
  rotate: 0deg !important;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef4ff, #e1e9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 8px;
}

.card-content p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.about-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 39, 112, 0.1) 100%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

/* Mission & Vision Section */
.mission-vision-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.mission-card,
.vision-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a, #0f2770);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef4ff, #e1e9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin-bottom: 24px;
}

.mission-title,
.vision-title {
  font-family: Montserrat, Inter, system-ui;
  font-size: 28px;
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 20px;
}

.mission-description,
.vision-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  background: #f8fafc;
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: Montserrat, Inter, system-ui;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 16px;
}

.section-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
  text-align: center !important;
}

.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 24px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef4ff, #e1e9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin: 0 auto 24px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 16px;
}

.value-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Quality Section */
.quality-section {
  background: #ffffff;
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.quality-content {
  padding-right: 40px;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e3a8a, #0f2770);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.quality-title {
  font-family: Montserrat, Inter, system-ui;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 24px;
}

.quality-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px;
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e3a8a, #0f2770);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.quality-feature span {
  font-size: 14px;
  font-weight: 600;
  color: #0b0d13;
}

.quality-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quality-image {
  position: relative;
  overflow: hidden;
}

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

.quality-visual:hover .quality-image img {
  transform: scale(1.05);
}

.quality-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 32px 32px;
  color: #ffffff;
}

.overlay-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ffffff;
}

.overlay-content p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-section {
  background: #f8fafc;
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 24px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
  margin-bottom: 24px;
}

.team-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef4ff, #e1e9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin: 0 auto;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #0b0d13;
  margin: 0 0 8px;
}

.team-role {
  font-size: 14px;
  color: #1e3a8a;
  font-weight: 600;
  margin: 0 0 16px;
}

.team-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero {
    min-height: auto;
    padding: 60px 0;
  }
  
  .about-hero-content {
    padding: 40px 0;
    text-align: center;
  }
  
  .about-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .about-hero-visual {
    padding: 40px 0;
  }
  
  .about-card-1,
  .about-card-2,
  .about-card-3 {
    transform: none;
  }
  
  .mission-vision-section {
    padding: 80px 0;
  }
  
  .mission-card,
  .vision-card {
    padding: 40px 32px;
    margin-bottom: 24px;
  }
  
  .values-section {
    padding: 80px 0;
  }
  
  .quality-section {
    padding: 80px 0;
  }
  
  .quality-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .team-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 32px 0;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  
  .stat-number {
    font-size: 24px;
    margin-bottom: 0;
  }
  
  .mission-vision-section {
    padding: 60px 0;
  }
  
  .mission-card,
  .vision-card {
    padding: 32px 24px;
  }
  
  .mission-title,
  .vision-title {
    font-size: 24px;
  }
  
  .values-section {
    padding: 60px 0;
  }
  
  .value-card {
    padding: 32px 24px;
  }
  
  .quality-section {
    padding: 60px 0;
  }
  
  .quality-title {
    font-size: 24px;
  }
  
  .quality-features {
    gap: 12px;
  }
  
  .quality-feature {
    padding: 12px 16px;
  }
  
  .team-section {
    padding: 60px 0;
  }
  
  .team-card {
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 40px 0;
  }
  
  .mission-card,
  .vision-card {
    padding: 24px 20px;
  }
  
  .value-card {
    padding: 24px 20px;
  }
  
  .quality-feature {
    padding: 10px 12px;
  }
  
  .team-card {
    padding: 20px 16px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-card {
  animation: fadeInUp 0.6s ease-out;
}

.about-card-1 {
  animation-delay: 0.1s;
}

.about-card-2 {
  animation-delay: 0.2s;
}

.about-card-3 {
  animation-delay: 0.3s;
}

.mission-card,
.vision-card {
  animation: fadeInUp 0.6s ease-out;
}

.vision-card {
  animation-delay: 0.2s;
}

.value-card {
  animation: fadeInUp 0.6s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.team-card {
  animation: fadeInUp 0.6s ease-out;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
