:root {
  --gblue: #4889F4;
  --gred: #EB493B;
  --gyellow: #FBBE0D;
  --ggreen: #3AAB58;
  --cblue: #2D72DC;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: larger;
  background-color: black;
  color: white;
  letter-spacing: 1px;
}
  
header {
  background-color: black;
  /* padding: 20px; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 10;
  display:flex;
  justify-content: right;
  /* min-width: 245px; */
}

.header-links {
  margin-top: 2rem;
}

.header-logo {
  width:17rem;
  margin-top:0.5rem;
  margin-left:0.5rem;
}

nav {
  display:flex;
  transition: left 0.3s ease-in-out; /* Smooth slide animation */
}

nav ul {
  /* list-style: none; */
  margin: 0;
  margin-right: 1rem;
  width: 100%;
  text-align: right;
}
  
nav li {
  display: inline-block;
  margin-right: 20px;
}
  
nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}
  
main {
  padding-top: 80px;  /* Add some space below the navbar */
  min-height: calc(100vh - 80px);  /* Set minimum height for content area */
  width: 100%;
}

p {
  line-height: 2.2rem;
}

.responsive-table th, .responsive-table td {
  padding: 10px;
}
  

.mploi-input-text {
  padding: 10px;
  width: 93%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
  margin: 1rem;
  font-size: large;
  font-family: "Raleway", sans-serif;
}

.mploi-textarea {
  width: 93%;
  padding: 10px;
  margin: 1rem;
  font-size: large;
  font-family: "Raleway", sans-serif;
}

.mploi-select {
  width: 95%;
  padding: 10px;
  margin: 1rem;
  font-size: large;
}

.mploi-button {
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 25px;
  background-color: #2D72DC;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}

.mploi-label {
  font-size: large;
  margin-left: 1rem;
}

.contact-row {
  margin-top:1rem;
}

.hero {
  /* width: 100%; */
  margin-bottom: -0.3rem;
}

.black-slide {
  background-color:black;
  color: white;
  /* width: 100%; */
  margin-bottom: -1rem;
  margin-top: -0.5rem;
  font-weight:500;
  padding-left:10px;
  padding-right: 10px;
}

.slide-large {
  height:25rem;
}

.slide-medium {
  height:30rem;
}

.slide-small {
  height:20rem;
}

.black-slide p, .white-slide p {
  margin-left: 10%;
  margin-right: 10%;
}

.black-slide li, .white-slide li {
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 2rem;
  line-height: 2.2rem;
}


.white-slide {
  background-color:white;
  color: black;
  /* width: 100%; */
  margin-bottom: -1rem;
  margin-top: -0.5rem;
  font-weight:500;
  padding-left:10px;
  padding-right: 10px;
}



.robot {
  width:25rem;
  margin-top:5rem;
}

.column-left {
  float: left;
  height:100%;
  align-content:center;
}

.column-right {
  float: right;
  height:100%;
  align-content:center;
}

.contact_requests-formatting {
  margin:0;
  line-height:1.5;
  padding:0;
}

.light-bold {
  font-weight: 200;
}

.page-titles {
  margin-left: 8%;
  line-height: 2.2rem;
}

.page-text {
  font-weight: 400;
}

.page-section {
  padding-top:5rem;
  padding-bottom:5rem;
}

.contact-form {
  margin-left:25%;
  margin-right:25%;
}

.navigation {
  position: fixed; /* Makes menu appear on top of content */
  top: 0;
  left: -100%; /* Hides menu initially */
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: black; /* Menu background color */
  transition: left 0.3s ease-in-out; /* Smooth slide animation */
  margin-top: 4rem;
  z-index: 1000;
}

.navigation.active {
  left: 0; /* Shows menu on click */
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.navigation li {
  padding: 1rem;
}

.navigation a {
  color:white;
  font-size: x-large;
  text-decoration: none;
  font-weight: 600
}

.hamburger-menu {
  display: flex;
  position:absolute;
  left: 0;
  top: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer; /* Shows hand cursor on hover */
  background: black;
  border: none;
}

.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #2D72DC;
  margin-bottom: 5px;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #3B3B3B;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  margin-right: 1rem;
  width: 13rem;
  text-align: left;
  padding: 0;
}


.dropdown li {
  padding: 0.5rem;
}


.dropdown a {
  color: white;
  text-transform: uppercase;
  font-size: small;
}

.dropdown-mobile {
  display: none;
  background-color: #3B3B3B;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.dropdown-mobile li {
  padding: 1rem;
  margin-top: 1rem;
}


.dropdown-mobile a {
  color: white;
  text-transform: uppercase;
  font-size: larger;
}


.copyright {
  font-weight: 400;
  font-size: 0.6rem;
  padding-left: 1rem;
  padding-top: 1rem
}


#ai-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#ai-link a {
  display: block;
  /* width: 50px; */
  height: 9rem;
  text-decoration: none; /* removes underline from link */
}

