/* Basic Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
    font-family: 'Arial', sans-serif; /* Simple, widely available font */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    color: #333;
    padding: 1rem 0;
    position: sticky; /* Make header stick to top */
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #512da8; /* Example brand color */
    text-decoration: none;
}

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

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

header nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #0056b3; /* Darker shade on hover */
}

/* Hero Section */
.hero {
    background-color: #512da8; /* Example background color */
    color: #ffffff;
    min-height: 60vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Style */
.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #512da8;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #eee; /* Slightly darker background on hover */
    color: #0056b3;
}

/* General Section Styling */
.section {
    padding: 4rem 0;
    text-align: center;
}

.section-alt {
    background-color: #ffffff; /* Alternate background for contrast */
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #512da8;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: #555;
}

.contact-prompt {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}
.contact-prompt a {
    color: #512da8;
    text-decoration: none;
}
.contact-prompt a:hover {
    text-decoration: underline;
}


/* Service & Solution Grids */
.service-grid, .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 2rem;
    text-align: left;
}

.service-item, .solution-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-item:hover, .solution-item:hover {
     transform: translateY(-5px); /* Slight lift effect */
}

.section-alt .service-item,
.section-alt .solution-item {
    background-color: #f9f9f9; /* Lighter background if section is white */
}


.service-item i, .solution-item i {
    font-size: 2rem;
    color: #512da8;
    margin-bottom: 1rem;
    display: block; /* Center icon easily */
    text-align: center;
}

.service-item h3, .solution-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #333;
}

.service-item p, .solution-item p {
    font-size: 0.95rem;
    color: #555;
    text-align: center;
}


/* Contact Section */
.contact-details {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details i {
    color: #512da8;
    margin-right: 10px;
}

.contact-details a {
    color: #512da8;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Optional Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0 auto;
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resize */
}

.contact-form .btn { /* Style submit button */
     background-color: #512da8;
     color: #ffffff;
     width: 100%;
     font-size: 1.1rem;
     margin-top: 1rem;
}

.contact-form .btn:hover {
     background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem; /* Add space above footer */
    font-size: 0.9rem;
}
footer p {
    margin-bottom: 0.5rem;
}

footer strong {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }

    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        margin-top: 10px;
        flex-wrap: wrap; /* Allow nav items to wrap */
        justify-content: center;
    }
    header nav ul li {
        margin: 5px 10px; /* Adjust spacing for wrap */
    }

    .service-grid, .solution-grid {
        grid-template-columns: 1fr; /* Stack items on smaller screens */
    }
}