@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #121212;
    color: #ffffff;
}
header, footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 10;
}
header h1 {
    font-size: 2.5em;
    margin: 0;
    animation: fadeInDown 1s ease-out;
}
main {
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    background-color: #121212;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    position: relative;
    z-index: 5;
}
section {
    margin-bottom: 60px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}
section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00ffff;
}
.section-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #00ffff;
}
.services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}
.services-list li {
    margin: 20px 0;
    text-align: center;
    width: 100%;
    max-width: 600px;
}
.services-list h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00ffff;
}
.services-list p {
    font-size: 1em;
    color: #cccccc;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}
.contact-form input, .contact-form textarea {
    width: calc(100% - 20px);
    padding: 15px;
    margin: 15px auto;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-sizing: border-box;
    transition: background-color 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #00ffff;
}
.contact-form input:focus, .contact-form textarea:focus {
    background-color: rgba(255, 255, 255, 0.2);
}
.contact-form button {
    padding: 15px 30px;
    background-color: #00ffff;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1em;
}
.contact-form button:hover {
    background-color: #00ccff;
}
.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
    padding-top: 60px;
}
.modal-content {
    background-color: #1f1f1f;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #00ffff;
    text-decoration: none;
    cursor: pointer;
}
footer a {
    color: #00ffff;
    text-decoration: none;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.highlight {
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px;
    margin: 20px 0;
}
.profile-photo {
    width: 100%;
    max-width: 234px;
    height: auto;
    border-radius: 50%;
    margin: 20px auto;
}