body {
  font-family: "Arial", sans-serif;
  background: white;
  min-height: 100vh;
  padding-top: 4.5rem !important; /* adjust if needed */
  overflow: auto !important; /* Allow scrolling */
  color: #333;
}

.about {
  /* Remove background and padding so glass card is fully transparent and fills the screen */
  padding: 0;
  background: none;
}

.about h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #065f46;
}

.about p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify; /* Add this line */
}

/* Fix social icons to top-right corner */
.social-icons {
  position: fixed;
  top: 5px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 9999;
  background: transparent;
  padding: 6px 8px;
  border-radius: 8px;
  align-items: center;
  pointer-events: auto;
}
.social-icons a {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.5);
}
.content {
  text-align: justify;
  
}
.about-bg-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
}

.about-bg-ball {
  position: absolute;
  top: 10%;
  left: 40%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 60% 40%, #ffe066 60%, #ffd700 100%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.85;
  pointer-events: none;
  box-shadow: 0 0 120px 40px #ffe06699, 0 0 0 0 #ffd700;
  transition: top 0.5s cubic-bezier(0.4, 2, 0.3, 1),
    left 0.5s cubic-bezier(0.4, 2, 0.3, 1);
  z-index: 1;
}

.about-glass {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 80px 0 0 80px;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

/* Responsive for smaller screens */
@media (max-width: 1100px) {
  .about-bg-ball {
    width: 600px;
    height: 600px;
    left: 30%;
    top: 15%;
  }
  .about-glass {
    margin: 40px 0 0 20px;
    padding: 2rem 1rem;
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .about-bg-ball {
    width: 350px;
    height: 350px;
    left: 10%;
    top: 20%;
  }
  .about-glass {
    margin: 10px 0 0 2px;
    padding: 0.5rem 0.2rem;
    border-radius: 14px;
    max-width: 99vw;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 2rem 1rem;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 0.9rem;
  }
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f1f1f1;
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.07);
  z-index: 100;
}

.ball-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.yellow-ball {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 30% 30%, #ffcc00e1, #f3b90d, #ffa000);
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0.8;
  transition: transform 0.1s ease-out;
}

.main-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 60px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify; /* Center the text */
  max-width: 800px;
  margin: 0 auto; /* Center the block itself */
}

@media (max-width: 768px) {
  .glass-card {
    padding: 40px 30px;
    margin: 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .content {
    font-size: 1rem;
  }
  .yellow-ball {
    width: 400px;
    height: 400px;
  }
}
