/* Base Styles*/
html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--neutral-default);
}
img {
  height: auto;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: var(--neutral-darker);
}

h1 {
  font-size: 4rem;
  line-height: 5.125rem;
  letter-spacing: -0.08rem;
}

h2 {
  font-size: 3.25rem;
  line-height: 4.375rem;
  letter-spacing: -0.065rem;
}

h3 {
  font-size: 2.25rem;
  line-height: 3.25rem;
  letter-spacing: -0.045rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}

p {
  font-size: 16px;
}

/* Buttons */
.c-button {
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-height-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-3xs);
  padding: var(--padding-sm) var(--padding-md);
  border-radius: var(--radius-md);
  width: max-content;
}

.c-button:hover {
  cursor: pointer;
}

.c-button:disabled {
  cursor: not-allowed;
}

.c-button__icon {
  width: var(--icon-sm);
  height: var(--icon-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Primary Button */
.c-button--primary {
  background-color: var(--primary-dark);
  color: var(--white);
}

.c-button--primary .c-button__icon {
  stroke: var(--white);
}

.c-button--primary:hover {
  background-color: var(--primary-default);
}

.c-button--primary:active {
  background-color: var(--primary-darker);
}

.c-button--primary:disabled {
  background-color: var(--primary-lighter);
  color: var(--primary-light);
}

/* Secondary Button */
.c-button--secondary {
  background-color: var(--white);
  color: var(--neutral-dark);
  border: var(--border-xs) solid var(--neutral-default);
  transition: 0.3s;
}

.c-button--secondary .c-button__icon {
  stroke: var(--neutral-dark);
}

.c-button--secondary:hover {
  background-color: var(--white);
  color: var(--neutral-light);
  border-color: var(--neutral-light);
}

.c-button--secondary:hover .c-button__icon {
  stroke: var(--neutral-light);
}

.c-button--secondary:active {
  background-color: var(--white);
  color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}

.c-button--secondary:disabled {
  background-color: var(--white);
  color: var(--neutral-lighter);
  border-color: var(--primary-lighter);
}

.c-button--secondary:disabled .c-button__icon {
  stroke: var(--neutral-lighter);
}

/* Links */
.c-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  gap: var(--gap-3xs);
}

.c-link__icon {
  display: inline-flex;
  justify-content: center;
  width: var(--icon-sm);
  height: var(--icon-sm);
}

.c-link--nav {
  padding: var(--padding-xs) var(--padding-sm);
  color: var(--white);
}

.c-link--nav .c-link__icon {
  stroke: var(--white);
}

.c-link--nav::after {
  bottom: 0;
  position: absolute;
  content: "";
  display: flex;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s;
}

.c-link--nav:hover::after {
  width: calc(100% - (var(--padding-sm) * 2));
}

.c-link--side {
  padding: var(--padding-xl) 0;
  color: var(--white);
  font-size: 1.3rem;
}

.c-link--side::after {
  bottom: 0;
  position: absolute;
  content: "";
  display: flex;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s;
}

.c-link--side:hover::after {
  width: 100%;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  z-index: 999;
}

.sidebar__active ~ .overlay {
  visibility: visible;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1001;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background: var(--primary-dark);
}

.navbar__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__burger-menu button {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
}

.navbar__burger-menu button:hover {
  cursor: pointer;
}

.navbar__logo {
  height: 32px;
}

.navbar__list {
  display: flex;
}

.navbar__list li {
  display: none;
}

.navbar__button {
  display: none;
  background-color: transparent;
  color: var(--white);
  border: var(--border-xs) solid var(--white);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: -500px;
  top: 0px;
  width: 75%;
  max-width: 360px;
  height: 100%;
  background-color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  align-items: start;
  text-align: left;
  z-index: 1002;
  overflow-y: auto;
  padding: var(--padding-xl);
  transition: 0.5s;
}

.sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  align-self: flex-end;
  cursor: pointer;
  border-radius: var(--radius-md);
  border: 1px solid var(--white);
}

.sidebar__list {
  width: 100%;
}

.sidebar__list li {
  display: flex;
  flex-direction: column;
}

.sidebar__button {
  width: 100%;
  background-color: transparent;
  color: var(--white);
  border: var(--border-xs) solid var(--white);
}

