body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}
header {
    background-color: #4B0082;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: slidefromtop 0.8s ease-out;
    z-index: 10;
    position: relative;
}
header img {
    height: 60px;
    filter: brightness(0) invert(1);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links a {
    background-color: #C71585;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nav-links a:hover {
    background-color: #e052a0;
    transform: translateY(-2px);
}
.cover {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("../IMAGES/Cover_image.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadein 1.2s ease-in-out;
    overflow: hidden;
    box-shadow: inset 0px 20px 40px rgba(0, 0, 0, 0.3);
}
.cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.cover-logo {
    z-index: 2;
    height: 300px;
    filter: brightness(0) invert(1);
    opacity: 0;
    transform: scale(0.9);
    animation: logoFadeIn 1.5s ease forwards;
}
.cover-theme {
    z-index: 2;
    margin-top: 20px;
    height: 80px;
    opacity: 0;
    animation: themeUnfold 2s ease forwards;
    animation-delay: 1s;
    transform-origin: left;
    filter: brightness(0) invert(1);
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    margin-top: 40px;
    gap: 20px;
    animation: fadein 1s ease-in-out;
}
.icon-img {
    height: 108px;
    width: auto;
}
.separator-line {
    width: 3px;
    height: 80px;
    background-color: #4B0082;
}
.title-img {
    height: 110px;
    width: auto;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: calc(33% - 40px);
    font-size: 15px;
    line-height: 1.6;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.special-notices {
    background-color:rgb(219, 186, 243);
    border: 2px solidrgb(248, 58, 184);
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.special-notices h2 {
    font-family: 'Poppins', sans-serif;
    color: #e65100;
    font-size: 28px;
    margin-bottom: 15px;
}
.special-notices ul {
    list-style: none;
    padding: 0;
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #4e342e;
    text-align: left;
    line-height: 1.6;
}
.special-notices ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.special-notices ul li::before {
    content: "🔔";
    position: absolute;
    left: 0;
}

.card p {
    margin: 8px 0;
}
.proposal-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    background-color: #C71585;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}
.proposal-link:hover {
    background-color: #e052a0;
}
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.highlight-year {
    background-color: #fff3cd;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 25px;
    color: #856404;
    margin-right: 6px;
}
.highlight-cast {
    background-color: #e3f2fd;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 20px;
    color: #0d47a1;
    margin-right: 6px;
}
.highlight-profession {
    background-color: #e8f5e9;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 20px;
    color: #1b5e20;
    margin-right: 6px;
}
.highlight-status {
    background-color: #fce4ec;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 20px;
    color: #ad1457;
    margin-right: 6px;
}
.details {
    text-align: justify;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    white-space: pre-line;
    margin-bottom: 10px;
}
.details p {
    margin-bottom: 10px;
}
select {
    padding: 10px 16px;
    font-size: 16px;
    border: 2px solid #4B0082;
    border-radius: 25px;
    background-color: #fff;
    color: #4B0082;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
select:focus {
    outline: none;
    border-color: #C71585;
    box-shadow: 0 0 0 4px rgba(199, 21, 133, 0.2);
}
label {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.see-more {
    color: #4B0082;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    text-decoration: underline;
}
.show-more-button {
    background-color: #4B0082;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.show-more-button:hover {
    background-color: #6a0dad;
}
.show-more-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}
@keyframes fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes slidefromtop {
    0% {transform: translateY(-100%); opacity: 0;}
    100% {transform: translateY(0); opacity: 1;}
}
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes themeUnfold {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}
.animate-fadein {
    animation: fadein 0.7s ease;
}
