* {
    color:white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding:38px;
    margin:18px;
    border-style:inset;
    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%;
}

.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{
    text-align:center;
}

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;
}

.section {
  background-color: #111;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

h2 {
  margin-bottom: 1rem;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
}

ul {
  list-style-type: none;
}

ul li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.flex-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.half-section {
  flex: 1 1 45%;
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.3);
}

.qualification-outer {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.qualification-inner {
  flex: 1 1 20%;
  font-weight: bold;
  padding-top: 0.5rem;
}

.half-section {
  flex: 1 1 75%;
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.3);
}

h1{
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    nav {
        width: 100%;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }
    .logo {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    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;
    }
}

@media (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;
    }
    .half-section {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    .qualification-outer {
        flex-direction: column;
    }
    .qualification-inner {
        flex: 1 1 100%;
        margin-bottom: 0.5rem;
    }
}

/* 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;
    }
}
