*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}




html{
    font-size: 65.5%;
}

body{
    font-family: 'Rubik',sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #555;
    
}

.btn-mobile-nav{
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav[name="close-outline"]{
    display: none;
}


.icon-mobile-nav{
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.container{
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 4.2rem;
    
}

.gap{
    gap: 4rem;
}

.grid{
    display: grid;
}

.grid--1--cols{
    grid-template-columns: 1fr;
}

.grid--2--cols{
    grid-template-columns: 1fr 1fr;
}

.grid--3--cols{
    grid-template-columns: 1fr 1fr 1fr;
}

.grid--4--cols{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.heading-secondary{
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 4.6rem;
}

.heading-secondary span{
    color: #0e437d;
}

.subheading{
    font-size: 1.8rem;
    font-weight: 450;
    margin-bottom: 2rem;
    color: #333;
}

.content-text{
    text-align: center;
    margin-top: 2rem;
}

.flex-center{
 display: flex;
 gap: 0.5rem;
 align-items: center;
 justify-content: center;   
}

.logo{
    width: 10rem;
}



.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 9.6rem;
    height: 5.6rem;
    background-color:#9fb4cb;
}

.sticky .header{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0,0,0,0.03);
}

.sticky{
    padding:4.8rem 0 7.5rem 0;
}


.main-nav-list{
    list-style: none;
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
}


.btn, .main-nav-link:link, .main-nav-link:visited{
    font-size: 1.5rem;
    text-decoration: none;
    color: #262424;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn,.btn--cv:link, .btn--cv:visited{
    background-color:#0e437d;
    border-radius: 50px;
    color: #fff;
    padding: 1.5rem 3.5rem;
    margin-top: 1rem;
}

.profile-btn:visited, .profile-btn:link{
    padding: 1.5rem 3.5rem;
}

.btn-learn-more:link, .btn-learn-more:visited{
    color: #333;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-learn-more:hover, .btn-learn-more:active{
    background-color: #b3b3b3;
}

.btn-kirim:hover,.btn-kirim:active,
.btn-mobile:hover,.btn-mobile:active,
.btn--cv:hover, .btn--cv:active{
   
    background-color: #26568a;
    color: #cccccc;
}




.main-nav-link:hover, .main-nav-link:hover{
    color: #0e437d;
    position: relative;
}

/* .main-nav-link:hover::after, .main-nav-link:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0e437d;
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.main-nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0e437d;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
} */

.icons{
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
    margin-right: 0.5rem;
}




 .section-profile{
   
    background-color:#9fb4cb;
}



.profile{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.profile-img-box{
    text-align: center;
    padding:3.2rem 0;
    border-radius: 50%;
}

.profile-text-box{
    text-align: center;
}


.profile-img{
    width: 50%;
   
}

.profile-name{
    font-size: 4.8rem;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #faeded;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-name span{
    color: #0e437d;
}

.profile-title{
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: -1.7px;
    color: #0e437d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-text{
    font-size: 1.6rem;
    text-align: justify;
    color: #261e1e;
    margin-top: 2rem;
    padding:0 5rem;
    line-height: 1.5;
    font-weight: 500;
}

.profile-btn-box{
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-about{
    padding: 6rem 0;
}

.about-biodata{
    gap: 6rem;
    grid-template-columns: 2fr 1fr 1fr;
    justify-content: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #dad1d1;
    border-left: 2px solid #0e437d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.judul-text{
    font-size: 2rem;
    font-weight: 550;
    color: #555;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.judul-text span{
    color: #0e437d;
}

.text-paragraf{
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
    font-weight: 450;
    text-align: justify;
    margin-bottom: 2rem;
}


.biodata-diri{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.biodata-list span{
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.biodata-list .bold{
    font-weight: 500;
    color: #979292;
}



.about-experience{
    gap: 5rem;
}

.detail-pendidikan{
    gap: 4rem;
}

.detail-pendidikan-text{
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border: 1px solid #dad1d1;
    border-left: 2px solid #0e437d;
    border-radius: 5px;
    transition: all 0.3s;
}

.detail-pendidikan-text:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    transform: translateY(-2px);
}

.list-flex{
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.instansi-pendidikan, .tanggal-pendidikan{
    font-size: 1.2rem;
    font-weight: 400;
}

.text-pendidikan{
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: justify;
}

.skill{
    gap: 3rem;
}

.skill-box{
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    border-radius: 1rem;
    border-left: 2px solid #0e437d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.skill-bar1{
    width: 100%;
    display: grid;
    gap: 1rem;
    margin: 1rem auto 2.5rem;
}

.skill-title{
    font-size: 1.6rem;
    font-weight: 600;
   
}

.bar{
  width: 100%;
  height: 1.5rem;
  background: #918d8d;
  border-radius: 50px;
  position: relative;
  transition: all 3s linear;
}

.bar-inner{
    width: 0;
    height: 1.5rem;
    line-height: 35px;
    background: #0e437d;
    border-radius: 50px 0 0 50px  ;
}

.bar-presentase {
    position: absolute;
    right: 10px;
    top: 2px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
  }


  .section-portofolio{
    padding: 6rem 0;
    background-color: #9fb4cb;
}

.portofolio{
    gap: 5rem;
}

.col{
    color: white;
}

.portofolio-img{
    width: 30rem;
    height: 20rem;
    
}

.gallery{
    overflow: hidden;
    border-radius: 9px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery .portofolio-img{
    display: block;
    width: 100%;
    transition: all 0.4s;
}

.gallery .portofolio-img:hover{
    transform: scale(1.1);
   
}

.section-service{
    padding: 6rem 0;
}

.service{
    gap: 4rem;
}

.service-item-box{
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon{
    font-size: 8.8rem;
    color: #0e437d;
    margin-bottom: 1rem;
}

.service-title{
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.service-text{
    text-align:center;
    font-size: 1.4rem;
    line-height: 1.5;
}



.section-contact{
    padding: 6rem 0;
}

.contact-social-media{
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}

.social-profile{
   
    width: 50rem;
    margin: 0 auto;
    padding: 2rem;
    border:1px solid #dfdcdc;
    border-radius: 9px;
    border-left: 2px solid #0e437d;
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
}

.social-profile:hover,.social-profile:active {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    transition: all 0.3s;
}

.list-contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.social-profile{
    display: grid;
    margin: 0 auto;
    gap: 3rem;
}

.social-icon{
    font-size: 4rem;
}

.list-icons{
    display: flex;
    gap: 3rem;
    padding:0 3rem;
}

.icon-list{
font-size: 2.8rem;
color: #0e437d;
}

.txt-small{
    font-size: 1.6rem;
}


.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
    width: 100%;
    margin: 0 auto;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-control:nth-last-child(2) {
    grid-column: 1 / -1;
}

.form-control:last-child {
    grid-column: 1 / -1;
    text-align: center;
}

input[type=text],
input[type=email] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 67, 125, 0.1);
    border-color: #0e437d;
}

textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 15rem;
    resize: none;
}

label {
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
}

.btn-kirim{
    border: none;
    cursor: pointer;
}

.footer{
    padding: 12.8rem 0;
    border-top: 1px solid #eee;
}

.grid--footer{
   grid-template-columns: 2fr 1fr 1fr 1fr;
}

.logo-col{
   display: flex;
   flex-direction: column;
}

.footer-logo{
   display: block;
   margin-bottom: 3.2rem;
}

.footer-logo-nyceup{
    width: 20rem;
}

.social-links{
   list-style: none;
   display: flex;
   gap: 2.4rem;
}

.social-icon{
   width: 2.4rem;
   height: 2.4rem;
}

.copyright{
   font-size: 1.4rem;
   line-height: 1.6;
   color: #767676;
   margin-top: auto;
}


.footer-heading{
   font-size: 1.8rem;
   font-weight: 500;
   margin-bottom: 4rem;
}

.contact{
   font-style: normal;
   font-size: 1.6rem; ;
   line-height: 1.6;
}

.address{
   margin-bottom: 2.4rem;
}

.footer-nav{
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 2.4rem;
}

.footer-link:visited, .footer-link:link{
   text-decoration: none;
   font-size: 1.4rem;
   color: #767676;
   transition: all 0.3s;
}

.footer-link:hover, .footer-link:active{
   color: #555 ;
}