*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    /* background-color: black;
     */
         width: 100vw;
    background-color: aliceblue;
    background-image: url(./Images/five.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

header{
    width:100%;
    height: 100px;
    position:fixed;
    top:0;
    left:0;
    z-index: 999;
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding: 20px;
    background-color: rgb(0, 0, 0);
    background-image: url(/Images/home-bg-1.jpg);
    background-size: cover;
    box-shadow: 0px 1px 1px white;
}

.logo-name{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-name img{
    height: 80px;
    width: 80px;
}

.logo-name h3 span{
    color: rgb(173, 0, 0);
    font-size: 1.5em;
}

.logo-name h3{
    color: white;
}

.menus{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

nav ul{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    position: relative;
    text-decoration: none;
    font-size: 1.2em;
    color: white;
}

nav ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: rgb(36, 223, 230);
    transition: 0.5s linear;
}

nav ul li a:hover::after{
    width: 100%;
}

.btns{
    margin-right: -30px;
}

.btns button{
    position: relative;
    padding: 8px 20px;
    background-color: transparent;
    border-radius: 10px;
    font-size:1em;
    font-weight: 600;
    border: 2px solid rgb(36, 223, 230);
    margin-left: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    color: white;
}

.btns button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgb(36, 223, 230);
    transition: 0.5s ease;
    z-index: -1;
}

.btns button:hover::before{
    width: 100%;
}

.details{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    bottom: 10%;
    width: 100%;

}
.content{
    width: 40%;
    border: 2px solid #f9f9f9;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: -30px;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s linear;
}

.content:hover{
    box-shadow: -2px 1px 20px 2px rgba(72, 255, 0, 0.898);
}

.content h4:first-child{
    color: #1a6565;
    font-size: 1.5em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 10px;
}

.content h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    background-image: linear-gradient(135deg, #027e7e 0%, rgb(4, 72, 244) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.content span{
    background-image: linear-gradient(135deg, #00ffff 0%, rgb(4, 72, 244) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.content h4:nth-of-type(2){
    color: black;
    margin:0 0 5px 0;
    font-size: 1.5em;
}

.content p{
    text-indent: 20px;
    margin: 10px 0;
    text-align: justify;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-right: 20px;
}

.content h4:nth-of-type(3){
    color: rgb(4, 72, 244);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.btn{
    display: flex;
    column-gap: 20px;
}

.btn button{
    padding: 10px 15px;
    background-color: black;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s linear;
    outline: none;
    border: none;
    margin: 5px;
    width: 100px;
    cursor: pointer;
}

.btn button:hover{
    background-image: linear-gradient(135deg, #00ffff 0%, rgb(4, 72, 244) 100%);
    transform: translateY(-3px);
    box-shadow: 1px 5px 10px black;
}

.social-media{
    margin: 5px;
}

.media{
    display: flex;
    gap: 20px;
}

.media a{
    text-decoration: none;
    color: black;
}

.media a i{
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    background-color: aqua;
    padding: 5px;
    font-size: 25px;
    transition: all 0.5s linear;
    color: rgb(133, 101, 42);
    display: flex;
    justify-content: center;
    align-items: center;
}

.media a i:hover{
    transform: translateY(-5px);
    box-shadow: 1px 5px 10px black;
    background-color: rgb(4, 72, 244);
    color: white;
}

.profile-img{
    border-radius: 50%;
    box-shadow: 0px 5px 15px rgb(4, 72, 244);
    margin-top: 20px;
    height: 300px;
    width: 300px;
    background-image: url(./Images/profile-removebg-preview.png);
    background-position: center;
    background-size: cover;
    transition: all 0.2s linear;
}

.profile-img:hover{
    box-shadow: 1px 0px 15px rgb(220, 4, 244);
    cursor: pointer;
}

/* Toggle button hidden on desktop */
.toggle_btn{
    display: none;
    cursor: pointer;
}

.toggle_btn i{
    color: white;
    font-size: 28px;
}

/* Dropdown menu */
.dropdown{
    display: none;
    position: absolute;
    top: 80px;
    right: 0px;
    width: 250px;
    height: 0;
    background-color: rgba(0, 255, 255, 0.138);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border-radius: 10px;
    transition: height 0.3s ease;
    z-index: 1000;
}

.dropdown.open{
    height: 250px;
}

.dropdown li{
    list-style: none;
    padding: 15px;
    text-align: center;
}

.dropdown li a{
    text-decoration: none;
    color: rgb(0, 221, 255);
    font-size: 18px;
    display: block;
}

.dropdown li a:hover{
    color: rgb(255, 255, 255);
}

@media (max-width: 450px){
    header{
        justify-content: space-between;
        padding: 10px;
    }

    .logo-name img{
        width: 70px;
        height: 70px;
    }

    .logo-name h3{
        font-size: 1em;
    }

    .menus{
        display: none;
    }

    .btns button{
        display: none;
    }

    .toggle_btn{
        display: block;
    }

    .dropdown{
        display: block;
    }

    .details{
        position: relative;
        top: 10em;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-bottom: 50px;
    }

    .content{
        width: 300px;
    }

    .content h1{
        font-size: 2em;
    }

    .btn{
        justify-content: space-around;
    }

    .social-media{
        text-align: center;
    }

    .media{
        justify-content: space-evenly;
        align-items: center;
    }

    .profile-img{
        position: relative;
        top: 20px;
        width: 250px;
        height: 250px;
    }
}
