#body_bg
{ 
background-color:#9F81F7; 
}

#login-form{ 

background:#A9D0F5; 
border: 3 px solid #eeeee; 
padding:9px 9px;
 width:300px; 
 border-radius:5px; 
}

/* style.css */

:root {
    --primary-color: #0056b3; /* A professional blue */
    --secondary-color: #f4f7f6; /* Light grey for sections */
    --dark-color: #333333;
    --light-text: #ffffff;
    --dark-text: #555555;
    --border-color: #e0e0e0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: var(--dark-color);
    color: var(--light-text);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-weight: 700;
    font-size: 2.5em;
}

.hero {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
}

.hero h2 {
    margin-bottom: 15px;
    font-size: 3em;
    font-weight: 700;
}

.hero p {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
}

.hero-images {
    display: flex; /* Enables Flexbox */
    flex-wrap: wrap; /* Allows items to wrap to the next line on smaller screens */
    justify-content: center; /* Centers images horizontally when there's space */
    align-items: center; /* Aligns images vertically if they have different heights */
    gap: 20px; /* Space between the images */
    margin-top: 30px; /* Space above the image container */
    margin-bottom: 30px; /* Space below the image container */
}

.hero-image {
    max-width: 100%; /* Ensures images don't overflow their individual flex container */
    width: 250px;    /* Base width for each image - they'll shrink if needed */
    height: auto;    /* Maintain aspect ratio */
    border-radius: 8px; /* Apply rounded corners */
    object-fit: contain; /* Ensures the image fits without cropping */
    flex-shrink: 1; /* Allows the images to shrink if there isn't enough space */
    flex-grow: 1; /* Allows images to grow slightly if there's extra space, up to max-width */
}

/* Make images stack on very small screens if necessary */
@media (max-width: 650px) { /* Adjust this breakpoint as needed */
    .hero-image {
        width: 100%; /* Each image takes full width on small screens */
        max-width: 400px; /* Limit their max size even when stacking */
    }
}

.services {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-text);
}

.services h2, .contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--dark-text);
}

.contact {
    background: var(--dark-color);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.contact p {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 25px;
    background: #222222;
    color: var(--light-text);
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .services h2, .contact h2 {
        font-size: 2em;
    }
    .service-item {
        flex: 1 1 100%; /* Stack items on small screens */
        max-width: none;
    }
    header h1 {
        font-size: 2em;
    }
}
