/* ========================================
   COLLABORATE PAGE - KALKINETRA BLUE THEME
   ======================================== */

:root {
  /* Blue Palette */
  --color-primary: #0066ff;
  --color-secondary: #3388ff;
  --color-accent: #1a75ff;
  --color-dark: #000000;
  
  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.5);
  
  /* Blue Glow Effects */
  --glow-blue: rgba(0, 102, 255, 0.5);
  --glow-blue-soft: rgba(0, 102, 255, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: #000;
}

.highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ========================================
   DARKVEIL FIXED BACKGROUND
   ======================================== */
#darkveil-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#darkveil-background canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
   TRANSPARENT SECTIONS BASE
   ======================================== */
section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* ========================================
   HERO SECTION
   ======================================== */
.join-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: visible;
}

.glow-hero-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  /* background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 60%); */
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.6;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.glow-hero-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  /* background: radial-gradient(circle, rgba(51, 136, 255, 0.25) 0%, transparent 60%); */
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  animation: float 10s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(30px, 40px) scale(1.05);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   ETHOS SECTION
   ======================================== */
.ethos-section {
  padding: 80px 0;
}

.content-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.section-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  border: 1px solid rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.section-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
  padding: 80px 0;
}

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.feature-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   OPPORTUNITIES SECTION
   ======================================== */
.opportunities-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.glow-opportunities {
  position: absolute;
  width: 500px;
  height: 500px;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.7;
}

.role-category-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  height: 100%;
}

.role-category-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.2);
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.6);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-list li {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.role-list li:last-child {
  border-bottom: none;
}

.role-list li:hover {
  color: var(--color-text-primary);
  padding-left: 0.5rem;
}

.role-list li i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* ========================================
   COLLABORATION SECTION
   ======================================== */
.collaboration-section {
  padding: 80px 0;
}

.collab-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
}

.collab-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
}

.collab-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-secondary);
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease;
}

.collab-card:hover .collab-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.35);
}

.collab-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* ========================================
   CULTURE SECTION
   ======================================== */
.culture-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.glow-culture {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  /* background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%); */
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.7;
}

.culture-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.quote-icon {
  font-size: 4rem;
  color: rgba(0, 102, 255, 0.3);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.culture-quote {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
  padding: 80px 0 100px;
}

.form-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.form-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.form-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.glass-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(0, 102, 255, 0.2) !important;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  color: var(--color-text-primary) !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1) !important;
  outline: none;
}

.glass-input::placeholder {
  color: var(--color-text-muted);
}

.form-select.glass-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230066ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-cta {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 102, 255, 0.4);
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  color: var(--color-text-primary);
  background: rgba(0, 102, 255, 0.3);
}

