.aboutUs{
  display: flex;
  width: 100%;
  padding: 10% 5%; 
  justify-content: space-between;
  
  background-image: url('IMAGES/about.png');

}
.about-pic{
  overflow: hidden;
  width: 650px;
  height: 600px;
  border-radius: 35px;
}
.about-pic img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  
}
.about-text{
  width: 50%;
}
.about-text h1{
  font-size: 50px;
  font-family: "Gratelos", sans-serif;
  color: #fc6a9a;
  letter-spacing: 3px;
}
.about-text p{
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
   font-size: 19px;
   color: #fa85ac;
   font-weight: 400;
}
.about-text span{
  padding: 5px 30px;
  border: 1px solid #fc6a9a;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  color: #ff4d887a;
}
.about-text-content-2{
  display: flex;
  justify-content: space-between;
}
.stats h1{
  font-size: 80px;
  
}
.stats {
  text-align: center;
}
.stats p{
  font-family: "Gratelos", sans-serif;
  letter-spacing: 1.1px;
}
.MV{
  padding: 7% 5%;
}
.mission{
  display: flex;
  justify-content: space-between;
}
.mission-text h1{
  font-size: 50px;
  font-family: "Gratelos", sans-serif;
  color: #fc6a9a;
  letter-spacing: 3px;
}
.mission-text h1::after{
  content: "";
  display: block;

  width: 100px;
  height: 4px;

  background: #fc6a9a;

  margin-top: 10px;
  border-radius: 10px;
}
.mission-text p{
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
   font-size: 19px;
   color: #fa85ac;
   font-weight: 400;
}
.mission-pic{
  width: 550px;
}
.mission-pic img{
  object-fit: cover;
  width: 100%;
}
.vision-pic img{
  object-fit: cover;
  width: 100%;
}
.vision{
  display: flex;
  justify-content: space-between;
  padding: 5% 0;
}
.vision-pic{
  width: 550px;
}
.vision-text p{
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
   font-size: 19px;
   color: #fa85ac;
   font-weight: 400;
}
.vision-text h1{
  font-size: 50px;
  font-family: "Gratelos", sans-serif;
  color: #fc6a9a;
  letter-spacing: 3px;
}
.vision-text h1::after{
  content: "";
  display: block;

  width: 100px;
  height: 4px;

  background: #fc6a9a;
  align-items: center;
  margin-top: 10px;
  border-radius: 10px;
}
.employee-title{
  text-align: center;
  
}
.employee-title p::after{
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #fc6a9a;
  text-align: center;
  margin: 25px auto 0;
  border-radius: 10px;
}
.employee-title h1{
  font-size: 50px;
  font-family: "Gratelos", sans-serif;
  color: #fc6a9a;
  letter-spacing: 3px;
  margin-bottom: -5px;
  
}
.employee-title p{
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
   font-size: 19px;
   color: #fa85ac;
   font-weight: 400;
}
.employee-staff{
    width: 100%;
    padding: 5%;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 30px;
    justify-content: center;
}

.staff-card{
    background: rgba(255,255,255,0.65);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    
    overflow: hidden;

    transition: 0.4s ease;
    
}

.staff-card:hover{
    transform: translateY(-10px);
}

.staff-image{
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.staff-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s ease;
}

.staff-card:hover img{
    transform: scale(1.05);
}

.staff-info{
    padding: 25px;
    text-align: center;
}

.staff-info h2{
    font-size: 28px;
    
    color: #fc6a9a;

    font-family: "Gratelos", sans-serif;
    letter-spacing: 1.6px;
}

.staff-info span{
    display: inline-block;

    margin: 5px 0;

    padding: 1px 18px;

    border-radius: 20px;

    
    color: rgba(58, 58, 58, 0.353);

    font-size: 16px;

    font-family: "Roboto", sans-serif;
}

