﻿
/* Main container for carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel content wrapper */
.carousel-content {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Individual slides */
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Carousel images */
.carousel-image {
    width: 100%;
    height: 80%;
    display: block;
    max-height: 400px; /* Set a max height to ensure proper display */
    object-fit: inherit;
}

/* Responsive image */
.img-responsive {
    max-width: 100%;
    height: 80%;
}

.important-text-container {
    margin-top: 20px;
    text-align: center;
}

.important-text {
    font-size: 24px;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Main container for carousel */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel content wrapper */
.carousel-items {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Individual slides */
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

/* Carousel images */
.carousel-image1 {
    width: 100%;
    height: 80%;
    display: block;
    max-height: 400px; /* Set a max height to ensure proper display */
    object-fit: inherit;
}

/* Responsive image */
.img-responsive {
    max-width: 100%;
    height: 80%;
}

.info-text-container {
    margin-top: 20px;
    text-align: center;
}

.info-text {
    font-size: 24px;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

p {
    color: #000000;
}

li {
    color: #000000;
}


