.founder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
  
}

.founder-details {
  flex: 1 1 45%;
  min-width: 280px;
}

.founder-details h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000000;
}

.founder-details p {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  text-align: justify;
}

.founder-details h3 {
  margin-top: 20px;
  font-size: 29px;
  color: #000000;
  font-weight: 600;
}

.founder-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.founder-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Tablet View */
@media (max-width: 991px) {
  .founder {
    padding: 40px 30px;
  }

  .founder-details h2 {
    font-size: 28px;
  }

  .founder-details p {
    font-size: 15px;
  }

  .founder-details h3 {
    font-size: 17px;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .founder {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    gap: 30px;
  }

  .founder-details {
    order: 2;
  }

  .founder-image {
    order: 1;
  }

  .founder-details h2 {
    font-size: 24px;
  }

  .founder-details p {
    font-size: 14px;
    text-align: left;
  }

  .founder-details h3 {
    font-size: 16px;
  }

  .founder-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .founder {
    padding: 20px 10px;
  }

  .founder-details p {
    font-size: 13px;
  }

  .founder-details h2 {
    font-size: 20px;
  }

  .founder-details h3 {
    font-size: 15px;
  }
}




/* video banner------------------------- */
.video-background {
  position: relative;
  height: 400px; 
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1;
}

.content-over-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
