/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Event Section */
#events {
    padding: 50px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.event-card p {
    margin: 10px 0;
    color: #555;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    background: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}
/*  */

.poster {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 8px solid #1a73e8;
    border-radius: 15px;
    text-align: center;
    color: #000;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header img {
    width: 80px;
    height: auto;
    animation: bounce 2s infinite;
}

.header h1 {
    flex: 1;
    color: #1a73e8;
    font-size: 36px;
    margin: 0 20px;
    animation: fadeIn 2s ease-in-out;
    text-align: center;
}

.poster h2 {
    color: #e91e63;
    font-size: 28px;
    margin: 10px 0;
    animation: fadeIn 2.5s ease-in-out;
}

.poster .details {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.8;
    animation: fadeIn 3s ease-in-out;
}

.poster .highlight {
    color: #1a73e8;
    font-weight: bold;
}

.poster .highlight-important {
    color: #e91e63;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
}

.jobs-section {
    margin: 30px 0;
    animation: fadeIn 3.5s ease-in-out;
}

.jobs-section h3 {
    color: #1a73e8;
    font-size: 22px;
    margin-bottom: 20px;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: left;
}

.job-item {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    border: 2px solid #1a73e8;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.footer {
    margin-top: 30px;
    font-size: 18px;
    color: #e91e63;
    animation: fadeIn 4.5s ease-in-out, pulse 2s infinite;
    font-weight: bold;
}

.center-logo {
    margin: 20px auto;
    width: 120px;
    height: auto;
    animation: bounce 2.5s infinite;
}

.popup {
    /* position: fixed; */
    margin-top: -169px;
    margin-left:  1072px;
    margin-bottom: 30px;
    top: 520px;
left: 80%;
    width: 264px;
    background: #e91e63;
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    animation: slideIn 2s ease-in-out;
    transform: skewY(11deg);
}

.popup span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #ffc107;
}


