.custom-carousel {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.custom-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom-carousel-images {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.custom-img {
    width: 18%;
    border-radius: 8px;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
}

.custom-carousel-control.prev {
    left: 10px;
}

.custom-carousel-control.next {
    right: 10px;
}
   .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            width: 100%;
            background: #f8f9fa;
            padding: 10px 0;
        }
        .marquee {
            display: flex;
            gap: 20px;
            animation: marquee 20s linear infinite;
            width: max-content;
        }
        .marquee img {
            height: 50px;
            width: auto;
            transition: transform 0.3s;
        }
        .marquee-container:hover .marquee {
            animation-play-state: paused;
        }
        @keyframes marquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
       .carousel-nav-icon {
   height: 48px;
   width: 48px;
}
.carousel-item {
   .col, .col-sm, .col-md {
      margin: 8px;
      height: 300px;
      background-size: cover;
      background-position: center center;
   }
   }

   /* Light Silver Background */
        .section-container {
            padding: 20px;
            border-radius: 10px;
            background: #f8f9fa; /* Light silver background */
            box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
        }
        .content-box {
            height: 450px;
            overflow-y: auto;
            border: 1px solid #ddd;
            padding: 15px;
            background: white;
            border-radius: 8px;
        }
        .nav-tabs {
            justify-content: center;
        }
        .nav-tabs .nav-link {
            background-color: #012B72;
            color: white;
            border-radius: 5px 5px 0 0;
        }
        .nav-tabs .nav-link.active {
            background-color: #012060;
            color: white;
        }
        /* Updated Date Box */
        .date-box {
            background: #012B72;
            color: white;
            padding: 8px;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 70px;
            text-align: center;
            font-weight: bold;
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
            line-height: 1.2;
        }
        .date-box .month {
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .date-box .day {
            font-size: 12px;
        }
        .section-heading {
            color:  #012B72;
            padding: 15px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            border-radius: 8px;
            text-transform: uppercase;
        }
        .equal-height {
            display: flex;
            flex-direction: column;
        }
        .content-box {
            flex-grow: 1;
        }
        /* Notice Item Styling */
        .notice-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .notice-text {
            flex-grow: 1;
            padding-left: 10px;
        }
        .notice-link {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #012B72;
            text-decoration: none;
            font-weight: bold;
        }
        .notice-link i {
            margin-right: 5px;
        }

 

        .swiper-container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            padding: 15px 0;
        }
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .swiper-slide img {
            width: 100px;
            height: auto;
         
            transition: 0.3s ease-in-out;
        }
        .swiper-slide img:hover {
           
            transform: scale(1.1);
        }

/* nothing below this point is needed*/
