.carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
}
.carousel-indicator.active {
    background-color: white;
}


/* styling for About us */

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}
.timeline-item:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f5290a;
}
.timeline-dot-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f5290a;
    border: 4px solid #e0f997;
}
.staff-card:hover .staff-image {
    transform: scale(1.05);
}
.staff-image {
    transition: transform 0.3s ease;
}
.timeline-image {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}
.timeline-content {
    display: flex;
    align-items: center;
}
.timeline-text {
    flex: 1;
}
@media (max-width: 768px) {
    .timeline-content {
        flex-direction: column;
    }
    .timeline-image {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        border-radius: 8px;
    }
}
.hero-section {
    /* background-image: url('../assets/images/abt-1.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}
.dropdown-menu a {
    color: #4a5568;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}
.dropdown-menu a:hover {
    background-color: #94d6f9;
    color: #09c02a;
}
.dropdown-toggle {
    cursor: pointer;
}


/* channel Moe */

.program-table tr:nth-child(even) {
    background-color: #f8fafc;
}
.program-table tr:hover {
    background-color: #f1f5f9;
}
.notice-card {
    transition: all 0.3s ease;
    border-left: 4px solid;
}
.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* PARTNERS ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite; /* Increased duration for more logos */
}

.animate-scroll:hover {
    animation-play-state: paused;
}