

body {
    font-family: "poppins", Times, serif;
    background-color: rgb(238, 240, 242);
}



.feature {
    background-color: #0f2547;
    height: 45rem;
    position: relative; 
    width: 100%;
    overflow: hidden;
}

.feature__item {
    position: relative;
    width: 100%;
    height: 100%; 
    /* padding: 1rem; */
}

.feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.feature__content--container {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 2; 
}

.feature__item-title {
    color: white;
}

.feature__item-description {
    margin-top: 0.7rem;
    color: white;
}

.stats__items {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1.5rem;     
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.stats__item {
    flex: 1 1 140px;          
}

.stats__item h3 {             
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0;
}

.stats__item p {
    margin: 0.3rem 0 0;
    color: #64707f;
}

@media (min-width: 768px) {
    .stats__items {
        padding: 2rem 4rem;
        justify-content: space-between;
    }
    .stats__item {
        flex: 1 1 0;          
    }
}

.work {
    background-color: white;
}

.work__item {
    padding: 4rem 1.5rem;
    text-align: center;
}

.work__item--title {
    color: #d98e04;
}

.work__item-cardsection {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;         
    gap: 2rem;                
    justify-content: center;
}

.work__item-card {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    border-radius: 15px 15px 0 0;
    padding: 2rem;
    box-shadow: 0px -7px 0px 0px rgba(32,36,42,1);
    background-color: #f4f6f8;
    height: auto;
    min-height: 20rem;
    flex: 1 1 280px;          
    max-width: 320px;         
    box-sizing: border-box;
}

.work__item-card--description {
    color: #64707f;           
}

.work__item-card--title {
    font-size: 1.4rem;
    color: black;
}

.work__item-card--button {
    margin: 2rem auto 0;  
    padding: 0.5rem 1.2rem;
    border-radius: 14px;
    box-shadow: none;
    border: none;             
    background-color: #d98e04;
    cursor: pointer;
}

@media (max-width: 480px) {
    .work__item-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.persons {
    background-color: white;
    padding: 4rem 1.5rem;      
}

.person__section {
    background-color: #f4f6f8;
    margin: 2rem auto;          
    max-width: 700px;           
    padding: 2rem;
    flex-direction: column;     
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: 20px;        
    box-sizing: border-box;
}

.person__section--image {
    flex-shrink: 0;             
}

.person__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.person__section-details h3 {
    margin: 0 0 0.3rem;
}

.person__section-details p {
    margin: 0.2rem 0;
    color: #64707f;
}

.persons__heading {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .persons__heading {
        font-size: 3rem;
    }

    .person__section {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 2rem;
        margin: 3rem 0;
        max-width: 800px;
        border-radius: 0 50px 50px 0; 
    }
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.fade {
  animation: fadeEffect 0.8s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}







.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

[data-scroll].show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

