
/* about background-color:#f7f9fc;*/
.about{background:linear-gradient(360deg,#f7f9fc 50%,#e5efff );padding:60px 20px;}
.about-container{max-width:1200px;display:flex;align-items:center;justify-content:space-between;gap:40px;margin:auto;}
.about-text { flex:1;animation:fadeInleft 1s ease; }
.about-text h2 {margin-bottom:20px;}
.about-text p { margin-bottom:20px;line-height:1.8;}
.about-image { flex:1;animation:fadeInleft 1s ease; }
.about-image img { width:100%;height:350px;border-radius:8px;object-fit:cover;object-position:center;
	box-shadow:0 4px 12px rgba(0,0,0,0.1);}
.about-profile{ text-align:center;}
.about-profile img{ margin-bottom:30px;width:100%;height:auto;}

	
/* Gallery  */
.gallerys{ background:#f7f9fc;padding:60px 20px;text-align:center;}
.gallerys-container{max-width:1200px;margin:auto;}
.gallerys-grid{ display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:0px;}
.gallery-card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 6px rgba(0,0,0,0.1);transition:transform 0.3s;}
.gallerys img{ width:100%;height:auto;object-fit:cover;filter:grayscale(30%);transition:0.3s;}
.gallerys img:hover{filter:grayscale(0%);transform:scale(1.05);}	

/* Safety */
.about-text ul li{ padding-left:30px ;}
	
/* Responsive */
@media (max-width: 768px) {
  .about-container{flex-direction:column;text-align:left; }
  .gallerys-grid{grid-template-columns:repeat(2,1fr);gap:10px;}

}