*{
    margin: 0;
    padding:0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;

}
html{
    scroll-behavior: smooth;
}
body{ 
    background: #000;
    color: #fff
}
#header{
    background-image: url(backgroundnew.png);
    background-size: cover;
    background-repeat: no-repeat;
    height:100vh;
}

.container{
    padding: 0px 10%;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    width: 325px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin:20px 20px;
}
nav ul li a{
    color:#fff;
    text-decoration: none;
    font-size:18px;
    position:relative
}
nav ul li a::after{
    content:'';
    width: 0%;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left:0;
    bottom:-6px;
    transition:0.5s;



}

nav ul li a:hover::after{
    width:100%;

}
.header-text{
    margin-top: 15%;
    font-size: 30px;

}
.header-text h1{
    font-size: 60px; 
    margin-top:20px;


}
.header-text h1 span{
    color:#ff004f
}
/*--------------ABOUT-----------*/

#about{
    padding: 70px 0;
    color: #ffffff;
    font-size: 20px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.about-col-1{
    flex-basis: 35%;   
}
.about-col-1 img{
    width:100%;
    border-radius: 15px ;
}
.about-col-2{
    flex-basis: 60%;

}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: white;
}
.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:#ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    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: #b54769;
    font-size: 14px;
}   
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display:block;


}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}
.btn:hover{
    background: #ff004f;
}
/*------------contact------------*/
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;

}
.contact-left p i{
    color:#ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;

}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition:transform 0.5s;

}
.social-icons a:hover{
    color:#ff004f;
    transform: translateY(-5px);

}
.btn.btn2{
    background: #ff004f;

}
.contact-right form{
    width:100%;
}
form input, form textarea{
    width:100%;
    border:0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin:15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    


}

form .btn2{
    padding: 20px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.5s;
    background: #ff004f;

}
form .btn2:hover{
    background: #000000;
}
#msg{
    color: #61b752;
    margin-top: -40px;
    display: block;

}
.dropdown {
    position: relative;
    width: 100%;
}
.dropdown input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ababab;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.dropdown-content div {
    padding: 10px;
    cursor: pointer;
}
.dropdown-content div:hover {
    background-color: #000000;
}

.send-mail-btn.btn3{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    background: #ff004f;
    transition: background 0.5s;
}
.btn3:hover{
    background: #000000;
}
.gender-container{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
nav .fa-solid{
    display: none;
}
/*------------for small---------*/  
@media only screen and (max-width:600px){
    #header{
        background-image: url(Web_Photo_Editor.png);
    }
    .logo{
        position: relative;
        margin:-40px;
        left: -60px;
        
    }
    .header-text{
        margin-top: 100%;
        font-size: 16px;
    
        top: 100px;
    }
    .header-text h1{
        font-size: 30px;
    }
    nav .fa-solid{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background:#ff004f;
        position: fixed;
        z-index: 2;
        top: 0;
        right: -130px;
        margin-left: 210px;
        width: 130px;
        height: 100vh;
        padding-top: 50px;
        transition: right 0.5s;

    }
    nav ul li{
        display: block;
        margin: 20px;
    }
    nav ul .fa-solid.fa-xmark {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;

    }

    nav .fa-solid.fa-bars{
        position: absolute; 
        margin-left: 280px; 
        margin-top: -30px;
        z-index: 1;
    }
    
    .sub-title{
        font-size: 40px;

    }
    .about-col-1,.about-col-2{
        flex-basis: 100%;
    }   

    .about-col-1{
        margin-bottom: 30px;

    }
    .about-col-2{
        font-style: normal;
        font-size: 15px;

    }
    .tab-links{
        margin-top: 20px;
        font-size: 11px;
        margin-right: 10px;
    }
    .contact-left,.contact-right{
        flex-basis: 100%;
        margin-bottom: 20px;

    }
    .social-icons{
        margin-left: 90px;
    }

    }
