/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #000c24;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #003e85;
    color: #ffffff;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav .logo a {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}
header nav .nav-links {
    list-style: none;
    display: flex;
}
header nav .nav-links li {
    margin-left: 20px;
}
header nav .nav-links li a {
    color: #ffffff;
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #003e85;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}
.hero .cta-btn {
    padding: 12px 30px;
    background-color: #00ffce;
    color: #000c24;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}
.hero_bg-illustration {
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    display: flex;
    position: absolute;
    left: 0%;
    right: 0%;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hero_bg-text {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 80%;
    padding: 20px;
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}
.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}
.technology h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.technology .features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}
.technology .feature {
    background-color: #003e85;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
}
.technology .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}
.solutions h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.solution-card {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.solution-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: #003e85;
    color: #ffffff;
    text-align: center;
}
.partners h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.partner-logos img {
    width: 120px;
    margin: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
#address {
    margin-bottom: 40px;
}
.contact button {
    padding: 12px 30px;
    background-color: #00ffce;
    color: #000c24;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

/* Footer Styles */
footer {
    background-color: #000c24;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}
footer ul {
    list-style: none;
    display: inline-block;
    margin-top: 10px;
}
footer ul li {
    display: inline;
    margin-right: 10px;
}
footer ul li a {
    color: #ffffff;
}
