/* HERO */

.about-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:80px 0 100px;
}

.tag{
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  background:#eef3ff;
  color:#1638ff;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.about-left h1{
  font-size:76px;
  line-height:1.05;
  color:#07123f;
  margin-bottom:25px;
  letter-spacing:-2px;
}

.about-left p{
  font-size:19px;
  line-height:1.9;
  color:#5d6481;
  margin-bottom:35px;
  max-width:650px;
}

/* RIGHT */

.about-right{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.glass-card{
  padding:35px;
  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.06)
    );

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(18px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

.glass-card h3{
  font-size:38px;
  color:#18ba5e;
  margin-bottom:12px;
}

.glass-card p{
  color:#555;
  line-height:1.8;
}

/* SECTION */

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-heading h2{
  font-size:56px;
  color:#07123f;
  margin-bottom:15px;
}

.section-heading p{
  font-size:18px;
  color:#666;
}

/* MISSION */

.mission-section{
  margin-bottom:110px;
}

.mission-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.mission-card{
  padding:45px 35px;
  border-radius:30px;
  border:1px solid #edf0ff;
  background:white;
  transition:0.35s;
}

.mission-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#f5f7ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  margin-bottom:25px;
}

.mission-card h3{
  font-size:30px;
  margin-bottom:15px;
  color:#08134d;
}

.mission-card p{
  line-height:1.9;
  color:#666;
}

/* WHY */

.why-about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:100px;
}

.why-content h2{
  font-size:58px;
  line-height:1.1;
  margin-bottom:20px;
  color:#07123f;
}

.why-content p{
  line-height:1.9;
  color:#666;
  margin-bottom:25px;
}

.why-content ul{
  list-style:none;
}

.why-content li{
  margin-bottom:15px;
  font-size:18px;
  color:#555;
}

.why-box{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
}

.stats-card{
  padding:35px;
  border-radius:28px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.06)
    );

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(16px);
}

.stats-card h3{
  font-size:52px;
  color:#18ba5e;
  margin-bottom:10px;
}

.stats-card p{
  color:#555;
  font-size:18px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .about-hero,
  .why-about{
    grid-template-columns:1fr;
  }

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

  .about-left h1{
    font-size:58px;
  }

}

@media(max-width:700px){

  .about-left h1{
    font-size:44px;
  }

  .section-heading h2{
    font-size:40px;
  }

  .why-content h2{
    font-size:42px;
  }

}