#hero{
    width: 100%;
    height: 400px;
    background: url(images/banner.jpg);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    margin-top: 65px;
    color: #000;
}
#hero h2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 18px;
    color: #000;
}



.mission{
    width: 100%;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mission .left{
    width: 40%;
    height: 250px;
}
.mission .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission .right{
    width: 50%;
}
.mission .right h3{
    font-size: 40px;
    margin-bottom: 16px;
}
.mission .right p{
    font-size: 18px;
    line-height: 25px;
}

.vision{
    width: 100%;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(136, 155, 190, 0.253);
}
.vision .left{
    width: 40%;
    height: 250px;
}
.vision .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision .right{
    width: 50%;
}
.vision .right h3{
    font-size: 40px;
    margin-bottom: 16px;
}
.vision .right p{
    font-size: 18px;
    line-height: 25px;
}

.we-are{
    width: 100%;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.we-are h2{
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}
.we-are p{
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    margin: 16px 0px;
}



@media (max-width:799px){
    .mission{
        flex-direction: column;
        padding: 30px 20px;
    }
    .mission .left{
        width: 100%;
    }
    .mission .right{
        width: 100%;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .mission .right p{
        text-align: center;
    }
    .vision{
        flex-direction: column;
        padding: 30px 20px;
    }
    .vision .left{
        width: 100%;
        margin-top: 30px;
    }
    .vision .right{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .vision .right p{
        text-align: center;
    }
    .we-are{
        padding: 80px 20px;
    }
    .we-are p{
        text-align: left;
    }
}


/* ------------------------------ */
/* PARTNER SECTION (PRODUCTS)     */
/* ------------------------------ */

#partner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 40px;
  width: 100%;
}

#partner h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}

#partner h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 700px;
}

/* CARD CONTAINER */
#partner .card-con {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
}

/* CARD */
#partner .card-con .card {
  width: 320px;
  min-height: 420px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#partner .card-con .card:hover {
  transform: translateY(-6px);
}

/* IMAGE BOX */
#partner .card-con .card .img {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

#partner .card-con .card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

#partner .card-con .card:hover .img img {
  transform: scale(1.2);
}

/* TITLE */
#partner .card-con .card h4 {
  text-align: center;
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}

#partner .card-con .card:hover h4 {
  color: #9AC03E;
}

/* DESCRIPTION */
#partner .card-con .card p {
  text-align: center;
  font-size: 14px;
  color: #444;
  padding: 0 10px;
}

/* BUTTON */
#partner .btn {
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background-color: #9AC03E;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: 0.3s;
  cursor: pointer;
}

#partner .btn:hover {
  background-color: #88ac35;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

/* ------------------------------ */
/* RESPONSIVENESS                 */
/* ------------------------------ */

/* Tablet */
@media (max-width: 992px) {
  #partner {
    padding: 50px 20px;
  }
  #partner .card-con {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #partner h2 {
    font-size: 26px;
  }

  #partner h4 {
    font-size: 16px;
    padding: 0 10px;
  }

  #partner .card-con .card {
    width: 100%;
    min-height: auto;
  }



  #partner .btn {
    font-size: 16px;
    padding: 10px 16px;
  }
}

