
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: rgb(0, 0, 33);
    color: white;
    font-family: "Poppins", sans-serif;
}


nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    background-color: rgb(18, 18, 62);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    color: rgb(153, 153, 226);
    font-size: 1.01rem;
}


.left {
    font-size: 1.5rem;
}

.text-gray {
    color: gray;
}

.firstSection {
    display: flex;
    justify-content: space-around;
    margin: -20px 0;
    align-items: center;
}

.firstSection > div {
    width: 30%;
}

.leftSection {
    font-size: 2rem;
}

.rightSection img {
    width: 120%;
}

.purple {
    color: rgb(170, 107, 228);
}

#element {
    color: rgb(170, 107, 228);
}

.secondSection {
    max-width: 80vw;
    margin: auto;
    height: 80vh;
}

main hr {
    border: 0;
    background: #9c97f1;
    height: 1.2px;
    margin: 60px 84px;
}

.secondSection h1 {
    font-size: 1.9rem;
}

.secondSection .box {
    background: white;
    width: 80vw;
    height: 2px;
    margin: 56px 0;
    display: flex;
}

.secondSection .vertical {
    height: 93px;
    width: 1px;
    background-color: white;
    margin: 0px 100px;
}

.image-top {
    width: 50px;
    height: 50px;
    position: relative;
    top: -54px;
    left: -27px;
}

.vertical-title {
    position: relative;
    top: 40px;
    width: 150px;
}

.vertical-desc {
    position: relative;
    color: gray;
    width: 150px;
    font-size: 12px;
    top: 44px;
}

footer {
    margin: 0;
    padding: 0;
    background-color: #0e0e1a;
    height: 50px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 23px 122px;
}

footer .footer-rights {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: gray;
    padding: 12px 0;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.social a:hover {
    background: #9c97f1;
    color: #4841c0;
    box-shadow: 0 0 20px #9c97f1;
}


.contact {
    padding: 50px 0;
    text-align: center;
    background: rgb(0, 0, 33); 
    color: #fff;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact form {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.input-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem; 
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s, transform 0.3s;
    margin-bottom: 10px; 
}

.contact form .input-box input {
    flex: 1 1 45%;
}

.contact form textarea {
    height: 150px;
    resize: none;
}

.contact form .divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0; 
}

.contact form .btn {
    margin-top: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: #9c97f1;
    color: rgb(0, 0, 33);
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.contact form .btn:hover {
    background: #764ba2;
    color: #fff;
    transform: scale(1.05);
}

.contact form input:focus,
.contact form textarea:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    transform: scale(1.02);
}
