* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f4f4f8;
    color: #222;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    animation: zoomIn 1s ease-in-out;
}

.hero .overlay {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 4em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    color: #f8f8f8;
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 25px;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

a[href^="mailto:"] {
    color: blue;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

main {
    padding: 40px 20px;
}

.card {
    background: #fff;
    margin: 30px auto;
    padding: 20px 30px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    animation: fadeIn 1s ease-out;
}

.card h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 5px;
    color: #6a11cb;
}

.card h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #ff6f61;
}

.card ul {
    margin-left: 20px;
    list-style-type: disc;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 10px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.pdf-button {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.pdf-button:hover {
    background: #1a2a6c;
    color: #fff;
    transform: scale(1.05);
}


@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
