* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
} 

body {
    line-height: 1;
    overflow: hidden;
    background-color: #eeeeee;
}

/* brand colours
#1F2235 darkblue
#E3A419 orange */

.spacer {
  height: 11rem;
}

.textShadow {
  text-shadow: 1px 0 #1F2235;
}

.orangeText {
  color: #E3A419 !important;
}

.blueText {
  color: #1F2235 !important;
}

.whiteText {
  color: #fff !important;
}

/* //////////VERTICAL-NAV */

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #f7f7f7; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; 
    border-left: 3px solid #1F2235;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: #444;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #fff;
  }

  .mobileSocialLinks {
    justify-content: flex-start;
    font-size: 0;
    gap: 0.1rem;
  }


  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0.6rem;
    right: 2rem;
    font-size: 36px;
    margin-left: 50px;
  }

  .sub-link {
    margin-left: 1rem;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  .open-nav {
      z-index: 999;
      font-size: 5rem;
      color: #333;
      display: none;
      padding-right: 0.6;
      margin-left: auto;
      align-self: flex-end;
      justify-self: flex-end;
      margin-bottom: 1rem;
  }

  .closebtn,
  .open-nav {
    width: 4rem;
  }

  .closebtn {
    margin-top: 2rem;
  }


/*------- Navbar styling */

header {
  padding: 1.2rem;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.navbar {
  display: flex;
  gap: 9.6rem;
}

.logoBox {
  align-self: center;
}

.navLogo {
  width: 13rem;
}

.navBox {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.6rem 3.6rem;
  gap: 1.2rem;
}

.navContactBox {
  display: flex;
  gap: 2.4rem;
  width: 100%;
}

.navContactLinks {
  text-decoration: none;
  font-size: 1.8rem;
  color: #1F2235;
  display: flex;
}

.navContactIcons {
  width: 2rem;
  height: auto;
  align-self: start;
  margin-right: 0.6rem;
}

.navSocialIcons {
  margin-left: auto;
}

.navSocialIconLink {
  text-decoration: none;
}

.navSocialIcon {
  width: 3rem;
}

.navLinksBox {
  width: 100%;
  display: flex;
  align-items: center;
}

.navLinksList {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.navLinkItem {
  font-size: 1.8rem;
}

.navLink {
  text-decoration: none;
  color: #1F2235;
}

.navSpecialBox {
  margin-left: auto;
  padding: 0.6rem 1.2rem;
  background-color: #E3A419;
  border-radius: 13px;
}

.navSpecialLink {
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
}

.navMenuIcon {
  margin-left: auto;
  display: none;
  width: 4rem;
  height: auto;
  justify-self: center;
  align-self: center;
}

.emailText {
  font-size: 1.5rem !important;
}

/*------- Hero styling */

.hero {
  padding: 0.6rem;
  position: relative;
  height: 80vh;     
  background-image: url("/imgs/heroImgDesktop.png"); 
  background-position-y: 60%;
  background-size: cover;  
}


.heroBox {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  gap: 1.2rem;
  height: 80vh;
  align-items: center;
  justify-content: flex-start;
}

.heroTextContainer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 55rem;
  background-color: rgba(255, 255, 255, 0.372); 
  backdrop-filter: blur(10px);   
  -webkit-backdrop-filter: blur(10px);       
  padding: 4rem 2rem;
  border-radius: 12px;
  color: #000;
  text-align: center;
}

.heroCaption {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1F2235;
  margin-right: auto;
}

.heroArrow {
  width: 3rem;
  margin-right: 1.2rem;
}

.heroHeader {
  font-size: 4rem;
  color: #1F2235;
  text-align: left;
}

.heroText {
  font-size: 2rem;
  color: #1F2235;
  text-align: left;
}

.heroLinksBox {
  display: flex;
  justify-content: space-around;
  margin-top: 2.4rem;
}

.heroLinkOne {
  padding: 0.6rem 3.6rem;
  background-color: #1F2235;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  border-radius: 6px;
}

.heroLinkTwo {
  padding: 0.6rem 3.6rem;
  background-color: #E3A419;
  color: #1F2235;
  font-size: 2rem;
  text-decoration: none;
  border-radius: 6px;
}

.heroLinkOne:hover {
  background-color: #fff;
  color: #1F2235;
  transition: all 0.3s;
}

.heroLinkTwo:hover {
  background-color: #fff;
  color: #E3A419;
  transition: all 0.3s;
}




/*------- About styling */

.about {
  padding: 9.6rem 0.6rem 4.8rem;
  margin-top: 1.2rem;
  background-color: #fff;
}

.aboutBox {
  margin: 0 auto;
  max-width: 120rem;
}

.aboutContainer {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.aboutUpper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.aboutUpperTextBox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.aboutCaption {
  font-size: 2.4rem;
  color: #1F2235;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: -1.2rem;
}

.aboutHeader {
  color: #E3A419;
  font-size: 4.8rem;
}

.aboutText {
  color: #1F2235;
  font-size: 2rem;
}

.aboutMoreBox {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.aboutLearnMoreLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 2.4rem;
  color: #fff;
  background-color: #E3A419;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding-left: 1.2rem;
}

.aboutRightArrow {
  background-color: #1F2235;
  width: 5rem;
  height: 100%;
  padding: 0.6rem;
  margin-left: 1.2rem;
}

.aboutLearnMoreLink:hover {
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.35);
  transform: translateY(2px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.aboutLowerBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.4rem;
}

.aboutLeft {
  background-image: url("/imgs/about.png");
  background-position: center;
  background-size: cover;
  position: relative;
  height: 25rem;
  width: 55rem;
  border-radius: 26px;
}

.aboutLeftAbsoluteBox {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 1.2rem;
  background-color: #E3A419;
  color: #fff;
  border-radius: 13px;
  display: flex;
  gap: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutLeftFigure {
  font-size: 4rem;
  font-weight: bold;
}

.aboutLeftText {
  font-size: 2rem;
  text-align: center;
}

.aboutEnlargeText {
  font-size: 3rem;
  letter-spacing: 2px;
}

.aboutRight {
  background-color: #1F2235;
  border-radius: 26px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  border-left: 5px solid #E3A419;
  flex-direction: column;
}

.aboutMission {
  font-size: 3rem;
  color: #E3A419;
  letter-spacing: 2px;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

/*------- Cards styling */

.cards {
  padding: 4.8rem 0.6rem;
}

.cardsBox {
  margin: 0 auto;
  max-width: 140rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.cardsHeaderBox {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.cardsCaption {
  color: #1F2235;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.cardsHeader {
  font-size: 4.8rem;
  color: #1F2235;
  line-height: 1.2;
}

.cardsContainer {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}

.cardsItem {
  display: flex;
  flex-direction: column;
  max-width: 35rem;
  border-radius: 13px;
  overflow: hidden;
  border-bottom: 5px solid #E3A419;
}

.cardsItemImgBox {

  height: 20rem;
  background-color: rgba(0, 0, 255, 0);
  position: relative;
}

.cardsItemIcon {
  position: absolute;
  background-color: #1F2235;
  bottom: -6rem;
  left: 2rem;
  width: 8rem;
  border-radius: 50%;
  padding: 1rem;
  z-index: 5;
  border: 5px solid #fff;
}

.cardsItemImg {
  width: 100%;
    clip-path: polygon(
    40px 0%, 
    100% 0%, 
    100% 100%, 
    0% 100%, 
    0% 40px, 
    0 40px, 
    40px 0%
  );
}

.cardsItemImgWrapper {
  position: relative;
  overflow: hidden;
}

/* Add blue overlay */
.cardsItemImgWrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 33, 104, 0.301), transparent);
  pointer-events: none;
}

.cardsItemTextBox {
  background-color: #ffffff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 8rem;
}

.cardsItemHeader {
  font-size: 2.4rem;
  color: #1F2235;
}

.cardsItemText {
  font-size: 1.8rem;
  color: #1F2235;
}

.cardsItemLink {
  font-size: 2rem;
  color: #1F2235;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 1.2rem;
  margin-right: auto;
}

.cardsItemArrow {
  width: 2rem;
  align-self: center;
  justify-self: center;
}


/*------- Instruct styling */

.instruct {
  padding: 4.8rem 0.6rem;
  background-color: #fff;
}

.instructBox {
  margin: 0 auto;
  max-width: 120rem;
}

.instructContainer {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.instructUpper {
  display: flex;
  justify-content: space-between;
}

.instructTitleBox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.instructLower {
  display: flex;
  justify-content: space-between;
  gap: 3.6rem;
  position: relative;
}

.instructItem {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 30rem;
  position: relative;
}

.instructLower::before,
.instructLower::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.6px;
  background-color: #1F2235;
  transform: translateX(-50%);
}

.instructLower::before {
  left: calc(100% / 3 * 0.90); 
}

.instructLower::after {
  left: calc(100% / 3 * 2); 
}

.instructStep {
  font-size: 2rem;
}

.instructStepOne {
  background-color: #1F2235;
  color: #fff;
  border-radius: 13px;
  padding: 0.6rem;
  margin-bottom: 0.6rem;
  margin-right: auto;
}

.instructStepTwo {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.instructStepImg {
  background-color: #E3A419;
  padding: 0.6rem;
  border-radius: 50%;
  width: 3rem;
  margin-left: -4.8rem;
  margin-right: 1.2rem;
}

.instructStepThree {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  color: #1F2235;
}

.instructStepImgTwo {
  padding: 0.6rem;
  width: 3rem;
  margin-left: -4.8rem;
  margin-right: 1.2rem;
}

.instructHeader {
  color: #1F2235;
  font-size: 3rem;
}

.instructText {
  font-size: 1.6rem;
  color: #1F2235;
  margin-top: auto;
}


/*------- Instruct styling */

.projects {
  padding: 4.8rem 0.6rem;
  background-color: #1F2235;
}

.projectsBox {
  margin: 0 auto;
  max-width: 120rem;
}

.projectsContainer {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.projectsHeaderBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projectsCaption {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 2.4rem;
}

.projectsHeader {
  font-size: 4.8rem;
  color: #fff;
}

.projectsItemOne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  background-color: #ffffff0f;
  padding: 1.2rem;
  border-radius: 13px;
}

.projectsImg {
  width: 100%; height: auto; display: block;
}

.projectsImgOne {
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}

.projectsImgTwo {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);

}

.projectsTextBox {
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  gap: 2.4rem;
  justify-content: center;
  overflow: hidden;
  
}

.projectsTitle {
  font-size: 3.6rem;
  color: #fff;
}

.projectsText {
  font-size: 2.4rem;
  color: #fff;
}

.projectsList {
  list-style: none; 
  padding-left: 0;  
  margin: 0;
}

.projectsListText {
  display: flex;
  align-items: flex-start; 
  gap: 0.6rem; 
  margin-bottom: 0.8rem; 
  font-size: 2.4rem;
  color: #fff;
}

.projectsListIcon {
  width: 2.4rem;   
  height: auto;
  flex-shrink: 0; 
}

.projectsLink {
  font-size: 2.4rem;
  color: #E3A419;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 1.2rem;
  margin-right: auto;
}


/*------- chooseUs styling */

.chooseUs {
  padding: 4.8rem 0.6rem;
  background-color: #fff;
}

.chooseUsBox {
  margin: 0 auto;
  max-width: 85rem;
}

.chooseUsContainer {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.chooseUsItems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: stretch;
}

.chooseUsImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

.chooseUsTextBox {
  display: flex;
  flex-direction: column;
  background-color: #1F2235;
  border-radius: 13px;
  border-left: 5px solid #E3A419;
  padding: 2.4rem;
  justify-content: space-between;
}

.chooseUsTextItem {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.chooseUsIcon {
  width: 5rem;
  height: 5rem;
}

.chooseUsTextItemBox {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chooseUsHeading {
  font-size: 2.6rem;
  color: #fff;
}

.chooseUsText {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.cta {
  padding: 4.8rem 0.6rem;
}

  .ctaQuoteForm-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #1F2235;
    color: #fff;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .ctaQuoteForm-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .ctaQuoteForm-text {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  
  .ctaQuoteForm-contact {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    font-size: 1.6rem;
  }
  
  .ctaQuoteForm-contact li {
    margin-bottom: 0.5rem;
  }
  
  .ctaQuoteForm-contact a {
    color: #E3A419;
    text-decoration: underline;
  }
  
  .ctaQuoteForm-contact a:hover {
    text-decoration: none;
  }
  
  .ctaQuoteForm-wrapper {
    margin-top: 2rem;
  }
  
  .ctaQuoteForm-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .ctaQuoteForm-input,
  .ctaQuoteForm-textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    border: none;
    border-radius: 0.5rem;
    outline: none;
    font-family: inherit;
  }
  
  .ctaQuoteForm-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .ctaQuoteForm-submit {
    background-color: #fff;
    color: #333;
    background-color: #E3A419;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 1rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .ctaQuoteForm-submit:hover {
    background-color: #fff;
    color: #333;
  }

.faq {
  padding: 4.8rem 0.6rem;
  background-color: #1F2235;
}

.faqHeader {
  color: #fff;
  text-align: left;
  padding-bottom: 2.4rem;
  font-size: 3.6rem;
}

.faqTwo {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faqItemTwo {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 5px solid #E3A419;
    padding: 12px;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.faqItemTwo:hover {
    background: #eee;
    border-left: 10px solid #E3A419;
}

.faqAnswerTwo {
    display: none;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #1F2235;
    margin-top: 5px;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 100;
    color: #333;
}

.faqItemTwo.active .faqAnswerTwo {
    display: block;
}

  /* -------FOOTER SECTION------ */

  .footer {
    padding: 9.6rem 0.6rem;
    color: #1F2235;
    display: grid;
    grid-template-columns: 1fr;
}

.footer-box {
    max-width: 150rem;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo-copy {
    align-items: center;
}

.footer-logo {
    width: 20rem;
}

.copyright {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #1F2235;
    text-align: center;
}

.footer-socials-box {
    display: flex;
    gap: 2.4rem;
}

.footer-social {
    width: 4.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social:hover {
    transform: scale(1.05);
}

.footer-header {
    font-size: 2.8rem;
    padding-bottom: 1.8rem;
    color: #1F2235;
}

.footer-details {
    font-size: 1.8rem;
    text-align: center;
}

.footer-link {
    font-size: 2.2rem;
    text-decoration: none;
    color: #1F2235;
    position: relative;
}


.quad {
  padding: 4.8rem 0.6rem;
  background-color: #1F2235;
}

.quadBox {
  margin: 0 auto;
  max-width: 140rem;
}

.quadContainer {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: stretch;
}

.quadItem {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffffb2;
  padding: 0.6rem;
  border-radius: 6px;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
}

.quadImg {
  width: 5rem;
}

.quadTextBox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quadHeader {
  font-size: 2.4rem;
  color: #1F2235;
}

.quadText {
  font-size: 1.8rem;
  color: #333;
}

