* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}


header {
    margin-bottom: 10rem;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5rem;
     
}

.pages > ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.pages > ul > li > a, .socials > li > a {
    text-decoration: none;
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 500;
    color: #121212;
    transition: transform 0.3s ease;
}

.pages > ul > li:hover {
    color: #4f5bd5;
    transform: scale(1.05);

}

.socials {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #121212;
    transition: transform 0.3s ease;
}

.fa-instagram:hover {
  background: linear-gradient(90deg, #feda75, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(0,0,0,0.2);
}


.fa-x-twitter {
  color: #000000;
  
  
}

.fa-x-twitter:hover {
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.fa-facebook:hover {
    color: #1877F2;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.hero {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 6rem auto;
}

.welcome {
    padding: 1rem 4rem;
    background-color: #ecd137;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.welcome > p {
    
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 500;
    color: #121212;
}

.hero-text {
    margin-top: 0;
    margin-bottom: 3rem;
    font-family: Inter;
    font-size: 5rem;
    font-weight: bold;
}


.hero-image > img {
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
}

.highlights {
    font-family: Inter;
    font-size: 4.5rem;
    font-weight: bold;
    text-align: center;
    color: #121212;
    margin-bottom: 1rem;
}

.highlights-p{
    font-family: Inter;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: #121212;
}

.qualifications {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto 6rem auto;
    gap: 2rem;


}

.qual {
  /* background: linear-gradient(to bottom, #121212, #645f1a, #d1c624);
  mix-blend-mode: overlay; */

    background-color: #121212;
    color: #cacaca;
    padding: 10px;
    border-radius: 20px;
    width: 25%;
    height: 20rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.qual:hover {
    /* background-color: #ecd137;
    color: #ffffff; */
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}


.qual > h3 {
    color: #121212;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0 auto 1rem auto;
    text-align: center;
    background-color: #ecd137;
    width: 50%;
    padding: 0.5rem;
    border-radius: 16px;
}
.qual > p {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}

#projects > h2 {
    font-family: Inter;
    font-size: 4.5rem;
    font-weight: bold;
    text-align: center;
    color: #121212;
    margin-bottom: 1rem;
}

.project{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    padding: 3rem;
    border-radius: 40px;
    width: 90%;
    margin: 0 auto 6rem auto;
}

.project > h3 {
    font-family: Inter, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ecd137;
    margin-bottom: 1rem;
}

.project > img {
    border-radius: 36px;
    margin-bottom: 1rem;
}

.project > p {
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 300;
    color: #cacaca;
    text-align: center;
}

.project-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.project-links > a {
    text-decoration: none;
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 500;
    color: #121212;
    padding: 1rem 2rem;
    border-radius: 20px;
    background-color: #ecd137;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.project-links > a:hover {
    background-color: #cacaca;
    transform: scale(1.05);
}

.certification {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto 6rem auto;
    gap: 1rem;
}

#certificates > h2 {
    font-family: Inter;
    font-size: 4.5rem;
    font-weight: bold;
    text-align: center;
    color: #121212;
    margin-bottom: 3rem;
}

.certification > p {
    font-family: Inter;
    font-size: 2rem;
    font-weight: 500;
    color: #121212;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

.all-certs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.all-certs > img {
    border-radius: 20px;
    width: 30%;
    height: 20rem;
    object-fit: fill;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}





.genesys {
    color: #4c4747;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

.verify-cert {
    text-decoration: none;
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 500;
    color: #121212;
    padding: 1rem 2rem;
    border-radius: 20px;
    background-color: #ecd137;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 1rem;
}

.verify-cert:hover {
    background-color: #cacaca;
    transform: scale(1.05);
}

#contact {
    background-color: #cacaca;
    padding: 3rem 3rem 0.5rem 3rem;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact > h2{
    font-family: Inter;
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    color: #121212;
    margin-bottom: 3rem;
}

#contact > p {
    font-family: Inter;
    font-size: 1.5rem;
    font-weight: 500;
    color: #121212;
    text-align: center;
    margin-bottom: 2rem;
}

#contact > a {
    text-decoration: none;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 500;
    color: #121212;
    padding: 2rem 4rem;
    border-radius: 40px;
    background-color: #ecd137;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#contact > a:hover {
    background-color: #121212;
    color: #cacaca;
    transform: scale(1.05);
}

.social-catalogue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    width: 80%;
    padding: 2rem;
    margin: 0 auto;
}

