 /* Custom color scheme */
        :root {
            --leo-blue: #1a4f8b;
            --leo-gold: #f4c430;
            --leo-light: #f8f9fa;
            --leo-dark: #212529;
        }
        
        /* Custom hero header */
        .custom-hero {
            background: linear-gradient(135deg, var(--leo-blue) 0%, #2c3e50 100%);
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom:7px;
        }
        
        .top-logo-container {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
        
        .top-center-logo {
            max-height: 60px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }
        
        .hero-logo {
            max-height: 120px;
            width: 120px;
            transition: transform 0.3s ease;
        }
        
        .hero-logo:hover {
            transform: scale(1.05);
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero-text h4 {
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--leo-gold);
            margin-bottom: 1rem;
        }
        
        .hero-text p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-style: italic;
        }
        
    /* Announcement Bar Styles */
    .announcement-bar {
        position: relative;
        z-index: 100;
        border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    }
    
    .announcement-label {
        text-align: center;
    }
    
    .announcement-content {
        overflow: hidden;
        white-space: nowrap;
    }
    
    .marquee {
        display: inline-block;
        white-space: nowrap;
        animation: marquee-scroll linear infinite;
        padding-left: 100%;
    }
    
    .marquee:hover {
        animation-play-state: paused;
    }
    
    .announcement-item {
        display: inline-block;
        margin-right: 2rem;
        position: relative;
    }
    
    .announcement-item:after {
        content: "•";
        position: absolute;
        right: -1.5rem;
        color: rgba(255,255,255,0.3);
    }
    
    .announcement-badge {
        display: inline-block;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: bold;
        text-transform: uppercase;
        background: rgba(17, 14, 14, 0.2);
    }
    
    .announcement-item a:hover .announcement-badge {
        background: var(--bs-warning);
        color: var(--bs-dark);
    }
    
    @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
    
    /* Hero Section Styles */
    /* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('./assets/images/college.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: -2;
        transition: background-image 0.5s ease;
    }
    
    .hero-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
        z-index: -1;
    }
    
    .hero-logo {
        max-width: 200px;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    }
    
    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }
    
    /* Stats Section Styles */
    .stats-section {
        background: white;
        position: relative;
        margin-top: -50px;
        z-index: 10;
    }
    
    .stat-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem;
        display: flex;
        align-items: center;
        height: 100%;
        transition: transform 0.3s ease;
        cursor: pointer;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3498db, #2c3e50);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 1rem;
        color: #7f8c8d;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.5rem;
    }
     /* Event Cards */
    .event-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .event-card-img {
        position: relative;
        overflow: hidden;
        height: 250px;
    }
    
    .event-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .event-card:hover .event-card-img img {
        transform: scale(1.1);
    }
    
    .event-date-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }
    
    .event-day {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--leo-blue);
        line-height: 1;
        display: block;
    }
    
    .event-month {
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--leo-gold);
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .event-card .card-body {
        padding: 2rem;
    }
    
    .event-card .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--leo-blue);
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .event-meta {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    /* Additional carousel styles for index page */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}


    /* News Cards */
    .news-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .news-date {
        background: linear-gradient(135deg, var(--leo-blue), #2c3e50);
        color: white;
        padding: 1.5rem;
        text-align: center;
        flex-shrink: 0;
    }
    
    .news-day {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        display: block;
    }
    
    .news-month {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 0.5rem;
        font-weight: 600;
    }
    
    .news-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .news-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--leo-blue);
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .news-excerpt {
        color: #6c757d;
        margin-bottom: 2rem;
        line-height: 1.6;
        flex-grow: 1;
    }
    
    .news-link {
        color: var(--leo-blue);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    
    .news-link:hover {
        color: var(--leo-gold);
        transform: translateX(5px);
    }

    /* CTA Section Styles */
    .cta-section {
        background: linear-gradient(135deg, var(--leo-red), #c82333);
        position: relative;
        overflow: hidden;
    }
    
    .cta-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="rgba(255,255,255,0.1)" d="M0,0L1000,1000L1000,0Z"/></svg>') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }
    
    .cta-section .container {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        font-size: 3rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cta-section .lead {
        font-size: 1.4rem;
        opacity: 0.95;
    }

    .cta-section .btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-section .btn-light:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
    /* News & Events Card Styles */
    .section-header {
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }
    
    .section-title:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #3498db, #2c3e50);
    }
    
    .section-subtitle {
        color:rgb(21, 22, 22);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .news-card, .event-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
        height: 100%;
        display: flex;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .news-card:hover, .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .news-date, .event-date {
        width: 80px;
        background: linear-gradient(135deg, #3498db, #2c3e50);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .news-day, .event-day {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .news-month, .event-month {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.25rem;
    }
    
    .news-content, .event-content {
        padding: 1.5rem;
        flex-grow: 1;
    }
    
    .news-title, .event-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    
    .news-excerpt {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
    }
    
    .event-meta {
        margin-bottom: 1.5rem;
    }
    
    .event-location {
        display: block;
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    .news-link, .event-link {
        color: #3498db;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .news-link:hover, .event-link:hover {
        color: #2c3e50;
    }
    
    /* CTA Section Styles */
    .cta-section {
        background: linear-gradient(135deg, #2c3e50, #3498db);
        position: relative;
        overflow: hidden;
    }
    
    .cta-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://accet-site-media-trial.s3.ap-northeast-1.amazonaws.com/cocurricular/clubs/leobg.webp') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }
    
    .cta-section .container {
        position: relative;
        z-index: 1;
    }
    
/* Mobile responsiveness for carousels */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        opacity: 1; /* Always show controls on mobile */
        width: 30px;
        height: 30px;
    }
}
    /* Responsive Styles */
    @media (max-width: 992px) {
         .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text h4 {
                font-size: 1.2rem;
            }
            
            .hero-logo {
                max-width: 100px;
                max-height: 100px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .top-center-logo {
                max-width:50px;
                max-height: 50px;
            }
        }
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            font-size: 1.75rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    
    
    @media (max-width: 768px) {
         .custom-hero {
                padding: 1rem 0;
            }
            
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .hero-text h4 {
                font-size: 1.1rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .hero-logo {
                max-height: 80px;
                margin-bottom: 0.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
        .announcement-label {
            display: flex;
        }
        
        .hero-section {
            min-height: 600px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .hero-logo {
            max-width: 150px;
        }
        
        .stat-card {
            flex-direction: column;
            text-align: center;
            padding: 1.5rem;
        }
        
        .stat-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.75rem;
        }
        
        .hero-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .hero-cta .btn:last-child {
            margin-bottom: 0;
        }
        
        .news-card, .event-card {
            flex-direction: column;
        }
        
        .news-date, .event-date {
            width: 100%;
            flex-direction: row;
            padding: 1rem;
        }
        
        .news-day, .event-day {
            margin-right: 1rem;
        }
        
        .news-month, .event-month {
            margin-top: 0;
        }
    }

