/* ABOUT HERO */
.about-hero {
  background: radial-gradient(circle at top, #0d1025, #05050c);
  padding: 110px 8%;
  color: white;
  text-align: left;
}
/* LEFT */
.mini-label {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #3456d3;
  margin-bottom: 15px;
}

.about-container {
  max-width: 900px;
}

.about-container h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 17px;
  color: #bfc6ff;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 35px;
}

/* ABOUT SECTION */
.about-section {
  padding: 90px 8%;
  background: #05050c;
  color: white;
}

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(52, 86, 211, 0.2);
  padding: 35px;
  border-radius: 18px;
}

.about-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.about-box p {
  color: #d6d6d6;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-box ul {
  padding-left: 20px;
}

.about-box li {
  margin-bottom: 10px;
  color: #bfc6ff;
}

/* VALUES */
.about-values {
  padding: 90px 8%;
  background: #0a0a14;
  color: white;
}

.values-container {
  max-width: 1200px;
  margin: auto;
}

.values-container h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(52, 86, 211, 0.15);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3456d3;
}

.value-card p {
  color: #d0d0d0;
  line-height: 1.5;
}

/* CTA */
.about-cta {
  padding: 90px 8%;
  background: #05050c;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: auto;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(52, 86, 211, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.cta-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-box p {
  color: #bfc6ff;
  margin-bottom: 25px;
}

/* BUTTON (REUSE) */
.blue-btn {
  display: inline-block;
  padding: 14px 22px;
  background: #3456d3;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.blue-btn:hover {
  background: white;
  color: #05050c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container h1 {
    font-size: 38px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}