body {
    font-family: 'Dosis-SemiBold', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #241f47;
    color: #ffffff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensures the header is in the foreground */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    max-height: 50px;
    z-index: 1001; /* Ensures the logo is in the foreground */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
}

.banner {
    background-color: #241f47;
    color: #ffffff;
    padding: 150px 20px; /* Increased padding to ensure content is not hidden behind the fixed header */
    text-align: center;
}

.banner h1 {
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
    margin: 0 0 20px;
    padding-top: 80px; /* Added padding to ensure no clipping */
}

.banner .cta-button {
    background-color: #ffffff;
    color: #241f47;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
    border-radius: 5px;
}

.banner .cta-button:hover {
    background-color: #5aa7ff;
    color: #ffffff;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}

.services-overview {
    background-color: #f9f9f9;
    text-align: center;
}

.services-overview h2 {
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    width: 45%;
    margin-bottom: 40px;
    text-align: center;
}

.service i {
    font-size: 50px;
    color: #5aa7ff;
    margin-bottom: 20px;
}

.service h3 {
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.about, .solutions, .blog, .contact {
    text-align: center;
}

.about h2, .solutions h2, .blog h2, .contact h2 {
    font-family: 'Dosis-SemiBold', sans-serif;
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 20px;
}

.about p, .solutions p, .blog p, .contact p {
    font-size: 1em;
}

.more-link, .read-more, .contact-link {
    color: #241f47;
    text-decoration: none;
    font-weight: 700;
}

footer {
    background-color: #241f47;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer .social-links a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #5aa7ff;
}

footer .social-links i {
    font-size: 24px;
}
footer a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
    margin-left: 12px;
}
.imgresize {
    max-width: 60%;
    height: auto;
}

figcaption {
    color: #bfb9b9e3;
    font-size: 12px;
}
