@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("./hero-announcements.css");

* {
  font-family: "Manrope", "Manrope Fallback", "Helvetica";
  scroll-behavior: smooth;
}

body {
  background: #0b0b0b;
  overflow-y: scroll;
  scroll-behavior: smooth;
  /* -webkit-overflow-scrolling: touch; */
  cursor: none;
}

:root {
  --subtext-color: #9a9a9a;
  --subpara-color: #ededed;

  /* Brand Colors from Impact Section */
  --color-orange: #ff8c00;
  --color-blue: #00c2ff;
  --color-purple: #9b59b6;
  --color-green: #2ecc71;
  --color-yellow: #f1c40f;
  --color-pink: #e84393;
}

/* button, a {
cursor: url('./assets/cursor.png') 0 0, pointer;

} */



/* Custom cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;

  /* Center dot */
  /* background: rgb(0, 255, 255); */

  /* Glow */
  box-shadow:
    0 0 6px rgba(0, 255, 255, 0.9),
    0 0 16px rgba(0, 255, 255, 0.6),
    0 0 32px rgba(0, 255, 255, 0.35);

  filter: hue-rotate(0deg);
  animation: hueShift 4s linear infinite;
}


/* .cursor-particle {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;

  background: rgba(0,255,255,0.4);
  box-shadow:
    0 0 12px rgba(0,255,255,0.4),
    0 0 24px rgba(0,255,255,0.4);

  animation: fadeOut 0.6s linear forwards;
  filter: hue-rotate(var(--hue));
} */





@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

/* Smooth color cycling */
@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}


.h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

.leafIcon {
  display: inline-block;
  /* safer than block for icons */
  width: 44px;
  height: 80px;
  background-image: url("./assets/leaf.svg");
  /* MUST include extension */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.leafIcon-right {
  /* transform: rotate(-90deg); */
  transform: scaleX(-1);
}

.bow {
  background: url("./assets/bow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 32px;
  height: 40px;
  display: inline-block;
}

.bow-right {
  transform: scaleX(-1);
}

.label {
  display: inline-block;
  color: #ff8c00;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.subheading h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
  text-align: center;
  color: white;
}

.subtext {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
}

.subheading2 {
  font-size: 24px;
  font-weight: 550;
  color: var(--subpara-color);
}

@media (max-width:480px) {
  .subheading h1 {
    font-size: 24px;
  }
}



/* Header section */

/* ================= HEADER ================= */

.nexaa-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  /* background: rgba(11, 11, 11, 0.6); */
  /* border-bottom: 1px solid rgba(255, 140, 0, 0.25); */
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= BRAND ================= */
.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  /* padding: 12px; */
  border-radius: 50%;
}

.brand-logo {
  font-size: 26px;
  font-weight: 800;
  color: #ff8c00;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  color: #bdbdbd;
  letter-spacing: 0.5px;
}

/* ================= NAV LINKS ================= */

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff8c00;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ff8c00;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ================= CTA ================= */

.nav-cta .join-btn,
.mobile-cta .joinBtn {
  background: #ff8c00;
  color: #0b0b0b;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta .join-btn:hover,
.mobile-cta .joinBtn:hover {
  background: #ffa733;
  transform: translateY(-1px);
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #ff8c00;
  transition: all 0.3s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 972px) {
  .nav-container {
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 2%;
    /* width: 100%; */
    /* background: rgba(11, 11, 11, 0.95); */
    backdrop-filter: blur(25px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    /* border-bottom: 1px solid rgba(255, 140, 0, 0.25); */
  }

  .nav-links li {
    padding: 16px 24px;
    border-top: 1px solid #151515;
  }

  .nav-links.active {
    max-height: 500px;
    background: rgba(11, 11, 11, 0.6);
    padding: 20px;
    /* width: max-content; */
  }

  .mobile-cta {
    padding: 18px 24px;
  }
}

/* ================= HAMBURGER ANIMATION ================= */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ************* Hero **************** */

.hero {
  position: relative;
  /* min-height: 100vh; */
  background: #0b0b0b;
  display: flex;
  height: 100vh;
  width: 100%;
  /* align-items: center; */
  justify-content: center;
  text-align: center;
  padding: 80px 0px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 85vh;
    /* Reduced to remove dead space below announcements */
    padding-bottom: 40px;
  }
}

/* #hero{
  width: 100%;
  height: 100vh;
} */

/* .meteor{
  position: absolute;
  top: 0;
  color: #ff8c00;
  font-size: 24px;
  animation: meteorFall 5s linear infinite;
}
.meteor::before{
  content: '\f753';
  font-family: fontAwesome;
  text-shadow:
    0 4px 6px rgba(255, 140, 0, 0.6),
    0 10px 12px rgba(255, 140, 0, 0.4),
    0 18px 24px rgba(255, 140, 0, 0.25),
    0 28px 40px rgba(255, 140, 0, 0.15);
}

@keyframes meteorFall {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translate(110vw, 110vh);
    opacity: 0;
  }
} */

/* Top badge */
.hero-badge {
  position: absolute;
  top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #111;
  border: 1px solid #222;
  font-size: 14px;
  color: #ccc;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulsering 1.5s infinite;
}

@keyframes pulsering {
  0% {
    box-shadow: 0 0 #22c55e66;
  }

  100% {
    box-shadow: 0 0 0 15px #22c55e00;
  }
}

/* Main container */
.hero-container {
  max-width: 860px;
  z-index: 2;
}

/* Heading */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #ff8c00;
  letter-spacing: 1px;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--subpara-color);
  text-transform: none;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 28px;
  font-size: 22px;
  color: var(--subpara-color);
  font-weight: 500;
}

