/*
Company colors:

blue: Hex: #182B4C RGB: 24, 43, 76
green: Hex: #336D35 RGB: 51, 109, 53
gold: Hex: #A78622 RGB: 167, 134, 34
*/


/* BASIC RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* TYPOGRAPHY */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 90px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #182B4C;
    color: #fff;
    padding: 0px 0;
    text-align: center;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient( 
        to bottom,
        #ffff 0%,
        #ffff 85%,
        #ffff 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.nav .navcontent {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.companylogo {
    max-width: 150px;
    width: 100%;
    height: auto;
}
.nav-links {
    margin-right: 20px;
}
.nav-links li {
    display: inline;
    margin-left: 20px;
    font-weight: bold;
}
.nav-links a {
    color: #182B4C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #A78622;
}
.nav.hidden {
    transform: translateY(-100%);
}
.nav.scrolled {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    text-align: left;
}
.herotext {
    max-width: 45%;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 4px;
}
.hero p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.headerimage {
    max-width: 45%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0px 0px 30px rgba(3, 3, 3, 0.5);
}

/* Mission */
.mission {
    padding: 60px 0;
    background: linear-gradient( 
        to bottom,
        #182B4C 0%,
        #ffff 5%,
        #ffff 95%,
        #ffff 100%
    );
}
.mission h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #182B4C;
}

.mission-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    color: #182B4C;
    font-size: 1.4rem;
}

.mission-text {
    max-width: 30%;
}

.mission-image {
    max-width: 65%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0px 0px 30px rgba(179, 179, 179, 0.5);
    margin-top: 20px;
}


/* SERVICES */
.services {
    text-align: center;
    padding: 40px 0;

}
.services h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #182B4C;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.service-cards .card {
    flex: 1 1 320px;
    max-width: 350px;
    background: #182B4C;
    padding: 20px;
    border: 3px solid #182B4C;
    border-radius: 8px;
    box-shadow: 0px 0px 25px #182B4C;
    color: white;
}
.service-cards .image {
    width: 90%;
    height: auto;
    margin-bottom: 15px;
    border: 3px solid #182B4C;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #182B4C;
}

/* CHALLENGES */
.challenges {
    background: #f7f7f7;
    padding: 60px 0;
}
.challenge-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* CLIENT LOGOS */
.clients {
    text-align: center;
    padding: 40px 0;
}
.logo-grid img {
    width: 130px;
    margin: 0 15px;
    opacity: .8;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px 0;
    text-align: center;
}
.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.testimonial {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    width: 40%;
}

/* CONTACT */
.contact {
    padding: 60px 0;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact button {
    width: 30%;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 15px 0;
    background: #0b0b45;
    color: #fff;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .hero,
    .mission-content {
        flex-direction: column;
        text-align: center;
    }

    .herotext,
    .mission-text,
    .headerimage,
    .mission-image {
        max-width: 100%;
    }

    .headerimage,
    .mission-image {
        margin-top: 20px;
    }
}

@media (max-width: 1100px) {
    .hero h1,
    .mission h1 {
        font-size: 3rem;
    }
}