
 /* Banner Section */
 .banner {
    position: relative;
/* Replace with your banner image URL */
    background-size: cover;
    background-position: center;
    height: 400px; /* Adjust height as needed */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Overlay for darker background */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}
/* Title */
.banner-title {
    position: relative;
    z-index: 1;
    font-size: 48px; /* Adjust title size */
    font-weight: bold;
    margin: 0;
}
/* Breadcrumb */
.breadcrumb {
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin-top: 10px;
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 32px; /* Smaller title for tablets and mobile */
    }
    .breadcrumb {
        font-size: 14px;
    }
}



        /* Container for the timeline */
        .timeline-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Central vertical timeline line */
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: #66c0f4;
            transform: translateX(-50%);
        }

        /* Timeline items */
        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .timeline-item.left {
            left: 0;
        }

        .timeline-item.right {
            left: 50%;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item.left.visible {
            transform: translateX(-6px);
        }

        .timeline-item.right.visible {
            transform: translateX(6px);
        }

        .timeline-content {
    background-color: rgba(42, 71, 94, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(102, 192, 244, 0.7), 0 0 50px rgba(102, 192, 244, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    transition: box-shadow 0.5s ease, transform 0.3s ease;
}

/* Remove glow and slightly shrink on hover */
.timeline-content:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: scale(0.98);
}


        /* Avatar styling */
        .timeline-avatar {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 50%;
            border: 2px solid #66c0f4;
        }

        /* Timeline Date next to the central line */
        .timeline-date {
        position: absolute;
        top: 3px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #1b2838;
        color: #66c0f4;
        font-weight: bold;
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 10px;
        z-index: 1;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

        .timeline-title {
            font-size: 22px;
            color: #66c0f4;
            margin-bottom: 10px;
        }

        .timeline-description {
            font-size: 15px;
            color: #d4e0e6;
            line-height: 1.6;
        }

        /* Arrow to connect items with the central line */
        .timeline-item.left::before {
            content: '';
            position: absolute;
            top: 40px;
            right: -12px;
            width: 12px;
            height: 12px;
            background-color: #66c0f4;
            border-radius: 50%;
        }

        .timeline-item.right::before {
            content: '';
            position: absolute;
            top: 40px;
            left: -12px;
            width: 12px;
            height: 12px;
            background-color: #66c0f4;
            border-radius: 50%;
        }

        /* Responsive styles for mobile */
        @media (max-width: 768px) {
            .timeline-item {
                width: 100%;
                padding-left: 40px;
                padding-right: 40px;
            }

            .timeline-item.right {
                left: 0;
            }

            .timeline-container::before {
                left: 20px;
            }

            .timeline-item.left::before,
            .timeline-item.right::before {
                left: 20px;
                right: auto;
            }

            .timeline-date {
                left: 20px;
                transform: translateX(0);
            }
        }
        
        
         .video .carousel-item::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
            color: #fff;

        }

        .carousel-caption{
            color: white;
            z-index: 1;
        }
