*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body{
    background-color: black;
    color: white;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a{
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s *var(--i));
}

.navbar a:hover,
.navbar a.active{
    color: rgb(51, 116, 116);
}

.home{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.home-content{
    max-width: 600px;
}

.home-content h1{
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay:1s ;
}

.home-content h3{
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3 span{
    color: rgb(40, 137, 158);
}

.home-content p{
    font-weight: 400;
    font-size: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 2s;
}

.home-img img {
    max-width: 450px;
    margin-right: -20px;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 1s;
    border-radius: 50%;
    object-fit: cover;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgb(87, 199, 199);
    border-radius: 50%;
    font-size: 20px;
    color: rgb(40, 137, 158);
    text-decoration: none;
    box-shadow: 0 0 20px rgb(70, 156, 156);
    margin: 30px 14px 30px 0;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s *var(--i));
}

.btn{
    display: inline-block;
    padding: 12px 28px;
    background-color: rgb(40, 137, 158);
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(40, 137, 158);
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 0;
    animation :slideTop 1s ease forwards ;
    animation-delay: 2s;
}

/* About Page */
.about {
    padding: 100px 10%;
    text-align: center;
}

.about .section-title h2 {
    color: rgb(40, 137, 158);
    font-size: 36px;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Skills Page */
.skills {
    padding: 100px 10%;
    text-align: center;
}

.skills .section-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.skills-content {
    display: flex;
    justify-content: center;
}

.skills-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.skills-category {
    margin-bottom: 40px;
}

.skills-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.skills-row img {
    width: 60px;
    height: 60px;
}

/* Contact Page */
.contact {
    padding: 100px 10%;
    text-align: center;
}

.contact .section-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content label {
    font-size: 18px;
}

.contact-content input,
.contact-content textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-content button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(40, 137, 158);
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-content button:hover {
    background-color: rgb(30, 120, 140);
}

/* Education Section */
.education {
    padding: 100px 10%;
    background-color: #000000;
    text-align: center;
}

.education .section-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: rgb(40, 137, 158);
}

.education-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.education-item h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: rgb(51, 116, 116);
}

.education-item p {
    font-size: 20px;
    color: #ffffff;
}

/* Projects Section */
.projects {
    padding: 100px 10%;
    background-color: #000000;
    text-align: center;
}

.projects .section-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: rgb(40, 137, 158);
}

.projects-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.project-item h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: rgb(51, 116, 116);
}

.project-item p {
    font-size: 20px;
    color: #ffffff;
}

@keyframes slideLeft{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideBottom{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
