* { box-sizing: border-box; }

 body {
      margin: 0;
      font-family: tahoma, Arial, sans-serif;
	  padding-top: 60px; /* must match the actual .navbar height */
      background-color: #EEEEF0;
    }

.main  body {
	      margin: 0;
      font-family: tahoma, Arial, sans-serif;
	  padding-top: 60px; /* must match the actual .navbar height */
      background-color: #000000;
    }
	
h1 {	
font: bold Arial, Sans-Serif; 
font-size: min(4vw, 30px);
color:#2f0e00;
padding: 8px 0 0px 0; 
margin: 0; 
}

h2 { 
margin: 5px 0 5px 0;
color:#2f0e00; 
font: bold "Lucida Sans", Sans-Serif;
font-size: min(3vw, 20px); 
}

h3 { 
margin: 20px 0 5px 0;
color: #005596; 
padding: 0 0 4px 0; 
font: bold "Lucida Sans", Sans-Serif; 
font-size: min(3vw, 15px);
}

h4 { 
margin: 12px 0 2px 0;
color: #4040FF; 
padding: 0 0 4px 0; 
font: bold  "Lucida Sans", Sans-Serif;
font-size: min(3vw, 14px); 
}

h5 { 
margin: 12px 0 2px 0;
color: #000000; 
padding: 0 0 4px 0; 
font: bold "Lucida Sans", Sans-Serif; 
font-size: min(3vw, 14px);
}

h6 { 
margin: 12px 0 2px 0;
color: #000000; 
padding: 0 0 4px 0; 
font: bold "Lucida Sans", Sans-Serif; 
font-size: min(3vw, 14px);
}

.main {	
color:white;
}

.mainwrapper {display:flex;}

.product-wrapper {width: 85%; justify-content: center;}

.about-wrapper {  display: flex;
  flex-direction: column;     /* This stacks children vertically */
  align-items: center;        /* This centers them horizontally */
  justify-content: flex-start;/* Optional: aligns content to top */
  text-align: center;         /* Centers inline text inside blocks */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.content-section {width: 100%; max-width: 1000px; overflow: hidden; background-color: white; padding: 0px; border-radius: 15px;
box-shadow: 0 4px 8 px rgba(0,0,0,0.1);
margin-bottom: 35px; border: 5px; border-color: gray;text-align: center; }

.content-section-header {background-color: #004aad; color: white; padding: 10px 20px; 
font-weight: bold; font-size: min(3vw, 25px); margin-top: 0px;}

.content-section-content {color: gray; padding: 20px;width: 100%; }

.content-section,
.content-section-content,
.content-section-header {
  text-align: center;
}

.content-section-content img,
video {
  display: block;
  margin: 0 auto;
}


.contact-columns {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(400px, 1fr);
  gap: 80px;
  margin-top: 30px;
}

ul.community-list li {
    list-style-type: none;
	color: #005596; 
	font: "Lucida Sans", Sans-Serif; 
	font-weight: bolder;
	font-size: min(3vw, 15px);
}

.quote-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-row label {
  flex: 1;
  text-align: right;
  margin-right: 10px;
  font-weight: bold;
}

.form-row input {
  flex: 2;
  padding: 5px;
}

textarea {
  width: 100%;
  max-width: 600px;
  height: 80px;
  padding: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical; /* allows user to resize height only */
  box-sizing: border-box;
}
	
.submit-btn {
  background-color: #075698;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 4px;
  font-size: min(3vw, 15px);
  font-weight: bolder;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 100px;
  margin-top: 15px;
}

.submit-btn:hover {
  background-color: #005A9E;
}

.submit-btn:focus {
  outline: 3px solid #FFD700; /* High-contrast focus ring */
  outline-offset: 2px;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}



.g-recaptcha {text-align: center;}

	
.background-wrapper {
  position: relative;
  width: 100%;
  height: 50vh; /* or any height you need */
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) opacity(0.2); /* Makes it greyed out and subtle */
}

.image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

/* contact page */
.top-bar {
  width: 100%;
  height: 20px; /* thickness of the bar */
  background-color: white; /* your desired color */
}

