<style>
    :root {
      --bg: #020617;
      --card: rgba(15, 23, 42, 0.9);
      --accent: #38bdf8;
      --accent2: #a855f7;
      --text: #e5e7eb;
      --muted: #94a3b8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Segoe UI", system-ui, sans-serif;
      background: radial-gradient(circle at top, rgba(56,189,248,0.15), transparent 40%), var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      padding: 4rem 1rem 3rem;
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    header p {
      margin-top: 0.8rem;
      color: var(--muted);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2,6,23,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  background: linear-gradient(90deg, #22d3ee, #38bdf8, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= ROOT (AURA COLORS) ================= */
:root {
  --aura-gradient: linear-gradient(90deg, #38BDF8, #6366F1, #A855F7);
  --nav-text: #e5e7eb;
  --nav-active: #38BDF8;
  --nav-hover: #60a5fa;
  --nav-bg-mobile: rgba(2, 6, 23, 0.97);
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
}

.nav-links a {
  position: relative;
  margin-left: 2rem;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* hover */
.nav-links a:hover {
  color: var(--nav-hover);
}

/* ================= ACTIVE LINK ================= */
.nav-links a.active {
  color: var(--nav-active);
  font-weight: 600;
}

/* gradient underline only */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: var(--aura-gradient);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

/* ================= HAMBURGER ================= */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: #e5e7eb;
  margin: 4px 0;
  border-radius: 4px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--nav-bg-mobile);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

  /* centered underline on mobile */
  .nav-links a.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* =================  ================= */
.job-fair {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.job-title {
  font-size: 3rem;
  margin: 40px 0 10px;
  background: linear-gradient(315deg, #ff4ecd, #7f5cff, #4cc9f0);
  -webkit-background-clip: text;
  color: transparent;
}

.job-tagline {
  font-size: 1.2rem;
  margin: 10px 0 25px;
  opacity: 0.9;
}

.job-desc {
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
  text-align: justify;
}

.job-details-box {
  display: flex;
  flex-direction: column;
  gap: 14px;

  max-width: 450px;      /* controlled width */
  width: 90%;
  margin: 35px auto;     /* centered */

  padding: 18px 22px;
  border-radius: 18px;

  background: linear-gradient(135deg, #020617, #0f172a);
  border: 1.5px solid rgba(255, 255, 255, 0.12);

  box-shadow: 0 0 25px rgba(127, 92, 255, 0.15);
}



.job-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e5e7eb;
  text-align: left;     /* ensures text stays left */
}

.job-detail i {
  font-size: 1.1rem;
  color: #38bdf8; /* Aura blue */
  min-width: 22px;
}


.logo-hint {
  margin-top: 6px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.75;
  text-align: center;
  font-style: italic;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px,250px));
  gap: 25px;
  margin: 40px 0;
  justify-content: center;
}

.logo-grid img {
  max-width: 100%;
  filter: grayscale(0);
  cursor: pointer;
  transition: 0.3s;
}

.logo-grid img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}
.register-note {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff4ecd, #7f5cff, #4cc9f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}

.register-btn {
  display: inline-block;
  margin: 30px 0;
  padding: 14px 40px;
  border-radius: 30px;
  background: linear-gradient(110deg, #ff4ecd, #7f5cff);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.register-btn:hover {
  scale: 1.05;
  background: linear-gradient(270deg, #ff4ecd, #7f5cff);
}

.poster-slider {
  overflow: hidden;
  margin-top: 30px;
}

.poster-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.poster-track img {
  width: 280px;
  margin: 0 15px;
  border-radius: 15px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===========------- Popup -------============*/
.company-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.company-modal-content {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 30px 28px;
  border-radius: 20px;
  max-width: 500px;
  width: 92%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.35);
  animation: pop 0.25s ease;
  position: relative;
}

.company-modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #ff4ecd, #7f5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-industry {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 18px;
}

.company-details {
  text-align: left;
  line-height: 1.6;
  font-size: 0.95rem;
}

.company-details strong {
  color: #a78bfa;
}

.company-details ul {
  margin: 8px 0 14px;
  padding-left: 18px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
}

.close-modal:hover {
  opacity: 1;
}

@keyframes pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}




  





/* ================= FOOTER ================= */
/* Divider before footer */

.footer-divider {
  height: 1px;
  width: 85%;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #38bdf8, #8b5cf6, #ec4899, transparent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Footer */
.footer {
  padding: 4rem 6% 3rem;
  display: grid;

  /* 👇 force left | center | right */
  grid-template-columns: 1fr auto 1fr;

  gap: 2.5rem;
  align-items: start;

  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(8px);
}

.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 800;

   background: linear-gradient(90deg, #22d3ee 0%, #38bdf8 25%, #8b5cf6 50%, #ec4899 95% );
  background-size: 75% 100%; 
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px){
  .footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 500;

   background: linear-gradient(90deg, #22d3ee 0%, #38bdf8 25%, #8b5cf6 50%, #ec4899 100%);
    background-size: 80% 100%; 
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
}
.footer-brand {
  text-align: left;
  justify-self: start;
}

.footer-links {
  text-align: center;
  justify-self: center;
}

.footer-contact {
  text-align: left;
  justify-self: end;
}


.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.footer p,
.footer a {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.6rem;
  display: block;
}

.footer a:hover {
  color: #38bdf8;
}

/* Footer icons */
.footer i {
  margin-right: 8px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile center alignment */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.follow-text {
  font-size: 0.9rem;
  color:  #6b7280; /* gray */
}

.footer-social a {
  font-size: 1.2rem;
  color: #e1306c;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}
.footer-social i {
  font-size: 2rem;   /* force size change */
}

.footer-social a i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

  </style>
</head>
