    .kq-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000; 
  z-index: -1;
}
    
    
    .about-section {
      padding: 100px 250px 20px 250px;
      width: 100%;
      margin: auto;
      /*background-color: #f2e0c8;*/
    }

    .about-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .about-header h1 {
      font-size: 2.7rem;
      color: #f0c14b;
      margin-bottom: 10px;
      animation: fadeIn 1.2s ease forwards;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 2);
    }

    .about-header p {
      font-size: 1.2rem;
      color: #ccc;
      animation: fadeInUp 1.4s ease forwards;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 60px;
      align-items: center;
    }

    .about-content {
      animation: fadeInUp 1.4s ease forwards;
    }

    .about-content h2 {
      font-size: 30px;
      color: #f0c14b;
      margin-bottom: 5px;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 2);
    }

    .about-content p {
      color: #f0f0f0;
      margin-bottom: 1rem;
      font-size: 1.05rem;
      text-align: justify;
      line-height: 1.8;
    }

    .about-image {
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      transform: scale(1);
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .about-image img {
      width: 100%;
      display: block;
      border-radius: 16px;
      filter: grayscale(10%) contrast(1.1);
      transition: 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.03);
      filter: grayscale(0%) contrast(1.2);
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }


    @media screen and (min-width: 1024px) and (max-width: 1440px){
  .about-section {
    padding: 90px 70px 30px 70px;
  }
}



    @media (max-width: 768px) {

     .about-section {
        padding: 90px 20px 30px 20px;
      }

      .about-header h1 {
        font-size: 2.2rem;
      }

      .about-content h2 {
        font-size: 1.6rem;
        margin-top: -50px;
      }

      .about-content p {
        font-size: 0.95rem;
        width: 90%;
        margin: 0px;
      }

      .about-content li{
        width: 90%;
      }

      .about-image img {
       width: 90%;
      }
    }



 /* === TEAM SECTION === */
.team-section {
  /*background-color: #f2e0c8;*/
  padding: 30px 30px 100px 30px;
  text-align: center;
  color: #fff;
}

.team-header h2 {
  font-size: 2.6rem;
  color: #f0c14b;
  margin-bottom: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 2);
}

.team-header p {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 50px;
  text-shadow: 2px 1px 2px rgba(0, 0, 0, 2);
}

.team-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1400px;
  margin: auto;
}

/* === TEAM CARD === */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}


/* === OVERLAY === */
.team-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-overlay h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #f0c14b;
}

.team-overlay p {
  margin: 6px 0 10px;
  font-size: 1rem;
  color: #ffffff;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-socials a {
  color: #f0c14b;
  background: #1a1a1a;
  padding: 8px;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: #f0c14b;
  color: #000;
}

/* === RESPONSIVE === */

@media screen and (min-width: 1024px) and (max-width: 1440px){
  .team-section {
    padding: 50px 70px 30px 70px;
  }
}

@media (max-width: 768px) {
  .team-img img {
    height: 300px;
  }

  .team-overlay h3 {
    font-size: 1.2rem;
  }

  .team-overlay p {
    font-size: 0.95rem;
  }

  .team-header h2 {
    font-size: 1.8rem;
  }

}



/* Mission & Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 255px 50px 255px;
  /*background-color: #f2e0c8;*/
  justify-content: space-between;
  gap: 2rem;
}

.mission, .vision {
  flex: 1 1 45%;
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.mission h3, .vision h3 {
  font-size: 30px;
  margin-bottom: 1rem;
  color: #f0c14b;
}

.mission p, .vision p {
  font-size: 18px;
  color: rgb(255, 255, 255);
  text-align: justify;
}


/* Responsive Design */

@media screen and (min-width: 1024px) and (max-width: 1440px){
  .mission-vision {
    padding: 50px 70px 30px 70px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .about-content {
    flex-direction: column;
  }

  .mission-vision {
    flex-direction: column;
    padding: 50px 30px 30px 30px;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }
}


/* Unordered List */
.about-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.about-section ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.about-section ul li::before {
  content: "•";
  color: #7b4c28;
  position: absolute;
  left: 0;
  top: 0;
}