.bottom-bar {
  width: 100%;
  height: 20px; /* thickness of the bar */
  background-color: #0087FF; /* your desired color */
  margin-bottom: 20px;
}

img {
  display: block;
  max-width: 100%;
}

.product-grid {
  column-count: 4;
  column-gap: 30px;
  padding: 20px;
}

.product-block {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 0px;
  background: #f4f4f4;
  padding: 0px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: left;
  font-size: 14px;
}

.product-header {
  width: 100%;
  background: #004aad;
  color: white;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  margin: 0px;
  border-radius: 6px 6px 0 0;
  text-align: center;
}

.product-content {
  width: 100%;
  padding-left: 30px;
}

.contactwhite {color:white;}

.contactunderline {color:white; text-decoration: underline;
  text-decoration-color: #0087FF; /* Underline color */
  text-decoration-thickness: 4px;}

.select-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* optional spacing between items */
}

.select-group label,
.select-group select {
  flex: 1 1 200px; /* allows wrapping and sets minimum width */
}

.parts-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
}

.part-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 950px;
}

.part-field,
.qty-field {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.part-field select,
.qty-field input {
  width: 100%;
  box-sizing: border-box;
}

	
	.connections {font-weight: bold;color: red;font-size: min(3vw, 25px);  
	text-shadow:
-2px -2px 0 white,	
2px -2px 0 white,
-2px 2px 0 white,
2px 2px 0 white;}

	.connections-small {font-weight: bold;color: red;font-size: min(4vw, 25px);  
	text-shadow:
-1px -1px 0 white,	
1px -1px 0 white,
-1px 1px 0 white,
1px 1px 0 white;}

.contact-container {display: flex; width: 100%; margin-top: -25px; background-color: #075698; color: white; justify-content: center;
}

.contact-info {width:80%;}



    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #0087FF;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      z-index: 9999;
	  height: 60px;
    }

    .navbar img.topgraphic {
      height: 60px;
      width: auto;
    }

    .navbarcenter {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .navbarcenter a {
      font-family: tahoma, verdana, arial;
      font-weight: bold;
      display: block;
      color: white;
      text-align: center;
      padding: 16px 20px;
      text-decoration: none;
      font-size: 18px;
    }

    .navbarcenter a:hover {
      background-color: #075698;
      color: white;
    }
	
    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px 0;
      border-radius: 2px;
    }

    /* Mobile menu (hidden by default) */
    .nav-links.mobile {
      display: none;
      flex-direction: column;
      background-color: #004CAB;
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 10px;
      border-radius: 6px;
    }

    .nav-links.mobile a {
      padding: 8px 0;
	  color: white;
	  text-decoration: none;
	  font-weight: bold;
    }

    .column {
      flex: 1 1 33%;
      max-width: 33%;
    }

    .column img {
      width: 100%;
      height: auto;
      display: cover;
    }

    .column2left {
      text-align: left;
    }	

    .column2 img {
      width: 100%;
      height: auto;
      display: cover;
    }
	
    .highlight {
      color: #ff4c4c;
      font-weight: bold;
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
	
	select option {
  white-space: normal; /* Allows text to wrap */
  overflow-wrap: break-word; /* Ensures long words break and wrap */
}

    /* Container for all staff cards */
    .staff-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 40px auto;
	  margin-top: -25px;
      padding: 10px;
      justify-items: center; /* center cards when fewer per row */
    }

/* STAFF CARD CSS */
.staff-card {
  width: 300px;               /* change to fit your layout */
  border-radius: 5px;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  background: #ffffff;
  margin: 20px;
  margin-top: 40px;
  margin-bottom: 5px;
}

