*{
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;

}
html{
scroll-behavior: smooth;
}


body{
    background: linear-gradient(to right,#0F2027,#203A43,#2C5364);
    color: #fff;

}

#header{
    width: 100vw;
    height:100vh;
    background-image: url(Photos/page.png);
    background-size: cover;
    background-position: center;
}

.container
{
    padding: 10px 10%;
    text-align: center;
}

nav{
    position: fixed;
    z-index: 1000;
    text-align: center;
    margin-left: 175px;
}

nav ul li{
display: inline-block;
list-style: none;
margin: 20px 50px;
text-align: center;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: large;
    position: relative;
    text-align: center;
}

nav ul li a::after{
    content: "";
    width: 0;
    height: 3px;
    background: #f39530
;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
    border-radius: 10px;
}

nav ul li a:hover::after{
    width:100%;
}

nav ul li a i{
    margin-right: 5px ;
}
.header-text{
    margin-top: 175px;
    text-align: left;
}

.header-text h1{
    color: #f39530;
    font-size: 40px;
    margin-top: 20px;
}

.header-text h2{
    font-size: 40px;
    margin-top: 20px;
    color: #c5f8ff;
}


.header-text p{
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
}

/* -------about------- */
#about{
    padding: 100px;
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.col1{
    flex-basis: 40%;
}

.col2{
    flex-basis: 60%;
}

.col1 img{
    width: 100%;
    margin-left: -100px;
    margin-top: 12.5px;
}

.col2 h1{
    text-align: left;
    color:#f39530;
    font-size: 35px;
}

.col2 p{
    text-align: left;
    margin-top: 10px;
    font-size: 20px;
}

.tab-titles {
    display: flex;
    margin: 10px 0px 20px;
}

.tab-links{
    margin-right: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.tab-links::after{
    content:"";
    width: 0;
    height: 3px;
    background: #f39530;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: 0.5s;
    border-radius: 10px;
}

.tab-links.active-link::after{
 width: 100%;

}

.tab-contents ul li{
    text-align: left;
    font-size: 18px;
    margin-bottom: 2.5px ;
}

.tab-contents ul li p{
    display: inline-block;
    color: #f39530;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display:block;
}

.tab-contents li i{
    color:#c5f8ff;
    margin-left: 5px ;
}

/* -------projects------- */
#projects{
    padding: 100px;
}

.image-col img{
    width: 100%;
}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-col{
    flex-basis: 70%;
    text-align: right;
}

.image-col{
    text-align: right;
    flex-basis: 45%;
    margin-right: -175px;
}

.text-col h1{
    color:#f39530;
    font-size: 35px;
    margin-top: 50px;
}

.text-col p{
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 25px;
}

.text-col a{
    text-decoration: none;
    color:#c5f8ff;
    font-size: 20px;
    transition: 0.5s;
}

.text-col a:hover{
    text-decoration: underline;
    text-decoration-color:#f39530;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
}

/* -------------------contact---------------- */

#contact{
    padding: 100px;
}
.contact-left{
    flex-basis: 35%;
    text-align: left;
}

.contact-right{
    flex-basis: 60%;
}

.contact-left p{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-left h1{
    color:#f39530;
    font-size: 35px;
    margin-bottom: 20px;
}

.icon{
    text-decoration: none;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px;
}

.icon:hover{
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
    text-decoration-color: #f39530;
}

.icon i{
    margin-right: 20px;
    color: #f39530;
    transition: transform 0.25s;
}

.icon i:hover{
transform: translateY(-5px);
}

.contact-left p i{
    margin-right: 20px;
    color: #f39530;
    transition: transform 0.25s;
}

.contact-left p i:hover{
transform: translateY(-5px);
}

.social-media a{
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    margin-right: 20px;
    display: inline-block;
    transition: transform 0.25s;
    margin-bottom: 20px;
}

.social-media a:hover{
    color: #f39530;
    transform: translateY(-5px);
}

.btn.btn2{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: #f39530;
    width: 150px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px; 
    transition: 0.5s;  
    color: #fff;
}

.btn.btn2:hover{
    text-decoration: none;
    color: #f39530;
    background: #fff;
}

.contact-right form{
    width: 100%;
}

form input,form textarea{
    width: 100%;
    border:0;
    outline: none;
    background:#3b4c54;
    padding: 15px;
    margin: 15px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}

form .btn2{
    width: 100%;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 20px 275px;
    margin-left: 15px;
    margin-right: -50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#msg{
color: #f39530;
margin-left: 30px;
font-size: 22.5px;
}