.disabled-link {
  pointer-events: none;
  color: crimson !important;
}

.dataTables_filter{
  margin-bottom:18px !important;
}

body {
  overflow-x: hidden;
}

.swiper-container {
  overflow-x: hidden;
}


.login-page-container {
  display: flex;
  flex-direction: row;
  /* min-height: 100vh; */
  padding: 4rem;
}

.login-page-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.login-page-content {
  width: 100%;
}

.login-page-image-section {
  position: relative;
  width: 50%;
}

.login-page-image-section img.login-page-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 20;
}

.login-page-image-section img.login-page-decorative {
  position: absolute;
  z-index: 10;
}

@media (max-width: 768px) {
  .login-page-container {
      padding: 16px;
  }

  .login-page-section {
      width: 100% !important;
  }

  .login-page-image-section {
      display: none;
      /* Hides the image section on mobile */
  }
}

.quick-start-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.video-container {
  display: flex;
  justify-content: center;
}

.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.title {
  font-family: 'intelOne', sans-serif;
  color: black;
  font-size: 1.5rem;
  font-weight: 600;
}

.description {
  font-family: 'intelOne', sans-serif;
  color: black;
  font-size: 1rem;
  font-weight: 400;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .quick-start-section {
      padding-left: 20px;
      padding-right: 20px;
  }

  .title {
      font-size: 1.25rem;
  }

  .description {
      font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .quick-start-section {
      flex-direction: column;
      padding-left: 16px;
      padding-right: 16px;
      text-align: center;
      gap: 40px !important;
  }

  .title {
      font-size: 1.25rem;
  }

  .description {
      font-size: 0.9rem;
  }
}
/* .hidden {
  display: none;
} */

/* project page css */
.project-container {
  display: flex;
  flex-direction: column;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-left-column {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-right-column {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  justify-content: flex-start;
}

/* Desktop Mode */
@media (min-width: 768px) {
  .project-container {
      flex-direction: row;
  }

  .project-left-column {
      width: 70%;
  }

  .project-right-column {
      width: 30%;
      flex-direction: column;
  }
}

/* Mobile Mode */
@media (max-width: 767px) {
  .project-container {
      align-items: stretch;
  }
  .project-left-column,
  .project-right-column {
      width: 100%;
      flex-direction: column;
      min-height: auto;
  }

  .project-left-column {
    height: 1000px;
  }
}

.project-slide {
  flex: 0 0 33.333%;
  /* 100% / 3 items per page */
  max-width: 33.333%;
}

.project-page {
  display: flex;
  width: 100%;
  /* Full width for each page */
}

#project-slides {
  height: 100%;
}

/* layout css */

@media (min-width: 768px) {
  .mobile-menu-button {
      display: none;
  }
}

.mobile-menu-button {
  margin-right: 1rem;
}

/* Tooltip styling */
.industry-partners-link[data-tooltip] {
  position: relative;
}

.industry-partners-link[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  top: 100%; /* Position the tooltip below the link */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px; /* Distance from link */
  white-space: nowrap;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.industry-partners-link[data-tooltip]::after {
  opacity: 0;
  pointer-events: none;
}

.industry-partners-link[data-tooltip]:hover::after {
  opacity: 1;
}