* {
    box-sizing: border-box;
}
body {
    margin:0;
    font-family:Arial, sans-serif;
    background-color:rgb(4, 4, 37);
}

header {
    background:rgb(4, 4, 37);
    color: white;
    text-align: center;
    padding: 30px;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav {
    background-color: rgb(4, 4, 37);
    backdrop-filter: blur(5px);
}

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding:18px 20px;
    display: inline-block;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 3px;
    background: limegreen;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width:100%;
}

.hero {
    background: linear-gradient(to right, #040425, #0d0d5a);
    text-align: center;
    padding: 2px;
    color: white;
    border-radius: 15px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;   
}

.hero::before {
     content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:0.6s;
}

.hero:hover::before{
    left:100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color:white;
    border-radius: 10px;
}

.about-us{
    width:80%;
    color: white;
    margin:auto;
    padding:40px;
}

.about-us h2{
    text-align:center;
    margin-bottom:25px;
    font-size:32px;
}

.about-us p{
    line-height:1.7;
    margin-bottom:20px;
}

.mission-vision {
    display: flex;
    justify-content: center;
    gap: 40px;
    width:80%;
    margin:auto;
}

.mission{
    width:45%;
    float:left;
    padding:25px;
    background:white;
    margin-right:5%;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
} 

.vision h3,
.mission h3 {
    color: #0d0d5a;
    text-align: center;
}

.vision{
    width:45%;
    float:left;
    padding:25px;
    background:white;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

.mission:hover,
.vision:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.why-us{
    width:80%;
    margin:60px auto;
    text-align:center;
}

.why-us h2{
    font-size:30px;
    padding: 10px;
    color:white;
}

.why-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap: wrap;
}

.why-card {
    background:rgb(183, 130, 62);
    color:#222;
    padding:25px;
    border-radius:10px;
    width:280px;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

.why-card h3 {
    margin-bottom:10px;
}

.why-card:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.why-card p{
    text-align: center;
    font-size:15px;
    line-height:1.6;
    color:#333;
}

footer {
    clear: both;
    background-color: #040425;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    max-width:1100px;
    margin:auto;
    margin-bottom: 1rem;
}

.footer-content a {
    color: limegreen;
    text-decoration: none;
}

.footer-content form input,
.footer-content form textarea {
    width: 100%;
    max-width: 250px;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}

.footer-content form button {
    padding: 0.5rem 1rem;
    background-color: limegreen;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-content form button:hover {
    background-color: #32cd32;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}