
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Orbitron', sans-serif;
    }

    body {
      background-color: #000;
      color: white;
    }

    header {
        display: flex;
        position: fixed;
        top: 0px;
        left: 0px;
        height: 60px;
        width: 100vw;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
		z-index: 999;
        background-color: #000;
    }

    .logo {
      font-size: 20px;
      color: #ad8aff;
      font-weight: bold;
      transition: color 0.3s;
    }

    .logo:hover {
      color: #ffffff;
    }

    nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin: 0 8px;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

nav a:hover {
  color: #8abaff;
  transform: scale(1.1);
}

.dropdown {
  position: relative;
  display: inline-block;

}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #111;
  padding: 10px 0;
  min-width: 160px;
  z-index: 1;
  border-radius: 6px;
}

.dropdown-content a {
  display: block;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
}

.dropdown-content a:hover {
  background-color: #222;
  color: #8abaff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

    main {
      text-align: center;
      padding: 40px 20px;
    }

    .main-title {
      margin-top: 100px;
      font-size: 70px;
      background: linear-gradient(90deg, #7a8dfd, #b68fff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: transform 0.3s;
    }

    .main-title:hover {
      transform: scale(1.05);
    }

    .sub-year {
      font-size: 36px;
      color: #fff;
      margin-top: 10px;
      transition: color 0.3s;
    }

    .sub-year:hover {
      color: #7a8dfd;
    }

    .tagline {
      color: #4db5ff;
      font-size: 20px;
      margin-top: 20px;
    }

    .date {
      color: #b68fff;
      font-size: 22px;
      margin-top: 15px;
    }

    .hosted {
      margin-top: 25px;
      font-size: 16px;
    }

    .hosted span {
      color: #b68fff;
    }

    .btn-container {
      margin-top: 40px;
    }

    .btn {
      background: linear-gradient(90deg, #ad8aff, #4db5ff);
      border: none;
      border-radius: 30px;
      padding: 15px 30px;
      font-size: 14px;
      color: white;
      margin: 10px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 10px #4db5ff;
    }

    .about-section {
      padding: 120px 20px;
      background-color: #0a0a0a;
      text-align: center;
    }

    .about-title {
      font-size: 80px;
      color: #4db5ff;
      transition: transform 0.3s;
    }

    .about-title:hover {
      transform: scale(1.05);
    }

    .about-subtitle {
	    color: #aaa;
      	font-size: 16px;
		margin-bottom: 20px;
    }

    .slider-container {
      position: relative;
      overflow: hidden;
      max-width: 1000px;
      margin: 80px auto 0;
      border-radius: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .slider-container:hover{
      transform: scale(1.03);
      box-shadow: 0 0 15px rgba(199, 125, 255, 0.5);
      border-radius: 16px;
    }
    

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .about-card {
      min-width: 100%;
      background: linear-gradient(to bottom right, #1a1a2e, #2d2d44);
      border-radius: 16px;
      padding: 40px 30px;
      color: #eee;
      transition: transform 0.3s, box-shadow 0.3s;
      
    }

    .about-card h2 {
      color: #c77dff;
      font-size: 28px;
    }

    .about-card h3 {
      color: #4db5ff;
      font-size: 16px;
      margin-top: 10px;
    }

    .about-card p {
      font-size: 14px;
      margin-top: 20px;
      line-height: 1.6;
      font-family: sans-serif;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #45275a;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      color: white;
      font-size: 20px;
      z-index: 10;
    }

    .prev {
      left: 10px;
    }

    .next {
      right: 10px;
    }

      .custom-hover-card {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.747);
  }

  .custom-hover-card:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/coding.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }
    .custom-hover-card-1 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-1:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/cyber.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }
      .custom-hover-card-2 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-2:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/web\ dev.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }

        .custom-hover-card-3 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-3:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/mono.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }

        .custom-hover-card-4 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-4:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/bin.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }

        .custom-hover-card-5 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-5:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/lost.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }

        .custom-hover-card-6 {
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(0, 0, 0, 0.623);
  }

  .custom-hover-card-6:hover {
    background-image: url('http://raw.githubusercontent.com/NightFuryyyyy/Interface2025-Assets/refs/heads/main/valo.gif'); /* Replace with your image path */
    background-blend-mode: overlay;
  }



  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-fade-in {
    animation: fade-in 1s ease forwards;
  }

  .animate-fade-in-up {
    animation: fade-in-up 1s ease forwards;
  }

  .delay-200 {
    animation-delay: 0.2s;
  }

  .delay-500 {
    animation-delay: 0.5s;
  }
