body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    background-color: #1e88e5;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: white;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    text-decoration: none;
    margin-left: 10px;
}

.logo {
    max-width: 100px;
}

.nav-bar {
    margin-right: 10px;
}

.nav-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.nav-bar li {
    display: inline;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-bar a:hover {
    text-decoration: underline;
}

.call-to-action {
    background: url('images/icons-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.call-to-action h2 {
    font-size: 3em;
    margin: 20px 0;
}

.call-to-action p {
    font-size: 1.2em;
    margin: 20px 0;
}

.call-to-action .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1e88e5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.call-to-action .cta-button:hover {
    background-color: #1565c0;
}

.banner-container {
    position: relative;
}

.banner {
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: -1;
}

/* Overlay Styling */
.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
}

.about-us-overlay h2 {
    font-size: 3em;
    margin: 0 0 20px;
}

.about-us-overlay p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.bg-light {
    background-color: #f4f4f4;
}

.bg-dark {
    background-color: #333;
    color: white;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.intro h2,
.services h2,
.testimonials h2,
.contact h2 {
    color: #1e88e5;
}

.services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left; /* Align text to the left */
}

.service:hover {
    transform: translateY(-10px);
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.testimonials .testimonial {
    background-color: #e3f2fd;
    margin: 10px 0;
    padding: 20px;
    border-radius: 4px;
    font-style: italic;
    color: #212121;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Increased gap for more space between the form and info */
}

.contact-form h2 {
    color: #1e88e5;
}

.contact-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-form label {
    margin-right: 10px;
    min-width: 80px;
    text-align: right;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    flex: 1;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; /* Ensure text boxes and button are the same width */
}

.contact-form button {
    background-color: #1e88e5;
    color: white;
    padding: 15px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    margin-top: 10px; /* Align button with text boxes */
    width: 84%;
    margin-left: 16%;
}

.contact-form button:hover {
    background-color: #1565c0;
}

.contact-info {
    max-width: 350px;
    text-align: left;
    line-height: 1.6;
    color: white;
}

.contact-info a {
    color: #ff9800;
}

.footer {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.customer-logos {
    background: #1e88e5;
    padding: 40px 0;
    text-align: center;
    overflow: hidden; /* Prevents logos from overflowing while scrolling */
}

.logo-carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.logo-carousel img {
    width: 100px;
    height: auto;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}