*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}


html {
    font-size: 1rem; 
    scroll-behavior: smooth;
}

body{
    background: #080808;
    color: #fff;
}

#header{
    width: 100%;
    height: 100vh;
    background-image: url();
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
}

.container{
    padding: 0.625rem 10%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;  
    background: #080808; 
    padding: 0.625rem 10%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}

.logo{
    width: 8.75rem;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 0.625rem 1.25rem;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 0.1875rem;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

/* Google Translate Widget */
#google_translate_element {
    margin-top: 0.625rem;
}

#google_translate_element select {
    background: #262626;
    color: #fff;
    border: 0.125rem solid #ff004f;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
}

#google_translate_element select:hover {
    background: #ff004f;
}

/* Hide Google Translate branding */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    color: #fff !important;
}

.header-text{
    margin-top: 20%;
    font-size: 1.875rem;
}

.header-text h1{
    font-size: 3.75rem;
    margin-bottom: 1.25rem;
}

.header-text h1 span{
    color:#ff004f;
}

/*-------------------------------*/
/*-------about section-----------*/
/*-------------------------------*/

#about{
    padding: 5rem 0;
    color: #ababab;
    scroll-margin-top: 6rem;
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}

.about-col-1 img{
    width: 100%;
    border-radius: 0.9375rem;
}

.about-col-2{
    flex-basis: 60%;
}

.sub-title{
    color: #fff;
    font-size: 3.75rem;
    font-weight: 600;
}

.about-intro{
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ababab;
}


.about-list {
  padding-left: 1.2rem;
  margin-top: 0;
}

.about-list li {
  margin-bottom: 0.3rem;
}


.tab-titles{
    display: flex;
    margin: 1.25rem 2.5rem;
}

.tab-links{
    margin-right: 3.125rem; 
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after{
    content: '';
    width: 0;
    height: 0.1875rem;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 0.625rem 0;
}

.tab-contents ul li span{
    color: #b54769;
    font-size: 0.875rem;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display: block;
}

/*-------------------------------*/
/*-------------expertise---------*/
/*-------------------------------*/

#expertise{
    padding: 1.875rem 0;
    scroll-margin-top: 6rem;
}

.expertise-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    grid-gap: 2.5rem; 
    margin-top: 3.125rem;
}

.expertise-list div{
    background: #262626;
    padding : 2.5rem; 
    font-size: 0.8125rem;
    font-weight: 300;
    border-radius: 0.625rem;
    transition: background 0.5s, transform 0.5s, font-size 0.5sf;
}

.expertise-list div i{
    font-size: 3.125rem;
    margin-bottom: 1.875rem;
}

.expertise-list div h2{
    font-size: 1.875rem;
    margin-bottom: 0.9375rem; 
    font-weight: 500;
}

.expertise-list div a{
    color: #fff;
    text-decoration: none;
    font-size: 0.7813rem; 
    margin-top: 1.25rem; 
    display: inline-block;
}

.expertise-list div:hover{
    background: #ff004f;
    transform: translateY(-0.625rem); 
    font-size: 1.000rem; 
}

/*-------------------------------*/
/*--------------projects---------*/
/*-------------------------------*/

#projects{
    padding: 1.875rem 0;
    scroll-margin-top: 6rem;
}
.projects-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    grid-gap: 2.5rem;
    margin-top: 3.125rem; 
}

.project{
    border-radius: 0.625rem;
    position: relative;
    overflow: hidden;
}
.project img{
    width: 100%;
    height: 35rem; 
    object-fit: cover;
    border-radius: 0.625rem; 
    display: block;
    background: #262626;
    padding : 2.5rem; 
    font-size: 0.8125rem; 
    font-weight: 300;
    border-radius: 0.625rem;
    transition: transform 0.5s;
}

