html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f8fafc;
    color: #111827;
}

/* Generic content wrapper */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

/* HERO SECTION */
.home-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 160px;
    padding-bottom: 100px; /* extra top space below navbar */
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-quote {
    margin-top: 10px;
    margin-bottom: 8px;
}

.hero-quote-author {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
}

.hero-subtitle {
    margin-top: 0;
    margin-bottom: 16px;
    color: #4b5563;
}

/* Picture boxes (placeholders for images) */
.image-box {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background-color: #e5e7eb;
    border-radius: 12px;
    border: 2px dashed #9ca3af;
}





/* Services */
#services-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #326ba7;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-item h3 {
    margin-top: 12px;
    margin-bottom: 8px;
    color: #326ba7;
}

.service-item p {
    margin: 0;
    color: #4b5563;
}

.service-item .image-box {
    max-width: none;
    height: 480px;
}

/* About + Contact layout */
.about-contact {
    display: flex;
    gap: 80px;
    margin-top: 24px;
    margin-bottom: 80px;
}

.mission,
.contact-panel {
    flex: 1;
}

.mission p {
    color: #374151;
    line-height: 1.6;
}

/* Contact form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font: inherit;
    background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb22;
}

/* Buttons */
.get-started-btn,
.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 12px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #2563eb;
    color: #ffffff;
    transition: background-color 0.15s ease, transform 0.1s ease;
    text-decoration: none;
}

.get-started-btn:hover,
.submit-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.get-started-btn:active,
.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background-color: #326ba7;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    /*#111827*/
}

/* Responsive layout */
@media (max-width: 900px) {
    .home-hero {
        flex-direction: column;
        padding-top: 100px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-contact {
        flex-direction: column;
    }

    .image-box {
        max-width: 100%;
    }
}