/* Description */
/* .hero-description {
  margin: 26px auto 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--subtext-color);
} */

/* Actions */
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #ff8c00;
  color: #0b0b0b;
}

.btn.primary:hover {
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
}

.btn.ghost {
  border: 1px solid #ff8c00;
  color: #ff8c00;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 140, 0, 0.1);
}

/* Floating Quotes */
.hero-quotes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quote-card {
  position: absolute;
  max-width: 200px;
  padding: 22px 24px;
  background: #111111;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(255, 140, 0, 0.25);
  font-size: 14px;
  color: white;
}

.quote-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 50px rgba(255, 140, 0, 0.4);
  transform: rotate(-22deg) scale(1.03);
}

.quote-card span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 13px;
  color: #ff8c00;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 42px;
  color: #ff8c00;
  opacity: 0.35;
}

.quote-card.left {
  top: 35%;
  left: 2%;
  transform-origin: top left;
  transform: rotate(-22deg);
}

.quote-card.right {
  top: 35%;
  right: 4%;
  transform: rotate(22deg);
}

/* Floating animation */
/* @keyframes float {
  0% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
  100% { transform: translateY(0) rotate(var(--r, 0deg)); }
} */

/* Mobile cleanup */
@media (max-width: 1280px) {
  .quote-card {
    display: none;
  }

  .hero-title {
    font-size: 46px;
  }
}

/* Mobile Background Overlay for Accessibility */
@media (max-width: 768px) {
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* Dark overlay */
    z-index: 1;
    /* Sit above background */
  }

  .hero-container {
    position: relative;
    z-index: 2;
    /* Sit above overlay */
  }
}

@media (max-width: 520px) {
  .hero-title span {
    font-size: 22px;
  }
}

/* ************** About ********************* */

.about-nexaa {
  background-color: #0b0b0b;
  padding: 100px 24px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
}

/* .about-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
} */

/* .divider {
  width: 80px;
  height: 3px;
  background-color: #ff8c00;
  margin-top: 12px;
} */

.about-boxes {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-box {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
  transform: translateY(-6px);
}

/* ICON */
.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: #fff;
}

/* TEXT */
.about-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ededed;
  font-weight: 600;
}

.about-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--subtext-color);
}

/* COLOR VARIANTS */
.box-blue {
  box-shadow: 0 0 40px rgba(0, 140, 255, 0.15);
  background: linear-gradient(145deg, rgba(0, 194, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(0, 194, 255, 0.2);
}

.box-blue .about-icon {
  background: linear-gradient(135deg, #1da1ff, #0066ff);
}

.box-purple {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
  background: linear-gradient(145deg, rgba(155, 89, 182, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(155, 89, 182, 0.2);
}

.box-purple .about-icon {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.box-orange {
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.18);
  background: linear-gradient(145deg, rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 140, 0, 0.2);
}

.box-orange .about-icon {
  background: linear-gradient(135deg, #ff7a18, #ff4500);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-boxes {
    grid-template-columns: 1fr;
  }
}

/* ********* Vision ************* */
/* ===== VISION SECTION ===== */

.nexaa-vision {
  background: #0b0b0b;
  color: #ffffff;
  padding: 80px 40px;
  position: relative;
  /* overflow: hidden; */
  min-height: 60vh;
}

.vision-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
  text-align: center;
}

/* ===== CENTER CONTENT ===== */

.vision-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin: 0 auto;
}

/* .vision-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
} */

/* .vision-content p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
} */

/* ===== FLOATING CARDS ===== */

.vision-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px;
  /* box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 25px rgba(255,140,0,0.25); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vision-card:hover {
  transform: translateY(-8px) scale(1.04);
}

/* Vision Card Local Colors */
.vision-card.left.one:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 194, 255, 0.45);
}

.vision-card.left.two:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(155, 89, 182, 0.45);
}