.layer{
   width: 100%;
   height: 0;
   background: linear-gradient(rgba(0,0,0,0.6), #ff004f); 
   border-radius: 0.625rem; 
   position: absolute;
   left: 0;
   bottom: 0;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   padding: 0 2.5rem; 
   text-align: center;
   font-size: 0.875rem; 
   transition: height 0.5s;
}


.role-list,
.features-list {
  text-align: left;
  margin: 0 auto;
  max-width: 31.25rem;
  padding-left: 1rem;
  line-height: 1;
}

.role-list li,
.features-list li {
  margin-bottom: 0.25rem;
}


.layer .actions {
  display: flex;
  flex-direction: row;      
  justify-content: center;  
  align-items: center;
  gap: 0.9375rem;
  margin-top: 0.8125rem;
}


.layer .actions a {
  width: 2.8125rem;
  height: 2.8125rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: purple;
  text-decoration: none;
  box-shadow: -0.25rem 0.5625rem 0.8125rem #561ec887;
  transition: color .2s ease;
}

.layer .actions a:hover {
  color: #000;
}


.layer h3{
    font-weight: 500;
    margin-bottom: 1.25rem; 
}

.layer a{
    margin-top: 1.25rem;
    color: #ff004f;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 3.75rem;
    background: #fff;
    width: 3.75rem; 
    height: 3.75rem; 
    border-radius: 50%;
    text-align: center;
}

.project:hover img{
    transform: scale(1.1);
}
.project:hover .layer{
    height: 35rem; 
}

.btn{
    display: block;
    margin: 3.125rem auto; 
    width: fit-content;
    padding: 0.875rem 3.125rem; 
    border: 0.0625rem solid #ff004f; 
    border-radius: 0.375rem; 
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
    
}
.btn:hover{
    background: #ff004f;
}

/*-------------------------------*/
/*---------------contact---------*/
/*-------------------------------*/

#contact{
    padding: 1.875rem 0;
    scroll-margin-top: 6rem;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 1.875rem; 
}

.contact-left p i{
    color: #ff004f;
    margin-right: 0.9375rem; 
    font-size: 1.5875rem; 
}

.social-links{
    margin-top: 1.875rem; 
}

.social-links a{
    text-decoration: none;
    font-size: 1.875rem;
    margin-right: 0.9375rem; 
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-links a:hover{
    color: #ff004f;
    transform: translateY(-0.3125rem); 
}
.btn.btn2{
    display: inline-block;
    background: #ff004f;
}

.contact-right form{
    width: 100%;
}

form input, form textarea{
    width: 100%;
    padding: 0.9375rem;
    margin: 0.9375rem 0; 
    border: 0;
    outline: none;
    border-radius: 0.375rem; 
    background: #262626;
    color: #fff;
    font-size: 1.125rem; 
}

form btn2{
    padding: 0.875rem 3.8125rem; 
    font-size: 1.125rem; 
    margin-top: 1.25rem; 
    cursor: pointer;
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 1.5875rem 0; 
    background: #262626;
    font-weight: 300;
    margin-top: 1.25rem;
}

/*-------------------------------*/
/*----------------mobile---------*/
/*-------------------------------*/

nav .fa-solid{
    display: none;
}

@media only screen and (max-width: 37.5rem){
    #header{
        background-image: url();
    }
    .header-text{
        margin-top: 100%;
        font-size: 1.000rem; 
    }
    .header-text h1{
        font-size: 2.000rem;
    }
    nav .fa-solid{
        display: block;
        font-size: 1.5875rem; 
    }
    nav ul{
        background: #ff004f;
        position: fixed;
        top: 0;
        right: -12.5rem; 
        width: 12.5rem; 
        height: 100vh;
        padding-top: 3.125rem; 
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 1.5875rem; 
    }
    
    /* Google Translate mobil */
    #google_translate_element {
        margin: 0.625rem 1.5875rem;
    }
    
    #google_translate_element select {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        width: 100%;
    }
    
    nav ul .fa-solid{
        position: absolute;
        top: 1.5875rem; 
        left: 1.5875rem; 
        cursor: pointer;
    }
    .sub-title{
        font-size: 2.5rem; 
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    
    .project img {
        height: 40rem; 
    }

    
    .layer {
        height: 0;             
        overflow: hidden;      
        padding: 0;            
        font-size: 0.85rem;    
       
    }

    .layer h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .layer h4 {
        font-size: 0.95rem;
        margin-top: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .layer p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .role-list,
    .features-list {
        padding-left: 0.8rem;
        margin: 0.3rem 0;
    }

    .role-list li,
    .features-list li {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }

    .project:hover .layer {
        height: auto;
        top: 0;
        bottom: 0;
        overflow-y: auto;
        padding: 0.8rem 0.8rem;
    }

    .about-col-1{
        margin-bottom: 1.9375rem; 
    }
    .about-col-2{
        font-size: 0.875rem; 
    }
    .tab-links{
        font-size: 1.000rem; 
        margin-right: 1.25rem; 
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .copyright{
        font-size: 0.875rem; 
    }
}


#msg
{
    color: #61b752;
    margin-top: -2.5rem; /* -40px */
    display: block;

}

