:root{
    font-size: 1.1vw;


    --bg-white: rgb(255, 255, 255);
    --default-side-padding: 2.4rem;

    --a1: navy;
}

body{
    position: relative;
    padding: 0;
    margin: 0;

    background-color: var(--bg-white);

    font-family: "Sansation", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#header{
    position: fixed;
    width: 100%;

    left: 50%;
    font-size: 1.5rem;
    padding: 0.5rem;
    transform: translateX(-50%);


    background: var(--bg-white);

    color: black;

    display: flex;
    gap: 1rem;

    z-index: 999;

    box-shadow: 0 -1px 8px black;
}
#header a{
    text-decoration: none;
    color: inherit;
}
.headerIcon{
    font-size: 1.5rem;
    position: relative;
    top: 0.1rem;
    margin-right: 0.2rem;
}

.headerLogoContainer{
    width: 3.4rem;
}
.headerLogo{
    position: absolute;
    width: 3.4rem;
    top: 50%;
    transform: translateY(-50%);
}


/* Hamburger icon */
.hamburger {
    display: none; /* show only on mobile */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;

    margin-right: var(--default-side-padding);
    margin-top: 4rem;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: black;
    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(--bg-white);
    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: black;
}
.no-select{
    user-select: none;
}

.buttonBasic{
    padding: 13px;
    font-size: 1.1rem;
    user-select: none;
}

#homeTitle{
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;

    text-align: center;
    font-size: 4rem;
    color: whitesmoke;

    transform: translate(-50%, -50%);

    font-family: "Tomorrow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.subTitle{
    font-size: 2rem;
}
.homeButtonContainer{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;

    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}
.homeButton{
    font-size: 2rem;
    width: 15rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    border: 1px solid white;
    cursor: pointer;
    user-select: none;

    transition-duration: 0.5s;
}
.homeButton:hover{
    background-color: #ffffff3d;
}

.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 */
}

.major_section{
    position: relative;
    height: 100svh;
}
.h-flex-section{
    position: relative;
    display: flex;
}


@media (max-width: 768px) {

    :root{
        --default-side-padding: 5rem;
    }

    #header{
        font-size: 6rem;
    }
    .headerIcon{
        font-size: 5.5rem;
    }
        
    .headerLogoContainer{
        width: 8.4rem;
    }
    .headerLogo{
        width: 8.4rem;
    }

    .hamburger {
        display: flex;
    }
    .mobile-menu{
        display: flex;
    }
    .hide-on-mobile{
        display: none;
    }
}

@media (max-width: 400px) {

    #homeTitle{
        width: 80%;
        font-size: 10rem;
    }
    .subTitle{
        font-size: 6rem;
        margin-top: 6rem;
    }

    .homeButtonContainer{
        flex-direction: column;
        gap: 3rem;
        margin-top: 8rem;
    }
    .homeButton{
        padding: 2rem 15rem;
        width: auto;
        font-size: 6rem;
    }
}




.missionHighlights{
    padding: 5rem; 
    background-color: var(--bg-white);
}
.missionIntro{
    font-size: 3rem; font-weight: 400; text-align: center;
    font-family: "Tomorrow", sans-serif;

}
.missionBody{
    font-size: 4rem; text-align: center;
}

.statement{
    font-size: 3.8rem;
    font-weight: 300;
}

.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;
}




@media (max-width: 768px) {
    .missionIntro{
        font-size: 9rem;
    }
    .missionBody{
        font-size: 6rem;
        padding: 0 6rem;
    }
}








.infoPadding{
    padding: var(--default-side-padding);
}


.sectionIntroText{
    font-family: "Tomorrow", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 3.5rem;
    margin-bottom: 2rem;
}

#service-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
}
#service-container .section-button{
    border: 1px solid;
    padding: 1rem;
    min-width: 12.5rem;

    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Tomorrow';

    display: flex;
    color: gray;
    cursor: pointer;
    user-select: none;

    transition: 0.5s;
}
#service-container .section-button:hover{
    color: black;
    border-color: gray;
}
#service-container .selected{
  color: black;
}

.service-details-wrapper{
    width: 100%;
}

.service-image-container{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.service-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-mobile-container{
    display: none; 
    gap: 2rem; 
    margin-bottom: 2rem;
}
.service-mobile-button{
    border: 1px solid;
    padding: 3rem;
    width: 50%;

    border-radius: 3px;
    font-size: 4rem;
    font-family: 'Tomorrow';

    cursor: pointer;
    text-align: center;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 0.8rem;
  height: 0.8rem;

  border: 3px solid #ddd;
  border-radius: 50%;
  position: relative;
  transform: rotate(45deg);

  margin-left: auto;
}
.loader::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid #000000;
  animation: l18 20s infinite linear;
}
@keyframes l18 {
    0%   {clip-path:polygon(50% 50%,0 0,0    0,0    0   ,0    0   ,0    0   )}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0   ,100% 0   ,100% 0   )}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    0   )}
}