.vision-card.right.one:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 204, 113, 0.45);
}

.vision-card.right.two:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 67, 147, 0.45);
}

.vision-card.left.one .vision-img-span {
  color: var(--color-blue);
}

.vision-card.left.two .vision-img-span {
  color: var(--color-purple);
}

.vision-card.right.one .vision-img-span {
  color: var(--color-green);
}

.vision-card.right.two .vision-img-span {
  color: var(--color-pink);
}

/* ===== CARD IMAGES ===== */

.vision-card .vision-img {
  width: 250px;
  border-radius: 12px;
  display: block;
}

.vision-img-span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  /* color: #ff8c00; */
  text-align: center;
}

/* ===== CARD POSITIONS ===== */

.vision-card.left.one {
  top: 5%;
  left: 3%;
  transform: rotate(6deg);
}

.vision-card.left.two {
  top: 95%;
  left: 7%;
  transform: rotate(-6deg);
}

.vision-card.right.one {
  top: 5%;
  right: 3%;
  transform: rotate(-6deg);
}

.vision-card.right.two {
  top: 95%;
  right: 7%;
  transform: rotate(6deg);
}

@media (max-width: 1200px) {
  .vision-card {
    display: none;
  }
}

@media (max-width:480px) {
  .nexaa-vision {
    padding: 80px 20px;
    min-height: 40vh;
  }
}

/* ********** Missions ********** */
.nexaa-mission {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 40px;
}

.mission-header {
  text-align: center;
}


.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}

/* IMAGE */
.mission-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* fade state */
.mission-image img.fade {
  opacity: 0;
}

/* POINTS */
.mission-points {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.mission-points button {
  background: transparent;
  /* border: 1px solid rgba(255,140,0,0.3); */
  padding: 16px 20px;
  border-radius: 12px;
  color: #ededed;
  background: #111;
  border: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mission-points p {
  font-size: 14px;
  color: var(--subtext-color);
}

.mission-points button {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* 1. Impactful Events - Orange */
.mission-points button:nth-child(1).active,
.mission-points button:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 140, 0, 0.02) 100%);
  border-color: var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
}

/* 2. Hands-on Learning - Blue */
.mission-points button:nth-child(2).active,
.mission-points button:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.2) 0%, rgba(0, 194, 255, 0.02) 100%);
  border-color: var(--color-blue);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.1);
}

/* 3. Future Tech - Purple */
.mission-points button:nth-child(3).active,
.mission-points button:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(155, 89, 182, 0.02) 100%);
  border-color: var(--color-purple);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.1);
}

/* 4. Leadership - Green */
.mission-points button:nth-child(4).active,
.mission-points button:nth-child(4):hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.02) 100%);
  border-color: var(--color-green);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.1);
}


@media (max-width: 972px) {
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .mission-image {
    order: -1;
  }
}

/* ********** clubs Nexaa *************** */


.clubs-nexaa {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 48px;
}

.clubs-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.club-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* background: linear-gradient(to bottom right, rgba(255,255,255,0.03), rgba(0,0,0,0.5)); */
}

.club-card:hover {
  transform: translateY(-6px);
}

/* Multi-colored Clubs Backgrounds */
.club-card:nth-child(4n+1) {
  background: linear-gradient(160deg, rgba(255, 140, 0, 0.08) 0%, rgba(17, 17, 17, 1) 50%);
}

.club-card:nth-child(4n+2) {
  background: linear-gradient(160deg, rgba(0, 194, 255, 0.08) 0%, rgba(17, 17, 17, 1) 50%);
}

