*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-play-button{
  display: none!important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button{
  display: none!important;
  -webkit-appearance: none
}

a{
    font-family: 'JetBrains Mono', monospace;
    text-decoration: none;
      color: #363020;
}
a:hover{
  opacity: 0.5;
}

body{
  margin: 0;
  overflow-x: hidden;
  position: relative;
}


    /* --- CSS Variables for Easy Site Theme Matching --- */
    :root {
      --faq-font-header: 'JetBrains Mono', monospace;
      --faq-font-body: 'JetBrains Mono', monospace;
      /* Construction theme palette: Dark charcoal, stark whites, and a strong gold/orange amber accent */
      --color-dark-bg: #1a1a1a;
      --color-dark-surface: #242424;
      --color-accent: #fadf63; /* Krahn Amber / Safety Gold */
      --color-text-main: #ffffff;
      --color-text-muted: #b3b3b3;
      --color-border: #333333;
      
      --transition-speed: 0.3s;
      --radius: 6px;
    }

    /* Simple wrapper layout to match a standard container width */
    .faq-section {
      font-family: var(--faq-font-body);
      background-color: var(--color-dark-bg);
      color: var(--color-text-main);
      padding: 60px 20px;
      display: flex;
      justify-content: center;
    }

    .faq-container {
      width: 100%;
      max-width: 800px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-header h2 {
      font-family: var(--faq-font-header);
      font-size: 2.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 10px 0;
    }

    .faq-header h2 ::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--color-accent);
      margin: 12px auto 0 auto;
      border-radius: 2px;
    }

    /* --- Accordion Component Styling --- */
    .faq-group {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background-color: var(--color-dark-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color var(--transition-speed) ease;
    }

    /* Active state highlights the border */
    .faq-item.active {
      border-color: var(--color-accent);
    }

    /* Clickable trigger area */
    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      color: var(--color-text-main);
      transition: background-color var(--transition-speed) ease;
    }

    .faq-trigger:hover {
      background-color: rgba(255, 255, 255, 0.02);
    }

    .faq-question {
      font-family: var(--faq-font-header);
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.4;
      padding-right: 15px;
    }

    /* Plus/Minus Toggle Icon */
    .faq-icon {
      position: relative;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background-color: var(--color-text-main);
      transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
    }

    /* Horizontal line */
    .faq-icon::before {
      top: 7px;
      left: 0;
      width: 16px;
      height: 2px;
    }

    /* Vertical line */
    .faq-icon::after {
      top: 0;
      left: 7px;
      width: 2px;
      height: 16px;
    }

    /* When item is active, turn the icon into a minus sign and highlight color */
    .faq-item.active .faq-icon::before {
      background-color: var(--color-accent);
    }
    .faq-item.active .faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
      background-color: var(--color-accent);
    }
    .faq-item.active .faq-question {
      color: var(--color-accent);
    }

    /* Hidden panel space for answers */
    .faq-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer {
      padding: 0 24px 24px 24px;
      color: var(--color-text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .faq-answer p {
      margin: 0;
    }

footer h4, footer p{
  color: #363020;
  opacity: 1;
}

footer h4{
  opacity: 0.6;
}

form{
  display: flex;
  flex-direction: column;
}

h1, .big-text{
  font-size: 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  color: white;
  font-weight: normal;
  letter-spacing: -1.2px;
}

h2{
  font-size: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  color: white;
  font-weight: 500;
  letter-spacing: 2.4px;
  z-index: 2;
  position: relative;
}

h3{
  font-size: 1.125rem;
  font-family: 'JetBrains Mono', monospace;
  color: white;
  font-weight: normal;
  letter-spacing: 0;
}

h4{
  font-size: 1.125rem;
  font-family: 'JetBrains Mono', monospace;
  color: white;
  font-weight: normal;
  letter-spacing: -0.14px;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

input {
  border: none;
  padding: 20px 20px 10px 20px;
  margin-top: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
}

input[type=text], input[type=button] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}

input:focus, textarea:focus, select:focus{
        outline: none;
}


section, .project, .projects, footer{
  padding: 0.94rem;
  position: relative;
}

header{
  display: flex;
  height: 6.5rem;
  justify-content: space-between;
  position: relative;

}

hr{
  opacity: 0.2;
  border-top: 1px solid white;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

li{
    font-family: 'JetBrains Mono', monospace;
}

p{
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: white;
    opacity: 0.5;
}

textarea {
  border: none;
  margin-top: 0.7rem;
  padding: 20px 20px 10px 20px;
  font-family: 'JetBrains Mono', monospace;
}

textarea[type=text], input[type=button] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}

textarea:focus, textarea:focus, select:focus{
        outline: none;
}


#btn-main{
  color: white;
  border: 1px white solid;
  padding: 1rem 1.5rem;

}

#hamburger{
  margin: 1.69rem .94rem 0;
  z-index: 2;
  position: relative;
}
#hamburger>img{
  height: 2rem;
  width: 2rem;
}