.sidebar__active {
  left: 0;
}

/* Main Content */
main {
  display: flex;
  justify-content: center;
}

section.l-column {
  padding-top: var(--padding-section-top-bottom);
  padding-bottom: var(--padding-section-top-bottom);
}

/* Hero section  */


.mySlides {display: none;} 

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.hero {
  gap: var(--gap-lg);
  align-items: center;
}

.l-column {
  display: flex;
  flex-direction: column;
}

.l-row {
  display: flex;
  flex-direction: row;
}

.hero__content {
  gap: var(--gap-xl);
  align-items: center;
  width: 100%;
}

.hero__text {
  gap: var(--gap-2xs);
}

.hero__images {
  gap: var(--gap-sm);
  width: 100%;
}

.hero__image-box {
  display: flex;
  width: 100%;
  height: 256px;
  padding-top: var(--padding-2xl);
  flex: 1 0 0;
}

.hero__image-box img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.hero__image-box:first-of-type {
  padding-bottom: var(--padding-2xl);
  padding-top: 0;
}

/* About Us Section */
.about-us {
  gap: var(--gap-lg);
}

.about-us__content {
  gap: var(--gap-xl);
  align-items: center;
}

.about-us__text {
  gap: var(--gap-2xs);
  max-width: 928px;
}

.l-grid {
  display: grid;
  gap: var(--gap-lg);
}

.card {
  padding: var(--padding-4xl) var(--padding-xl);
  gap: var(--gap-lg);
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-light);
}

/* Research Section */
.research {
  gap: var(--gap-lg);
  flex-direction: column-reverse;
}

.research__content {
  gap: var(--gap-xl);
  align-items: center;
  flex: 1 1 auto;
}

.research__text {
  gap: var(--gap-2xs);
  max-width: 928px;
}

.research__image-box {
  height: 256px;
}

.research__image-box img {
  object-fit: scale-down;
}

/* News Section */
.news {
  flex-direction: column-reverse;
  gap: var(--gap-2xl);
}

.news__content {
  gap: var(--gap-xl);
  width: 100%;
  align-items: center;
}

.news__text {
  gap: var(--gap-2xs);
}

.news__images {
  position: relative;
  height: 320px;
}

