﻿/* Loading Animation for Pages */
html {
  scroll-behavior: smooth;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0d2337; /* Your blue shade */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: transparent;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.loaded .content {
    opacity: 1;
}

/* End of Section */

body {
	min-height: 100vh;
	width: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	animation: fadeIn 1.2s ease-in forwards;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('bluewiretexture.png');
  background-size: cover;
  opacity: 0.85; /* try 0.05 to 0.2 for subtlety */
  z-index: -1;
  transform: scale(1.05);
  animation: softDrift 10s ease-in-out infinite;
}

@keyframes softDrift {
  0% { transform: scale(1.05) translate(0, 0); }
  50% { transform: scale(1.05) translate(-10px, -10px); }
  100% { transform: scale(1.05) translate(0, 0); }
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
}

.navbar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-left: 300px;
	position: relative;
	height: 80px;
	margin-top: 100px;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, rgba(58,176,249,0), #182837 30%, #182837 70%, rgba(58,176,249,0));
}

.nav-image {
	display: flex;
	width: 400px;
	height: 300px;
	object-fit: contain;
	margin-left: 60px;
}

.navbar img {
	width: 400px;
	height: 275px;
	margin-left: 20px;
}

.links {
	display: flex;
	margin-left: 320px;
}

.navigation {
	display: flex;
	gap: 70px;
	list-style: none;
}

.navigation li a {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 26px;
	text-decoration: none;
	font-family: Montserrat, sans-serif;
	color: #e7ebeb;
	transition: transform 0.3s ease-in, text-shadow 0.3s ease-in;
	text-shadow: 0px 3px 10px rgba(231, 235, 235, 0.7);
	font-weight: 600;
}

.navigation li:hover {
	transform: translateY(-3px);
	text-shadow: 0px 4px 10px rgba(231, 235, 235, 0.9);
}

.hero {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 75%;
	margin: -30px auto 0px;
	height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-content h1 {
	font-family: Montserrat, sans-serif;
	font-size: 55px;
	color: #EBEEEF;
	font-weight: 600;
	text-shadow: 0px 3px 8px rgba(231, 235, 235, 0.5);

}

.hero-content h2 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
	margin-top: -15px;
}

.hero-button {
	margin: 50px auto;
	width: 90%;
	padding: 10px;
	font-size: 20px;
	font-family: Open Sans, sans-serif;
	cursor: pointer;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
	background-color: #E9EEEF;
	border-radius: 5px;
}

.hero-button:hover {
	background-color: #314455;
	color: white;
	box-shadow: 0 0 15px rgba(124, 161, 199, 0.6);
}

.arrow-divider {
	border-top: 4px solid rgba(255,255,255,0.1);
	margin: 60px auto;
	width: 80%;
	animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); }
  50% { border-color: rgba(255,255,255,0.3); }
}

.about-wrapper {
	display: flex;
	flex-direction: column;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
	padding: 20px;
	width: 90%;
	margin: 30px auto;
	border: 1px solid black;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.about-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
}

.about-header img {
	height: 50px;
	width: 50px;
}

.about-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 0px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.about {
	text-align: left;
	padding: 10px;
}

.about p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;
	line-height: 40px;
}

.tagline {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	font-style: italic;
	color: #ebeeef;
	margin-top: 80px;
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	padding: 20px;
	margin: 30px auto;
	width: 80%;
	border: 1px solid black;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
}

.services-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.services-header img {
	height: 50px;
	width: 50px;
}

.services-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.service-boxes {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	gap: 40px;
}

.service {
	display: flex;
	flex-direction: column;
	background-color: #132332;
	padding: 20px;
	gap: 20px;
	border-radius: 8px;
	align-items: center;
	margin-top: 20px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.7);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
	transform: translateY(-8px);
 	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.service img {
	width: 300px;
	height:300px
}

.service p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;		
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
}

.blurb {
	font-family: Open Sans, sans-serif;
	font-size: 20px;
	color: #ebeeef;
	font-style: italic;
	margin-top: -15px;		
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	border-top: 2px solid #132332;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.footer-image-left img {
	width: 100px;
	height: 100px;
}

.footer-image-right img {
	width: 100px;
	height: 100px;
}

.footer p {
	font-size: 12px;
	font-family: Open Sans, sans-serif;
	color: #EBEEEF;
	text-decoration: underline;
}

.contact-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 30px auto;
	width: 60%;
	border: 1px solid black;
	border-radius: 8px;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.contact-header img {
	height: 50px;
	width: 50px;
}

.contact-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.closer p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;	
}

.contact {
	display: flex;
	flex-direction: column;
	width: 60%;
	align-items: center;
}

.contact h1{
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;
}

.contact a{
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;
}

.email-button {
	margin: 10px auto;
	width: 90%;
	padding: 10px;
	font-size: 20px;
	font-family: Open Sans, sans-serif;
	cursor: pointer;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
	background-color: #E9EEEF;
	border-radius: 5px;
}

.email-button:hover {
	background-color: #314455;
	color: white;
	box-shadow: 0 0 15px rgba(124, 161, 199, 0.6);
}

.featuredprojectwrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 30px auto;
	width: 85%;
	border: 1px solid black;
	border-radius: 8px;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.featured-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.featured-header img {
	height: 50px;
	width: 50px;
}

.featured-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.featured {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.featured-image {
	width: 100%;
	height: 400px;
}

.featured img {
	margin-top: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  	border-radius: 8px;
  	max-width: 100%;
  	margin: 20px auto;
  	display: block;
	height: 400px;
}

.featured h1 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	margin-top: 50px;
}

.featured ul li {
	font-family: Montserrat, sans-serif;
	font-size: 22px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	font-weight: 500;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

button:focus, .email-button:focus, .hero-button:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(124,161,199,0.9);
}

.portfolio {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 85%;
	margin: -30px auto 30px;
	height: 450px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
}

.portfolio-blurb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.portfolio h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	text-align: center;
	color: white;
}

.portfolio-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 40px;
}

.portfolio-gallery img {
	width: 400px;
	height: auto;
	object-fit: contain;
}

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  color: #e7ebeb;
}

/* Mobile Styles */
@media (max-width: 768px) {

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  flex: 1 0 auto;
}

  .header-wrapper {
    flex-direction: column;
    align-items: stretch; /* full width */
    padding: 10px 20px;
    position: relative;
  }

  .nav-image {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .nav-image img {
    width: 200px;
    height: auto;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-top: -40px; /* pulls it up next to the logo */
    margin-right: 10px;
    z-index: 1001;
    font-size: 28px;
    cursor: pointer;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #1e2b39;
    margin: 0;
    padding: 20px 0;
    position: absolute;
    top: 100%; /* directly under header-wrapper */
    left: 0;
    z-index: 1000;
  }

  .navbar.active {
    display: flex;
    height: auto;
    z-index: 1002;
  }

  .links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 0;
  }

  .navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navigation li {
    width: 100%;
  }

  .navigation li a {
    font-size: 20px;
    padding: 12px;
    display: block;
    text-align: center;
    color: white;
    border-radius: 8px;
    text-decoration: none;
  }

  .navbar::after {
    display: none;
  }
    
.hero {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 75%;
	margin: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
	padding: 20px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-content h1 {
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	color: #EBEEEF;
	font-weight: 600;
	text-shadow: 0px 3px 8px rgba(231, 235, 235, 0.5);

}

.hero-content h2 {
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	color: #EBEEEF;
	margin-top: 15px;
}

.hero-button {
	margin: 50px auto;
	width: 90%;
	padding: 10px;
	font-size: 16px;
	font-family: Open Sans, sans-serif;
	cursor: pointer;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
	background-color: #E9EEEF;
	border-radius: 5px;
}

.hero-button:hover {
	background-color: #314455;
	color: white;
	box-shadow: 0 0 15px rgba(124, 161, 199, 0.6);
}

.arrow-divider {
	border-top: 4px solid rgba(255,255,255,0.1);
	margin: 60px auto;
	width: 80%;
	animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); }
  50% { border-color: rgba(255,255,255,0.3); }
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	padding: 20px;
	margin: 30px auto;
	width: 100%;
	border: 1px solid black;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
}

.services-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.services-header img {
	height: 50px;
	width: 50px;
}

.services-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.service-boxes {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	gap: 20px;
}

.service {
	display: flex;
	flex-direction: column;
	background-color: #132332;
	padding: 20px;
	gap: 20px;
	border-radius: 8px;
	align-items: center;
	margin-top: 20px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.7);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img {
	width: 200px;
	height:auto;
}

.service p {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	color: #ebeeef;		
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
}

.blurb {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	color: #ebeeef;
	font-style: italic;
	margin-top: -15px;		
}

.featuredprojectwrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 30px auto;
	width: 100%;
	border: 1px solid black;
	border-radius: 8px;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.featured-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.featured-header img {
	height: 50px;
	width: 50px;
}

.featured-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.featured {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.featured-image {
	width: 100%;
	height: auto;
}

.featured img {
	margin-top: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  	border-radius: 8px;
  	max-width: 100%;
  	margin: 20px auto;
  	display: block;
	height: auto;
}

.featured h1 {
	font-family: Montserrat, sans-serif;
	font-size: 20px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	margin-top: 50px;
}

.featured ul li {
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	font-weight: 500;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.about-wrapper {
	display: flex;
	flex-direction: column;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
	padding: 20px;
	width: 100%;
	margin: 30px auto;
	border: 1px solid black;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.about-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
}

.about-header img {
	height: 50px;
	width: 50px;
}

.about-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
	text-shadow: 0px 0px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.about {
	text-align: left;
	padding: 10px;
}

.about p {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	color: #ebeeef;
	line-height: 40px;
}

.tagline {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #ebeeef;
	margin-top: 80px;
}

.contact-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 30px auto;
	width: 80%;
	border: 1px solid black;
	border-radius: 8px;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.contact-header img {
	height: 50px;
	width: 50px;
}

.contact-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.closer p {
	font-family: Open Sans, sans-serif;
	font-size: 16px;
	color: #ebeeef;	
}

.contact {
	display: flex;
	flex-direction: column;
	width: 80%;
	align-items: center;
}

.contact h1{
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	color: #ebeeef;
}

.contact a{
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	color: #ebeeef;
}

.portfolio {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 95%;
	margin: -30px auto 30px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
}

.portfolio-blurb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.portfolio h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	text-align: center;
	color: white;
}

.portfolio-gallery {
	display: flex;
	flex-direction: column;
}

.portfolio-gallery img {
	width: 400px;
	height: auto;
	object-fit: contain;
}


}