.social-icons {
    font-size: 3rem;
    color: #121212;
    transition: transform 0.3s ease;
    
}

.fa-whatsapp:hover {
    color: #25D366;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.fa-linkedin:hover {
    color: #0A66C2;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.fa-tiktok:hover {
    color: #FF0050;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.fa-github:hover {
    color: #171515;
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(0,0,0,0.2);
}

hr {
    border: none;
    height: 1px;
    background-color: #f8d8d8;
    margin: 1rem auto;
    width: 90%;
}

/* Media Query for Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .pages > ul {
        flex-direction: row;
        gap: 1rem;
    }

    header {
        margin-bottom: 5rem;
    }

    .pages > ul > li > a, .socials > li > a {
        font-size: 1rem;

    }

    .socials {
        gap: 1rem;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 4rem;
        width: 90%;
    }

    .welcome {
        padding: 1rem 2rem;
        border-radius: 20px;
        text-align: center;
    }

    .hero-text {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .welcome > p {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
        margin: 1rem auto;
    }

    .hero-image > img {
        border-radius: 20px;
        width: 100%;
    }

    .highlights {
        font-size: 3rem;
    }

    .highlights-p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .qualifications {
        flex-direction: column;
        gap: 1.5rem;
    }

    .qual {
        width: 75%;
        height: auto;
        padding: 1rem;
    }

    .qual > h3 {
        font-size: 3rem;
        width: 40%;
    }

    .qual > p {
        font-size: 0.9rem;
    }

    #projects > h2 {
        font-size: 3rem;
    }

    .project {
        padding: 2rem;
        border-radius: 20px;
    }

    .project > h3 {
        font-size: 2rem;
    }

    .project > img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .project > p {
        font-size: 1rem;
    }

    .project-links {
        flex-direction: column;
        gap: 1rem;
    }

    .project-links > a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    #certificates > h2 {
        font-size: 3rem;
    }

    .certification {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .all-certs > img {
    border-radius: 20px;
    width: 90%;
    height: 15rem;
    object-fit: fill;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


    .all-certs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    flex-wrap: wrap;
}

    .certification > img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .certification > p {
        font-size: 1.5rem;
        text-align: center;
    }

    .verify-cert {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    #contact > h2 {
        font-size: 3rem;
    }

    #contact > p {
        font-size: 1.2rem;
    }

    #contact > a {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .social-catalogue {
        width: 100%;
        padding: 1rem;
        gap: 1rem;
    }

    .social-icons {
        font-size: 2rem;
    }
}

/* Media Query for Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .pages > ul {
        gap: 0.5rem;
    }

    .pages > ul > li > a, .socials > li > a {
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 2rem;
    }

    .welcome > p {
        font-size: 0.9rem;
    }

    .highlights {
        font-size: 2rem;
    }

    .highlights-p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .qualifications {
        gap: 1.5rem;
    }

    .qual {
        width: 75%;
        padding: 0.8rem;
    }

    .qual > h3 {
        font-size: 2.5rem;
        width: 50%;
    }

    .qual > p {
        font-size: 0.8rem;
    }

    #projects > h2 {
        font-size: 2rem;
    }

    .project {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .project > h3 {
        font-size: 1.5rem;
    }

    .project > img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .project > p {
        font-size: 0.9rem;
    }

    .project-links > a {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    #certificates > h2 {
        font-size: 2rem;
    }

    .certification {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .certification > img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .certification > p {
        font-size: 1.2rem;
    }

    .verify-cert {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    #contact > h2 {
        font-size: 2rem;
    }

    #contact > p {
        font-size: 1rem;
    }

    #contact > a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .social-catalogue {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .social-icons {
        font-size: 1.5rem;
    }

    hr {
        width: 95%;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}