#contact{
  background-color: #26547c;
  padding-top: 4.5rem;
  top: -2px;
}

#contact h2{
  color: #fadf63;
}

.about {
  background-color: #26547c;
  margin-top: 6rem;
}

.border{
  height: 8rem;
  width: 100vw;
  background-image: linear-gradient(rgba(31, 30, 26, 0), rgba(31, 30, 26, 1));
  position: absolute;
  left: 0;
  top: -7.8rem;
  z-index: 5;
}
.border-bottom{
  height: 30rem;
  width: 100vw;
  background-image: linear-gradient(rgba(31, 30, 26, 1), rgba(31, 30, 26, 0));
  position: absolute;
  top: -3.46rem;
  padding-top: 1rem;
  left: 0;
  z-index: 0;
}
.blue-border{
  height: 25rem;
  width: 100vw;
  background-image: linear-gradient(rgba(38, 84, 124, 0), rgba(38, 84, 124, 1));
  position: absolute;
  left: 0;
  top: -24.9rem;
  z-index: -1;
}

.btn-dark{
  background-color: #fadf63;
  padding: 1.3rem;
  max-width: 8.5rem;
  margin-top: 1.4rem;
  font-family: 'JetBrains Mono', monospace;
  color: #26547c;
  letter-spacing: 0.6px;
  font-weight: bold;
  border: none;
  margin-bottom: 3.5rem;
}

.btn-main{
  color: white;
  border: 1px white solid;
  padding: 1rem 1.5rem;
  margin: 5rem 0;
  position: relative;
  top: 3rem;
}

.details{
  margin: 2.4rem 0 1.4rem;
}

.footer-link{
  border-bottom: solid 2px #26547c;
  padding-bottom: 4px;
  margin: 10px 0;
  color: #26547c;
  font-weight: 600;
  display: block;
  width: 5rem;
}
.footer-link:hover{
  opacity: 0.5;
}

.footer-parent>div{
  display: flex;
  flex-direction: column;
}

footer a{
  font-size: 0.75rem;
  line-height: 1.49;
  margin: 0.4rem 0;
}

.footer-parent p{
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 12px;
}

.footer-parent h4{
  margin: 3rem 0 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
}

.hero{
  background-color: rgba(0, 0, 0, 0.5);
  height: 41rem;
  position: relative;
  top: -6.5rem;
}

.hero-btn{
  border: solid 0.5px rgba(255, 255, 255, 0.5);
  height: 6.125rem;
  width: 2.625rem;
  justify-content: center;
  display: flex;
  margin-top: 3rem;
}
.hero-btn>img{
  width: 0.625rem;
  height: 0.625rem;
  margin: auto;
}

.hero-text{
  margin-top: 7.5rem;
  max-width: 20rem;
}

.hero-video{
  position: absolute;
  top: 0;
  left: -20rem;
  min-width: 100%;
  height: 43rem;
  z-index: -1;
}

.intro{
  display: grid;
  grid-template-columns: 1fr 1fr;

}
.intro-item>p{
  font-size: 1rem;
  font-weight: bold;
  opacity: 1;
}

.item img{
  width: 100%;
}

.item{
  margin-top: 3rem;
}

.line{
  width: 0.75rem;
  height: 2px;
  background-color: #fadf63;
  position: relative;
  top: -0.625rem;
}

.logo{
  margin: 1.5rem 0.94rem 0;
  z-index: 2;
}
.logo-about img{
  width: 9.2rem;
  margin: 2.5rem 0 2rem;
}

.logo>img{
  width: 9.2rem;
}

.logo-bg{
  position: absolute;
  z-index: 3;
  right: 2rem;
  top: -0.5rem;
}

.main-menu{
  display: none;

}

.main-menu a, .mobile-menu a{
  text-decoration: none;
  color: white;
  margin: 2.5rem ;
}



.main-menu li, .mobile-menu li{
  margin: 2.5rem;
}
.mobile-menu{
  position: absolute;
  width: 20rem;
  background-color: rgba(0, 0, 0, 1);
  top: 5.5rem;
  height: 37.7rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: 0.3s;
  border-top: 1px solid white;
  border-left: 1px solid white;
}

