*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background:#F4F1FA;
    color: #333;
}
#header{
    width: 100%;
    height: 100vh;

}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
nav ul li a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background:#B197FC;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}

.header-text{
    margin-top: 60px;
    display:flex;
    flex-direction: row;
    align-items: center;
}
.pc{
    width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.header-text h1{
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.header-text p{
    margin: 20px;
    margin-left: 0;
    font-size: 18px;
    color: #333;
}

/* --------------------------------------------------------------------Haqqımda----------------------------------------------- */

#about{
    padding: 80px 0;
    color: #333;
}
.pc-about{
    width:700px;
    height:auto;
    border-radius:10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 10px;
}
.about-col-2{
    flex-basis: 60%;
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: black;
}
.tab-titles{
    display:flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight:500;
    cursor: pointer;
    position:relative;
}
.tab-links::after{
    content: '';
    position: absolute;
    height: 2px;
    background:#B197FC;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: #B197FC;
    font-weight: 600;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/*----------------------------------------------------------Xidmətlər------------------------------------------------------------*/

#services{
    padding: 30px 0;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    margin-top:50px;
}
.services-list div{
    background: #D3D3D3;
    padding: 30px;
    font-size: 13px;
    font-weight: 130px;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
}
.services-list div i{
    font-size: 40px;
    margin-bottom: 20px;
}
.services-list div h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 300;
}
.services-list div a {
    text-decoration: none;
    color: rgb(7, 108, 159);
    margin-top:15px;
    display: inline-block;
    font-size: 12px;
}
.services-list div:hover {
    background: #B197FC;
    transform: translateY(-10px);
}


/*--------------------------------------------------------Təlimlər---------------------------------------------------------------*/


#portfolio{
    padding: 50px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top:50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width:100%;
    border-radius:10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6),#B197FC);
    border-radius:10px;
    position: absolute;
    left:0;
    bottom:0;
    overflow: hidden;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
.layer h3{
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}
.layer p{
    color:whitesmoke;
}
.layer a{
    margin-top: 10px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    line-height: 60px;
    background:#B197FC;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;

}
.work:hover img{
    transform: scale(1.2);
}
.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    padding: 10px 30px;
    width: fit-content;
    border: 1px solid #B197FC;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #B197FC;
    transition: background 0.5s;
}
.btn:hover{
    background: #B197FC;
    color: white;
}
/*-------------------------------------------------------Əlaqə-------------------------------------------------------------------*/
#contact{
    margin-top: 60px;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #B197FC;
    margin-right: 10px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    color: #B197FC;
    font-size: 25px;
    margin-right: 20px;
    display: inline-block;
    transition: color 0.5s, transform 0.5s;
}
.social-icons a:hover{
    color:rgb(152, 75, 240);
    transform: translateY(-5px);
}
.contact-right form{
    width:100%;
}
form input, form textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 20px 0;
    background:#F4F1FA;
    color: #333;
    width: 100%;
}
/*-------------------------------------------------------css for small screens---------------------------------------------------*/
nav .fa-solid{
    display:none;
}

@media only screen and (max-width:600px){

     .header-text{
      margin-top: 40px;         
      display: flex;
      flex-direction: column;   
      align-items: center;
      gap: 18px;                
      text-align: center;
  }

  .pc{
      width: 100%;
      max-width: 420px;         
      height: auto;
  }

  .header-text p{
      margin: 0;                
      font-size: 16px;
      line-height: 1.6;
  }

  .header-text h1{
      font-size: 24px;
      margin: 10px 0;
  }
    nav .fa-solid{
        display:block;
        font-size: 25px;
    }
    nav ul{
        background: #B197FC;
        position: fixed;
        top:0;
        right: -200px;
        width:200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 20px;
    }
    nav ul .fa-solid{
        position: absolute;
        top:25px;
        left:25px;
        cursor:pointer;
    }
    .sub-title{
        font-size: 30px;
    }
    .about-col-1, .about-col-2, .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size: 14px;
    }
    .tab-links{
        margin-right: 20px;
        font-size: 16px;
    }
    .copyright{
        position: relative; 
        bottom: auto;
        width: 100%;
    }

}
#msg{
    color: #B197FC;
    margin-top: -40px;
    display: block;
}
/* ---------- ABOUT page mobile fixes ---------- */
@media (max-width: 600px){

  
  .container{ padding: 10px 6%; }

  .row{ flex-direction: column; gap: 20px; }

  .pc-about{
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .sub-title{
    font-size: 34px;
    line-height: 1.15;
  }
  #about p{
    font-size: 15px;
    line-height: 1.65;
    margin-top: 10px;
  }

  .tab-titles{
    flex-wrap: wrap;     
    gap: 10px 16px;      
    margin: 16px 0 24px;
  }
  .tab-links{
    margin-right: 0;      
    font-size: 15px;      
    white-space: normal;  
  }

  /* lists/contents spacing */
  .tab-contents ul{ padding-left: 16px; }
  .tab-contents ul li{ margin: 10px 0; }
}