.location-icon {
  background: url('location.svg') no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.mail-icon {
  background: url('mail.svg') no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.hamburger-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0px;
    height: 100vh;
    padding: 20px 20px 0px;
    transform: translateX(100%);
    background-color: #000000bb;
    transition: transform 0.3s;
}

.hamburger-menu > a {
    display: block;
    font-size: 28px;
	width: max-content;
    transition: color 0.3s, transform 0.3s;
}

.hamburger-menu > a:hover {
  color: #8abaff;
  transform: scale(1.1);
}

.hamburger-menu-toggle {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 40px;
    padding: 10px;
}

@media only screen and (max-width: 880px) {
    .nav-items {
        display: none;
    }
    .hamburger-menu {
        display: unset;
    }
    .hamburger-menu.show {
        transform: translateX(0px);
    }
    .hamburger-menu-toggle {
        display: unset;
    }
}

.about-carousel {
    height: fit-content;
	width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1a1a2e, #2d2d44);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-carousel:hover{
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.5);
}

.about-carousel-items {
    display: flex;
	width: fit-content;
    animation: about-carousel-animation 10s infinite;
}

.about-carousel-items:hover {
    animation-play-state: paused;
}

.about-carousel-item {
    height: fit-content;
	width: 90vw;
	max-width: 1000px;
    padding: 40px 30px;
}

.about-carousel-item > h2 {
    text-align: center;
	font-size: 28px;
    margin: 0px 0px 10px;
    color: #c77dff;
}

.about-carousel-item > h3 {
    text-align: center;
    margin: 0px 0px 24px;
    color: #4db5ff;
}

.about-carousel-item > p {
    text-align: center;
    margin-top: 0px;
    color: #ffffff;
	font-family: sans-serif;
}

.about-carousel-item > img {
    display: block;
    height: 250px;
    width: 100%;
	max-width: 500px;
    margin: 0px auto 20px;
    border-radius: 15px;
    object-fit: cover;
}

@keyframes about-carousel-animation {
    0% {
        transform: translateX(0%);
        animation-timing-function: ease-in;
    }
    32% {
        transform: translateX(0%);
    }
    33% {
        transform: translateX(-33.33%);
        animation-timing-function: ease-in;
    }
    65% {
        transform: translateX(-33.33%);
    }
    66% {
        transform: translateX(-66.66%);
        animation-timing-function: ease-in;
    }
    99% {
        transform: translateX(-66.66%);
    }
}

.core-committee-section {
	background: linear-gradient(#230b35, #581c87, #000000);
}

#core-committee, #web-devs {
	color: #38bdf8;
	font-size: 3rem;
	text-align: center;
	margin: 0 0 24px;
}

.profile-cards {
	display: flex;
	height: fit-content;
	width: 100%;
	justify-content: center;
	gap: 24px;
	margin: 0 0 40px;
	flex-wrap: wrap;
}

.profile-card {
	width: 256px;
	padding: 24px;
	background: linear-gradient(#1b1030, #0f1d2a);
	border-radius: 1rem;
	transition: transform 0.3s ease;
}

.profile-card:hover {
	transform: scale(1.05);
}

.profile-card > img {
	height: 104px;
	width: 104px;
	border-radius: 9999px;
	margin: 0 auto 24px;
	border: 4px solid #ab60e9;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile-card > img:hover {
	box-shadow:
		#00000000 0px 0px 0px 0px,
		#00000000 0px 0px 0px 0px,
		#c084fc80 0px 10px 15px -3px,
		#c084fc80 0px 4px 6px -4px;
	border-color: #d8b4fe;
}

.profile-card > p {
	text-align: center;
	width: 100%;
	text-wrap: wrap;
}

.profile-card > .profile-card-name {
	font-size: 20px;
	font-weight: 600;
	color: #d1a7ff;
	margin-bottom: 8px;
}

.profile-card > .profile-card-position {
	font-size: 16px;
	font-weight: 500;
	color: #38bdf8;
	margin-bottom: 4px;
}

.profile-card > .profile-card-class {
	font-size: 14px;
	margin-bottom: 4px;
}

.profile-card > i {
	font-size: 16px;
  margin: 4px;
  transition: transform 0.1s, box-shadow 0.3s;
}

.profile-card > i.fa-github {
  border-radius: 9999px;
}

.profile-card > i:hover {
  box-shadow: 0 0 5px 1px #c084fc;
  transform: scale(1.1);
}