/***************** About Section *****************/


/* About Section */
.about-section {
  padding: 60px 50px;
  background-color: #0c0f18; /* Dark background */
  color: #c0c6d1; /* Light text color */
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Profile Image */
.about-image {
  flex: 1;
  max-width: 300px;
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid #FF7B00; /* Orange border */
  box-shadow: 0 4px 16px rgba(255, 123, 0, 0.3); /* Subtle shadow */
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-5px);
}

/* About Text */
.about-text {
  flex: 2;
  max-width: 700px;
}

.about-text h2 {
  color: #FF7B00; /* Orange title */
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #FF7B00;
  margin-top: 5px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #b5bdd4; /* Light gray description */
  margin-top: 20px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image {
    margin-bottom: 20px;
  }

  .about-image img {
    max-width: 250px;
  }
}