@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/montserrat.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--electric-blue: #007BFF;
	--dark-blue: #0056b3;
	--light-color: #A0D3E8;
	--dark-color: #4B4B4B;
	--silver: #C0C0C0;
}

*, ::after, ::before, ::backdrop, ::file-selector-button {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0 solid;
}
html, :host {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent;
}
hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}
abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}
a {
	color: inherit;
	-webkit-text-decoration: inherit;
	text-decoration: inherit;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}
:-moz-focusring {
	outline: auto;
}
progress {
	vertical-align: baseline;
}
summary {
	display: list-item;
}
ol, ul, menu {
	list-style: none;
}
img, svg, video, canvas, audio, iframe, embed, object {
	display: block;
	vertical-align: middle;
}
img, video {
	max-width: 100%;
	height: auto;
}
button, input, select, optgroup, textarea, ::file-selector-button {
	font: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	letter-spacing: inherit;
	color: inherit;
	border-radius: 0;
	background-color: transparent;
	opacity: 1;
}
:where(select:is([multiple], [size])) optgroup {
	font-weight: bolder;
}
:where(select:is([multiple], [size])) optgroup option {
	padding-inline-start: 20px;
}
::file-selector-button {
	margin-inline-end: 4px;
}
::placeholder {
	opacity: 1;
}
@supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
	::placeholder {
		color: currentcolor;
		@supports (color: color-mix(in lab, red, red)) {
			color: color-mix(in oklab, currentcolor 50%, transparent);
		}
	}
}
textarea {
	resize: vertical;
}
::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-date-and-time-value {
	min-height: 1lh;
	text-align: inherit;
}
::-webkit-datetime-edit {
	display: inline-flex;
}
::-webkit-datetime-edit-fields-wrapper {
	padding: 0;
}
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
	padding-block: 0;
}
:-moz-ui-invalid {
	box-shadow: none;
}
button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
	appearance: button;
}
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
	height: auto;
}
[hidden]:where(:not([hidden='until-found'])) {
	display: none !important;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: white;
    text-align: center;
    overflow: hidden;
}

#hero > div:first-child {
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    font-family: Montserrat;
}

#hero h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 1rem 0 1.5rem;
    font-family: Montserrat;
		text-align: left;
		color: white;
}

#hero .hero-button {
    display: inline-block;
    background-color: var(--dark-blue);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

#hero .hero-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.25rem;
        text-align: center;
    }
}

@media (width >= 64rem) {
    #hero {
        justify-content: flex-start;
    }

    #hero > div:first-child {
        text-align: left;
        padding-left: 8%;
    }
}

.logo {
    height: 80px;
    width: auto;
}

header[data-ssg="header"] {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 50;
	background-color: rgba(20, 20, 20, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header[data-ssg="header"] > div {
	display: flex;
	margin: 0 auto;
	max-width: 1600px;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem;
	justify-content: space-between;
	flex-shrink: 0;
}

header[data-ssg="header"] > div > div:first-child {
	width: 300px;
	flex-shrink: 0;
}

.main-menu > ul {
	width: 100%;
	display: block;
	font-size: 16px;
	padding: 1rem;
}

.main-menu > ul > li {
	padding: 0.5rem 1rem;
}

.main-menu a {
	color: #f0f0f0;
	transition: all 0.2s ease;
  font-weight: 500;
  text-decoration: none;
}

.main-menu a:hover {
	color: var(--electric-blue);
}

.main-menu > ul > li > ul {
	padding: 0.25rem 0.75rem;
}

.main-menu > ul > li:hover > ul {
	display: block;
}

.main-menu > ul > li > ul > li {
 padding: 0.50rem 0;
}

.main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	background-color: rgba(20, 20, 20, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.main-menu.menu-show {
	display: block;
}

.menu-btn, .close-btn {
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	color: #ffffff;
	justify-self: end;
}

.close-btn {
	margin: 1rem;
}

header[data-ssg="header"] > div > div:first-child{
	flex-grow: 0;
}

.nav-cta-button {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--dark-blue);
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-cta-button:hover {
    background-color: var(--electric-blue);
    color: #ffffff !important;
}


@media (width >= 72rem) {
	.main-menu {
		width: 100%;
		height: 100%;
		position: relative;
		display: block;
		flex-grow: 0;
		overflow: visible;
		background-color: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	.main-menu > ul {
		display: flex;
		align-items:center;
		justify-content: flex-end;
		gap: 1.5rem;
		padding: 0;
	}
	.main-menu > ul > li {
		padding: 0;
		cursor: default;
	}
	.main-menu > ul > li {
    padding: 1rem 0.5rem;
  }
	.main-menu > ul > li > ul {
		position:absolute;
		z-index: 60;
		transform: translate(-0.75rem, 1rem);
    background-color: rgba(30,30,30,0.95);
    backdrop-filter: blur(10px);
		padding: 0.5rem 0.75rem;
		border-radius: 12px;
		display: none;
	}
	.menu-btn, .close-btn {
		display: none;
	}
}

body {
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

section {
    padding: 5rem 1rem;
}

#about, #faqs {
    background-color: #f8f9fa;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 1rem 0;
    color: var(--dark-color);
}

p, li {
    line-height: 1.7;
    font-size: 1.1rem;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container p {
		margin: 1rem 0;
}

/* === About Section === */
p.highlight {
    font-style: italic;
    color: var(--dark-color);
    font-weight: 500;
    margin: 2rem 0;
}

.no-cost-box {
    background-color: #e9f5ff;
    border-left: 4px solid var(--electric-blue);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.no-cost-box h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

#about .team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 320px;
    text-align: center;
    margin: 2rem auto 0;
}

#about .team-member img {
    width: 256px;
		height: 256px;
    /*height: 150px;*/
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

/* === Services Section === */
#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#services .service {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

#services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

/* === FAQs Section === */
#faqs .container {
    max-width: 800px;
}

#faqs .faq {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

#faqs .faq:last-child {
    border-bottom: none;
}

/* === CTA Section === */
#cta {
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 5rem 1rem;
    text-align: center;
}

#cta h2 {
    color: #ffffff;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* === Footer === */
footer {
    background-color: var(--dark-color);
    color: #e0e0e0;
    padding: 5rem 1rem 0;
    text-align: left;
    font-size: 1rem;
    color: #e0e0e0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h2 {
		text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--electric-blue);
}

footer img {
    height: 100px;
    margin-bottom: 1.5rem;
		width: auto;
}

.footer-about p {
    line-height: 1.6;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

footer a svg {
    width: 24px;
    height: 24px;
    fill: #e0e0e0;
    transition: fill 0.3s;
}

footer a:hover svg {
    fill: var(--electric-blue);
}

.footer-links {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 1100px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    color: #e0e0e0;
}

/* === Polished Animations & Layouts === */

/* About Section Two-Column Layout */
@media (min-width: 64rem) {
    .about-container {
        display: flex;
        align-items: center;
        gap: 4rem;
    }
    .about-text {
        flex: 1;
        text-align: left;
    }
    .about-team {
        flex-basis: 350px;
        flex-shrink: 0;
    }
    #about h2 {
        text-align: left;
        margin-bottom: 2rem;
    }
}

/* Service Card Icons */
.service-icon {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Enhanced Service Card Hover */
#services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}
#services .service .service-icon {
    transition: transform 0.3s;
}
#services .service:hover .service-icon {
    transform: scale(1.1);
}


