* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
}



.container {
    width: 100%;
    height: 100vh;
    background-color: rgba(98, 174, 240, 1);
    display: flex;
    justify-content: center;
    align-items: center;

}

.container::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url('background1.jpg');
    background-color: rgba(98, 174, 240, 1);
    opacity: 0.4;

}

.container .hero {
    position: relative;
    z-index: 10;
    height: 100vh;
    width: 75%;
    background: #5494CC;
    backdrop-filter: blur(25px);
    border: 3px solid #62AEF0;
    border-radius: 20px;
    box-shadow: -15px 17px 17px rgba(10, 10, 10, 0.15);
    padding: 0 40px 0 80px;
}

.hero nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    margin-top: 3%;
}

.hero nav .logo {
    color: #801f82;
    font-size: 43px;
    font-weight: bold;
    position: relative;
    transition: 0.5s;

}

.hero nav .logo::after {
    content: "";
    width: 0%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(10, 10, 10, 0);
    z-index: -1;
    transition: 0.5s;
    height: 100%;
    border-bottom: 3px solid #801f82;


}


.hero nav .logo:hover::after {
    width: 100%;
    border-bottom: 3px solid #af3fb1;

}

.hero nav .logo:hover {
    color: #af3fb1;
    letter-spacing: 5px;
}



.hero nav .nav-links a {
    color: #242424;
    margin-left: 40px;
    text-transform: capitalize;
    transition: 0.3s;
}

.hero nav .nav-links a:hover,
.hero nav .nav-links a:active {
    color: #801f82;
}

.hero .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    height: 80%;
    margin-top: 4%;
}

.hero .content .div-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    perspective: 1000px;

}

.hero .content .div-text h1 {
    margin-bottom: 20px;
    font-size: 50px;
    color: #fff;
    transition: 0.5s;

}

.hero .content .div-text h1:hover {
    color: transparent;
    -webkit-text-stroke: 1px #801f82;
    /* For Webkit browsers (Chrome, Safari) */
    text-stroke: 1px #801f82;
    /* Standard property */
}

.hero .content .div-text h4 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #801f82;
    transition: 0.5;
    letter-spacing: 5px;

}

.hero .content .div-text h4:hover {
    letter-spacing: 0px;
}

.hero .content .div-text ul {
    margin-bottom: 50px;
    font-size: 18px;
    color: #d5e7f7;
    font-size: 18px;
}

.hero .content .div-text ul li {
    text-decoration: none;
    list-style-type: none;
    margin: 2%;
    font-weight: bolder;
    transition: 0.5s;
}

.hero .content .div-text ul li:hover {
    font-size: 24px;
}

.hero .content .div-text .btn {
    padding: 11px 20px;
    background-color: #801f82;
    border: 2px solid #801f82;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    /* Added to make the button inline */
    text-decoration: none;
    /* Remove default underline style */
    width: fit-content;
}

.hero .content .div-text .btn:hover {
    background-color: transparent;
    color: #801f82;
    transition: 0.3s;
}

.soc-link {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.soc-link a i {
    font-size: 25px;
    cursor: pointer;
    color: #801f82;
    margin-bottom: 20px;
    transform: 0.4s;
}

.soc-link a i:hover {
    color: #62AEF0;
}

.hero .content .div-img {
    width: 40%;
    position: relative;
    overflow: hidden;
    box-shadow: -15px 17px 17px rgba(10, 10, 10, 0.15);
    transition: 0.5s;


}

.hero .content .div-img:hover {

    box-shadow: -15px 17px 17px rgba(1, 1, 1, 0.1);

}

.hero .content .div-img img {
    max-width: 100%;
    display: block;
    height: auto;



}

@media screen and (max-width: 800px) {
    .container {
        flex-direction: column;
        height: 100vh;
        width: 100%;

    }


    .container .hero {
        flex-direction: column;
        height: 90%;
        width: 100%;

    }

    .container .hero content {
        flex-direction: column;
        height: 100%;
        width: 100%;


    }

    .container .hero .content .div-text {
        width: 100%;
        height: 100%;

    }
}

@media screen and (max-width: 650px) {
    .hero .content .div-img {
        display: none;
    }

    .container .hero {
        flex-direction: column;
        height: 100%;

    }

}

/* Rest of your CSS remains unchanged */