/* top row: avatar + name/title */
.staff-top {
  display: flex;
  align-items: stretch;
  background: linear-gradient(#0f66c8, #0f66c8); /* blue strip behind both */
}

/* avatar (left) */
.staff-avatar {
  flex: 0 0 68px;            /* square size */
  background: #004CAB;       /* darker blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
}

/* info (right) */
.staff-info {
  flex: 1;
  padding: 10px 12px;
  background: #0087FF;       /* lighter blue */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-name {
  font-weight: 700;
  font-size: min(3vw, 24px);
  letter-spacing: 0.6px;
}

.staff-title {
  font-size: min(3vw, 20px);
  opacity: 0.95;
  margin-top: 4px;
  font-weight: 600;
}

/* contact row (white) */
.staff-contact {
  background: #fff;
  padding: 12px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.staff-contact a {
  color: #0f66c8;
  font-weight: 700;
  text-decoration: none;
  font-size: min(3vw, 16px);
}

.staff-contact a:hover,
.staff-contact a:focus {
  text-decoration: underline;
  outline: none;
}

    .center-column {
      background: black;
	  background-image: url('/images/turbine.jpg') center/cover no-repeat;
      background-size: cover; /* Optional: Adjusts image size to cover the div */
      background-repeat: no-repeat; /* Optional: Prevents image repetition */
      background-position: center; /* Optional: Centers the image */
	  color: white;
      text-align: center;
      padding: 20px;
	  padding-bottom: 50px;
	  padding-top: 10px;
    }

    .center-column h1 {
      margin-top: 0;
      font-size: min(6vw, 36px);
    }
	
.ourstory-div {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background: #000; /* fallback color behind */
  margin: 0;
  padding: 20px;
}

/* Pseudo-element for background image */
.ourstory-div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/staff_plane.jpg") center/cover no-repeat;
  opacity: 0.6;              /* adjust fade (0 = invisible, 1 = full) */
  z-index: 0;
}

.ourstory-div * {
  position: relative;
  width: 100%;
  z-index: 1; /* keep text above the faded image */
}

.ourstaff-div {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  background: #000; /* fallback color behind */
  margin: 0;
  padding: 20px;
}

/* Pseudo-element for background image */
.ourstaff-div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/staffplane.jpg") center/cover no-repeat;
  opacity: 0.7;              /* adjust fade (0 = invisible, 1 = full) */
  z-index: 0;
}

.ourstaff-div h1 {color: white;font-size: min(4vw, 30px);}

.ourstaff-div * {
  position: relative;
  width: 100%;
  z-index: 1; /* keep text above the faded image */
}

.testimonials {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.testimonials h2 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 25px;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 8px;
}

.testimonial-card {
  background: #fff;
  border-left: 5px solid #0056b3;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial-card p {
  margin: 0 0 12px 0;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-card span {
  font-weight: bold;
  color: #333;
  display: block;
  margin-top: 5px;
  text-align: right;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
		
	.mainwrapper {flex-direction: column;}
	
	.column { max-width: 100%; }

	.center-column { order: -2; }
	
	.topgraphic {
	margin-top: -10px;
	}

	.select-group {
	flex-direction: column;
	}

	.select-group label,
	.select-group select {
	width: 100%;
	}
	
	.navbar {
	flex-wrap: wrap;
	justify-content: space-between;
	}

	.navbarcenter {
	display: none;
	flex-direction: column;
	width: 100%;
	background-color: #0087FF;
	height: 60px;
	}

	.navbarcenter a {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 14px;
	width: 100%;
	}

	.navbar.responsive .navbarcenter {
	display: flex;
	}

	.icon {
	display: block;
	}

	.container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	}
	
	
	.content-wrapper {max-width: 100%;}
	
	.product-wrapper {
	max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }

	.contact-columns {
	grid-template-columns: 1fr;
	justify-items: center;
	}

	.column2 img {
	max-width: 100%;
	height: auto;
	}

	.bottom-bar {
	margin-bottom: 5px;
	}

	.hamburger {
	display: flex;
	}
	.nav-links.mobile.show {
	display: flex;
	}

	.column2left {
	text-align: center;
	}

	.product-grid {
	max-width: 600px;
	margin: 0 auto;
	column-count: 1; /* if you're using CSS columns */
	padding: 20px;  /* optional: adds side breathing room */
	}

	.product {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	}
	
  .staff-card { width: 70%; margin-top: 50px; }
  .staff-avatar { flex-basis: 56px; font-size: 22px; }
  .staff-name { font-size: min(3vw, 24px); }
  .staff-title { font-size: min(3vw, 20px); }
  
    .testimonials h2 {
    font-size: 18px;
    text-align: center;
  }

  .testimonial-card {
    padding: 15px;
  }

}