.menu-closed{
  right: -21rem;
}

.menu-open{
  right: 0;
}


.points p{
  opacity: 100;
  text-align: center;
}
.points div{
  width:300px;
  margin: auto;
}

.project-button{
  max-width: 50rem;
  margin: auto;
  padding-left: 0.94rem;
  margin-top: 2rem;
}

.project-img{
  width: 100%
}
.project-heading, .project-text{
  color: #363020;
}


.projects{
 top: -3rem;

}
.project-parent{
   overflow-y: hidden;
}



.solutions{
  background-color: #1f1e1a;
  top: -6.4rem;
}

.spec-item{
  margin: 2rem 0 0 0;
}

.spec-item>.line{
  top: 0;
}

.thanks-hero{
  height: 50vh;
  background-color: #26547c;
  padding: 10rem 10vw;
  position: relative;
  top: -8rem;
}

.title{
  font-size: 0.875rem;
  opacity: 1;
}

.yellow-text{
  color: #fadf63;

}

@media only screen and (min-width: 440px){

  header{
    padding: 0 2.5rem;
  }

h1{
  font-size: 3rem;
}

h2{
  font-size: 2rem;
}

h3{
  font-size: 1.25rem;
}

p{
  font-size: 0.94rem;
}


section, .project, .projects, footer, .project-button{
  padding: 0.94rem 2.5rem;
}

.hero-text{
  max-width: 33rem;
}
}

@media only screen and (min-width: 767px){



 .about-item{
   max-width: 50rem;
   margin: auto;
 }

 .footer-parent{
   display: grid;
   grid-template-columns: 1.2fr 0.9fr 0.9fr;
   grid-column-gap: 1rem;
 }

  .hero-video{
    left: -5rem;
  }

  .logo>img, .logo-about>img{
    width: 12.2rem
  }

  .item-parent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
  }

  .points{
  display: flex;
}

  .project{
    max-width: 50rem;
    margin: auto;
  }
}

@media only screen and (min-width: 1024px){

  #hamburger{
    display: none;
  }

  .hero-text{
    max-width: 38rem;
    margin-top: 9.5rem;
  }

  .item-parent{
    max-width: 50rem;
    margin: auto;
  }

  .main-menu{
    display: flex;
    list-style-type: none;
    position: relative;
    z-index: 3;
  }

.main-menu li{
  margin: 2rem 0;
  opacity: 1;
}
.main-menu li:hover{
  opacity: 0.5;
}
}

@media only screen and (min-width: 1204px){

header{
  padding: 0 4.5rem;
}

  h1{
    font-size: 3.7rem;
  }
  h2{
    font-size: 2.3rem;
  }
  p, a{
    font-size: 1rem;
  }

  .hero{
    height: 49rem;
  }

  .hero-btn{
    height: 7.5rem;
    width: 3.9rem;
    margin-top: 4rem;
  }

  .hero-text{
    max-width: 50rem;
    margin-top: 10.5rem;
    margin-bottom: 3rem;
  }

  .hero-video{
    left: 0;
    height: 52rem;
  }

  .logo>img, .logo-about>img{
    width: 16.2rem
  }

  section, .project, .projects, footer, .project-button{
    padding: 0.94rem 4.5rem;
  }

}

@media only screen and (min-width: 1439px){

  header{
    padding: 0 12rem 0;
    position: relative;
    top: 2rem;
  }

  h1{
    font-size: 4.5rem;
  }

  h2{
    font-size: 2.5rem;
  }

  h3{
    font-size: 1.5rem;
  }

  p{
    font-size: 1.25rem;
  }


  section, .project, .projects, footer, .project-button{
    padding: 0.94rem 12rem;
  }

  #btn-main{
    position: relative;
    left: 13rem;
    top: -2rem;
  }

  .hero-video{
    height: 70rem;
  }

  .line{
    width: 1rem;
    height: 0.25rem;
  }

  .hero-text{
    max-width: 75rem;
  }

  .hero{
    height: 65rem;
  }

  .hero-text{
    max-width: 100rem;
    margin-top: 15.5rem;
  }

  .item-parent, .project-parent, .about-item{
    position: relative;
    left: 14rem;
    top: -5rem;
  }

  .logo>img, .logo-about>img{
    width: 16.2rem
  }

  .ab-heading{
    position: relative;
    top: 3.2rem;
  }

  .proj-heading{
    position: relative;
    top: 4.5rem;
  }

  .sol-heading{
    position: relative;
    top: 2.7rem;
  }
}
