:root{

    --bg1: rgb(232, 232, 232);
    --textBold1: rgb(0, 0, 0);
    --a1: #000080;/*#00108d*/
    --a2: #000080;
    --a3: #000080;
    --a4: #00005e;/*#8d0000*/


    --headerBoxShadow: #000000e7;

    font-size: 1.1vw;
}

body{
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;

    color: var(--textBold1);
    background-color: var(--bg1);
}




/* Hamburger icon */
.hamburger {
    display: none; /* show only on mobile */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--textBold1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Transform into X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* start off-screen */
    width: 100%;
    height: 100%;
    background: var(--bg1);
    transition: right 0.3s ease;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}
.mobile-menu.open {
    right: 0;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    font-size: 8rem;
    text-align: center;
}
.mobile-menu-content a {
    text-decoration: none;
    color: var(--textBold1);
}


.headerContainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 4.5rem; 
    background: var(--bg1);
    box-shadow: 0 -1px 8px var(--headerBoxShadow);
}
.headerContainer img{
    width: 3rem; height: 3rem;
    /*filter: invert(27%) sepia(100%) saturate(600%) hue-rotate(200deg);*/ 
    /*91deg*/
    filter: invert(7%) sepia(97%) saturate(5000%) hue-rotate(240deg) brightness(80%) contrast(100%);
}
.headerRow{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    color: gray;
}
.headerRow div{
    cursor: pointer;
    transition-duration: 0.5s;
}
.headerRow div:hover{
    cursor: pointer;
    color: var(--textBold1);
}

.headerConsult{
    color: var(--bg1);
    background-color: var(--textBold1);
    padding: 0.3rem 0.8rem;; 
    border-radius: 3rem;
    margin-left: auto;
}



.statement{
    font-size: 3rem;
    font-weight: 300;
}

.intro{
    margin-top: 4.5rem;
    height: 35rem;   
    padding: 2rem 5rem; 

    font-weight: 300;
    letter-spacing: 0.1rem;

    color: var(--bg1);


    overflow: hidden;
    position: relative;
}
.intro h1{
    opacity: 0;
    font-size: 5.5rem;
    margin: 0;
    font-weight: 400;
    animation: fadeInTop 0.8s 0s forwards;
    width: 67%;
}
.intro h2{
    opacity: 0;
    animation: fadeInTop 0.8s 0.6s forwards;

    width: 58%;
    font-size: 2.4rem;
}


.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes the video behave like a background */
  z-index: -1; /* behind content */
}

.heroButtonArrow{
    font-weight: 300; font-size: 1.7rem; position: relative; top: 0.4rem;
}
.heroButton{
    position: relative;
    width: max-content;
    border: 1px solid var(--textBold1);
    padding: 1rem;
    font-size: 1.5rem;

    user-select: none;
    cursor: pointer;

    margin-top: 3rem;

    opacity: 0;
    animation: fadeInTop 0.8s 0.8s forwards;

    background-color: var(--bg1);
    color: var(--textBold1);

    border-radius: 0.5rem;
    overflow: hidden;
}
.heroButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--a4); /* fill color */
  z-index: -1;
  transition: width 0.3s ease;
}
.heroButton:hover {
  color: white;
}
.heroButton:hover::before {
  width: 100%;
}
.heroButtonV1{}


.missionIntro{
    font-size: 3rem; font-weight: 400; text-align: center;
}
.missionBody{
    font-size: 4rem; text-align: center;
}

.missionHighlights{
    padding: 5rem; 
    height: 80svh;
}

 @media (max-width: 480px) {

     .hamburger {
        display: flex;
    }
    .mobile-menu{
        display: flex;
    }
    
    .headerContainer{
        font-size: 4rem;
        height: 14.5rem;
        padding: 0 5rem;
    }
    #headerCompany{
        font-size: 4rem;
    }
    .headerContainer img{
       height: 7rem;
       width: 7rem;
       filter: none;
    }
    .headerRow{
        display: none;
    }
    .headerConsult{
        display: none;
    }
      
    .intro{
        height: 100svh;    
    }
    .intro h1{
        text-align: center;
        width: 100%;
        font-size: 9rem;
        margin-top: 19rem;
    }
    .intro h2{
        width: 100%;
        text-align: center;
        font-size: 6rem;
        margin-top: 14rem;
    }
    .heroButtonV1{
        left: 14%;
        font-size: 4rem;
        padding: 4rem;
        border-radius: 1rem;
        margin-top: 10rem;
    }
    .heroButtonArrow{
        font-size: 5rem;
        top: 1rem;
    }

    .missionIntro{
        font-size: 9rem;
    }
    .missionBody{
        font-size: 6rem;
        padding: 0 6rem;
    }

    .missionHighlights{
        height: 40svh;
    }
}






