/* Redesigned styles for a modern website */

:root {
    --primary: #1E3A8A; /* Deep blue */
    --secondary: #64748B; /* Cool gray */
    --accent: #3B82F6; /* Bright blue */
    --light: #F3F4F6; /* Light gray */
    --dark: #111827; /* Dark gray */
    --navy-gradient: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--light);
    padding: 1rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Visited hyperlink color */
a:visited {
    color: yellow;
}

.hero {
    background: var(--navy-gradient),
                url('images/office.png') center/cover no-repeat;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #2563EB;
}

/* CTA Section */
.cta {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin: 4rem 0;
    border-radius: 10px;
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta h2,
.cta p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.services {
    padding: 5rem 2rem;
    background: var(--light);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: center;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 600px;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.service-text h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-text p {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.contact {
    padding: 5rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 10px;
}

.contact .container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary);
    border-radius: 10px;
    background: var(--light);
    color: var(--dark);
    font-size: 1rem;
}

.contact-form button {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #2563EB;
}

.map-container {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}