#ai-link img {
  width: 100%;
  height: 100%;
}


.input-ai-question {
  width: 80%;
  padding: 0.5rem;
  padding-left: 1rem;
  border-radius: 20px;
  border-width: 1px;
  margin-top: 1rem;
}

.gemini-container {
  /* max-height: 73dvh; */
  overflow-y: auto;
  scrollbar-width: thin;
  margin-left: 10%;
  margin-right: 10%;
}

.gemini-container .heading {
  font-size: 1.5em;
  font-weight: 500;
  color: #2D72DC;
  margin-bottom:0rem;
  margin-top: 2rem;
}

.gemini-inner-container {
  text-align: left;
  /* max-height: 73dvh; */
  /* overflow-y: auto; */
  padding: 1rem;
  /* scrollbar-width: thin; */
}

.gemini-inner-container .question {
  font-size: 1.5em;
  color: #2D72DC;
  margin-bottom:1rem;
  margin-top:1rem;
  font-weight: 400;
}

.gemini-inner-container .answer {
  white-space:pre-wrap;
  padding-right:0.3rem;
  padding-left:0.2rem;
  margin-bottom:0rem;
}

.gemini-inner-container li, .gemini-inner-container p {
  margin: 0 !important;
  font-size: 1em;
  font-weight: 300;
  text-align: left;
  color: white !important;
  margin-bottom: -1rem !important;
  line-height: 2.2rem;
}

.gemini-inner-container table {
  font-weight: 300;
  line-height: 2rem;
}

.gemini-inner-container ul {
  margin-top: -2rem;
  margin-bottom: -1rem;
}

.gemini-inner-container h2 {
  font-size: 2.5rem;
}

.gemini-inner-container a {
  color: #2D72DC;
  font-weight: 600;
}


/* Clear floats after the columns */
/* .row:after {
  content: "";
  display: table;
  clear: both;
} */



.gemini-logo-animate {
  animation: rotation 6s infinite linear;
  margin-top:-0.2rem;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.loader_container {
  width: 400px;
}

.loader_box {
  height: 40px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.ball {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--cblue);
  transform: scaleX(1) translateY(0px);
  z-index: 2;
  animation: bouncing 0.5s infinite alternate linear;
  margin-right: 35px;
}

.ball:nth-child(2) {
  animation-delay: 0.2s;
  background-color: var(--cblue);
}

.ball:nth-child(3) {
  animation-delay: 0.4s;
  background-color: var(--cblue);
}

.ball:nth-child(4) {
  animation-delay: 0.4s;
  background-color: var(--cblue);
}




.shadow {
  width: 15px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--cblue);
  filter: blur(1px);
  animation: shadow 0.5s infinite alternate linear;
  margin-right: 35px;
}

.shadow:nth-child(2) {
  animation-delay: 0.2s;
  background-color: var(--cblue);
}

.shadow:nth-child(3) {
  animation-delay: 0.4s;
  background-color: var(--cblue);
}

.shadow:nth-child(4) {
  animation-delay: 0.6s;
  background-color: var(--cblue);
}

@keyframes shadow {
  0% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(1.5);
  }
}


@keyframes bouncing {
  from { transform: translate3d(0, 0, 0); } 
  to { transform: translate3d(0, 25px, 0); }
  /* 0% {
    height: 60px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    height: 10px;
    border-radius: 100px 100px 50px 50px;
    transform: scaleX(1.7) translateY(40px);
  } */
}




@media only screen and (max-width: 700px) {
  body {
    font-size: medium;
  }

  header {
    height: 4rem;
    justify-content: right;
  }

  .header-logo {
    width: 11rem;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  nav {
    float: right;
  }

  nav ul {
    display:none;
  }

  main {
    padding-top: 64px;
    min-height: calc(100vh - 64px);
  }

  p {
    line-height: 1.75rem;
  }

  .mploi-button {
    font-size: small;
  }

  .robot {
    width:15rem;
    margin-top:5rem;
  }

  .contact-form {
    margin-left:4%;
    margin-right:10%;
  }
}


@media (min-width: 699px) {

  .navigation {
    display: none; /* Hide menu on larger screens */
  }

  .hamburger-menu {
    display: none; /* Hide hamburger on larger screens (optional) */
  }

  .header-logo {
    position: absolute;
    left: 0;
  }
}