/* ============================================ HEADER ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #210344;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 120px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    display: block;
    padding: 10px;
}

.nav-links a:hover {
    color: #7839e3;
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

.side-arrow {
    font-size: 10px;
    margin-right: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1a0235;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1000;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid #2d045e;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #2d045e;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;

    background-color: #0f011f;
    min-width: 180px;
    list-style: none;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;

    margin-right: 2px;
}

.submenu::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: 25px;
    height: 100%;
    background: transparent;
}
.sub-dropdown-item:hover .submenu {
    display: block;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
}


/* ========================================== FOOTER ============================================== */
footer {
    background: #1a0033 ;
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 40px #6a0dad ; 
}
.copyright
{
    border-top: #ffffff6a solid 0.5px ;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.footer-copy {
    color: #ffffffa0;
    font-size: 14px;
}
.footer-dev {
    color: #ffffffa0;
    font-size: 15px;
    width: 600px;
}
.footer-dev a {
    color: #ff4b5c;
    text-decoration: none;
}