@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

.introCanvas{
    position: absolute;
    width: 100%;
    height: 35rem;
    z-index: -9999;
}


.cardArea{
    position: relative;
    padding: 4rem 8rem;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;

    height: 50rem;
}
.cardBg{
    position: absolute;

    width: 100%;
    height: 31rem;
    margin-top: 7rem;

    filter: hue-rotate(190deg) brightness(0.5);
}
.card{
    position: relative;    
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #dcdcdc;

    border-radius: 0.5rem;
    padding: 2rem;

    height: max-content;
    min-height: 20rem;

    text-align: center;
}
.cardLogo{
    font-size: 4rem;
}
.cardHeader{
    border-radius: 0.25rem;
    background-color: var(--a1);
    color: white;

    width: max-content;
    padding: 0.5rem 3rem;

    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;

    cursor: pointer;
    transition-duration: 0.5s;
}
.cardHeader:hover{
    padding: 0.5rem 4rem;
}
.cardTitle{
    font-size: 2rem;
    margin-top: 1rem;
    min-height: 6rem;
}
.cardText{
    font-size: 1.5rem;
}

.cardTextExtra{
    grid-column: span 2 / -1; 
    height: 22rem;
    padding: 2rem;

    font-size: 1.5rem;
}
.cardTextExtra h3{
    font-size: 3rem;
    font-weight: 500;
    margin-top: 0;

    color: var(--a1);
}
.cardTextExtra p{    
    font-size: 2rem;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  margin-bottom: 0.5rem;
}

