*{
    margin:0; padding:0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
    background: url(background.jpg);
}

section{
    padding: 2rem 9%;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    border-style: solid;
    border-color: #fff;
    /* background: #333; */
    color: #fff;
    padding:.9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover{
     background-color: rgb(101, 100, 100);
}

header {
position: fixed;
top: 0; left: 0; right:0;
/* background: #fff; */
padding: 2rem 9%;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
box-shadow: 0.5rem 1rem □ rgba(0,0,0,.1);
}
header .logo {
    font-size: 3rem;
    color: #5f5d5d;
    font-weight: bolder;
}
header .logo span {
    color: var(--pink);
}
header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #999595;
}
header .navbar a:hover{
    color: var(--pink);
}
header .icons a {
    font-size: 2.5rem;
    color: #333;
    margin-left: 1.5rem;
}
header .icons a:hover {
    color: var(--pink);
}

.about{
display: flex;
align-items: center;
min-height: 100vh;
background: url(background2.jpg);
background-size: cover;
background-position: center;
    }
.about .content {
        max-width: 50rem;
        text-align: center;
        margin-left: 30%;
        }
.about .content h1{
         font-size: 30px;
        color: #c4bdbd;
        }
.about .content span{
        font-size: 2.9rem;
        color:var(--pink);
        color:#a89898;
        padding: 1rem 0;
        line-height: 1.5;
        }
.about .content p{
        font-size: 1.5rem;
        color:#ffffff;
        padding: 1rem 0;
        line-height: 1.5;
        }
        .title h1{
            color: #c4bdbd;
            text-align: center;
        }
.skill-container{
            display: flex;
            flex-wrap: wrap; 
            gap: 2.5rem; 
            padding-top: 5rem;
            padding-bottom: 5rem;
            min-height: 60vh;
            }
.skill-container .skills{
            border-style: solid;
            border-color: #ffffff;
            border:.1rem solid rgba(0,0,0,.1);
            padding:2rem;
            display: flex;
            align-items: center;
            flex:1 1 25rem; 
            box-shadow: 0 .5rem 1.5rem rgb(236, 235, 235);
            }
.skill-container .skills h3{
                color: #ffffff;
                padding-bottom: .5rem;
                font-size: 2rem;
                }
.skill-container .skills span{
                color: #e9d5d5;
                font-size: 2rem;
                }
.project-container{
            min-height: 60vh;

                }
.projects h2{
    color: #ffffff;
    padding-bottom: 2rem;
    font-size: 2rem;
    margin-left: 7%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.education-container{
    min-height: 50vh;

        }
.education h2{
            color: #ffffff;
            padding-bottom: 2rem;
            font-size: 2rem;
            margin-left: 7%;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        }
        

.certificate-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 9%;
    
    min-height: 50vh;
}

.certificate {
    flex: 1 1 250px;
    max-width: 300px;
    background: #1d1b1b;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 .5rem 1.5rem rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: scale(1.05);
}

.certificate img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.certificate p {
    font-size: 1.5rem;
    color: #e9d5d5;
    margin: 0;
}
.footer {
    background-color: #111;
    padding: 3rem 2rem;
    text-align: center;
    color: #ccc;
    font-size: 1.4rem;
    border-top: 1px solid #333;
    position: relative;
    z-index: 10;
}

.footer-logo h2 {
    font-size: 2.2rem;
    color: var(--pink);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite ease-in-out;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    animation: rotateLogo 3s linear infinite;
}

@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #bbb;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink);
    transform: scale(1.1);
}

.footer-copy {
    font-size: 1.3rem;
    color: #777;
    margin-top: 2rem;
}

/* Responsive Footer */
@media (min-width: 600px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
    }

    .footer-links a {
        margin: 0 1.5rem;
    }
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: url(background2.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
}

.profile-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--pink);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 2rem;
}

.profile-photo img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 0 25px rgba(255, 75, 145, 0.7);
}

@media (min-width: 768px) {
    .about {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .profile-photo {
        margin-right: 5rem;
    }
}
/* Responsive Layout */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }

    header {
        padding: 1.5rem 5%;
    }

    .about {
        flex-direction: column;
        padding: 4rem 5%;
        text-align: center;
    }

    .about .content {
        margin-left: 0;
        max-width: 90%;
    }

    .profile-photo {
        margin-bottom: 2rem;
    }

    .skill-container {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .certificate-container {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    header .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .projects h2,
    .education h2 {
        margin-left: 0;
        text-align: center;
    }

    .footer-logo h2 {
        font-size: 1.8rem;
    }

    .footer-links a {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 52%;
    }

    .btn {
        font-size: 1.4rem;
        padding: 0.7rem 2.5rem;
    }

    .about .content h1 {
        font-size: 2.5rem;
    }

    .about .content span {
        font-size: 2rem;
    }

    .about .content p {
        font-size: 1.3rem;
    }

    .footer {
        font-size: 1.2rem;
    }

    .footer-copy {
        font-size: 1.1rem;
    }
}




