    .service-box {
        background: rgb(255, 209, 0);
        padding: 20px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        height: 100%;
    }

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    }

    .facility-image {
        height: 200px;
        /* Set a fixed height for the image */
        overflow: hidden;
    }

    .facility-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* Ensure the image covers the entire container */
    }

    .facility-details {
        padding: 20px;
    }

    .facility-details h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .facility-details p {
        margin-bottom: 5px;
    }

    .carousel-item {
        height: 800px;
        /* Set a fixed height for all slides */
    }

    .slider-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensure the image covers the entire slide */
    }

    .white-text {
        color: white;
    }

    .black_bold {
        font-weight: bold;
        color: black;
    }

    .testimonial-carousel {
        text-align: center;
    }

    .testimonial-carousel .carousel-caption {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 80px;
        /* Increase padding */
        max-width: 1000px;
        /* Adjust max-width as needed */
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonial-carousel .carousel-caption img {
        border-radius: 50%;
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .testimonial-carousel .testimonial-content {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
    }

    .testimonial-carousel .testimonial-meta {
        font-size: 14px;
        color: #777;
    }

    .carousel-indicators {
        display: none;
    }

    .testimonial-content {
        font-size: 40px;
        line-height: 5;
        margin-bottom: 50px;
    }


    .toast {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 300px;
        background-color: #28a745;
        color: #fff;
    }

    .toast-header {
        background-color: #218838 !important;
        color: #fff;
    }

    .toast-body {
        padding: 10px;
    }

    @keyframes slideOut {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-100%);
            opacity: 0;
        }
    }

    .toast.slide-out {
        animation: slideOut 1.5s forwards;
        animation-delay: 2s;
        /* Add a delay before starting the animation */
    }

    .service-card {
        position: relative;
        overflow: hidden;
    }

    .service-card .card-body {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 0, 0.8);
        /* Yellow background with transparency */
        color: black;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .service-card:hover .card-body {
        transform: translateY(0);
    }

    .service-card .card-title,
    .service-card .card-text {
        margin: 0;
        padding: 10px;
    }

    .service-card .card-title {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .service-card .card-text {
        font-size: 1rem;
    }

    /* Animation for firecracker bursts */
    @keyframes firecracker {
        0% {
            opacity: 0;
            transform: scale(0.5);
        }

        50% {
            opacity: 1;
            transform: scale(1.5);
        }

        100% {
            opacity: 0;
            transform: scale(2);
        }
    }

    .highlight {
        position: relative;
        /* Needed to position firecracker animations */
        color: red;
        font-size: 1.5em;
        font-weight: bold;
        text-align: center;
        animation: bounce 1s infinite;
        /* Bounce animation for the date */
        animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
        /* Smooth timing */
        margin: 20px;
        background-color: rgba(255, 255, 255, 0.5);
        /* Transparent white background */
    }


    /* Firecracker base style */
    .firecracker {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: firecracker 0.8s infinite;
        animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    /* Utility class to set random colors */
    .random-color {
        background: radial-gradient(circle, var(--color), transparent);
    }

    /* Firecrackers with different delays and positions */
    .firecracker-1 {
        animation-delay: 0.1s;
        top: 20%;
        left: 30%;
    }

    .firecracker-2 {
        animation-delay: 0.4s;
        top: 50%;
        left: 70%;
    }

    .firecracker-3 {
        animation-delay: 0.7s;
        top: 80%;
        left: 20%;
    }

    .firecracker-4 {
        animation-delay: 0.5s;
        top: 60%;
        left: 90%;
    }

    .event-card {
        position: relative;
        /* Make the card position relative for absolute positioning of elements */
        display: flex;
        flex-direction: column;
        max-width: 400px;
        /* Adjust max-width as needed */
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .banner-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.25%;
        /* Aspect ratio 16:9 */
    }

    .banner-picture {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensure the image covers the entire container */
        transition: filter 0.3s ease;
        /* Smooth transition for hover effect */
    }

    .event-card:hover .banner-picture {
        filter: brightness(0.8);
        /* Darken the image a little on hover */
    }

    .dark-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* Initially darkened */
        opacity: 1;
        /* Initially shown */
        transition: opacity 0.3s ease;
        /* Smooth transition for hover effect */
    }

    .event-card:hover .dark-overlay {
        opacity: 0;
        /* Hide overlay on hover */
    }

    .event-details {
        position: relative;
        z-index: 1;
        /* Ensure details are above the overlay */
        padding: 20px;
    }

    .descbackground {
        background-color: rgb(255, 209, 0);

        height: 250px;
        color: black;
    }


    .testimonial-wrapper {
        position: relative;
        transform-style: preserve-3d;
        perspective: 1000px;
        transition: transform 1s ease;
    }

    .testimonial-wrapper.active {
        animation: testimonial-animation 5s infinite;
    }

    .testimonial-wrapper img {
        width: 150px;
        height: 150px;
        border-radius: 15px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }


    .testimonial-content {
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    @keyframes testimonial-animation {
        0% {
            transform: rotateY(0deg);
        }

        50% {
            transform: rotateY(180deg);
        }

        100% {
            transform: rotateY(0deg);
        }
    }

    .hover-glow:hover {
        box-shadow: 0 0 20px rgba(255, 255, 0, 1);
    }

    .Clients_bg_white {
        margin-bottom: -400px;
    }

    .fact {
        margin-top: -50px;
    }

    .carousel-item {
        transition: opacity 0.5s ease-in-out;
        opacity: 0;
        /* Start hidden */
    }

    .carousel-item.active {
        opacity: 1;
        /* Fully visible when active */
    }

    .carousel-caption {
        animation: fadeInUp 1s ease-in-out forwards;
    }

    @keyframes fadeInUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .carousel-caption h1 {
        font-size: 3rem;
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 2px black;
        margin-bottom: 1rem;
    }

    .carousel-caption a {
        background: rgba(255, 255, 0, 0.8);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        color: black;
        text-transform: uppercase;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .carousel-caption a:hover {
        background: rgba(255, 255, 0, 1);
    }

    @keyframes shimmer {
        0% {
            background-position: -500px 0;
        }

        100% {
            background-position: 500px 0;
        }
    }

    .shimmer {
        background: linear-gradient(90deg, rgba(255, 128, 0, 1) 0%, rgba(254, 223, 113, 1) 44%, rgba(236, 255, 0, 1) 100%);
        background-size: 1000px 100%;
        animation: shimmer 1.5s infinite linear;
        display: inline-block;
        position: relative;
    }

    .tangerine {
        font-family: 'Tangerine', cursive;
        color: #FF4500;
        /* Optional: you can adjust the color to your preference */
    }

    .custom-button {
        border-radius: 4px;
        background-color: orange;
        border: none;
        color: white;
        text-align: center;
        font-size: 32px;
        padding: 16px;
        width: 220px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 36px;
        box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
        position: relative;
        display: inline-block;
    }

    .custom-button:after {
        content: '»';
        position: absolute;
        opacity: 0;
        top: 14px;
        right: -20px;
        transition: 0.5s;
    }

    .custom-button:hover {
        padding-right: 24px;
        padding-left: 8px;
    }

    .custom-button:hover:after {
        opacity: 1;
        right: 10px;
    }