@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background: radial-gradient(circle at center, #0d2a16, #000);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px;
  overflow: hidden;
  background-color: #ffffff;
}

.about {
  background: rgba(0, 255, 76, 0.432);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 45px 40px;
  max-width: 600px;
  width: 100%;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  z-index: 2;
  color: #00ff4c6e;
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
  border: 1.5px solid #02ff568f;
  margin-top: 5vh;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about:hover {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: #ffffff;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 22px;
  color: #ffffff;
  font-weight: 600;
  padding-left: 12px;
  position: relative;
  letter-spacing: 0.03em;
}

.about h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 75%;
  background-color: #ffffff;
  border-radius: 2px;
  opacity: 0.8;
}

.about p {
  font-size: 17px;
  margin-bottom: 28px;
  color: #ffffff;
  line-height: 1.6;
}

.about ul {
  list-style: none;
  padding-left: 0;
}

.about li {
  margin-bottom: 18px;
  font-size: 18px;
  padding-left: 26px;
  position: relative;
  color: #6a695f;
  font-weight: 500;
}

.about li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 22px;
  color: #ffffff;
  opacity: 0.7;
}

.about li:hover {
  color: #ffffff;
}

.about a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.about a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.about strong {
  color: #ffffffa4;
}


.about2 {
  background: linear-gradient(135deg, rgba(0, 212, 64, 0.35), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 20px;
  padding: 50px 45px;
  max-width: 650px;
  width: 100%;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  z-index: 2;
  color: #f4f4f4;
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
  border: 1.2px solid rgba(255, 255, 255, 0.18);
}

@keyframes fadeInUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about2:hover {
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
}

.about2 h2 {
  font-size: 34px;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 700;
  padding-left: 14px;
  position: relative;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.about2 h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 75%;
  background: linear-gradient(180deg, #ffffff, #b0a997);
  border-radius: 2px;
  opacity: 0.9;
}

.about2 p {
  font-size: 17.5px;
  margin-bottom: 26px;
  color: #e1e1e1;
  line-height: 1.65;
}

.about2 ul {
  list-style: none;
  padding-left: 0;
}

.about2 li {
  margin-bottom: 18px;
  font-size: 18px;
  padding-left: 28px;
  position: relative;
  color: #dddddd;
  font-weight: 500;
}

.about2 li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 22px;
  color: #b0a997;
  opacity: 0.8;
}

.about2 li:hover {
  color: #ffffff;
}

.about2 a {
  color: #c9e1ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.about2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.about2 strong {
  color: #ffffff;
}

