
/* FIRST SECTION */
/* ===========================
 

/* FIRST SECTION */
.about-alt {
  background: linear-gradient(180deg, #05070f, #0a0f1f);
  color: #cbd5e1;
  padding: 90px 20px;
  font-family: "Segoe UI", sans-serif;
}

.wrap {
  max-width: 1150px;
  margin: auto;
}

.about-head {
  text-align: center;
  margin-bottom: 70px;
}

.about-head h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-head p {
  color: #94a3b8;
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  gap: 20px;
}

.stat-box {
  background: #0f172a;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-box h3 {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 5px;
}

.stat-box span {
  color: #9ca3af;
  font-size: 14px;
}

.about-vision {
  margin-top: 80px;
  background: #0f172a;
  padding: 50px;
  border-radius: 18px;
}

.about-vision h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

.about-vision p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-head h1 {
    font-size: 32px;
  }
}


/* CONTACT US SECTION */
.contact-us {
  background: linear-gradient(135deg, #050505, #0b0e13);
  padding: 90px 8%;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text Side */
.contact-badge {
  display: inline-block;
  background: rgba(0, 255, 153, 0.12);
  color: #00ff99;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

.contact-us h2 {
  font-size: 42px;
  margin-bottom: 18px;
  color: #fff;
}

.contact-us p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #bbb;
}

/* Card */
.contact-card {
  background: #0f1116;
  border: 1px solid #1e222a;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-card h3 {
  color: #00ff99;
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card ul li {
  margin-bottom: 14px;
  color: #bbb;
  font-size: 15px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-us h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 70px 20px;
  }

  .contact-us h2 {
    font-size: 28px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-card ul li {
    font-size: 14px;
  }
}