.club-card:nth-child(4n+3) {
  background: linear-gradient(160deg, rgba(232, 67, 147, 0.08) 0%, rgba(17, 17, 17, 1) 50%);
}

.club-card:nth-child(4n+4) {
  background: linear-gradient(160deg, rgba(46, 204, 113, 0.08) 0%, rgba(17, 17, 17, 1) 50%);
}

/* Multi-colored Clubs Hover */
.club-card:nth-child(4n+1):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 140, 0, 0.25);
  border-color: rgba(255, 140, 0, 0.4);
}

.club-card:nth-child(4n+2):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 194, 255, 0.25);
  border-color: rgba(0, 194, 255, 0.4);
}

.club-card:nth-child(4n+3):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(232, 67, 147, 0.25);
  border-color: rgba(232, 67, 147, 0.4);
}

.club-card:nth-child(4n+4):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(46, 204, 113, 0.25);
  border-color: rgba(46, 204, 113, 0.4);
}

.club-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Tag colors */
.club-card:nth-child(4n+1) .club-tag {
  color: var(--color-orange);
  background: rgba(255, 140, 0, 0.12);
}

.club-card:nth-child(4n+2) .club-tag {
  color: var(--color-blue);
  background: rgba(0, 194, 255, 0.12);
}

.club-card:nth-child(4n+3) .club-tag {
  color: var(--color-pink);
  background: rgba(232, 67, 147, 0.12);
}

.club-card:nth-child(4n+4) .club-tag {
  color: var(--color-green);
  background: rgba(46, 204, 113, 0.12);
}

/* Bullet points colors */
.club-card:nth-child(4n+1) .club-points li::before {
  color: var(--color-orange);
}

.club-card:nth-child(4n+2) .club-points li::before {
  color: var(--color-blue);
}

.club-card:nth-child(4n+3) .club-points li::before {
  color: var(--color-pink);
}

.club-card:nth-child(4n+4) .club-points li::before {
  color: var(--color-green);
}

.club-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.club-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--subtext-color);
  margin-bottom: 20px;
}

.club-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.club-points li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.club-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  /* color: #ff8c00; */
}

/* Mobile */
@media (max-width: 768px) {
  .clubs-grid {
    grid-template-columns: 1fr;
  }
}








/* ********** Events Nexaa ************ */

.events-nexaa {
  background-color: #0b0b0b;
  padding-top: 48px;
  /* padding: 100px 24px; */
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
}

.events-header {
  text-align: center;
}

/* .events-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
} */

/* .events-underline {
  width: 120px;
  height: 3px;
  background-color: #ff8c00;
  margin-top: 10px;
} */

/* .events-subtext {
  margin-top: 16px;
  max-width: 720px;
  color: #9a9a9a;
  font-size: 15px;
} */

.event-category {
  margin-top: 60px;
}

.event-category h3 {
  font-size: 24px;
  font-weight: 550;
  color: #ededed;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.event-card {
  position: relative;
  background-color: #111111;
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

/* Event Category Theming */

/* Flagship - KEEP ORANGE */
.event-category:nth-of-type(1) .event-card {
  background: linear-gradient(160deg, rgba(255, 140, 0, 0.1) 0%, rgba(17, 17, 17, 1) 60%);
}

.event-category:nth-of-type(1) .event-card:hover {
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
  border-color: var(--color-orange);
}

.event-category:nth-of-type(1) .event-card .event-tag {
  color: var(--color-orange);
  background: rgba(255, 140, 0, 0.1);
}

/* Competitions - BLUE */
.event-category:nth-of-type(2) .event-card {
  background: linear-gradient(160deg, rgba(0, 194, 255, 0.1) 0%, rgba(17, 17, 17, 1) 60%);
}

.event-category:nth-of-type(2) .event-card:hover {
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
  border-color: var(--color-blue);
}

.event-category:nth-of-type(2) .event-card .event-tag {
  color: var(--color-blue);
  background: rgba(0, 194, 255, 0.1);
}

/* Hackathons - GREEN */
.event-category:nth-of-type(3) .event-card {
  background: linear-gradient(160deg, rgba(46, 204, 113, 0.1) 0%, rgba(17, 17, 17, 1) 60%);
}

.event-category:nth-of-type(3) .event-card:hover {
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
  border-color: var(--color-green);
}

.event-category:nth-of-type(3) .event-card .event-tag {
  color: var(--color-green);
  background: rgba(46, 204, 113, 0.1);
}

/* Workshops - PINK/PURPLE */
.event-category:nth-of-type(4) .event-card:nth-child(odd) {
  background: linear-gradient(160deg, rgba(232, 67, 147, 0.1) 0%, rgba(17, 17, 17, 1) 60%);
}

.event-category:nth-of-type(4) .event-card:nth-child(odd):hover {
  box-shadow: 0 0 20px rgba(232, 67, 147, 0.3);
  /* Pink */
  border-color: var(--color-pink);
}

.event-category:nth-of-type(4) .event-card:nth-child(odd) .event-tag {
  color: var(--color-pink);
  background: rgba(232, 67, 147, 0.1);
}

.event-category:nth-of-type(4) .event-card:nth-child(even) {
  background: linear-gradient(160deg, rgba(155, 89, 182, 0.1) 0%, rgba(17, 17, 17, 1) 60%);
}

.event-category:nth-of-type(4) .event-card:nth-child(even):hover {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
  /* Purple */
  border-color: var(--color-purple);
}

.event-category:nth-of-type(4) .event-card:nth-child(even) .event-tag {
  color: var(--color-purple);
  background: rgba(155, 89, 182, 0.1);
}

.event-card.flagship {
  /* border: 2px solid #ff8c00; */
  background: #452f13;
  position: relative;
}

.event-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #0b0b0b;
  background-color: #ff8c00;
  border-radius: 30px;
}