/* === Inner Page Layout === */
.page-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: var(--dark-color);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.page-content {
    padding: 5rem 1rem;
}

/* About Page Specifics */
.about-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
		margin: 2rem 0;
}

@media (min-width: 64rem) {
    .page-hero {
        text-align: left;
    }
}

/* === Contact Page === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 64rem) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        align-items: start;
    }
}

.contact-details h2, .contact-form-container h2 {
    text-align: left;
}

.contact-details .contact-info-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.contact-details .contact-info-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form-container small {
	padding-top: 1rem;
	display: block;
}

.contact-form-container small a {
	text-decoration: underline;
	color: var(--electric-blue);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    background-color: #fff;
}

.form-submit-button {
    display: inline-block;
    background-color: var(--dark-blue);
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.form-submit-button:hover {
    background-color: #0056b3;
}

/* === Service Detail Page === */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 64rem) {
    .service-detail-layout {
        grid-template-columns: 2.5fr 1fr;
    }
}

.service-main-content h2 {
    text-align: left;
}

.service-main-content ul, .service-main-content ol {
    padding-left: 20px;
    margin-top: 1.5rem;
}

.service-main-content ul li {
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding-left: 0;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-list li span {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--electric-blue);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: sticky;
    top: 120px;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-box .cta-button-large {
    margin-top: 1.5rem;
    width: 100%;
}

/* === Blog Post Page === */
#article {
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 1rem 5rem;
}

#article h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

#article > div:first-of-type {
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

#article > img {
    border-radius: 10px;
    margin-bottom: 2rem;
}

.small.single p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.small.single a {
    color: var(--electric-blue);
    text-decoration: underline;
    transition: color 0.3s;
}

.small.single a:hover {
    color: var(--dark-blue);
}

.small.single p:last-child {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 3rem;
}
/* === Blog Listing Page === */
#article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

main > section#article-list {
    padding: 150px 1rem 5rem;
}

#article-list > a {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #333;
}

#article-list > a:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

#article-list > a > div:first-child img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

#article-list > a > div:last-child {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#article-list h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

#article-list p[itemprop="description"] {
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

#article-list p[itemprop="datePublished"] {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
    flex-grow: 0;
}

/* === Latest News Section on Homepage === */
#latest-news {
    background-color: #f8f9fa;
}

#latest-news > div {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

#latest-news h2 {
    margin-bottom: 1rem;
}

#latest-news h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #6c757d;
}

#latest-news #article-list {
    margin-bottom: 3rem;
}

#latest-news > div > div:last-of-type {
    text-align: center;
}

#latest-news > div > div:last-of-type a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--dark-blue);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

#latest-news > div > div:last-of-type a:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#latest-news > div > div:last-of-type a svg {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 3;
}
