﻿.timings-section {
    padding: 60px 0;
}

.timing-card {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

    .timing-card:hover {
        transform: translateY(-8px);
    }

    .timing-card .card-body {
        padding: 30px;
    }

.timing-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5ebee3;
}

.highlight-red {
    color: #c82333;
}

.highlight-orange {
    color: #54c1e5;
}

.uniform-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.uniform-subtitle {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

.notes-section {
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.note-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

    .note-item p {
        margin-top: 0px;
    }

.note-icon {
    background: #777777;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.uniform-box li, .uniform-box p, .uniform-box h2, .uniform-box h6 {
    text-align: left !important
}
.schedule-card {
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

    .schedule-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .schedule-card .card-header {
        font-weight: 600;
        font-size: 1.3rem;
        text-align: center;
        padding: 25px 15px;
        border: none;
    }

/* Card background gradients */
.bg-annual {
    background: linear-gradient(135deg, #54c1e5, #2fa4c2);
}

.bg-calendar {
    background: linear-gradient(135deg, #fee25f, #f9c739);
    color: #333 !important;
}

.bg-exam {
    background: linear-gradient(135deg, #777777, #555555);
}

.schedule-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .schedule-card ul li {
        background: rgba(255,255,255,0.15);
        margin: 8px 15px;
        border-radius: 10px;
        padding: 12px;
        text-align: center;
        transition: background 0.3s;
    }

        .schedule-card ul li a {
            text-decoration: none;
            color: inherit;
            font-weight: 500;
            display: block;
        }

        .schedule-card ul li:hover {
            background: rgba(255,255,255,0.35);
        }

/* Entrance animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

    .fade-in:nth-child(1) {
        animation-delay: 0.2s;
    }

    .fade-in:nth-child(2) {
        animation-delay: 0.4s;
    }

    .fade-in:nth-child(3) {
        animation-delay: 0.6s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}