body {
    margin: 0;
    background-color: #f1f0f6; 
    font-family: 'Arial', sans-serif; 
}

header {
    height: 100vh;
    width: 100vw;
    background-image: url('https://previews.123rf.com/images/forplayday/forplayday1711/forplayday171100083/90519924-brave-astronaut-at-the-spacewalk-people-in-space.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; 
    color: white; 
}

.header_text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: #ffffff; 
}

.header_text h1 {
    font-size: 50px;
    font-weight: bold;
    color: #8a2be2; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.header_text p {
    font-size: 25px;
    margin-top: -30px;
    color: #dcdcdc; 
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); 
}

#about, #contact {
    text-align: center;
    height: 100vh;
    width: 100vw;
    background-color: #dcd6f7; 
    padding: 20px;
}

footer {
    text-align: center;
    height: 60px;
    width: 100vw;
    background-color: #6a0dad; 
    color: #fff;
    padding: 15px;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #8a2be2; 
}

a:hover {
    color: #6a0dad; 
}


li {
    list-style: none;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #4b0082; 
    color: #fff;
}

.nav-links a {
    color: #fff;
    transition: color 0.3s ease;
}

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


.logo {
    font-size: 32px;
    color: #8a2be2; 
}

.logo span {
    color: #dcd6f7; 
}

.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li {
    padding: 5px 14px;
}

.menu li:hover {
    background-color: #9b59b6; 
    border-radius: 5px;
    transition: 0.3s ease;
}

.services {
    position: relative;
}

.dropdown {
    background-color: #8a2be2; 
    padding: 1em 0;
    position: absolute; 
    display: none;
    border-radius: 8px;
    top: 30px;
}

.dropdown li + li {
    margin-top: 10px;
}

.dropdown li {
    padding: 0.5em 1em;
    width: 10em;
    text-align: center;
}

.dropdown li:hover {
    background-color: #6a0dad; 
}

.services:hover .dropdown {
    display: block;
}

input[type=checkbox] {
    display: none;
}

.hamburger {
    display: none ;
    font-size: 28px;
    user-select: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        background-color: #6a0dad; 
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }

    .menu li:hover {
        display: inline-block;
        background-color: #9b59b6;
        transition: 0.3s ease;
    }

    .menu li + li {
        margin-top: 12px;
   
    }
}