@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    height: 100vh;
    /* background: #212529; */
    background: #171717;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 50px;
    position: fixed; /* Fixes the navbar to the top */
    top: 0; /* Positions the navbar at the top */
    left: 0; /* Ensures the navbar spans from the left edge */
    right: 0; /* Ensures the navbar spans to the right edge */
    background-color: #171717; /* Optional: Add a background color for better visibility */
    z-index: 1000; /* Ensures the navbar is above other content */
}
.navbar h2{
    color: #ffb742;
    font-weight: 600;
}
.navbar ul{
    display: flex;
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    margin-right: 25px;
    transition: color 0.3s ease;
}
.navbar ul li:hover a{
    color: #ffb742;
}
.info{
    color: #fff;
    margin-left: 12.5%;
    margin-top: 10%;
    margin-bottom: 25%;  
}
.info h3{
    font-size: 64px;
    letter-spacing: 2px;
    line-height: 80px;
    font-family: "Times New Roman", Times, serif;
}
.info h4{
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 90px;
    font-family: 'Poppins', serif;
}
.info span{
    color: #ffb742;
}
.blank{
    font-size: 36px;
    color: #212529;
}
.seprator{
    font-size: 30px;
    margin: 40px 50px 5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    color: #ffb742;
    border-radius: 12px;
}
.About{
    display: flex;
    justify-content: space-between;
    align-items: TOP;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 48px;
    margin-bottom: 15%;    
}
.about_img{
    justify-content: center;
}
.about_img svg{
    width: 400px;
    margin: 20px 50px;
    padding: 5px;
    border-radius: 5rem;
}
.about_info h2{
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 60px;
    font-family: 'Poppins', serif;
    margin-bottom: 10px;
}
.about_info{
    color: #ccc;
    font-size: 22px;
    line-height: 44px;
    margin: 10px 50px;
    padding: 30px;
    text-align: justify;
}
.tab-titles{
    margin: 50px 0px;
    display: flex;
    margin-top: 20px 0px 40px;
}
.tab-links{
    margin-right: 70px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ffb742;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 60%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 12px;
    font-size: 16px;
    line-height: 36px;
}
.tab-contents ul li span{
    color: #ffb742;
    font-size: 18px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
.Works{
    margin-top: 15%;
}
.Projects{
    margin-bottom: 15%; 
    color: #fff;
}
.Projects h3{
    font-size: 22px;
    letter-spacing: 2px;
    /* line-height: 60px; */
    font-family: 'Poppins', serif;
    margin-bottom: 20px;
}
.Projects p{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 8px;
    /* text-align: center; */
}
.Project-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 50px;
    margin-top: 60px;
    padding: 60px;
}
.Project-list div{
    background: #333434;
    padding: 30px;
    font-weight: 300;
    border-radius: 15px;
    transition: background 0.5s, transform 0.5s;
}
.Project-list i{
    font-size: 60px;
    margin-bottom: 30px;
}
.Project-list a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}
.Project-list div:hover{
    background: #ffb742;
    transform: translateY(-20px);
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 100px;
    margin: 60px ;
    padding: 60px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 90%;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 94.5%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.6), #ffb742);
    border-radius: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    transition: height 0.5s;
}
.layer h2{
    font-weight: 600;
    margin-bottom: 10px;
}
.layer a{
    margin-top: 15px;
    color: #ffb742;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin-top: 30px;
    width: fit-content; 
    border: 1px solid #ffb742;
    padding: 10px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffb742;
    background-color: #212529;
    transition: background 0.5s;
}
.btn:hover{
    color: #fff;
    background: #ffb742;
}
.CONTACT{
    margin-top: 2%;
    padding-left: 5%;
    display: flex;
}
.contact-left{
    flex-basis: 50%;
}
.contact-right{
    flex-basis: 45%;
    margin-left: 5%;
}
.contact-left{
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 70px;
    font-family: 'Poppins', serif;
    margin-bottom: 10px;
}
.contact-left a{
    padding-left: 5%;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    font-family: 'Poppins', serif;
}
.contact-left i{
    color: #ffb742;
}
.tel:hover{
    color: #ffb742;
}
.mail:hover{
    color: #ffb742;
}
.in:hover{
    color: #ffb742;
}
.btn.btn2{
    color: #ffb742;
    display: inline-block;   
    font-size: 24px;
    margin-top: 50px;
    margin-left: 100px;
    margin-bottom: 250px;
    padding-left: 30px;
    padding-right: 30px; 
}
.btn2:hover{
    color: #fff;
    background: #ffb742;
}
.btn2 i:hover{
    color: #fff;
    background: #ffb742;
}
.contact-right form{
    width: 100%;
}
 form input, form textarea{
    width: 80%;
    border: 0;
    outline: none;
    background: #333434;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}
form .btn2{
     padding: 14px 60px;
     font-size: 18px;
     margin-top: 20px;
     cursor: pointer; 
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 30px;
    font-weight: 400;
    margin-top: 10%;
    color: #fff;
    line-height: 200%;
    background-color: #ffb742;
    font-size: 1.3rem;
}
.scroll-to-top {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: none;
    background-color: #171717;
    color: #fff;
    border: none;
    width: 75px;  /* Set the width to make it a circle */
    height: 75px; /* Set the height to make it a circle */
    font-size: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease;
}
.scroll-to-top:hover {
    background-color: #ff9f1c;
}
/* -----------------------css for mobile--------------------------
@media only screen and (max-width: 600px){

}*/
.autoshow{
    animation: autoShowAnimation both;
    animation-timeline: view(70% 5%);
}
@keyframes autoShowAnimation{
    form{
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
    to{
        opacity: 1;
        transform: translateY(200px) scale(0.3);
    }
}
