/* General Styles */
* {
    box-sizing: border-box; /* Ensures padding and border are included in the element's width and height */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a.active {
    background: #007bff;
    border-radius: 5px;
}

.hero {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    margin: 0;
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}

.hero .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background: #0056b3;
    text-decoration: none;
    border-radius: 5px;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background: #e9ecef;
}

.features .feature {
    width: 30%;
    text-align: center;
}

.features .feature h2 {
    margin-bottom: 10px;
}

section {
    padding: 40px 20px;
    background: #fff;
}

.services, .solutions, .case-studies {
    display: flex;
    justify-content: space-between;
}

.service, .solution, .case-study, .blog-post {
    width: 30%;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact form input, .contact form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.contact form button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.contact-details p {
    margin: 5px 0;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

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

footer .legal a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

footer .newsletter input {
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    width: calc(100% - 120px);
    box-sizing: border-box;
}

footer .newsletter button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100px;
}

/* Login Page Styles */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background: #f4f4f4;
}

.login-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.login-form input {
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.login-form .register-link {
    margin-top: 15px;
}

.login-form .register-link a {
    color: #007bff;
    text-decoration: none;
}
