/* 🔥 เพิ่มความสูงให้ใหญ่ขึ้น */
.carousel-item {
    height: 650px;   /* จาก 500 → เพิ่มเป็น 650 */
}

/* 🔥 ให้รูปเต็มจริง */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 จัดข้อความกลาง */
.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    font-size: 45px;
    font-weight: bold;
    color: white;
}