@media (min-width: 769px) and (max-width: 1024px) {
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  flex: 1 0 auto;
}

  .header-wrapper {
    flex-direction: column;
    align-items: stretch; /* full width */
    padding: 10px 20px;
    position: relative;
  }

  .nav-image {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .nav-image img {
    width: 200px;
    height: auto;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-top: -40px; /* pulls it up next to the logo */
    margin-right: 10px;
    z-index: 1001;
    font-size: 28px;
    cursor: pointer;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #1e2b39;
    margin: 0;
    padding: 20px 0;
    position: absolute;
    top: 100%; /* directly under header-wrapper */
    left: 0;
    z-index: 1000;
  }

  .navbar.active {
    display: flex;
    height: auto;
    z-index: 1002;
  }

  .links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 0;
  }

  .navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navigation li {
    width: 100%;
  }

  .navigation li a {
    font-size: 20px;
    padding: 12px;
    display: block;
    text-align: center;
    color: white;
    border-radius: 8px;
    text-decoration: none;
  }

  .navbar::after {
    display: none;
  }
  
  .hero {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 75%;
	margin: auto;
	height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
	padding: 20px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-content h1 {
	font-family: Montserrat, sans-serif;
	font-size: 30px;
	color: #EBEEEF;
	font-weight: 600;
	text-shadow: 0px 3px 8px rgba(231, 235, 235, 0.5);
}

.hero-content h2 {
	font-family: Montserrat, sans-serif;
	font-size: 26px;
	color: #EBEEEF;
}

.hero-button {
	margin: 50px auto;
	width: 90%;
	padding: 10px;
	font-size: 20px;
	font-family: Open Sans, sans-serif;
	cursor: pointer;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
	background-color: #E9EEEF;
	border-radius: 5px;
}

.hero-button:hover {
	background-color: #314455;
	color: white;
	box-shadow: 0 0 15px rgba(124, 161, 199, 0.6);
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	padding: 20px;
	margin: 30px auto;
	width: 100%;
	border: 1px solid black;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
}

.services-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: 100%;
}

.services-header img {
	height: 50px;
	width: 50px;
}

.services-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.service-boxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	gap: 20px;
}

.service {
	display: flex;
	flex-direction: column;
	background-color: #132332;
	padding: 20px;
	gap: 20px;
	border-radius: 8px;
	align-items: center;
	margin-top: 20px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.7);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
	transform: translateY(-8px);
 	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.service img {
	width: 300px;
	height:300px
}

.service p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #ebeeef;		
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
}

.blurb {
	font-family: Open Sans, sans-serif;
	font-size: 20px;
	color: #ebeeef;
	font-style: italic;
	margin-top: -15px;		
}

.contact-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 30px auto;
	width: 80%;
	border: 1px solid black;
	border-radius: 8px;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.portfolio {
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	width: 95%;
	margin: -30px auto 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	border: 1px solid #182837;
	border-radius: 10px;
}

.portfolio-blurb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.portfolio h1 {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	color: #EBEEEF;
	text-shadow: 0px 3px 5px rgba(231, 235, 235, 0.5);
	text-decoration: underline;
	font-weight: 600;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	text-align: center;
	color: white;
}

.portfolio-gallery {
	display: flex;
	flex-direction: column;
}

.portfolio-gallery img {
	width: 400px;
	height: auto;
	object-fit: contain;
}

}









@media (min-width: 1025px) and (max-width: 1399px) {

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  flex: 1 0 auto;
}

.navigation {
	display: flex;
	gap: 40px;
	list-style: none;
}

.navigation li a {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 8px;
	font-size: 22px;
	text-decoration: none;
	font-family: Montserrat, sans-serif;
	color: #e7ebeb;
	transition: transform 0.3s ease-in, text-shadow 0.3s ease-in;
	text-shadow: 0px 3px 10px rgba(231, 235, 235, 0.7);
	font-weight: 600;
}

.navbar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-left: 100px;
	position: relative;
	height: 80px;
	margin-top: 100px;
}

.links {
	display: flex;
	margin-left: 0;
}

.hero-content h1 {
	font-family: Montserrat, sans-serif;
	font-size: 34px;
	color: #EBEEEF;
	font-weight: 600;
	text-shadow: 0px 3px 8px rgba(231, 235, 235, 0.5);
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	padding: 20px;
	margin: 30px auto;
	width: 100%;
	border: 1px solid black;
	background: rgba(14, 29, 44, 0.85);
	backdrop-filter: blur(4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border-radius: 8px;
}

.service-boxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	gap: 20px;
}

}