.serviceHighlights{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.serviceIntro{
    text-align: center; font-size: 3rem; font-weight: 400;
}
.serviceButtonArea{
    display: grid; grid-template-columns: 1fr 1fr; grid-column: span 3; gap: 3rem;
}
.serviceButtonArrow{
    font-weight: 300; font-size: 1.7rem; position: relative; top: 0.4rem;
}
.serviceButtonSymbol{
    position: relative;top: 0.4rem;font-size: 5rem; font-weight: 200;
}

 @media (max-width: 480px) {

    .serviceIntro{
        font-size: 9rem;
        margin-top: 18rem;
    }
    .cardBg{
        margin-top: 18rem;
        height: 234rem;
    }
    .cardArea{
        display: flex;
        flex-direction: column;
        height: max-content;
        padding: 8rem;
    }
    .card{
        padding: 4rem;
        border-radius: 1rem;
    }
    .cardLogo{
        font-size: 14rem;
    }
    .cardHeader{
        font-size: 4rem;
        padding: 2rem 10rem;
        border-radius: 1rem;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }
    .cardHeader:hover{
        padding: 2rem 12rem;
    }
    .cardTitle{
        font-size: 6rem;
        margin-top: 4rem;
    }

    .cardText{
        font-size: 4rem;
        margin-top: 5rem;
    }
    .cardTextExtra{
        margin-top: 10rem;
        height: max-content;
    }
    .cardTextExtra h3{
        font-size: 6rem;
    }
    .cardTextExtra p{
        font-size: 4rem;
    }
    .serviceHighlights{
        font-size: 4rem;
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    .serviceButtonArea{
        display: flex; 
        flex-direction: column;
    }
    .serviceButtonArea button, .defaultButtonText{
        font-size: 4rem;
    }
    .serviceButtonArrow{
        top: 1rem;
        font-size: 4.5rem;
    }
    .serviceButtonSymbol{
        font-size: 11rem;
    }

 }



    .bar-container {
      position: relative;
    }

    .bar-container::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: var(--x);
      background-color: #4a90e2;
      z-index: -1;
    }




.heroLogo{
    position: relative;
    left: 80%;
    top: 15rem;
    transform: translate(-50%, -50%);
    width: 12rem;
}

.rings-bg {
    position: absolute;
    top: 15rem;
    left: 80%;
    width: 100%;
    height: 65rem;
    transform: translate(-50%, -50%);
    z-index: -1;    
}


@keyframes spin {
    to { transform: rotate(calc(360deg * var(--direction))); }
}
.ring {
    --stroke: 2;
    --color: #ffffff;
    --speed: 40s;
    --direction: 1;
    fill: none;
    stroke: var(--color);
    stroke-width: var(--stroke);
    transform-box: fill-box;
    transform-origin: 50% 50%;
    transform: rotate(var(--angle, 0deg));
}


svg {
  overflow: hidden;
}

    .contact-form{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 5rem;
        padding: 4rem;   
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 8px 0;
      margin-bottom: 20px;
      font-size: 16px;
      outline: none;
      background: transparent;
      transition: border-color 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-bottom-color: var(--a1);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 80px;
    }


.field {
    margin-bottom: 20px;
}
.label{
    font-weight: 300;
    font-size: 1.2rem;
}

.contactIntro{
    font-size: 3rem; font-weight: 400; text-align: center;
}
.contactSection{
    padding: 5rem; margin-top: 20rem;
}

 @media (max-width: 480px) {
    .contactSection{
        margin-top: 8rem;
    }
    .contactIntro{
        font-size: 9rem;
    }
    .contact-form{
        display: block;
    }
    .label{
        font-size: 5rem;
    }
 }






 .contactCTA{
    margin-top: 10rem;
 }
 .contactCTA h1{
    margin-top: 10rem;
 }
 .contactCTAButtonWrapper{
    width: 40rem; position: relative; left: 50%; transform: translateX(-50%); margin-top: 3rem;
 }

 .missionBodySmall{
    
 }
  .missionBodySmall h3{
    font-weight: 400;
    font-size: 3rem;
 }
 .missionBodySmall p{
    font-size: 2rem;
    font-weight: 300;
 }

 @media (max-width: 480px) {
    .contactCTAButtonWrapper{
        width: 80%;
    }
    .missionBodySmall h3{
        font-weight: 400;
        font-size: 6rem;
    }
    .missionBodySmall p{
        font-size: 5rem;
        font-weight: 300;
    }
 }








.webServiceGrid{
    display: grid; grid-template-columns: 1fr 1fr 1fr;     
    margin-top: 3rem; font-size: 2rem; font-weight: 300;     
    gap: 2rem;
}
.webServiceGrid div{
    transition-duration: 0.5s;
    line-height: 2.5rem;
    
}
.webServiceGrid div:hover{
    line-height: 2.8rem;
}

 .webServiceHeader{
    margin-bottom: 1rem;
    font-weight: 400;
 }

 .webServiceHighlight{
    height: 70svh; margin: 0 6rem;
 }


@media (max-width: 480px) {
    .webServiceHighlight{
        height: auto; margin: 0 10rem;
        margin-bottom: 5rem;
    }
    .webServiceGrid{
        display: flex; flex-direction: column;   
        margin-top: 3rem; font-size: 5rem; font-weight: 300;     
        gap: 4rem;
    }
    .webServiceGrid div{
        line-height: 5rem;
    }
    .webServiceGrid div:hover{
        line-height: 6rem;
    }
}


 section.methods1 {
      height: 180svh;
      width: 100svw;             
      position: relative;
}

 .webPin1{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    position: relative; 
    width: 100svw;


     box-sizing: border-box;
        margin: 0;
        padding: 0;
 }

 .webPin1Footer{
      position: relative;
      height: 4px;
      width: var(--progress);
      background-color: var(--a1);
      grid-column: span 2;
    }

.webSpanColorShift{
      color: color-mix(in srgb, var(--a1) var(--progress, 0%), black calc(100% - var(--progress, 0%)));
}
.serviceCircle{
    position: relative; width: 100%; height: 100svh;
}

.pinTextContainer{
    position: relative; padding-left: 6rem;
}
.pinTextContainer h1{
    font-size: 3rem; font-weight: 300; margin-top: 8rem;
}
.pinTextContainer div{
    font-size: 2rem; font-weight: 300; line-height: var(--pin1LineHeight);
}
@media (max-width: 480px) {
    .webPin1{
        display: flex; 
        flex-direction: column;
    }
    .serviceCircle{
        height: 45svh;
    }
    .pinTextContainer{
        padding-left: 12rem;
    }

        
    .pinTextContainer{
        position: relative; padding: 0 10rem;
    }
    .pinTextContainer h1{
        font-size: 5rem; font-weight: 300; margin-top: 8rem;
    }
    .pinTextContainer div{
        font-size: 5rem; font-weight: 300; line-height: clac(var(--pin1LineHeight) + 3rem);
    }
}

canvas{
    margin: 0;
    overflow: hidden;
    display: block;
}

.threeTextContainer{
    position: absolute; top: 0; width: 42%; padding: 0 6rem; z-index: 99;
    font-size: 2rem;
}
.ThreeHeader{
    font-size: 3rem;
}
.ThreeFooter{
    font-size: 2rem;
}

@media (max-width: 480px) {

    .threeTextContainer{
        position: absolute; top: inherit; width: inherit; padding: 0 10rem; bottom: 0; margin-bottom: 10rem;
        text-align: center;

        font-size: 4rem;
    }
    .ThreeHeader{
        font-size: 5rem;
    }
    .ThreeFooter{
        font-size: 5rem;
    }
}