/* navbar */
.navbar-nav .nav-item.join-button .nav-link::after {
  content: none;
}
/* Hero Section */
.hero-section-about {
  height: 63vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  top: 75px;
  overflow: hidden;
}

.hero-section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section-about .container {
  position: relative;
  z-index: 2; 
}

.hero-section-about h1 {
  font-size: 4rem;
  font-weight: bold;
}

.hero-section-about p {
  font-size: 1.2rem;

  margin-top: 10px;
}

/* ----------------------- */
.theme-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ------------------------- */

/* Intro Section */
.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.intro-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Values Section */
.values-section .value-box {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.values-section .value-box:hover {
  transform: translateY(-10px);
}

.values-section h4 {
  margin-top: 10px;
  color: #333;
}

.value-box i {
  color: #0F265C;
}

/* Team Section */
.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}


/* Founder Section */
.founder-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.founder-content {
  display: flex;
  align-items: center;
  min-height: 600px;
}

.founder-image {
  background: url('/wp-content/themes/zz/assets/images/DSC_7312.jpg') no-repeat center center/cover;
  height: 600px;
  border-radius: 15px;
  position: relative;
}

.founder-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(15, 38, 92, 0.3), rgba(15, 38, 92, 0.1));
  border-radius: 15px;
}

.founder-text {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-left: -50px;
  z-index: 2;
  position: relative;
}

.founder-label {
  color: #0F265C;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0F265C;
  margin-bottom: 10px;
}

.founder-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}

.founder-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.founder-description p {
  margin-bottom: 20px;
}

.founder-description a {
  color: #0F265C;
  text-decoration: none;
  font-weight: 600;
}

.founder-description a:hover {
  text-decoration: underline;
}

.contact-btn {
  border: 1px solid white;
  border-radius: 99px;

}

/* CTA Section */
.cta-section {
  background-color: #efefef;
  color: #333;
}

.cta-section h2 {
  font-size: 2rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.cta-section a {
  font-size: 1.2rem;
  padding: 10px 30px;
}

.cta-section button {
  border: 1px solid white;
  border-radius: 32px;
}




/* Media Queries for Responsiveness */
/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
  .founder-text {
    margin-left: -30px;
    padding: 40px;
  }

  .founder-name {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
  .hero-section-about {
    background-position: 80% 31%;
  }
  .hero-item h1 {
    font-size: 4rem;
  }

  .hero-item p {
    font-size: 1rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .founder-content {
    flex-direction: column;
    gap: 30px;
  }

  .founder-image {
    height: 400px;
  }

  .founder-text {
    margin-left: 0;
    margin-top: -30px;
  }
}

@media (max-width: 768px) {
  .hero-section-about {
    /* background-position: 80% 31%; */
    padding: 0 0 32px;
  }

  .hero-section-about h1 {
    font-size: 3rem;
  }
}


/* Small Tablets */
@media (max-width: 767px) {
  .founder-text {
    padding: 30px;
  }

  .founder-name {
    font-size: 2rem;
  }
}



/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .founder-image {
    height: 300px;
  }

  .founder-text {
    padding: 25px;
  }

  .founder-name {
    font-size: 1.8rem;
  }

  .founder-title {
    font-size: 1rem;
  }

  .founder-description {
    font-size: 0.9rem;
  }
}


@media (max-width: 425px) {
  .hero-section-about h1 {
    font-size: 2rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .founder-name {
    font-size: 1.6rem;
  }
}