.news__images__image {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.news__images__image--front {
  width: 65%;
  height: 75%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.news__images__image--back {
  width: 65%;
  height: 75%;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Events Section */
.events {
  gap: var(--gap-2xl);
  justify-content: center;
}

.l-column.events {
  flex-direction: column;
}

.events__content {
  gap: var(--gap-lg);
  align-items: center;
  width: 100%;
}

.events__cards-content {
  grid-gap: var(--gap-lg);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.events__card {
  gap: var(--gap-lg);
  padding-bottom: var(--padding-xl);
  border-bottom: 1px solid var(--neutral-lighter);
}

.events__image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 256px;
}

.events__text {
  gap: var(--gap-xs);
  justify-content: center;
  width: 100%;
}

/* Technology Section */
.technology__content {
  gap: var(--gap-lg);
}

.technology__image-box {
  height: 288px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.technology__image-box img {
  height: 100%;
}

.technology__text {
  gap: var(--gap-lg);
}

.technology__description {
  gap: var(--gap-sm);
  align-items: center;
}

.c-link__icon {
  display: inline-flex;
  align-items: center;
}

/* Contact Section */
.contact__Us {
  text-align: left;
  gap: var(--gap-lg);
}

.contact__form-group {
  display: flex;
  flex-direction: column;
}

.contact__form-label {
  margin-bottom: var(--padding-2xs);
}

.contact__form-input {
  padding: var(--padding-xs);
  border: 1px solid var(--neutral-lighter);
  border-radius: var(--radius-md);
}

.contact__form-error {
  color: var(--danger-dark);
  font-size: 0.875em;
  margin-top: var(--radius-sm);
}

.contact__success-message {
  color: var(--success-dark);
  font-size: 16px;
  margin-bottom: var(--padding-lg);
}

.contact__button {
  margin: var(--padding-sm) 0;
}

/* Team Section */

h77{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 2.5rem;
	border-right: 3px solid #242526;
	margin: 0 0 -10px 0px;
	padding: 60px 20px 20px 25px;
        float: left;
	width: auto;
 }

.contact {
  padding: var(--padding-section-top-bottom) 0;
  gap: var(--gap-2xl);
}

.contact__team {
  justify-content: center;
  gap: var(--gap-lg);
}

.contact__team-content {
  gap: var(--gap-2xl);
  align-items: center;
}

.contact__team-text {
  gap: var(--gap-md);
}

.contact__team-profiles {
  flex-direction: row;
  gap: var(--gap-lg);
  text-align: center;
  width: 50%;
}

.contact__team-profile-box {
  gap: var(--gap-sm);
  justify-content: center;
  align-items: center;
}

.contact__team-profile-box img {
  border-radius: var(--radius-full);
}

.contact__team-social-icons {
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.toast {
  visibility: hidden;
  padding: var(--padding-md);
  min-width: 250px;
  background-color: var(--success-lighter);
  color: var(--success-dark);
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
  box-shadow: 0px 0px 10px 0px rgba(196, 255, 225, 0.2);
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  transform: translateX(-50%); /* Center horizontally */
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Footer */
.footer {
  padding: var(--padding-section-top-buttom, 56px) 0;
  display: flex;
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: left;
  justify-content: center;
}

.footer__content {
  gap: var(--gap-2xl);
  width: 100%;
}

.footer__top {
  display: flex;
  gap: 10%;
  flex-direction: column;
}

.footer__newsletter {
  width: 100%;
  gap: var(--gap-lg);
}

.footer__logo img {
  width: 60%;
  object-fit: fill;
}

.newsletter-form-box {
  gap: var(--gap-xs);
}

.newsletter-form-box h4 {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  border-radius: 8px;
  border: 1px solid white;
}

.newsletter-form input {
  width: 100%;
  padding-left: var(--padding-sm);
  padding-right: var(--padding-sm);
}

.footer__links-box {
  display: flex;
  width: 100%;
  gap: 24px;
  padding: var(--padding-lg);
  flex-wrap: wrap;
}

.footer__links {
  width: max-content;
  gap: 20px;
}

.footer__list {
  gap: 12px;
}

.footer__socila-icons {
  display: flex;
  gap: 16px;
  height: 36px;
}

.footer__socila-icons img {
  object-fit: fill;
}

.footer__center {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: var(--2xl, 32px) var(--none, 0px);
  border-top: 1px solid var(--primary-lighter, #dae9ff);
  border-bottom: 1px solid var(--primary-lighter, #dae9ff);
}

.footer__address {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__address-icon {
  width: 24px;
  height: 24px;
}

.footer_copyright {
  text-align: center;
}

.footer__button {
  background-color: transparent;
  color: var(--white);
  border: var(--border-xs) solid var(--white);
}

.footer-button__icon {
  fill: var(--white);
  transition: fill 0.3s;
}

.footer__button:hover .footer-button__icon {
  fill: var(--neutral-light);
}

/* Pages */
.terms-of-service {
  padding: var(--padding-section-top-bottom, 56px) 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Career Page */
/* Hero section 2 */
.hero-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--padding-lg) 0;
  text-align: center;
}

.hero-2__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  align-items: center;
}

.hero-2__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xs);
}

.hero-2__images {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  width: 100%;
}

.hero-2__image-box {
  display: flex;
  width: 100%;
  height: 448px;
  padding-top: var(--padding-2xl);
  flex: 1 0 0;
}

.hero-2__image-box img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.hero-2__image-box--first {
  padding-bottom: var(--padding-2xl);
  padding-top: 0;
}

.career {
  gap: var(--gap-xl);
  text-align: start;
}
.career__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.career__info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.career__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.career__details {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xs);
  padding: var(--padding-2xl);
  border-radius: var(--radius-md);
}
.career__details--main {
  border: var(--border-xs) solid var(--primary-light);
  background-color: var(--primary-lighter);
}
.career__details-title {
  gap: var(--gap-2xs);
  align-items: center;
}
.career_info-item {
  gap: var(--gap-2xs);
}
.career__details--sub {
  border: var(--border-xs) solid var(--neutral-lighter);
  width: 100%;
}
.career__details--sub ul {
  list-style: disc;
  margin-left: 24px;
}
.career__content .container {
  gap: var(--gap-lg);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  max-height: 90vh; /* Restrict height to 90% of viewport */
  overflow-y: auto; /* Enable vertical scrolling if content is too long */
}

/* For larger content, ensure the modal is scrollable */
.modal__form {
  max-height: 100%; /* Ensure form doesn't exceed the content area */
  overflow-y: auto; /* Scroll within form if needed */
}

.modal__close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.modal__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: var(--padding-lg);
}

.modal__form-group {
  margin-bottom: var(--padding-md);
}

.modal__form-label {
  display: block;
  margin-bottom: var(--padding-2xs);
}

.modal__form-input {
  padding: var(--padding-xs);
  border: 1px solid var(--neutral-lighter);
  border-radius: var(--radius-md);
  width: 100%;
}

.modal .c-button {
  width: 100%;
}

/* Breakpoints */
/* Extra Small: up to 575px */
@media (max-width: 575px) {
  html {
    font-size: 12px;
  }

  body {
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  h4 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  h5 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .hero {
    flex-direction: column-reverse;
  }

  .l-grid.about-us__features {
    grid-template-columns: repeat(1, 1fr);
  }

  .container {
    flex-direction: column;
  }
  .modal {
    text-align: start;
  }
}

/* Small: 576px and up */
@media (min-width: 576px) {
  html {
    font-size: 12px;
  }

  body {
    text-align: center;
  }

  h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }

  h4 {
    font-size: 1.3rem;
    line-height: 1.75rem;
  }

  h5 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .hero {
    flex-direction: column-reverse;
  }

  .hero__image-box {
    height: 320px;
  }

  .l-grid.about-us__features {
    grid-template-columns: repeat(1, 1fr);
  }

  .events__cards-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .events__card:first-child {
    grid-column: span 2;
  }

  .footer {
    text-align: left;
  }

  .container {
    flex-direction: column;
  }
  .modal {
    text-align: start;
  }
}

/* Medium: 768px and up */
@media (min-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 4.25rem;
  }

  h2 {
    font-size: 2.75rem;
    line-height: 3.5rem;
  }

  h3 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .hero__image-box {
    height: 400px;
  }

  .l-grid.about-us__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .news {
    flex-direction: row;
    text-align: left;
  }

  .news__content {
    align-items: flex-start;
  }

  .news__images {
    width: 100%;
  }

  .technology__text {
    flex-direction: row;
    text-align: left;
  }

  .technology__description {
    align-items: flex-start;
  }

  .contact__team-content {
    gap: var(--gap-2xl);
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
  }

  .footer__newsletter {
    width: 40%;
  }

  .footer__top {
    flex-direction: row;
  }

  .footer__links-box {
    width: 60%;
    gap: 24px;
    padding: 0;
    flex-wrap: nowrap;
  }

  .footer__links {
    width: 100%;
  }

  .career__container {
    border: var(--border-xs) solid var(--neutral-lighter);
    border-radius: var(--radius-md);
    padding: var(--padding-2xl);
  }
}

/* Large: 992px and up */
@media (min-width: 992px) {
  body {
    text-align: left;
  }

  h1 {
    font-size: 4rem;
    line-height: 5.125rem;
  }

  h2 {
    font-size: 3.25rem;
    line-height: 4.375rem;
  }

  h3 {
    font-size: 2.25rem;
    line-height: 3.25rem;
  }

  h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .navbar__burger-menu {
    display: none;
  }

  .navbar__list li,
  .navbar__button {
    display: flex;
  }

  .hero {
    flex-direction: row;
  }

  .hero__content {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero__images {
    gap: var(--padding-lg);
  }

  .about-us {
    text-align: center;
  }

  .research {
    flex-direction: row;
  }

  .research__content {
    gap: var(--gap-xl);
    align-items: flex-start;
    flex: 1;
    justify-content: center;
  }

  .l-column.events {
    flex-direction: row;
  }

  .events__cards-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .events__card {
    grid-column: 1;
    flex-direction: row;
  }

  .events__content {
    align-items: start;
  }

  .events__image-box {
    width: 30%;
  }

  .hero-2__content {
    width: 70%;
  }
  h2.career__title {
    text-align: center;
  }
  .container {
    flex-direction: row;
  }
}
