﻿@-webkit-keyframes slide_animation {
    0% {
        left: 0px;
    }

    10% {
        left: 0px;
    }

    20% {
        left: -950px;
    }

    30% {
        left: -950px;
    }

    40% {
        left: -1900px;
    }

    50% {
        left: -1900px;
    }

    60% {
        left: -2850px;
    }

    70% {
        left: -2850px;
    }

    80% {
        left: -3800px;
    }

    90% {
        left: -3800px;
    }

    100% {
        left: 0px;
    }
}

.slider-frame {
    width: 100%; /* full width of container */
    max-width: 900px; /* original width */
    height: auto; /* allow height to adjust */
    overflow: hidden;
    position: relative;
    margin-top: 5px;
}

.slide-img {
    width: 100%;
    height: 500px; /* fixed card-like banner */
    max-width: 900px;
    object-fit: cover; /* crops edges to fit */
    border-radius: 12px;
}

.slider-images {
    display: flex;
    position: relative;
    width: max-content; /* adjusts automatically */
    animation: slide_animation 20s infinite alternate;
}


.img-container {
    width: 100%;
    max-width: 900px;
    margin-right: 50px;
    flex-shrink: 0;
}

    .img-container img {
        border: 3px solid #fdd040;
        border-radius: 10px 10px 10px 10px;
    }

.main_text {
    color: black;
    font-size: 20px;
    font-weight: 400;
}

.main_border{
    margin-left : 5px;
    margin-top : 15px;
}

.bottom_border {
    margin-top: 5px;
}

footer.footer_border {
    background-color: #198754;
    color: white;
    width: 100%;
}

.home_design {
    border: 1px solid;
    border-color: #198754;
    margin: 5px 2px 20px 2px;
    padding-left: 3px;
    border-radius: 5px;
    background-color: white;
}

.bottom_note {
    color:red;
}

.mainDiv {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (if the row has height) */
    text-align: center; /* Ensure text within the flex container is centered */
}

/*aside {
    background-color: #0F743C;
}*/

/*css asterisk forms*/
.required:after {
    content: " *";
    font-weight: bold;
    color: red;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main-content {
    flex: 1;
}

.heading{
    text-align: center;
}



.main {
   background-color: rgb(11, 132, 61)
}

.calendar-countdown {
    /* font-family: 'Segoe UI', sans-serif; */
    text-align: center;
    max-width: 700px;
    margin: 0px;
    padding: 0px;
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    border: rgba(65, 149, 68);
}

.countdown-message {
    font-size: 1rem;
    /* color: #4b5563; */
    margin-bottom: 1rem;
    color: green;
}

.calendar-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.calendar-unit {
    background: #f3f4f6;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 40px;
}

    .calendar-unit .value {
        font-size: 2rem;
        font-weight: bold;
        color: #1f2937;
    }

    .calendar-unit .label {
        /* font-size: 0.8rem; */
        color: #6b7280;
        text-transform: uppercase;
    }

.separator {
    /* font-size: 1.5rem; */
    color: #9ca3af;
    margin-top: -1rem;
}

.event-date {
    margin-top: 1rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.event-complete {
    color: #166534;
    align-items: center;
    justify-content: center;
}

.complete-icon {
    /* font-size: 3rem; */
    margin-bottom: 1rem;
}

.bi::before {
    display: inline-block;
    /* font-family: bootstrap-icons !important; */
}

