body {
    font-family: 'Poppins', sans-serif;
}

.logo-text {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.bg-orange {
    height: 20px;
    background: #FF9933;
}

.middle-strip {
    background: white;
    padding: 2px;
}

.bottom-strip {
    height: 20px;
    background: #138808;
}

.welcome-text {
    font-weight: bold;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

/* Overlay Dark Effect */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

/* Custom Caption */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 500px;
    animation: fadeInUp 1s ease-in-out;
}

.carousel-caption-custom h2 {
    font-size: 36px;
    font-weight: bold;
}

.carousel-caption-custom p {
    font-size: 18px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media(max-width:768px){
    .carousel-item img {
        height: 250px;
    }

    .carousel-caption-custom h2 {
        font-size: 20px;
    }

    .carousel-caption-custom p {
        font-size: 14px;
    }
}
