* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #222;
	background: #f4f6f8;
}

/* Header */

header {
	background: #17202a;
	color: white;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	font-size:1.6rem;
}

nav a {
	color: white;
	text-decoration: none;
	margin-left: 25px;
	font-weight: 500;
}

nav a:hover {
	color:#4da3ff;
}

/* Hero */

.hero {
	background: white;
	text-align: center;
	padding: 100px 20px;
}

.hero h2 {
	font-size: 3rem;
	margin-bottom: 15px;
	color: #17202a;
}

.hero p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 30px;
}

/* Button */

.button {
	display: inline-block;
	background: #1769aa;
	color: white;
	padding: 13px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
}

.button:hover {
	background: #0f4f80;
}

/* Sections */

.about,
.services {
	max-width: 1100px;
	margin: auto;
	padding: 70px 25px;
	text-align: center;
}

.about h2,
.services h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #17202a;
}

.about p {
	max-width: 750px;
	margin: 10px auto;
	color: #555;
}

/* Services */

.service-list {
	display: flex;
	gap: 25px;
	margin-top: 35px;
}

.service {
	background: white;
	padding: 30px;
	border-radius: 10px;
	flex: 1;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service h3 {
	margin-bottom: 10px;
	color: #1769aa;
}

.service p {
	color: #666;
}

/* Footer */

footer {
	background: #17202a;
	color: #ccc;
	text-align: center;
	padding: 25px;
	margin-top: 30px;
}

/* Mobile */

@media (max-width: 700px) {
	
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
    }
}
	header {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
	}
	nav a {
		margin: 0 8px;
	}
	.hero {
		padding: 70px 20px;
	}
	.hero h2 {
		font-size: 2.2rem;
	}
	.service-list {
		flex-direction: column;
	}
}
/* Professional Header */

.site-header {
    background: #17202a;
    padding: 18px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1769aa;
    color: white;

    border-radius: 8px;

    font-size: 1.4rem;
    font-weight: bold;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.main-nav a:hover {
    color: #4da3ff;
}

/* Hero Section */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(23, 32, 42, 0.92),
            rgba(23, 32, 42, 0.92)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

.eyebrow {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #4da3ff;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.hero-text {
    font-size: 1.2rem;
    color: #d5d9dd;
    max-width: 650px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    border: 2px solid white;
}

.secondary-button:hover {
    background: white;
    color: #17202a;
}
/* Brand */

.logo-mark {
    letter-spacing: -1px;
    box-shadow: 0 4px 12px rgba(23, 105, 170, 0.3);
}

.logo-text {
    letter-spacing: 0.5px;
}
.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
/* Services Introduction */

.section-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #666;
}
/* Service Images */

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
/* About Section */

.about {
    background: white;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;

    padding: 80px 25px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #17202a;
}

.about-text p {
    margin-bottom: 18px;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile About Section */

@media (max-width: 700px) {

    .about-content {
        flex-direction: column;
        gap: 35px;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        height: 250px;
    }
}
/* Contact CTA */

.contact-cta {
    background: #17202a;
    color: white;
    text-align: center;
    padding: 80px 25px;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.contact-cta p:not(.eyebrow) {
    color: #d5d9dd;
    margin-bottom: 30px;
}
/* Footer */

footer {
    background: #101820;
    color: white;
    padding: 60px 25px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content h4 {
    margin-bottom: 15px;
}

.footer-content p {
    color: #b8c0c8;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #b8c0c8;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 45px auto 0;
    padding-top: 20px;
    border-top: 1px solid #303840;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Mobile Footer */

@media (max-width: 700px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}
/* Inner Page Hero */

.page-hero {
    background: #17202a;
    color: white;
    text-align: center;
    padding: 90px 25px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
    color: #d5d9dd;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 700px) {

    .page-hero {
        padding: 65px 20px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}
/* Contact Page */

.contact-section {
    background: #f4f6f8;
    padding: 80px 25px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #17202a;
}

.contact-info > p {
    color: #555;
    margin-bottom: 35px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: #1769aa;
    margin-bottom: 5px;
}

.contact-item p {
    color: #555;
}


/* Contact Form */

.contact-form-container {
    background: white;
    padding: 35px;
    border-radius: 12px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #d5d9dd;
    border-radius: 6px;

    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1769aa;
    box-shadow: 0 0 0 2px rgba(23, 105, 170, 0.1);
}


/* Form Button */

.contact-form-container .button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}


/* Mobile Contact */

@media (max-width: 700px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 25px;
    }
}
/* Mobile Navigation */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 700px) {

    .site-header .container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #17202a;

        flex-direction: column;
        gap: 0;

        padding: 10px 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 25px;
        margin: 0;
    }
}