.event-grid {
  position: relative;
}

.event-grid video {
  position: fixed;
  /* critical for cursor follow */
  width: 260px;
  border-radius: 22px;
  pointer-events: none;
  /* cursor won’t flicker */
  display: none;
  z-index: 99;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: rotate(-90deg);
}



.event-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ededed;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #9a9a9a;
  margin-bottom: 18px;
}

.event-meta {
  font-size: 13px;
  font-weight: 500;
  color: #ffa500;
}

/* ******* people Nexaa *********** */
.people-nexaa {
  background-color: #0b0b0b;
  padding: 100px 24px;
}

.people-container {
  max-width: 1200px;
  margin: 0 auto;
}

.people-header {
  text-align: center;
}

.people-name-grp {
  display: flex;
  color: white;
  justify-content: space-between;
  align-items: center;
}

.people-name-grp a {
  font-size: 18px;
  color: #0A66C2;
  width: 24px;
}

/* .people-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c00;
  text-transform: uppercase;
} */

/* .people-underline {
  width: 120px;
  height: 3px;
  background-color: #ff8c00;
  margin-top: 10px;
} */

/* .people-header p {
  margin-top: 16px;
  max-width: 720px;
  color: #9a9a9a;
} */

/* .people-section {
  margin-top: 70px;
} */

/* .people-section h3 {
  font-size: 26px;
  font-weight: 600;
  color: #ededed;
  margin-bottom: 30px;
} */

/* .people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
} */

/* .profile-card {
  background-color: #111111;
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
} */

/* .profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.25);
} */

/* .profile-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ededed;
} */

.designation {
  display: block;
  font-size: 14px;
  color: #ffa500;
  margin-top: 6px;
}

.role {
  display: block;
  font-size: 13px;
  color: #9a9a9a;
  margin-top: 4px;
}

/* .coordinator-group {
  margin-bottom: 24px;
} */
/* 
.coordinator-group h4 {
  font-size: 18px;
  color: #ff8c00;
  margin-bottom: 6px;
} */

/* .coordinator-group p {
  font-size: 14px;
  color: #ededed;
} */

/* .volunteer-text {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.6;
  color: #9a9a9a;
} */

.people-section {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 20px;
}

.people-section h3 {
  font-size: 24px;
  color: #ededed;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.people-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  perspective: 1200px;
  /* Needed for 3D effect */
}


.profile-card {
  position: relative;
  /* background: #111; */
  border-radius: 15px;
  /* overflow: hidden; */
  padding: 16px;
  min-height: 280px;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.profile-card:hover {
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
}

.profile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin: auto;
  /* margin-bottom: 8px; */
}

