#about {
  position: relative;
  background: white;
  overflow: hidden;
  min-height: 80vh;       
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;       
}

.about-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(#819ED2 1px, transparent 1px),
    linear-gradient(90deg, #819ED2 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

.about-wrapper {
  position: relative;
  z-index: 1;
  transform: scale(0.9);         
  transform-origin: top center;
}


.about-desc {
  position: relative;
  width: 1035px;
  height: 360px;
  background: linear-gradient(90deg, #1A535C, #246670);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.about-title {
  position: absolute;
  top: -36px;
  left: 27px;
  width: 252px;
  height: 63px;
  background: linear-gradient(90deg, #1A315C, #294881);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-title.animate {
  animation: popBounce 0.8s ease-out;
}

@keyframes popBounce {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.about-title h2 {
  margin: 0;
  font-family: 'Pixelify Sans', cursive;
  color: white;
  font-size: 36px;
  text-align: center;
}

.about-text {
  width: 60%;
  padding-left: 27px;
  font-family: 'Poppins', sans-serif;
}

.about-text p {
  margin-top: 18px;
  margin-bottom: 18px;
  line-height: 1.4;
  font-size: 16px;
}

.about-text .char {
  color: #888;
  font-weight: bold;
  transition: color 0.3s ease-out;
}

.about-text .char.revealed {
  color: white;
}

.about-image {
  position: absolute;
  right: -27px;
  bottom: -27px;
  width: 450px;
  height: auto;
  z-index: 2;
  transition: transform 0.2s linear;
}

@media (max-width: 768px) {
  #about {
    min-height: 90vh;
    padding: 40px 20px;
  }

  .about-wrapper {
    transform: scale(0.7);         
    transform-origin: center;
  }
  
  .about-desc {
    width: 550px;
    height: 200px;
    padding: 30px 20px;
  }
  
  .about-title {
    top: -25px;
    left: 20px;
    width: 150px;
    height: 40px;
  }
  
  .about-title h2 {
    font-size: 20px;
  }
  
  .about-text {
    width: 55%;
    padding-left: 10px;
  }

  .about-text .char {
  color: #888;
  transition: color 0.3s ease;
}

.about-text .char.revealed {
  color: white;
}

  
  .about-text p {
    font-size: 10.2px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 8px;
  }
  
  .about-text p:last-child {
    margin-bottom: 0;
  }
  
  .about-image {
    right: -30px;
    bottom: -5px;
    width: 300px;
    height: auto;
  }
}