.staff-info p{
    margin-top: 15px;

    color: #777;

    line-height: 1.6;

    font-size: 19px;

    font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {

  .aboutUs{
    flex-direction: column;
    padding: 120px 20px 60px;
    gap: 40px;
    text-align: center;
    background-position: center;
    background-size: cover;
  }
  .about-text{
    width: 100%;
  }
   .about-text p,
  .mission-text p,
  .vision-text p,
  .staff-info p{

    text-align: justify;
    text-justify: inter-word;
    line-height: 1.9;

  }
  .about-text p,
  .mission-text p,
  .vision-text p{
    padding: 0 5px;
  }

  .about-pic{
    width: 100%;
    height: 350px;
  }

  .about-text h1{
    font-size: 38px;
    line-height: 1.2;
  }

  .about-text p{
    font-size: 16px;
    line-height: 1.7;
  }

  .about-text span{
    font-size: 14px;
  }

  .about-text-content-2{
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
  }

  .stats h1{
    font-size: 55px;
  }

  .stats p{
    font-size: 18px;
  }

  /* ================= MISSION ================= */

  .mission{
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .mission-pic{
    width: 100%;
  }

  .mission-text h1{
    font-size: 38px;
  }

  .mission-text p{
    font-size: 16px;
    line-height: 1.7;
  }
  .mission-text h1::after{

    width: 80px;
    height: 2px;
    text-align: center;
    margin: 10px auto 0;

  }

  /* ================= VISION ================= */

  .vision{
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
    padding: 60px 0;
  }

  .vision-pic{
    width: 100%;
  }

  .vision-text h1{
    font-size: 38px;
  }

  .vision-text p{
    font-size: 16px;
    line-height: 1.7;
  }
  .vision-text h1::after{

    width: 80px;
    height: 2px;
    text-align: center;
    margin: 10px auto 0;

  }
    .employee-staff{
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .staff-image{
        height: 500px;
    }

    .staff-info h2{
        font-size: 24px;
    }

    .staff-info p{
        font-size: 14px;
    }


}
.gallery-section{
      width: 100%;
      margin: auto;
      margin-bottom: 100px;
      padding: 50px 5%;
      background-color: #fa85ac2f;
    }

    .gallery-title{
      text-align:center;
      margin-bottom:50px;
    }
    .gallery-title span{
         color: #fc6a9a;
        padding: 5px 10px;
        border: solid 1px #fc6a9a;
        border-radius: 20px;
        font-size: 11px;
        display: inline-block;
        font-family: "Roboto", sans-serif;
        
        
    }

    .gallery-title h1{
     font-size: 50px;
     font-family: 'Gratelos', sans-serif;
     color: #fc6a9a;
     letter-spacing: 2px;
     font-weight: 500;
      margin-bottom:15px;
      margin-top: 15px;
    }

    .gallery-title p{
      color:#555;
      font-size:16px;
      line-height:1.7;
      font-family: "Roboto", sans-serif;
    }

    /* Masonry Layout */
    .gallery{
      columns:3 300px;
      column-gap:10px;
    }

    .gallery-item{
      margin-bottom:10px;
      overflow:hidden;
      border-radius:18px;
      cursor:pointer;
      background:#fff;
      break-inside:avoid;
      position:relative;
    }

    .gallery-item img{
      width:100%;
      display:block;
      transition:0.4s ease;
    }

    /* Hover Zoom */
    .gallery-item:hover img{
      transform:scale(1.08);
    }

    /* Lightbox */
    .lightbox{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100vh;
      background:rgba(0,0,0,0.85);
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      visibility:hidden;
      transition:0.3s;
      z-index:999;
      padding:20px;
    }

    .lightbox.active{
      opacity:1;
      visibility:visible;
    }

    .lightbox img{
      max-width:90%;
      max-height:90vh;
      border-radius:15px;
      animation:zoom .3s ease;
    }

    .gallery-btn{
      text-align: center;
      padding: 20px 0;
      margin-top: 50px;
    }

    .gallery-btn a{
      padding: 15px 25px;
      background-color: #fc6a9a;
      text-decoration: none;
      color: white;
      font-size: 16px;
      border-radius: 25px;
      transition: all .5s;
    }

    .gallery-btn a:hover{
      font-size: 18px;
    }

    @keyframes zoom{
      from{
        transform:scale(.7);
      }
      to{
        transform:scale(1);
      }
    }

    .close-btn{
      position:absolute;
      top:30px;
      right:50px;
      color:white;
      font-size:45px;
      cursor:pointer;
      
    }

    @media(max-width:768px){

      .gallery-title h1{
        font-size:38px;
      }

      .gallery{
        columns:2 150px;
      }
    }

    @media(max-width:500px){

      .gallery{
        columns:2;
      }

      .gallery-title h1{
        font-size:30px;
      }
      
    }