.card-layer {
  /* position: absolute; */
  width: 100%;
  /* height: 100%; */
  /* left: 0;
  top: 0; */
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

/* .card-layer.photo img {
  width: 100%;
  height: 260px;
  height: auto;
  display: block;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
} */

.card-layer.content {
  /* position: absolute; */
  /* bottom: 20px; */
  /* left: 20px; */
  color: #fff;
  padding: 10px;
}

.card-layer.content h4 {
  font-size: 17px;
  color: #ff8c00;
  margin-bottom: 4px;
}

.card-layer.content .designation {
  font-size: 13px;
  display: block;
  color: #ccc;
}

.card-layer.content .role {
  font-size: 13px;
  display: block;
  color: #888;
}

/* *********** Impact NExaa ************* */

.impact-nexaa {
  background-color: #0b0b0b;
  padding: 100px 24px;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-header {
  text-align: center;
}

/* .impact-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c00;
  text-transform: uppercase;
  letter-spacing: 1.2px;
} */

/* .impact-underline {
  width: 120px;
  height: 3px;
  background-color: #ff8c00;
  margin-top: 10px;
}

.impact-header p {
  margin-top: 16px;
  max-width: 720px;
  color: #9a9a9a;
  font-size: 15px;
} */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  perspective: 1000px;
  /* Needed for 3D effect */
  padding: 40px 0;
}

.impact-card {
  background: #111;
  border-radius: 15px;
  padding: 30px 20px;
  /* text-align: center; */
  /* color: #fff; */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: baseline;
}



.impact-card:hover {
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
}

.impact-icon {
  font-size: 40px;
  color: #ff8c00;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}

/* .impact-card h3{
  color: white;
} */
.impact-card span {
  color: #ff8c00;
}

.impact-card h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.impact-card p {
  color: #ccc;
  font-size: 14px;
}

.impact-icon {
  font-size: 24px;
  border-radius: 18px;
  padding: 12px;
  font-weight: 800;
}




/* 1 – Events */
.impact-card:nth-child(1) .impact-icon {
  background: #ff8c00;
  color: #000;
}

.impact-card:nth-child(1) {
  box-shadow: 0 0 0 rgba(255, 140, 0, 0);
}

.impact-card:nth-child(1):hover {
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.25);
}

/* 2 – Participants */
.impact-card:nth-child(2) .impact-icon {
  background: #00c2ff;
}

.impact-card:nth-child(2):hover {
  box-shadow: 0 20px 60px rgba(0, 194, 255, 0.25);
}

/* 3 – College Level */
.impact-card:nth-child(3) .impact-icon {
  background: #9b59b6;
}

.impact-card:nth-child(3):hover {
  box-shadow: 0 20px 60px rgba(155, 89, 182, 0.25);
}

/* 4 – National */
.impact-card:nth-child(4) .impact-icon {
  background: #2ecc71;
}

.impact-card:nth-child(4):hover {
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.25);
}

/* 5 – Achievements */
.impact-card:nth-child(5) .impact-icon {
  background: #f1c40f;
  color: #000;
}

.impact-card:nth-child(5):hover {
  box-shadow: 0 20px 60px rgba(241, 196, 15, 0.25);
}

/* 6 – Industry */
.impact-card:nth-child(6) .impact-icon {
  background: #e84393;
}

.impact-card:nth-child(6):hover {
  box-shadow: 0 20px 60px rgba(232, 67, 147, 0.25);
}


/* ********* gallery Nexaa******* */

.gallery-nexaa {
  background-color: #0b0b0b;
  /* padding: 100px 24px; */
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  min-height: 80vh;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  gap: 12px;
  padding: 40px 0px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-item {
  background-color: #111111;
  position: relative;
  overflow: hidden;
  border-radius: 16px;

}

.gallery-item.item1 {
  grid-column: 1/3;
  grid-row: 1/3;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.event-name {
  font-size: 18px;
  font-weight: 600;
  color: #ff8c00;
  margin-bottom: 6px;
  text-align: center;
}

.event-year {
  font-size: 14px;
  color: #ededed;
  letter-spacing: 0.5px;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    /* grid-template-rows: repeat(6 , 1fr); */
  }

  .gallery-item.item1 {
    grid-row: auto;
    grid-column: auto;
  }
}

/* ********** Announcements********* */

.nexaa-announcements {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
}

.nexaa-announcements .container {
  max-width: 1100px;
  margin: auto;
}

/* .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
} */

.section-title .underline {
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ff7a00;
  margin-top: 10px;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #222;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background-color: #ff7a00;
  border-radius: 50%;
  position: absolute;
  left: -38px;
  top: 10px;
}

.timeline-item.important .timeline-dot {
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.2);
}

