#modern-bio.ftco-section {
  padding: 4rem 0;
  position: relative;
  background-image: url('/images/skies-image.png'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Creates parallax effect - remove if not desired */
}

.bio-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0 0; /* Top padding for circle space */
}

/* Perfectly Aligned Founder Image */
.founder-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  transform: translate(50%, -50%); /* Exact corner alignment */
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border: 8px solid white;
  background: linear-gradient(135deg, #FFD166 0%, #FFF9E6 100%);
  padding: 8px;
}

.founder-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD166, #FFEEB3);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
}

.circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.founder-image:hover .circle-image {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bio-content {
  background-color: white;
  padding: 3.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,214,102,0.2);
  margin-top: 30px; /* Ensures content doesn't overlap circle */
}

/* Rest of your styles remain the same */
.bio-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: inline-block;
}

.bio-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #FFD166, #FFEEB3);
  border-radius: 3px;
}

.bio-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .founder-image {
    width: 160px;
    height: 160px;
    transform: translate(30%, -50%); /* Adjusted for smaller size */
  }
  .bio-content {
    padding: 2.5rem;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #modern-bio.ftco-section {
    padding: 3rem 1rem;
  }
  .founder-image {
    width: 130px;
    height: 130px;
    transform: translate(15%, -50%); /* Further adjustment for mobile */
    border-width: 5px;
  }
  .bio-content {
    padding: 2rem;
    margin-top: 15px;
  }
  .bio-title {
    font-size: 1.8rem;
  }
}