@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Space+Grotesk:wght@300..700&display=swap');



*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    scroll-behavior: smooth;

}

body{
    margin: auto;
}

nav{
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    height: 17vh;
    

}
.nav-links{
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 1.3rem;
}

a{
    color: black;
    text-decoration: none;
    text-decoration-color: #ffffff;
    transition: all 300ms ease;
}

a:hover{
    color: gray;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}

.logo{
    font-size: 1.8rem;
    cursor: pointer;
}

#hamburger-nav{
    display: none;
}

.hamburger-menu{
    position: relative;
    display: inline-block;
}

.hamburger-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}


.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all .3s ease-in-out;

}

.menu-links{
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.menu-links a{
    display: block;
    padding: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: black;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.menu-links li{
    list-style: none;
}

.menu-links.open{
    max-height: 250px;
}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px,5px);
}

.hamburger-icon.open span:nth-child(2){
    opacity: 0;
}

.hamburger-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px,-5px);
}

.hamburger-icon span:first-child{
    transform: none;
}
.hamburger-icon span:first-child{
    opacity: 1;
}
.hamburger-icon span:first-child{
    transform: none;
}


/* section{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    min-height: fit-content;
}  */

#profile{
    margin-top: 30px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.profile-pic img{
    width: 400px;
    height: 375px;
    border-radius: 20%;
    margin-right: 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    /* position: relative; */
}

.online-mode{
   position: absolute; 
   top: 21%;
   left: 12%;   
}
.online{
    width: 15px;
    height: 15px;
    background-color: rgb(55, 228, 36);
    border-radius: 50%;
    display: table;
    margin: 20% auto;
    position: relative;
}
.online::after{
    content: "";
    width: 20px;
    height: 20px;
    background-color: rgb(175, 252, 167);
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 50%;
    z-index: -1;
    animation: online 1.5s linear  infinite;
}
/* div::before{
    content: "";
    width: 20px;
    height: 20px;
    background-color: rgb(213, 251, 209);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: online1 2s ease  infinite;
} */

@keyframes online {
    0%{
        transform: scale(0%);
    }
    50%{
        transform: scale(125%);
    }
    100%{
        transform: scale(0%);
    }
    
   
    
    
    
}
/* @keyframes online1 {
    0%{
        transform: scale(100%);
    }
    50%{
        transform: scale(160%);
    }
    
    
} */




.profile-text-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: -90px;

}


.profile-socials{
    display: flex;

}

.profile-socials img{
    width: 40px;
    margin-right: 10px;
    margin-left: 10px;
}

.subtitle-info{
    font-size: 23px;
}
.title-info{
    font-size: 50px;
}
.profession{
    font-size: 23px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.profile-buttons button{
    width: 135px;
    height: 45px;
    border-radius: 1.3rem;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
}
.contact-info{
    background-color: black;
    border: none;
    color: white;
}

.cv-btn{
    background-color: transparent;
    border: 1.3px solid black;
    color: black;
    transition: .7s;
}

.cv-btn:hover{
    background-color: black;
    color: white;
    
}


/* trusted brand */

.brands{
    width: 85%;
    margin: auto;
    margin-top: 50px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 400px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 30s slide infinite linear;
}

.logos-slide img {
  height: 100px;
  margin: 0 40px;
}

.logos-slide .x-logo{
    height: 40px;
    transform: translateY(-30px);
}

/* about section */

.about-start{
    text-align: center;
}

.about-start p{
    font-size: 18px;
}

.about-start h1{
    font-size: 50px;
    margin-top: 10px;

}

#about{
    width: 90%;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 70px;
    position: relative;
    
}

.about-start>p{
    padding-top: 25px;
}

.photo-edu-exp{
    width: 100%;
    display: flex;
    gap: 55px;
    margin-top: 60px;
}

.about-photo img{
    width: 400px;
    border-radius: 25px;
    
}

.exp-edu{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.exp-con{
    text-align: center;
    border: 1px solid black;
    padding: 15px 35px;
    border-radius: 10px;
}

.exp img{
    width: 45px;
}

.edu-con{
    text-align: center;
    border: 1px solid black;
    padding: 15px 35px;
    border-radius: 10px;
}

.edu img{
    width: 45px;
}

.arrow1 img{
    width: 35px;
    position: absolute;
    right: 0px;
    bottom: -50px;
    cursor: pointer;
}

/* ----------- */

/* experience section */


#experience{
    width: 90%;
    margin: auto;
    margin-top: 70px;
    padding-bottom: 30px;
    position: relative;
}


.experience-start{
    text-align: center;
}

.experience-start p{
    padding-top: 25px;
    font-size: 18px;
}

.experience-start h1{
    font-size: 50px;

}

.front-back{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.front-con{
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px 40px;
    
}

.stack{
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.back-con{
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px 40px;
    
}

.two-lists{
    display: flex;
    gap: 140px;
}

.two-lists-back{
    display: flex;
    gap: 80px;
}


.front-back img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.skill{
    display: flex;
    margin: 40px 0px;
}

.skill-level h3{
    font-size: 22px;
}


.arrow2 img{
    width: 35px;
    position: absolute;
    right: 0px;
    bottom: -60px;
    cursor: pointer;
}


/* ----- */


/* Experience Section */

#projects{
    width: 90%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}


.project-start{
    text-align: center;
}

.project-start p{
    padding-top: 20px;
    font-size: 18px;
}

.project-start h1{
    font-size: 50px;

}

.projects{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.project{
    text-align: center;
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px;
}

.project h1{
    font-size: 30px;
    margin-top: 10px;
}

.project-image img{
    width: 310px;
    border-radius: 20px;
}

.btn{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn button{
    width: 90px;
    height: 40px;
    border: 1px solid black;
    background-color: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: 1s;
}

.btn button:hover{
    background-color: black;
    color: white;
    border: none;
}

.more{
    text-align: center;
    margin: 20px 0px;
    font-size: 19px;
    color: #0097b3;
    cursor: pointer;
}

.arrow3 img{
    width: 35px;
    position: absolute;
    right: 0px;
    bottom: -20px;
    cursor: pointer;
}


/* --------------- */

/* Testmonials Section */

#testimonials{
    width: 90%;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 40px;
    
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.testmonials-starter h1{
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.testmonials-section{
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  
}

.testmonials-section:before,
.testmonials-section:after {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  content: "";
  z-index: 2;
}

.testmonials-section:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.testmonials-section:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.testmonials-section:hover .testmonials{
  animation-play-state: paused;
}

.testmonials {
  display: inline-block;
  animation: 30s slide infinite linear;
  align-items: center;
}

.testmonials img {
  width: 300px;
  margin: 0 7px;
  border: 1px solid black;
  border-radius: 15px;
  cursor: pointer;
}

/*---------------- */

/* Contact Section */


#contact{
    width: 90%;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 40px;

}


.contact-start{
    text-align: center;
}

.contact-start p{
    font-size: 18px;
}

.contact-start h1{
    font-size: 50px;

}

.email-linkedin{
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 15px 10px;
    border: 1px solid black;
    border-radius: 40px;
    width: 400px;
    transform: translateX(90%);
    margin-top: 30px;
}

.email-con{
    display: flex;
    gap: 15px;
    align-items: center;
}
.email-con img{
    width: 50px;

}
.linkedin-con{
    display: flex;
    gap: 15px;
    align-items: center;
}
.linkedin-con img{
    width: 40px;
}


/* ----------------------- */

.footer-links{
    margin: auto
}

.nav-links-footer{
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links-footer li a{
    font-size: 22px;
}
.copy-right{
    text-align: center;
    margin-bottom: 20px;
}