.timeline-content {
  background-color: #111;
  padding: 25px;
  border-radius: 8px;
  width: 100%;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.timeline-content .date {
  font-size: 13px;
  color: #888;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #ff7a00;
  border: 1px solid #ff7a00;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Know More Button */
.know-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ff7a00;
  border: 1px solid rgba(255, 122, 0, 0.5);
  border-radius: 24px;
  background: rgba(255, 122, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.know-more-btn:hover {
  background: rgba(255, 122, 0, 0.18);
  border-color: #ff7a00;
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* ********** contact ************ */
.nexaa-contact {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.nexaa-contact .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* .section-title .underline {
  display: block;
  width: 70px;
  height: 4px;
  background: #ff7a00;
  margin-top: 10px;
} */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a,
.footer-socials a {
  width: 42px;
  height: 42px;
  text-decoration: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a i,
.footer-socials a i {
  font-size: 20px;
}



.contact-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 90%;
  background: transparent;
  border: 1px solid #333;
  padding: 12px;
  color: #fff;
  border-radius: 6px;
  outline: none;
}

/* .form-group select{
  background: none;
    border: 2px solid #ff7a00;
    border-radius: 12px;
} */

.form-group label {
  /* position: absolute; */
  top: 50%;
  left: 12px;
  color: white;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease;
  background: #111;
  padding: 0 6px;
}

.form-group textarea+label {
  top: 16px;
  transform: none;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 12px;
  color: #ff7a00;
}

.error {
  display: none;
  font-size: 12px;
  color: #ff4d4d;
  margin-top: 6px;
}

.contact-form button {
  background: #ff7a00;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: transform 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ***** Footer******* */
.nexaa-footer {
  background: #0b0b0b;
  color: #e0e0e0;
  padding: 60px 40px 20px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.nexaa-footer h2,
.nexaa-footer h3 {
  color: #ff8c00;
}

.footer-brand h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.footer-brand h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #bdbdbd;
}

.footer-links ul,
.footer-events ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-events li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ff8c00;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 15px;
}

.fa-instagram {
  padding: 8px;
  border-radius: 50%;
  background-color: #DD2A7B;
}

.fa-linkedin-in {
  padding: 8px;
  border-radius: 50%;
  background-color: #0077B6;
}

.footer-bottom {
  border-top: 1px solid #ff8c00;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9e9e9e;
}

.footer-bottom span {
  display: block;
  margin-top: 5px;
}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  /* left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); */
  /* width: 100%; */
  height: 100%;
  overflow-y: auto;
  /* margin: 0 auto; */
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
}

/* Modal content box */
.modal-content {
  background-color: #111;
  margin: auto;
  color: #ff7a00;
  padding: 12px 40px;
  border-radius: 12px;
  max-width: 400px;
  max-height: calc(100vh - 10vh);
  border: 1px solid rgba(255, 140, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Close button */
.modal .close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #ff8c00;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal .close:hover {
  color: #ffa500;
}

/* Button - Gallery Load More (Global class instead of inline) */
.btn-gallery {
  background: var(--color-pink) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

.btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.6);
  background: #ff5eb0 !important;
}

/* Modal Submit Button - Gradient */
.modal .submit-btn {
  background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
  color: white;
  border-radius: 30px;
  border: 0;
  outline: 0;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.modal .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

/* Contact Form Submit Button - Blue/Purple Tint */
.contact-form button[type="submit"] {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Join NEXAA Option Cards */
.join-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.join-option-card:hover {
  background: rgba(255, 140, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
  transform: translateY(-2px);
}

.join-option-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 12px;
}

.join-option-info {
  flex: 1;
}

.join-option-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 4px;
}

.join-option-info p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.4;
  margin: 0;
}

.join-option-arrow {
  font-size: 22px;
  color: #ff8c00;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.join-option-card:hover .join-option-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width:520px) {
  .modal {
    width: 90%;
  }
}

/* ********** TEAM GRID LAYOUT ************ */

.radial-team-header {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.3);
}

.team-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 140, 0, 0.2);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-img-wrapper {
  border-color: #ff8c00;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.4;
}

.team-linkedin {
  color: #0077b5;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.team-linkedin:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }

  .team-card {
    padding: 16px;
  }

  .team-img-wrapper {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: 16px;
  }
}