  html {
    scroll-behavior: smooth;
  }

  #vanta-globe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
}

/* Custom Color */
.text-primary {
  color: #2563eb; /* Tailwind blue-600 */
}

.bg-primary {
  background-color: #2563eb;
}

.hover\:text-primary:hover {
  color: #2563eb;
}

.hover\:bg-primary:hover {
  background-color: #2563eb;
}

/* Navbar link styles */
.nav-link {
  color: #fff;
  background-color: transparent;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link:hover::after {
  width: 100%;
}
/* CTA Button (Desktop) */
.cta-button {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #1e40af;
}

/* Mobile Menu Styles */
.mobile-link {
  display: block;
  padding: 0.5rem 0;
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease-in-out;
}
.mobile-link:hover {
  color: #2563eb;
}

.mobile-link:hover::after {
  width: 100%;
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.mobile-cta:hover {
  background-color: #1e40af;
}

/* Animation */
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fade-in-down 0.3s ease-out;
}


.row-container {
      position: relative;
      height: 33.33vh;
      width: 100%;
      overflow: hidden;
    }

    .scroll-row {
      display: flex;
      width: fit-content;
      animation: scroll-left 60s linear infinite;
    }

    .scroll-row img {
      height: 33.33vh;
      width: auto;
      object-fit: cover;
      flex-shrink: 0;
      filter: brightness(0.6);
    }

    /* Row speeds */
    .row-container:nth-child(2) .scroll-row {
      animation-duration: 80s;
    }

    .row-container:nth-child(3) .scroll-row {
      animation-duration: 100s;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .fullscreen-black-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity here */
  pointer-events: none;
  z-index: 10;
}







.container {
      width: 90%;
      max-width: 700px;
      background: transparent;
      border-radius: 10px;
      justify-self: center;
      padding: 20px;
    }

    .header-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      height: 70px;
      width: auto;
    }

    .header-text {
      flex: 1;
      text-align: center;
      margin: 0;
      font-size: 20px;
      color: white;
      font-weight: bold;
    }
    .header-text p {
  font-size: 14px; /* smaller size */
  font-style: italic;
  color: #ffffff;
  margin: 5px 0 0;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.container {
  text-align: center;
  padding: 20px;
}

.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-logo {
  height: 60px;
}

.header-text {
  font-weight: bold;
  font-size: 18px;
}

.title-image {
  height: 300px;
  margin-top: 30px;
}
.title-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.dept-heading {
  text-align: center;
  color: #ffc940;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}
.highlight-thumb {
  @apply rounded-lg shadow-lg cursor-pointer transition duration-300 hover:scale-105;
}
.flip-card {
      perspective: 1200px;
    }
    .flip-inner {
      transition: transform 0.8s ease-in-out;
      transform-style: preserve-3d;
    }
    .flip-card:hover .flip-inner {
      transform: rotateY(180deg);
    }
    .flip-front,
    .flip-back {
      backface-visibility: hidden;
    }
    .flip-back {
      transform: rotateY(180deg);
    }