* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #0d6efd;
    color: white;
}

header .logo h1 {
    font-size: 1.5em;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-button {
    background-color: #0d6efd;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 2em;
    text-align: center;
}

section h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
}

.footer-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.footer-links li {
    margin: 0 1em;
}

.footer-links li a {
    color: white;
    text-decoration: none;
}
.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 1em;
    border-radius: 8px;
}
#contact {
    padding: 2em;
    background-color: #f8f9fa;
    text-align: center;
}

#contact h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

#contact p {
    margin-bottom: 1.5em;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-top: 1em;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75em;
    margin-top: 0.5em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form textarea {
    resize: vertical;
}

.submit-button {
    margin-top: 1.5em;
    background-color: #0d6efd;
    color: white;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.submit-button:hover {
    background-color: #0b5ed7;
}
#industries {
    background-color: #f8f9fa;
    padding: 1em 2em;
    text-align: center;
}

#industries h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #333;
}

.industries-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.industry {
    flex: 1;                   /* Makes each item take equal space */
    text-align: center;         /* Centers the text in each item */
    font-size: 1em;
    font-weight: bold;
    color: #6c757d;             /* Light grey color */
    padding: 0.5em 0;           /* Adds some padding to the top and bottom */
    border-right: 1px solid #e9ecef; /* Adds a divider between items */
}

.industry:last-child {
    border-right: none;         /* Removes the right border from the last item */
}
#solutions {
    padding: 2em;
    text-align: center;
    background-color: #f8f9fa;
}

#solutions h3 {
    font-size: 2em;
    margin-bottom: 1.5em;
    color: #333;
}

.solutions-cards {
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
    flex-wrap: wrap;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 1.5em;
    box-sizing: border-box;
    text-align: left;
    min-height: 400px; /* Sets a minimum height for the card */
}

.solution-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5em; /* Increases space between image and text */
}

.solution-card h4 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #333;
}

.solution-card p {
    font-size: 1em;
    color: #6c757d;
}

@media (max-width: 768px) {
    .solution-card {
        width: 100%;
    }
}
#benefits {
    padding: 1.5em;
    text-align: center;
    background-color: white;
    font-size: 0.95em; /* Slightly smaller text size */
    max-width: 900px; /* Limit the width of the section */
    margin: 0 auto; /* Center align the section */
}

#benefits h3 {
    font-size: 2em;
    margin-bottom: 1.5em;
    color: #333;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Creates two columns */
    gap: 1.5em;
}

.benefit {
    text-align: center;
    padding: 1em;
    background-color: white;
}

.benefit-image {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
    border-radius: 8px;
}

.benefit h4 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #333;
}

.benefit p {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 1em;
}
.benefit:last-child {
    border-right: none;         /* Removes the right border from the last item */
}

@media (max-width: 768px) {
    .benefit-cards {
        grid-template-columns: 1fr;  /* Stacks the cards in one column on smaller screens */
    }
}
#about {
    background: linear-gradient(to right, #e0f7fa, #b2ebf2); /* Light blue gradient */
    padding: 3em 2em;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.about-text {
    flex: 1;
    text-align: left;
    max-width: 600px; /* Limits text width for better readability */
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #333;
}

.about-text p {
    font-size: 1.1em;
    color: #6c757d;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        justify-content: center;
    }
}
#navbar {
    background: linear-gradient(to right, #e0f7fa, #b2ebf2); /* Light blue gradient */
    border-radius: 20px; /* Rounded corners */
    padding: 0.8em 2em; /* Padding for spacing */
    box-shadow: 0 4px 0 12px rgb(0, 0, 0), 0 6px 0 12px rgb(0, 0, 0); /* Slight shadow for better visibility */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2em;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.logo img {
    width: 30px;
    border-radius: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00796b; /* Darker shade of blue on hover */
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 1em;
    }
}
#email {
    font-weight: bold;
    color: #b2ebf2; /* Slightly darker color for emphasis */
}