/* About Section */
.about {
  padding: 120px 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-left .eyebrow {
  color: #98a0b3;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-heading {
  color: #0b0f28;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-desc {
  color: #2f3552;
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn.primary {
  display: inline-block;
  background-color: #1e2b79;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
}

.about-right {
  position: relative;
}

.stacked-images {
  position: relative;
  height: 520px;
}

.landscape {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.landscape-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
}

.landscape-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 280px;
}

.portrait-wrap {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 300px;
  height: 300px;
  background: #ffffff;
  border-radius: 24px;
  padding: 10px;
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  background: #1e2b79;
  color: #ffffff;
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 12px 30px rgba(30, 43, 121, 0.35);
}

.badge-title {
  font-size: 28px;
  font-weight: 800;
}

.badge-sub {
  opacity: 0.9;
}

@media (max-width: 980px) {
  .about {
    padding: 80px 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stacked-images {
    height: 520px;
    margin-top: 20px;
  }
  .portrait-wrap {
    left: 20px;
    bottom: -40px;
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 520px) {
  .about {
    padding: 60px 20px;
  }
}

/* Process Section */
.process {
  background: #1e2b79;
  color: #ffffff;
  padding: 96px 24px;
  margin-top: 40px;
}

.process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 44px;
}

.process-header h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.process-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 20px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  background: #2b367f;
  border-radius: 16px;
  padding: 32px;
}

.icon-wrap {
  width: 88px;
  height: 88px;
  background: #364086;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon {
  font-size: 28px;
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .process-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .process-header h2 {
    font-size: 34px;
  }
  .process-cards {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team {
  padding: 100px 32px;
}

.team-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.team-header p {
  color: #a1a1a1;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.team-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 18px 20px 22px;
  background: #ffffff;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.team-info h3 {
  color: #0b0f28;
  margin-bottom: 6px;
}

.team-info p {
  color: #5b6080;
}

/* Hover Variant: change only footer background and text color */
.team-card {
  position: relative;
}
.team-card:hover .team-info {
  background: #22287d;
}
.team-card:hover .team-info h3,
.team-card:hover .team-info p {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team {
    padding: 80px 24px;
  }
}

@media (max-width: 520px) {
  .team {
    padding: 60px 20px;
  }
  .team-header h2 {
    font-size: 34px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
