// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 700

.quicksand-<uniquifier> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family:   poppins;
}
body{
     background: #252525fa;
     color: #4d4c4c;
}
#header{
     width: 100%;
     height: 100vh;
     background-image: url(./img/wavy-black-white-background.jpg);
     background-size: cover;
     background-position: center;

}
.container{
     padding: 10px 10%; 
}
nav{
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
}

nav ul li{
     display: inline-block;
     list-style: none;
     margin: 10px 20px;

}
nav ul li a{
     color: #3a3c33;
     text-decoration: none;
     font-size: 18px;
     position: relative;
}
nav ul li a::after{
    content: '';
     width: 0;
     height: 3px;
     background: #313131;
     position: absolute;
     left: 0;
     bottom: -6px;
     transition: 0.5s;
}
nav ul li a:hover::after{
     width: 100%;
}
.header-text{
     margin-top: 10%;
     font-size: 30px;
     margin-left: 30px;
}
.header-text h1{
     font-size: 60px;
     margin-top: 20px;
     color: #919191;
     
}
/* -----------about-------------- */
#about{
     padding: 80px 0;
     color: #5c5b5b;
}
.row{
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
}
.about-col-1{
     flex-basis: 35%;
}
.about-col-1 img{
     width: 100%;

     height: 100%;
     border-radius: 15px ;
}
.about-col-2{
     flex-basis: 60%;
}
.sub-title{
     font-size: 60px;
     font-weight: 600;
     color: rgb(247, 247, 248);
}
.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: '';
     width: 0;
     height: 3px;
     background: #dbae1a;
     position: absolute;
     left: 0;
     bottom: -8px;
     transition: 0.5s;
}
.tab-links:hover::after{
     width: 100%;
}
.tab-links.active-link::after{
     width: 50%;
}
.tab-contents ul li{
     list-style: none;
     margin: 10px 0;
}
.tab-contents ul li span{
     color: #dbae1a;
     font-size: 14px;
}
.tab-contents{
     display: none;
}
.tab-contents.active-tab{
     display: block;
}
/* --------services */
#services{
     padding: 30px 0;
}
.services-list{
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     grid-gap: 40px;
     margin-top: 50px;
}
.services-list div{
     background: rgb(54, 53, 53);
     padding: 40px;
     font-size: 13px;
     font-weight: 300;
     border-radius: 10px;
     transition: background 0.5s,transform 0.5s;
}
.services-list div img{
     width: 40px;
     height: 40px;
}
.services-list div h2{
     font-size: 25px;
     font-weight: 500;
     margin-bottom: 1px;
     color: white;
}
.services-list div a{
     text-decoration: none;
     color: rgb(255, 255, 255);
     font-size: 12px;
     margin-top:10px;
     display: inline-block;
}
.services-list div:hover{
     background: #dbae1a;
     transform: translateY(-10px);
     color: black;
}
/* -----------portfolio---------- */
#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;
}
.layer{
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(0,0,0,0.6), #dbae1a);
     border-radius: 10px;
     position: absolute;
     left: 0;
     bottom: 0;
     overflow: hidden;
     transition: background 0.5s;
     cursor: pointer;
}
.layer:hover{
     background: transparent;
     transition: 1s;
}
footer {
     background-color: #333;
     color: white;
     display: flex;
     justify-content: space-between;
     padding: 20px;
     position: relative;
     bottom: 0;
     width: 100%;
 }
 .contact-info {
     display: flex;
     flex-direction: column;
 }
 .contact-info p {
     margin: 5px 0;
 }
 .complaint-box {
     background-color: #444;
     padding: 15px;
     border-radius: 5px;
     width: 300px;
 }
 .complaint-box h3 {
     margin-top: 0;
 }
 .complaint-box textarea {
     width: 100%;
     height: 100px;
     margin-bottom: 10px;
     padding: 10px;
     border-radius: 5px;
     border: 1px solid #ddd;
 }
 .complaint-box button {
     width: 100%;
     padding: 10px;
     background-color: #dbae1a;
     color: rgb(0, 0, 0);
     border: none;
     cursor: pointer;
     border-radius: 5px;
 }
 .complaint-box button:hover {
     background-color: #343530;
     color: white;
     transition: 1s;
 }