* {
    color:white;
    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.9);
    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:3.5rem;
    width:100%;
}

.logo {
    font-size: 1rem;
}

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;
}

/* banner section styles */
.banner {
    box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.2);
    text-align: center;
    background-color: #12110fdd;
    margin: 0 auto;
}

.banner img {
    max-width: 100%;
    height: auto;
}
/* Contact form styles */
.contact-form {
    background-color:#12110fdd;
    box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.3);
    padding: 40px 0;
    margin: 0 10px;
}

.form-container {
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
    background-color: #7a3104e3;
    box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.8);
    border-radius: 10px;
    /* box-shadow: 0px 0px 10px rgba(112, 30, 30, 0.1); */
}

.contact-form h2 {
    color:#887723;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    background: #080808;
    margin-bottom: 20px;
}

.form-container select{
    background-color: #4f2c07;
     border: 1px solid #d1db0b;
}

.form-container label {
    background: #632b08e3;
    display:block;
    font-weight: bold;
}
.form-container input, textarea{
    background-color: #4f2c07;
    width: 100%;
    padding: 10px;
    border: 1px solid #d1db0b;
    border-radius: 4px;
    margin-bottom: 1rem;
    resize: vertical;
}
.submit-button {
    padding: 10px 20px;
    background-color: #0dac30;
    border: none;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

a{
    text-decoration: none;
}

/* Contact info styles */
.contact-info {
    text-align: center;
    padding: 50px 0;
    background-color: #0c0b0b;
}

.contact-info h2 {
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    padding: 10px;
    text-align: center;
    background-color: #151414;
    color: white;
}
/* Hamburger styles */
.hamburger {
    display: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    cursor: pointer;
}

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;
}

/* Media queries for responsiveness */
@media only screen and (max-width: 1024px) {
    .logo {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #nav-menu {
        position: absolute;
        top: 4rem;
        left: 0;
        background-color: #333;
        width: 100%;
        display: none;
    }

    #nav-menu.active {
        display: block;
        flex-direction: row;
        padding: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }
    nav {
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin-bottom: 10px;
    }
    .reachUs-button {
        width: 100%;
        margin: 10px 0 0 0;
    }
    .form-container {
        max-width: 90%;
        padding: 10px;
    }
}

@media only screen and (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        width: 100%;
    }
    nav ul li a {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .reachUs-button {
        font-size: 1rem;
        padding: 0.5rem;
    }
}
