* {
    color:rgb(241, 224, 224);
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding:38px;
    margin:18px;
    background-color:#090808;
    font-family: Arial, sans-serif;
    box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.6);
    line-height: 1.8;
}

/* Header styles */
header {
    display: flex;
    border-radius:4rem;
    justify-content: space-between;
    align-items:center;
    padding: 20px;
    background-color: rgb(12,12,12);
    color: white;
    height: 2.3rem;
    width:100%;
}

h1{
    text-align: center;
}

p{
    font-family:Arial, Helvetica, sans-serif;
    text-transform:capitalize;
    text-align: center;
}

.main-upper-text {
    font-size: 1rem;
}

.logo-section{
    padding:10px;
    text-align:center;
    justify-content:space-evenly;
    align-items:center;
}

.nav {
    width: 48rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav ul li a {
    font-size: 1.2rem;
    padding: 1rem;
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    background-color: #efa58f;
    border: none;
    border-radius: 29px;
    cursor: pointer;
}

.reachUs-button {
    padding: 1rem;
    background-color: #0dac30;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: linear-gradient(45deg, #4a90e2, #4ab772);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 0 8px #4a90e2;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 0 1rem 0 0;
    animation: pulseGlow 2s infinite;
}

.reachUs-button:hover {
  box-shadow: 0 0 20px #357ABD, 0 0 30px #4a90e2;
  transform: scale(1.1);
  background-color: #c5e9c3;
}

button{
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 100;
    border-radius: 25px;
    cursor: pointer;
    background-color: rgb(18, 99, 14,0.4);
    box-shadow: 0 0 8px #054d9f;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 0 1rem 0 0;
    animation: pulseGlow 2s infinite;
    margin:30px;
    line-height:normal;
    height:4ef;
}

button:hover{
    box-shadow: 0 0 20px #357ABD, 0 0 30px #4a90e2;
    transform: scale(1.1);
    background-color: #0f100f;
}

/* Responsive nav-menu toggle */
#nav-menu {
    display: flex;
}

@media only screen and (max-width: 768px) {
    #nav-menu {
        display: none;
        flex-direction: column;
        background-color: #121212;
        position: absolute;
        top: 3.5rem;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 0;
    }
    #nav-menu.active {
        display: flex;
    }
}
