@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    /* background-color: #170101; */
    color: #ededed;
}

.header{
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: fixed;
    z-index: 1000;
}

.logo{
    font-size: 35px;
    color: #d93030;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
}

.navbar a {
    font-size: 20px;
    color: #d6d6d1;
    text-decoration: none;
    font-weight: bold;
    margin-left: 32px;
    transition: 2s;
}

.navbar a:hover,
.navbar a.active{
    color: #00abf0;
}

.home{
    height: 100vh;
    background: url('fig1.png') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;   
    align-items: center;
    padding: 0 10%x;
}

.home-content{
    max-width: 800px;
}

.home-content h1{
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    align-items: center;
    /* background: #0d031e; */
}

.home-content h3{
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
    align-items: center;
    color: aqua;
    /* background: #0d0d0d; */
}

.home-content p{
    font-size: 17px;
    margin: 20px 0 40px;
    margin-bottom: 20px;
    align-items: center;
    /* background: #8c7ca6; */
}

.home-content .btn-box{
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.btn-box a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #170101;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover{
    color: #00abf0;
}

.btn-box a:nth-child(2){
    background: transparent;
    color: #ededed;
}

.btn-box a:nth-child(2):hover{
    color: #170101;
}   

.btn-box a:nth-child(2)::before{
    background: #00abf0;
}

.btn-box a:nth-child(2):hover{
    background: #ededed;
    color: #170101;
}

.btn-box a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #170101;
    border-radius: 8px;
    transition: 0.5s;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before{
    width: 100%;
}

.home-sci{
    position: absolute;
    bottom: 40px;
    width: 150px;
    display: flex;
    justify-content: space-between;
}

.home-sci a{
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 35px;
    color: #00abf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover{
    color: #ededed;
}

.home-sci a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before{
    width: 0%;
    height: 0%;
}

.home-imgHover{
    position: absolute;
    top: 0;
    right: 30px;
    width: 500px;
    background: transparent;
    border: 2px solid #00abf0;
}

.home-imgHover:hover{
    background: #00abf0;
    /* color: #ededed; */
}

.contact {
    height: 100vh;
    background: url('4.jpeg') no-repeat; /* Change 'existing-background.jpg' to your image file */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.about {
    height: 100vh;
    background: url('sky.jpg') no-repeat; /* Change 'new-background.jpg' to your new background image */
    background-size: cover;
    background-position: center;
    background-color: #06020c;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.about-content p {
    font-size: 17px;
    margin: 20px 0 40px;
    margin-bottom: 20px;
    align-items: center;
    text-align: justify; /* Add this line for text alignment */
    color: #06020c; 
    font-weight: bold;
    background-color: azure;

}

.about-content h1{
    color: #060606;
    font-weight: bold;
}

.about-content h3{
    color: #060606;
    font-weight: bold;
}