/* ==================== About Page Styling ==================== */
/* ==================== HERO SECTION ==================== */
.about-hero {
  position: relative;
  padding: 180px 0 100px;
  background-color: var(--bg-surface);
  border-bottom: 1px solid rgba(53, 75, 86, 0.15);
}
.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 237, 100, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(0, 237, 100, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3N2Zz4=");
  z-index: 0;
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 237, 100, 0.2);
}
.about-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}
.section-padding {
  padding: 100px 0;
  background: var(--bg-deep);
}
.section-surface {
  background: var(--bg-surface);
}
.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 237, 100, 0.5);
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 40px;
}
/* Cards */

.glass-panel {
  background: rgba(4, 41, 56, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(53, 75, 86, 0.3);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.glass-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 237, 100, 0.05) 0%,
    transparent 60%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.glass-panel:hover::before {
  opacity: 1;
}
.glass-panel > * {
  position: relative;
  z-index: 1;
}

/* Mission / Vision Cards */
.tech-card {
  background: var(--bg-card);
  border: 1px solid rgba(53, 75, 86, 0.15);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.tech-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: rgba(0, 237, 100, 0.5);
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.08);
}
.tech-card h3,
.tech-card h4,
.tech-card h5 {
  color: #fff;
  margin-bottom: 15px;
}
.tech-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.tech-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(0, 237, 100, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: 0.3s;
}
.tech-card:hover .icon-wrapper {
  background: var(--primary);
  color: #001019;
  box-shadow: 0 0 15px rgba(0, 237, 100, 0.4);
}

.highlight {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Service Grid Specifics */
.tech-card.text-center i {
  transition: 0.3s;
}
.tech-card.text-center:hover i {
  color: var(--primary) !important;
  transform: scale(1.1);
}

/* Partners */
.partner-box {
  background: var(--bg-card);
  border: 1px solid rgba(53, 75, 86, 0.15);
  padding: 24px;
  text-align: center;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  cursor: default;
}
.partner-box:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 237, 100, 0.05);
  transform: translateY(-5px);
}


/* TEAM */
.team-section {
  padding: 100px 0;
  background: #001620;
}
.team-card {
  background: #112d3a;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.team-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.team-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
}
.team-content span {
  color: #00ed64;
  font-size: 14px;
  font-weight: 600;
}
.team-content p {
  color: #8aa3b0;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
  flex-grow: 1;
}
.team-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.team-social i {
  width: 36px;
  height: 36px;
  background: #1d3846;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
}
.team-social i:hover {
  background: #00ed64;
  color: #001620;
}
.team-card:hover {
  transform: translateY(-10px);
}
