*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

/* NAVRBAR */

}.navbar{
    background-color: white;
    height: 80px;
    margin: 20px;   
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   
    
}
#logo{
    width:60px !important;
    height:60px !important;
    border-radius: 50px;
    position: relative;
    margin-top: -10px !important;
   
}
.navbar-brand{
    font-weight: 500;
    color: #6617CB;
    font-size: 24px;
    transition: 0.3s color;
}
.login-button{
    background-color: #6617CB;
    color:#fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}
.login-button:hover{
    background-color: #6617CB;
    opacity: 0;
}
.navbar-toggler{
    border: none;
    font-size: 1.25rem;

}
.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}
.nav-link{
    color: #000000;
    font-weight: 500;
    position: relative;
}
.nav-link:hover, .nav-link.active{
color:#000;
}


@media screen and (max-width: 768px) {
    .navbar {
        background-color: #ffffff;
    }
    
    .navbar-brand,
    .nav-link {
        color: black; /* Change link color to black for better visibility */
    }
    #logo{
        width:70px;
        height:70px;
        border-radius: 50px;
        position: relative;
        margin-top:-1rem ;
    }
}

@media (min-width:576px){
    .nav-link::before{
        content: " ";
        position: absolute;
        bottom:0;
        left:50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
    #logo{
        width:70px;
        height:70px;
        border-radius: 50px;
        position: relative;
        margin-top:-0.5rem ;
    }
    }


    @media (min-width:1280px){
    .nav-link::before{
        content: " ";
        position: absolute;
        bottom:0;
        left:50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
    #logo{
        width:70px;
        height:70px;
        border-radius: 50px;
        position: relative;
        margin-top:-0.2rem ;
    }
    }



@media (min-width:991px){
.nav-link::before{
    content: " ";
    position: absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #6617CB;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.nav-link:hover::before, .nav-link.active::before{
    width: 100%;
    visibility: visible;
}
#logo{
    width:70px;
    height:70px;
    border-radius: 50px;
    position: relative;
    margin-top:-1rem ;
}
}


/* NAVBAR END */


/* CONTACT */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: radial-gradient(rgb(0, 0, 0),rgb(10, 10, 10));
}

#contact{
    margin-top: 10rem;
    width: 100%;
}
.container {
   
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 20px auto;
}

.contact-form,
.contact-info {
    width: 45%;
}

.contact-form {
    padding: 20px;
    background-color: #7f07f0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(90, 90, 90, 0.1);
}

.contact-form h2 {
    color: #fff;
    margin-top: 0;
}

.contact-form form {
    display: grid;
    grid-gap: 10px;
}

.contact-form label {
    color: #fff;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #4503c0;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-info {
    padding: 20px;
    background-color: #131212;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(112, 112, 112, 0.1);
    animation: floating 1.5s ease-in-out infinite alternate;
}

@keyframes floating {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px); /* Apply floating effect */
    }
}

.contact-info h2 {
    color: #ffffff;
    margin-top: 0;
}

.contact-info p {
    color: #fff;
    margin: 5px 0;
    line-height: 40px;
    font-size: 18px;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}