* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f5f5f5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(""); /* Optional background image */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.portfolio-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 30px;
  flex-wrap: wrap;
}

.image-section img {
  width: 500px;      /* Increased width */
  height: 500px;     /* Increased height */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.info-section {
  max-width: 600px;
  margin-left: 50px;
}

.about {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  margin-left: 20px;
}

h6 {
  font-size: 24px;
  color: #555;
  margin-bottom: 20px;
  margin-left: 20px;
}

h3 {
  font-size: 24px;
  color: #555;
  margin-bottom: 20px;
  margin-left: 20px;
}

.blue-text {
  color: #007bff;
}

.black-text {
  color: #000;
}

.more-details p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
  margin-left: 20px;
}

/* Animation */
.animate-blossom {
  opacity: 0;
  transform: scale(0.95);
  animation: blossom 1.5s ease-out forwards;
}

@keyframes blossom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-section img {
    width: 80%;
    height: auto;
    margin-bottom: 30px;
  }

  .info-section {
    margin-left: 0;
  }
}