.btn-outline-cta {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-secondary);
  border: 2px solid rgba(0, 102, 255, 0.3);
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
   display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-cta:hover {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.btn-submit {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 102, 255, 0.4);
  padding: 1rem 3rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  background: rgba(0, 102, 255, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  opacity: 1;
}

.animate-on-scroll[data-animation="fade-up"] {
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll[data-animation="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-animation="slide-left"] {
  transform: translateX(-80px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll[data-animation="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll[data-animation="slide-right"] {
  transform: translateX(80px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll[data-animation="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
  .join-hero {
    min-height: 70vh;
    padding-top: 120px;
  }

  .content-card,
  .form-card {
    padding: 2rem;
  }

  .role-category-card {
    margin-bottom: 1.5rem;
  }

  .feature-card,
  .collab-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .join-hero {
    min-height: 60vh;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .feature-card,
  .collab-card {
    padding: 1.8rem;
  }

  .feature-icon,
  .collab-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .culture-card {
    padding: 2.5rem 2rem;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .culture-quote {
    font-size: 1.2rem;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;
    justify-content: center;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
::selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

::-moz-selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
}






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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #f5f5f5;
  color: #fff;
  overflow-x: hidden;
}

/* Section Wrapper with Curved Background */
.why-section,
.opportunities-section,
.collaboration-section,
.culture-section {
  position: relative;
  margin: 60px 0;
}

/* Curved Background Styling */
.why-section,
.collaboration-section {
  background: #000;
  border-radius: 80px;
  padding: 100px 0px;
  margin: 60px 0px;
  position: relative;
  overflow: hidden;
}

.why-section::before,
.collaboration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  pointer-events: none;
}

/* Alternate Background Gradients */
.why-section {
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
}

.opportunities-section {
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  border-radius: 80px;
  padding: 100px 0px;
  margin: 60px 0px;
  position: relative;
  overflow: hidden;
}

.opportunities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.collaboration-section {
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  
}

.culture-section {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
  border-radius: 80px;
  padding: 100px 0px;
  margin: 60px 0px;
  position: relative;
  overflow: hidden;
}

.culture-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Glow Effects */
.glow-effect {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.glow-opportunities {
  background: radial-gradient(circle, rgba(100, 150, 255, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.glow-culture {
  background: radial-gradient(circle, rgba(255, 100, 150, 0.3) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* Section Titles */
.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 18px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Role Category Cards */
.role-category-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.role-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.category-title i {
  font-size: 1.8rem;
}

.role-list {
  list-style: none;
  padding: 0;
}

.role-list li {
  font-size: 1.1rem;
  color: #a0a0a0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.role-list li:last-child {
  border-bottom: none;
}

.role-list li:hover {
  color: #fff;
  padding-left: 10px;
}

.role-list li i {
  margin-right: 15px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Collaboration Cards */
.collab-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.collab-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.collab-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 16px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.collab-card:hover .collab-icon {
  transform: scale(1.1);
}

.collab-icon i {
  font-size: 28px;
  color: #fff;
}

.collab-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Culture Card */
.culture-card {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid rgba(255, 255, 255, 0.3);
  padding: 50px;
  border-radius: 16px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 30px;
}

.quote-icon i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
}

.culture-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  padding-left: 60px;
  margin: 0;
}

/* Buttons */
.btn-primary-cta,
.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  color: #000;
  border: none;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
}
.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-outline-cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

.animate-on-scroll[data-animation="slide-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-animation="slide-right"] {
  transform: translateX(40px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .why-section,
  .opportunities-section,
  .collaboration-section,
  .culture-section {
    border-radius: 60px;
    margin: 60px 0px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }

  .why-section,
  .opportunities-section,
  .collaboration-section,
  .culture-section {
    border-radius: 50px;
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .why-section,
  .opportunities-section,
  .collaboration-section,
  .culture-section {
    border-radius: 40px;
    margin: 60px 0px;
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .culture-quote {
    font-size: 1.2rem;
    padding-left: 50px;
  }
}

@media (max-width: 576px) {
  .why-section,
  .opportunities-section,
  .collaboration-section,
  .culture-section {
    border-radius: 30px;
    margin: 60px 0px;
  }

  .culture-card {
    padding: 30px 20px;
  }

  .quote-icon i {
    font-size: 2rem;
    left: 20px;
  }

  .culture-quote {
    font-size: 1.1rem;
    padding-left: 40px;
  }
}



.join-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  /* background: linear-gradient(135deg, #0066ff 0%, #000000 100%); */
  /* background: linear-gradient(135deg, #3388ff 0%, #0066ff 100%); */
  /* background: linear-gradient(180deg, #0066ff 0%, #001a4d 100%); */
  background: linear-gradient(135deg, #1a75ff 0%, #0033cc 50%, #000000 100%);
  /* background: linear-gradient(135deg, #3399ff 0%, #0052cc 100%); */
  overflow: hidden;
}

.join-hero > .container {
  position: relative;
  z-index: 2;
}

.join-hero .glow-effect {
  position: absolute;
  z-index: 1;
}
/* Gradient Background for Hero Section */
.join-hero {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.15) 25%,
    rgba(236, 72, 153, 0.15) 50%,
    rgba(59, 130, 246, 0.15) 75%,
    rgba(99, 102, 241, 0.15) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhance with additional glow layers */
.join-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, 
    rgba(37, 65, 177, 0.576) 0%,
    transparent 70%);
  pointer-events: none;
}




/* Darker dropdown background for inquiry type select */
.form-select.glass-input {
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
}

/* Dropdown options styling */
.form-select.glass-input option {
  background-color: #000000;
  color: #ffffff;
  padding: 0.5rem;
}

/* For better visibility on hover in dropdown */
.form-select.glass-input option:hover,
.form-select.glass-input option:focus {
  background-color: rgba(0, 102, 255, 0.3);
}

/* Ensure focused state is also dark */
.form-select.glass-input:focus {
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: #ffffff !important;
}











