.carousel-item img {
    width: 100%; /* Itakda ang lapad ng larawan sa 100% ng parent container */
    height: 800px; /* Itakda ang taas ng larawan sa iyong nais na sukat */
    object-fit: cover; /* I-adjust ang laki ng larawan upang saklawin ang parent container, ngunit panatilihin ang aspeto */
}

.carousel-caption {
    position: absolute; 
    top: 85% !important; 
    left: 50%; 
    width: 80%; 
    transform: translate(-50%, -50%); 
    color: white; 
    font-size: 24px; 
    text-align: center; 
    text-shadow: 
        -1px -1px 0 #ff0000,   
         1px -1px 0 #ff0000,
        -1px  1px 0 #ff0000,
         1px  1px 0 #ff0000,
         3px 3px 6px rgba(0, 0, 0, 0.7);
}

.carousel-item {
  transition: transform 0.5s ease-in-out;
}