@font-face {
    font-family: 'Cyberpunk';
    src: url('/BlackOpsOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* General Styles */
body {
    font-family: 'Cyberpunk', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0f1e;
    color: #e0e0e0;
    /*text-align: center;*/
}

/* Header */
header {
    background-color: #10172a;
    color: #00d9ff;
    padding: 20px;
    box-shadow: 0 0 15px #00d9ff;
    text-align: center
}

header h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center
}

header p {
    font-size: 1.2em;
}

/* Navigation */
nav {
    background-color: #162238;
    padding: 12px;
    box-shadow: 0 0 8px #00d9ff;
    text-align: center
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 3%;
}

nav ul li a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: 0.3s;
}

nav ul li a:hover {
    text-shadow: 0 0 3px #00f7ff;
    color: #00f7ff;
}

/* Main Content */
main {
    padding: 20px;
    background: #10172a;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00d9ff;
}

h2 {
    color: #00d9ff;
    text-shadow: 0 0 1px #00f7ff;
}

/* Footer */
footer {
    background-color: #10172a;
    color: #00d9ff;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 0 10px #00d9ff;
    text-align: center
}
.image {
    float: right;
    margin-right: 3%;
    width: 18%;
    height: auto;
}

.main-section {
    background: #10172a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00d9ff;
    width: 80%;
    margin: 20px auto;
    text-align: left;
}


/* Contact Page Styles */
.contact-section {
    background: #10172a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00d9ff;
    width: 80%;
    margin: 20px auto;
    text-align: left;
}

.contact-section h2 {
    color: #00d9ff;
    /*text-shadow: 0 0 5px #00f7ff;*/
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.2em;
    color: #00d9ff;
    margin-top: 10px;
}

input, textarea {
    background: #0a0f1e;
    color: #e0e0e0;
    border: 1px solid #00d9ff;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: #00f7ff;
    box-shadow: 0 0 10px #00f7ff;
    outline: none;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: #00d9ff;
    color: #0a0f1e;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #00f7ff;
    box-shadow: 0 0 10px #00f7ff;
}






/* About Page Styles */
.about-section {
    background: #10172a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00d9ff;
    width: 80%;
    margin: 20px auto;
    
}

.about-section h2 {
    color: #00d9ff;
    /*text-shadow: 0 0 5px #00f7ff;*/
    text-align: center;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 1.2em;
    color: #e0e0e0;
    padding: 5px 0;

}





/* studies Page Styles */
.studies-section {
    background: #10172a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00d9ff;
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.studies-section h2 {
    color: #00d9ff;
    /*text-shadow: 0 0 5px #00f7ff;*/
}

.pdf-box {
    background: #0a0f1e;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px #00d9ff;
    width: 95%;
    text-align: center;
}

.pdf-box h3 {
    color: #00d9ff;
}

.pdf-box p {
    font-size: 1.1em;
    color: #e0e0e0;
}

.pdf-viewer {
    width: 100%;
    height: 950px;
    border: none;
    box-shadow: 0 0 10px #00d9ff;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .pdf-viewer {
        height: 300px;
    }
}
