.founder-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.founder-section.reverse {
  flex-direction: row-reverse;
}

/* Image styling */
.founder-img {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.founder-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* LinkedIn Button */
.linkedinBtn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #232526, #414345); /* dark dim gradient */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.linkedinBtn:hover {
  background: linear-gradient(135deg, #3a3a3a, #000);
  transform: scale(1.05);
}

.linkedinBtn i {
  margin-right: 8px;
}

/* Text Styling */
.founder-text {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 1rem;
  color: #fff;
  text-align: justify;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.founder-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.founder-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
}

/* Section title */
.section-title {
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.section-title h1 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile & Tablet Responsive */
@media (max-width: 992px) {
  .founder-section {
    flex-direction: column !important;
    text-align: center;
  }

  .founder-img, .founder-text {
    max-width: 100%;
  }

  .founder-text h2 {
    font-size: 1.5rem;
  }

  .founder-text p {
    font-size: 0.95rem;
  }

  .section-title h1 {
    font-size: 2rem;
  }
}

body {
  background-color: #121212;
  color: #fff;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}