.aboutUsGrid{
    display: grid; 
    grid-template-columns: 1.3fr 0.7fr; 
    gap: 3rem; 
    margin-top: 1.75rem; 
    align-items: start;
}
.aboutUsText{
    font-size: 1.45rem; 
    line-height: 1.65;
}
.aboutUsSubcontainer{
    border-left: 1px solid rgba(0,0,0,0.12); padding-left: 1.75rem;
}
.aboutUsNumber{
    font-family: 'Tomorrow'; font-size: 2.2rem; line-height: 1; margin-bottom: 0.3rem;
}
.aboutUsSubtext{
    opacity: 0.7; margin-bottom: 1.25rem;
}


@media (max-width: 768px) {
    .sectionIntroText{
        text-align: center;
        font-size: 8rem;
    }
    .aboutUsGrid{
        display: flex;
        flex-direction: column;
    }
    .aboutUsText{
        font-size: 5rem;
        margin-top: 4rem;
        margin-bottom: 5rem;
    }
    .aboutUsSubcontainer{
        width: 100%;
        border: none;
        border-top: 2px solid gray;
        padding: 0;
        padding-top: 7rem;
    }
    .aboutUsNumber{
        text-align: center;
        font-size: 8rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    .aboutUsSubtext{
        font-size: 5rem;
        text-align: center;
        padding-bottom: 3rem;
    }

        
    #service-container{
        display: none;
    }
    .service-mobile-container{
        display: flex; 
    }
    
}









.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
  padding: 8px;
  background-color: #f2f2f2;
}
.checkbox-group label, .consent-label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.1rem;
}
.checkbox-group input[type="checkbox"], .consent-label input[type="checkbox"] {
  width: max-content;
  accent-color: black;
  cursor: pointer;
  margin: 0;  
}

.contact-form, .talent-form{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 5rem;
        padding: 2.4rem 6rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      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: black;
    }

    .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;
    font-family: 'tomorrow';
    padding: 0;
    margin: 0;
}
.contactSection{
    margin: 0rem;
    padding: 0;
    padding-top: 8rem;
    background-color: var(--bg-white);
}
.submitContactMessage{
    position: relative;
    width: max-content;
    border: 1px solid var(--textBold1);
    padding: 1rem;
    font-size: 1.5rem;

    user-select: none;
    cursor: pointer;

    width: 36rem;

    background-color: var(--bg-white);
    color: black;
    border: 1px solid black;

    border-radius: 0.5rem;
    overflow: hidden;
}

.service-cards{
    
    background-color: #f2f2f2;
     
    position: relative;
    padding: 1rem;
}
.service-card-container{
    display: grid; 
    grid-template-columns: 1fr 1fr;
}
.service-card{
    margin: 2rem;
    padding: 3rem;
    border-radius: 3px;
    background-color: var(--bg-white);
    height: 22rem;
    
}
#service-card-text{
    margin: 2.5rem 0; font-size: 1.6rem;
}

.service-card-cta{
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid black;
    width: 37rem;
    font-size: 1.2rem;
    font-family: 'Tomorrow';
    border-radius: 3px;
    text-align: center;
    letter-spacing: 0.1rem;
    cursor: pointer;
    user-select: none;
    transition: 0.5s;
}
.service-card-cta:hover{
    color: gray;
}

.service-card-image-container{
    margin: 2rem; height: 28rem;
}


@media (max-width: 768px) {
    .contact-form{
        display: block;
    }
    .contactIntro{
        font-size: 8rem;
        margin-bottom: 4rem;
    }
    .label{
        font-size: 5rem;
    }
    
    .service-cards{
        height: auto;
    }
    .service-card{
        height: auto;
        margin-bottom: 3rem;
        padding: 6rem;
    }
    #service-card-title{
        font-size: 6rem;
        margin-bottom: 2rem;
    }
    #service-card-text{
        font-size: 4rem;
        padding-bottom: 4rem;
    }
    .service-card-cta{
        width: auto;
        font-size: 5rem;
        padding: 3rem;
    }

    .service-card-container{
        display: block;
    }
    .service-card-image-container{
        height: 50rem;
    }

    .max-width-mobile{
        width: 100%;
    }
}

