/* ============================================
   VOLTR COMPLETE HYBRID CSS
   All your original styles + Rockstar structure
   ============================================ */

/* ============================================
   YOUR ORIGINAL VARIABLES & BASE STYLES
   ============================================ */

:root {
  /* Your Original Colors - PRESERVED */
  --font-family: "Reddit Sans", serif;
  --font-size: 16px;
  --font-weight: 400;
  --font-color: #212121;
  --primary-color: #6b21a8;
  --primary-color-light: #6b21a854;
  --secondary-color: #be185d;
  --secondary-color-light: #be185d5c;
  --light-color: #ffffff;
  
  /* Rockstar-scale spacing (for new chapters only) */
  --spacing-section: 130px;
  --spacing-large: 120px;
  --spacing-medium: 80px;
  --spacing-small: 40px;
  
  /* Effects */
  --blur-glass: blur(20px);
  --shadow-elevated: 0 30px 60px rgba(107, 33, 168, 0.3);
  --shadow-subtle: 0 10px 30px rgba(107, 33, 168, 0.15);
  
  /* Animation */
  --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Tier colors */
  --soft: #f8f4ff;
  --heading: #1e2a38;
  --navy: #1e2a38;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --shadow: rgba(139,92,246,.15);
  --radius: 16px;
  --bronze: #cd7f32;
  --silver: #c0c0c0;
  --gold: #ffd700;
  --diamond: #b9f2ff;
  --ultimate: #ff6b35;
}

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

body {
  font-family: var(--font-family);
  background: #ffffff;
  color: var(--font-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.profile-page {
  background-color: var(--secondary-color-light);
}

/* ============================================
   YOUR ORIGINAL TYPOGRAPHY - PRESERVED
   ============================================ */

h1, h2, h3, h4, h5, h6, p, span, a {
  font-family: var(--font-family);
}

a, i, span {
  display: inline-block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

h1 {
  font-size: 4.0rem;
  font-weight: 800;
  color: var(--secondary-color);
}

h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--secondary-color);
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-color);
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
}

p {
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: 26px;
}

.hide-on-mobile {
  display: block;
}

.show-on-mobile {
  display: none !important;
}
main.main{
  overflow-x: hidden;
}
.section {
  padding: 70px 0;
}



/* ============================================
   MOBILE CAROUSEL ELEMENTS (Hidden on Desktop)
   ============================================ */

.carousel-dots {
  display: none; /* Hidden by default, shown on mobile via JS */
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(107, 33, 168, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot:hover {
  background: rgba(107, 33, 168, 0.4);
}

.carousel-dot.active {
  background: #6b21a8;
  width: 30px;
  border-radius: 5px;
}

.scroll-hint {
  display: none; /* Hidden by default, shown on mobile via JS */
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.scroll-hint i {
  animation: swipeAnimation 2s ease-in-out infinite;
}

@keyframes swipeAnimation {
  0%, 100% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
}


/* ============================================
   UTILITIES
   ============================================ */

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* AOS Animation Overrides */
[data-aos] {
  transition-duration: 1000ms !important;
}

[data-aos="fade-up"] {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
}

[data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translate3d(40px, 0, 0);
  opacity: 0;
}

[data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}



/* ================================================================================================================================================================================ 
   Intro_logo.css
   ================================================================================================================================================================================ 

/* ============================================
   VOLTR COMPLETE HYBRID CSS
   All your original styles + Rockstar structure
   ============================================ */

/* ============================================
   YOUR ORIGINAL VARIABLES & BASE STYLES
   ============================================ */

   :root {
    /* Your Original Colors - PRESERVED */
    --font-family: "Reddit Sans", serif;
    --font-size: 16px;
    --font-weight: 400;
    --font-color: #212121;
    --primary-color: #6b21a8;
    --primary-color-light: #6b21a854;
    --secondary-color: #be185d;
    --secondary-color-light: #be185d5c;
    --light-color: #ffffff;
    
    /* Rockstar-scale spacing (for new chapters only) */
    --spacing-section: 130px;
    --spacing-large: 120px;
    --spacing-medium: 80px;
    --spacing-small: 40px;
    
    /* Effects */
    --blur-glass: blur(20px);
    --shadow-elevated: 0 30px 60px rgba(107, 33, 168, 0.3);
    --shadow-subtle: 0 10px 30px rgba(107, 33, 168, 0.15);
    
    /* Animation */
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Tier colors */
    --soft: #f8f4ff;
    --heading: #1e2a38;
    --navy: #1e2a38;
    --pink: #ec4899;
    --purple: #8b5cf6;
    --shadow: rgba(139,92,246,.15);
    --radius: 16px;
    --bronze: #cd7f32;
    --silver: #c0c0c0;
    --gold: #ffd700;
    --diamond: #b9f2ff;
    --ultimate: #ff6b35;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-family);
    background: #ffffff;
    color: var(--font-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  
  body.profile-page {
    background-color: var(--secondary-color-light);
  }
  
  /* ============================================
     YOUR ORIGINAL TYPOGRAPHY - PRESERVED
     ============================================ */
  
  h1, h2, h3, h4, h5, h6, p, span, a {
    font-family: var(--font-family);
  }
  
  a, i, span {
    display: inline-block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  h1 {
    font-size: 4.0rem;
    font-weight: 800;
    color: var(--secondary-color);
  }
  
  h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
  }
  
  h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
  }
  
  h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
  }
  
  p {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: 26px;
  }
  
  .hide-on-mobile {
    display: block;
  }
  
  .show-on-mobile {
    display: none !important;
  }
  main.main{
    overflow-x: hidden;
  }
  .section {
    padding: 70px 0;
  }
  
  
  
  /* ============================================
     MOBILE CAROUSEL ELEMENTS (Hidden on Desktop)
     ============================================ */
  
  .carousel-dots {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(107, 33, 168, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .carousel-dot:hover {
    background: rgba(107, 33, 168, 0.4);
  }
  
  .carousel-dot.active {
    background: #6b21a8;
    width: 30px;
    border-radius: 5px;
  }
  
  .scroll-hint {
    display: none; /* Hidden by default, shown on mobile via JS */
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s ease;
  }
  
  .scroll-hint i {
    animation: swipeAnimation 2s ease-in-out infinite;
  }
  
  @keyframes swipeAnimation {
    0%, 100% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
  }
  
  
  /* ============================================
     UTILITIES
     ============================================ */
  
  .mt-4 { margin-top: 2rem; }
  .mt-5 { margin-top: 3rem; }
  .mb-3 { margin-bottom: 1.5rem; }
  .text-center { text-align: center; }
  
  /* AOS Animation Overrides */
  [data-aos] {
    transition-duration: 1000ms !important;
  }
  
  [data-aos="fade-up"] {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  
  [data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
  [data-aos="fade-right"] {
    transform: translate3d(-40px, 0, 0);
    opacity: 0;
  }
  
  [data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
  [data-aos="fade-left"] {
    transform: translate3d(40px, 0, 0);
    opacity: 0;
  }
  
  [data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
  [data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
  }
  
  [data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
  }
  
  
  
  /* ================================================================================================================================================================================ 
     Intro_logo.css
     ================================================================================================================================================================================ 
  /* Fullscreen black loader */
#gta-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* iPhone/iOS Safari support - use dynamic viewport height */
  height: 100dvh;
  /* Fallback for older browsers */
  min-height: -webkit-fill-available;
 background:
  radial-gradient(circle at 30% 30%, rgba(190,24,93,0.35), transparent 45%),
  radial-gradient(circle at 70% 35%, rgba(107,33,168,0.35), transparent 45%),
  radial-gradient(circle at 50% 70%, rgba(190,24,93,0.18), transparent 50%),
  #000000;

  z-index: 999999;
  overflow: hidden;
  touch-action: none;
  /* Ensure it covers safe areas on iPhone X and newer */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-sizing: border-box;
}

#gta-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 260px;
  max-width: 65vw;
  opacity: 0;
  filter: blur(15px) drop-shadow(0 0 40px #6b21a8) drop-shadow(0 0 80px #be185d);
  animation: gtaZoom 1.8s ease-out forwards;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, filter, opacity;
}

@keyframes gtaZoom {
  0% {
      opacity: 0;
      filter: blur(12px) drop-shadow(0 0 20px #6b21a8) drop-shadow(0 0 40px #be185d);
      transform: translate(-50%, -50%) scale(0.55);
  }
  60% {
      opacity: 1;
      filter: blur(0) drop-shadow(0 0 60px #6b21a8) drop-shadow(0 0 100px #be185d);
      transform: translate(-50%, -50%) scale(1.4);
  }
  100% {
      opacity: 0;
      filter: blur(2px) drop-shadow(0 0 30px #6b21a8) drop-shadow(0 0 60px #be185d);
      transform: translate(-50%, -50%) scale(1.8);
  }
}

/* Fade-in */
body.loaded #main-content {
  opacity: 1;
  transition: opacity 0.7s ease-in;
}

/* MOBILE OPTIMIZED */
@media (max-width: 600px) {
  #gta-logo {
      top: 25%;
      left: 50%;

      /* IMPORTANT: only translate X, not Y */
      transform: translateX(-50%) scale(0.6);

      max-width: 70vw;
      animation: gtaZoomMobile 1.8s ease-out forwards;
  }

  @keyframes gtaZoomMobile {
      0% {
          opacity: 0;
          filter: blur(10px);
          /* Keep -50% -50% for perfect center */
          transform: translate(-50%, -50%) scale(0.6); 
      }
      60% {
          opacity: 1;
          filter: blur(0);
          transform: translate(-50%, -50%) scale(1.25);
      }
      100% {
          opacity: 0;
          filter: blur(2px);
          transform: translate(-50%, -50%) scale(1.55);
      }
  }
}


/* Ultra-small screens */
@media (max-width: 400px) {
  #gta-logo {
      max-width: 75vw;
  }
}

/* iPhone/iOS specific fixes for loader */
@supports (-webkit-touch-callout: none) {
  #gta-loader {
    height: -webkit-fill-available;
    min-height: 100vh;
    min-height: 100dvh;
  }
}

/* iPhone X and newer - ensure full screen coverage */
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3),
  only screen 
  and (device-width: 428px) 
  and (device-height: 926px) 
  and (-webkit-device-pixel-ratio: 3),
  only screen 
  and (device-width: 375px) 
  and (device-height: 812px) 
  and (-webkit-device-pixel-ratio: 3) {
  #gta-loader {
    height: 100vh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

  
  
  /* ================================================================================================================================================================================ 
     hero.css
     ================================================================================================================================================================================*/
  
  
  
  #constellation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  /* ============================================
     CHAPTER 1: CINEMATIC HERO (NEW)
     ============================================ */
  
  
  #cinematic-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  
    padding: 100px 20px 80px;
  
    background: url('../images/hero-section-bg-image-01.png') center center/cover no-repeat;
  
    animation: heroIntro 2s ease forwards;
    transition: filter 0.3s ease-out;
  }
  
  @keyframes heroIntro {
    0%   { filter: blur(25px) brightness(0.5); opacity: 0; }
    100% { filter: blur(0)    brightness(1);   opacity: 1; }
  }
  
  /* ------------------------------------------
     CINEMATIC OVERLAY
  ------------------------------------------- */
  
  .light-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,0.15) 50%,
      transparent 80%
    );
    animation: sweep 9s linear infinite;
    pointer-events: none;
    z-index: 2;
  }
  
  @keyframes sweep {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(160%); }
  }
  
  /* ------------------------------------------
     CONTENT
  ------------------------------------------- */
  
  .hero-content {
    position: relative;
    z-index: 10;
  
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
  }
  
  /* Title */
  .hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
  
    color: #fff;
    text-shadow: 0 6px 22px rgba(0,0,0,0.45);
  
    margin-bottom: 1.2rem;
    transform: translateY(-25px);
  
    opacity: 0;
    animation: titleRise 1.5s ease forwards;
  }
  
  @keyframes titleRise {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(-25px); }
  }
  
  /* Subtitle */
  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: #e9e9e9;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: subtitleFade 1.8s ease forwards;
    animation-delay: .2s;
  }
  
  @keyframes subtitleFade {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* ------------------------------------------
     CTA Buttons
  ------------------------------------------- */
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
  
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  
  .cta-primary {
    background: linear-gradient(135deg, #582cff, #8e50ff);
    color: #fff;
  }
  
  .cta-secondary {
    background: linear-gradient(135deg, #d72c66, #ff4e72);
    color: #fff;
  }
  
  .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  }
  
  /* ------------------------------------------
     SCROLL INDICATOR
  ------------------------------------------- */
  
  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: scrollFade 2.5s ease forwards;
    animation-delay: .7s;
  }
  
  .scroll-indicator span {
    font-size: 0.9rem;
    color: #ffffffcc;
    letter-spacing: 0.15em;
  }
  
  /* ------------------------------------------
     MOBILE RESPONSIVE
  ------------------------------------------- */
  
  @media (max-width: 768px) {
  
    #cinematic-hero {
      padding: 140px 20px 60px;
      background-position: center top;
    }
  
    .hero-title {
      font-size: 2.8rem;
      transform: translateY(-5px);
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .cta-btn {
      width: 100%;
      padding: 14px;
    }
  
    .scroll-indicator {
      bottom: 25px;
    }
  }
  
  /* ============================================
     CHAPTER BASE STYLES (NEW STRUCTURE)
     ============================================ */
  
  .chapter {
    padding: var(--spacing-section) 0;
    position: relative;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
  }
  
  .chapter-header {
    text-align: center;
    margin-bottom: var(--spacing-medium);
  }
  
  .chapter-title {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  
  
  /* ================================================================================================================================================================================ 
     search.css
     ================================================================================================================================================================================*/
  
  .cinematic-search {
      width: 100%;
      max-width: 900px;
      margin: 0 auto 50px auto;
  }
  
  .search-glass-card {
      position: relative;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(25px);
      border-radius: 24px;
      border: 2px solid rgba(255,255,255,0.25);
      padding: 8px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5),
                  0 0 30px rgba(180,0,255,0.35);
      transition: all 0.4s ease;
      transform-style: preserve-3d;
  }
  
  .search-glass-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 75px rgba(0,0,0,0.55),
                  0 0 40px rgba(200,0,255,0.6);
      border-color: rgba(200,0,255,0.6);
  }
  
  /* Search Fields Container */
  .search-fields {
      display: flex;
      align-items: stretch;
      gap: 10px;
      position: relative;
      z-index: 2;
  }
  
  /* Individual Search Field - CHUNKIER */
  .search-field {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      position: relative;
      transition: all 0.3s ease;
      background: #ffffff; 
      border-radius: 16px;
      border: 2px solid transparent;
      transition: border-color 0.25s ease, box-shadow 0.35s ease;
      border: 2px solid transparent;  /* base */
      
  
  
  }
  
  .search-field:hover {
      background: #ffffff;
      border-color: rgba(107, 33, 168, 0.15);
  }
  
  .search-field:focus-within {
      background: #faf5ff;
      border-color: rgba(107, 33, 168, 0.3);
      box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
  }
  
  .search-field:hover,
  .search-field:focus-within {
      border-color: #8b5cf6 !important; /* brighter purple */
      box-shadow: 
          0 0 12px rgba(139, 92, 246, 0.7),
          0 0 24px rgba(192, 38, 211, 0.5),
          0 0 36px rgba(219, 39, 119, 0.35);
  }
  /* Icon Wrapper - CHUNKIER */
  .field-icon-wrapper {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .field-icon-wrapper i {
      font-size: 1.35rem;
      color: #6b21a8;
      transition: 0.3s ease;
      position: relative;
      z-index: 2;
  }
  
  .search-field:hover .field-icon-wrapper i {
      color: #7c3aed;
      transform: scale(1.1);
  }
  
  /* Icon Ripple */
  .icon-ripple {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid #6b21a8;
      opacity: 0;
      transform: scale(0.5);
      transition: 0.4s ease;
  }
  
  .search-field:hover .icon-ripple {
      opacity: 0.3;
      transform: scale(1.2);
      border-color: #7c3aed;
  }
  
  /* Input Wrapper */
  .field-input-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
  }
  
  .field-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #9333ea;
      font-weight: 600;
      transition: color 0.3s ease;
      line-height: 1;
  }
  
  .search-field:hover .field-label,
  .search-field:focus-within .field-label {
      color: #7c3aed;
  }
  
  .search-input {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      color: #6b21a8;
      font-size: 1rem;
      font-weight: 600;
      padding: 0;
      line-height: 1.3;
  }
  
  .search-input::placeholder {
      color: #a855f7;
      font-weight: 500;
      opacity: 0.8;
  }
  
  .search-input:focus {
      color: #6b21a8;
  }
  
  /* ============================================ 
     CUSTOM MODERN DROPDOWN 
  ============================================ */
  
  /* Hide the native select */
  .custom-select-wrapper {
      position: relative;
      width: 100%;
  }
  
  .custom-select-wrapper select {
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
      z-index: 10;
  }
  
  /* Custom Select Display */
  .custom-select-display {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      color: #6b21a8;
      font-size: 1rem;
      font-weight: 600;
      user-select: none;
  }
  
  .custom-select-arrow {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
      flex-shrink: 0;
  }
  
  .custom-select-arrow svg {
      width: 100%;
      height: 100%;
      fill: #6b21a8;
  }
  
  .search-field:hover .custom-select-arrow svg {
      fill: #7c3aed;
  }
  
  /* Custom Dropdown Menu */
  .custom-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      border: 2px solid rgba(107, 33, 168, 0.2);
      box-shadow: 0 20px 60px rgba(107, 33, 168, 0.3),
                  0 0 40px rgba(200, 0, 255, 0.2);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      max-height: 400px;
      overflow-y: auto;
      padding: 8px;
  }
  
  .custom-dropdown-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
  
  /* Scrollbar Styling */
  .custom-dropdown-menu::-webkit-scrollbar {
      width: 8px;
  }
  
  .custom-dropdown-menu::-webkit-scrollbar-track {
      background: rgba(107, 33, 168, 0.05);
      border-radius: 10px;
  }
  
  .custom-dropdown-menu::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
      border-radius: 10px;
  }
  
  .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  }
  
  /* Dropdown Options */
  .custom-dropdown-option {
      padding: 14px 18px;
      color: #6b21a8;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
  }
  
  .custom-dropdown-option:hover {
      background: linear-gradient(135deg, rgba(107, 33, 168, 0.08) 0%, rgba(190, 24, 93, 0.08) 100%);
      color: #7c3aed;
      font-weight: 600;
      transform: translateX(4px);
  }
  
  .custom-dropdown-option.selected {
      background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(190, 24, 93, 0.15) 100%);
      color: #6b21a8;
      font-weight: 700;
  }
  
  .custom-dropdown-option.selected::before {
      content: '✓';
      position: absolute;
      right: 18px;
      font-size: 1.1rem;
      color: #6b21a8;
  }
  
  /* Dropdown Animation Shine */
  .custom-dropdown-option::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.5s ease;
  }
  
  .custom-dropdown-option:hover::after {
      left: 100%;
  }
  
  /* Submit Button - CHUNKIER */
  .search-submit {
      position: relative;
      background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
      border: none;
      border-radius: 16px;
      padding: 18px 34px;
      color: white;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      overflow: hidden;
      transition: 0.3s cubic-bezier(0.165,0.84,0.44,1);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 0;
      flex-shrink: 0;
      white-space: nowrap;
      box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
  }
  
  .search-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(107,33,168,0.5);
      background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  }
  
  .search-submit:active {
      transform: translateY(-1px);
  }
  
  .search-submit i {
      font-size: 1.15rem;
      transition: transform 0.3s ease;
      color: white;
  }
  
  .search-submit:hover i {
      transform: translateX(5px);
  }
  
  /* Button Shine */
  .btn-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.5s ease;
  }
  
  .search-submit:hover .btn-shine {
      left: 100%;
  }
  
  /* ============================================ 
     RESPONSIVE ADJUSTMENTS 
  ============================================ */
  @media (max-width: 768px) {
      .cinematic-search {
          max-width: 100%;
          padding: 0 20px;
      }
      
      .search-fields {
          flex-direction: column;
          gap: 10px;
      }
      
      .search-submit {
          width: 100%;
          justify-content: center;
          padding: 20px 34px;
      }
      
      .custom-dropdown-menu {
          max-height: 300px;
      }
  }
  
  /* ============================================ 
     OPTIONAL: ANIMATED FOCUS EFFECTS 
  ============================================ */
  @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(107, 33, 168, 0.4); }
      50% { box-shadow: 0 0 0 8px rgba(107, 33, 168, 0); }
  }
  
  .search-field:focus-within {
      animation: pulseGlow 1.5s ease-in-out infinite;
  }
  
  /* ============================================ 
     POPULAR SECTION SPACING FIX 
  ============================================ */
  .popular-section {
      margin-top: 35px;
  }
  
  /* ============================================ POPULAR TAGS ============================================ */
  .popular-tags {
      display: flex;
      justify-content: center;
      margin-bottom: 60px;
  }
  
  .tags-container {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .tag-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);  /* Changed from 0.6 - more visible */
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .tag-label i {
      color: #c084fc;  /* Lighter purple for better visibility */
      font-size: 1rem;
  }
  
  .tags-wrapper {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
  }
  
  .tag {
      position: relative;
      display: inline-block;
      padding: 10px 20px;
      border-radius: 25px;
      overflow: hidden;
      text-decoration: none;
      transition: 0.3s ease;
  }
  
  .tag-bg {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 25px;
      transition: 0.3s ease;
  }
  
  .tag-text {
      position: relative;
      z-index: 2;
      color: rgba(255,255,255,0.9);  /* Changed from 0.8 - more visible */
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s ease;
  }
  
  .tag:hover {
      transform: translateY(-2px);
  }
  
  .tag:hover .tag-bg {
      background: rgba(107,33,168,0.2);
      border-color: rgba(107,33,168,0.5);
  }
  
  .tag:hover .tag-text {
      color: white;
  }
  
  /* ================================================
     MOBILE FIXES FOR POPULAR TAGS
  ================================================ */
  /*--Added Styles by Sohail--*/
  
  @media(max-width: 767px){
      .tags-container {
          flex-direction: column;
          gap: 15px;
      }
  }
  @media (max-width: 640px) {
  
      .popular-tags {
          margin-top: 10px;
          margin-bottom: 40px;
          padding: 0 10px;
      }
  
      .tags-container {
          flex-direction: column;
          gap: 15px;
      }
  
      .tags-wrapper {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          justify-content: center;
      }
  
      .tag {
          padding: 8px 16px;          /* smaller & cleaner */
          border-radius: 25px;
          flex-shrink: 0;
      }
  
      .tag-bg {
          border-width: 1px;
          background: rgba(255,255,255,0.08); /* slightly clearer on mobile */
      }
  
      .tag-text {
          font-size: 0.85rem;         /* slightly smaller text */
      }
  
      .tag-label {
          font-size: 0.8rem;
          letter-spacing: 0.8px;
          justify-content: center;
      }
  }
  
  
  /* ================================================================================================================================================================================ 
      how it works.css
     ================================================================================================================================================================================*/
  
  
  .how-it-works-section {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  }
  
  .how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(107, 33, 168, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(190, 24, 93, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .how-it-works-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .how-it-works-section .lead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 4rem;
  }
  
  /* Process Grid & Step Cards */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .process-step,
  .step-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    border: 2px solid transparent;
  }
  
  .step-card::before,
  .process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .step-card:hover::before,
  .process-step:hover::before {
    opacity: 1;
  }
  
  .step-card:hover,
  .process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(107,33,168,0.2);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(107,33,168,0.3);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  .step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
  }
  
  .step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .step-card:hover .step-icon::before,
  .process-step:hover .step-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
  }
  
  @keyframes shimmer {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  .step-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    transition: 0.4s ease;
  }
  
  .step-card:hover .step-icon,
  .process-step:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(107,33,168,0.4);
  }
  
  .step-card:hover .step-icon i,
  .process-step:hover .step-icon i {
    transform: scale(1.2) rotate(-10deg);
  }
  
  .step-card h5,
  .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: 0.3s ease;
  }
  
  .step-card:hover h5,
  .process-step:hover .step-title {
    color: var(--secondary-color);
  }
  
  .step-card p,
  .step-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
  }
  
  .step-connector {
    position: relative;
    display: none;
  }
  
  @media (min-width: 768px) {
    .step-connector {
      display: block;
    }
    .step-connector::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -50%;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transform: translateY(-50%);
      opacity: 0.2;
    }
  }
  
  /*---Added styles by Sohail--*/
  /*---Media Queries---*/
  @media(max-width: 1200px){
    .step-card{
      padding: 1rem 0.75rem;
    }
  }
  @media(min-width: 768px) and (max-width: 991px){
    .step-card{
      padding: 1.5rem;
    }
  }
  
  
  /* ================================================================================================================================================================================ 
      level_up.css
     ================================================================================================================================================================================*/
  
  .level-up-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
  }
  
  /*----Added Styles By Sohail-----*/
  #levelup-particles{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
  }
  /* ============================================
     SECTION HEADER
     ============================================ */
  
  .levelup-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
  }
  
  .levelup-title {
    font-size: 4rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .title-normal {
    display: inline-block;
    margin-right: 15px;
  }
  
  .title-gradient-xp {
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 50%, #9333ea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(107, 33, 168, 0.3));
  }
  
  .levelup-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Explore Button */
  .explore-xp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .explore-xp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 33, 168, 0.5);
  }
  
  .explore-xp-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
  }
  
  .explore-xp-btn:hover i {
    transform: translateX(5px);
  }
  
  .btn-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .explore-xp-btn:hover .btn-particles {
    animation: buttonSparkle 1s ease;
  }
  
  @keyframes buttonSparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); }
  }
  
  /* ============================================
     LEVEL UP VISUAL CONTAINER
     ============================================ */
  
  .level-up-visual {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px rgba(107, 33, 168, 0.1);
    border: 2px solid rgba(107, 33, 168, 0.1);
    margin-top: 40px;
  }
  
  .journey-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
  }
  
  .journey-header i {
    font-size: 2rem;
    color: #6b21a8;
    animation: iconRotate 3s linear infinite;
  }
  
  @keyframes iconRotate {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
  }
  
  .journey-header h5 {
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
  }
  
  /* ============================================
     TIER PATH
     ============================================ */
  
  .tier-path-container {
    position: relative;
    margin-bottom: 60px;
  }
  
  .tier-connector-svg {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 200px;
    pointer-events: none;
    z-index: 1;
  }
  
  .tier-animated-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawTierPath 2s ease forwards, pathFlow 3s linear infinite;
    animation-delay: 0.5s, 2.5s;
  }
  
  @keyframes drawTierPath {
    to { stroke-dashoffset: 0; }
  }
  
  @keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
  }
  
  .tier-path {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 10;
    padding: 0 30px;
  }
  
  /* ============================================
     TIER ITEMS
     ============================================ */
  
  .tier-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
  }
  
  .tier-item:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 100;
  }
  
  /* Tier Icon Wrapper */
  .tier-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  /* Tier Glow Effects */
  .tier-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .bronze-glow { background: radial-gradient(circle, #cd7f32 0%, transparent 70%); }
  .silver-glow { background: radial-gradient(circle, #c0c0c0 0%, transparent 70%); }
  .gold-glow { background: radial-gradient(circle, #ffd700 0%, transparent 70%); }
  .diamond-glow { background: radial-gradient(circle, #b9f2ff 0%, transparent 70%); }
  .ultimate-glow { background: radial-gradient(circle, #9333ea 0%, transparent 70%); }
  
  .tier-item:hover .tier-glow,
  .tier-item.active .tier-glow {
    opacity: 0.8;
    animation: glowPulse 2s ease-in-out infinite;
  }
  
  @keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
  }
  
  /* Tier Pulse Ring */
  .tier-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0;
    transform: scale(0.9);
  }
  
  .bronze .tier-pulse { border-color: #cd7f32; }
  .silver .tier-pulse { border-color: #c0c0c0; }
  .gold .tier-pulse { border-color: #ffd700; }
  .diamond .tier-pulse { border-color: #b9f2ff; }
  .ultimate .tier-pulse { border-color: #9333ea; }
  
  .tier-item:hover .tier-pulse,
  .tier-item.active .tier-pulse {
    opacity: 0.6;
    animation: pulsateRing 1.5s ease-out infinite;
  }
  
  @keyframes pulsateRing {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  
  /* Tier Icon Image */
  .tier-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: all 0.3s ease;
  }
  
  .tier-item:hover .tier-icon,
  .tier-item.active .tier-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
  }
  
  /* Tier Shine Effect */
  .tier-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .tier-item:hover .tier-shine {
    opacity: 1;
    animation: shineRotate 2s linear infinite;
  }
  
  @keyframes shineRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Ultimate Tier Rays */
  .ultimate-rays {
    position: absolute;
    inset: -30px;
    background: 
      linear-gradient(0deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
      linear-gradient(45deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
      linear-gradient(90deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
      linear-gradient(135deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%);
    opacity: 0;
    animation: raysRotate 4s linear infinite;
  }
  
  .ultimate:hover .ultimate-rays,
  .ultimate.active .ultimate-rays {
    opacity: 1;
  }
  
  @keyframes raysRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Tier Badges */
  .tier-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 10;
    animation: badgeBounce 2s ease-in-out infinite;
  }
  
  .top20 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
  }
  
  .top5 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.5);
  }
  
  .elite {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.5);
  }
  
  /* Tier Info */
  .tier-info {
    text-align: center;
  }
  
  .tier-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
  }
  
  .bronze .tier-name { color: #cd7f32; }
  .silver .tier-name { color: #71717a; }
  .gold .tier-name { color: #ca8a04; }
  .diamond .tier-name { color: #0891b2; }
  .ultimate .tier-name { color: #9333ea; }
  
  .tier-item:hover .tier-name,
  .tier-item.active .tier-name {
    transform: scale(1.1);
  }
  
  .tier-hours {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .tier-description {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    font-style: italic;
  }
  
  
  /* ============================================
     PROGRESS BAR SECTION
     ============================================ */
  
  .progress-section {
    margin-bottom: 40px;
  }
  
  .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .progress-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .progress-percentage {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .stats-bar-container {
    position: relative;
  }
  
  .stats-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: rgba(107, 33, 168, 0.1);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .stats-fill {
    position: relative;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6b21a8 0%, #be185d 50%, #9333ea 100%);
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }
  
  .progress-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    animation: glowMove 2s linear infinite;
  }
  
  @keyframes glowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
  }
  
  .progress-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmerMove 2s ease-in-out infinite;
  }
  
  @keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  /* ============================================
     STATS DISPLAY
     ============================================ */
  
  .stats-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .stats-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.05), rgba(190, 24, 93, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(107, 33, 168, 0.1);
    transition: all 0.3s ease;
  }
  
  .stats-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 33, 168, 0.3);
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.15);
  }
  
  .stats-card i {
    font-size: 2.5rem;
    color: #6b21a8;
    transition: all 0.3s ease;
  }
  
  .stats-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #be185d;
  }
  
  .stat-content {
    flex: 1;
  }
  
  .stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* ============================================
     STATS TEXT
     ============================================ */
  
  .stats-text {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(107, 33, 168, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(107, 33, 168, 0.2);
  }
  
  .stats-text i {
    font-size: 1.2rem;
    color: #6b21a8;
    animation: cursorBlink 1.5s ease-in-out infinite;
  }
  
  @keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  
  
  
  /* ============================================
     RESPONSIVE DESIGN
     ============================================ */
  @media (max-width: 1200px) {
    .tier-path {
      gap: 15px;
      padding: 0 20px;
    }
    
    .tier-icon-wrapper {
      width: 100px;
      height: 100px;
    }
    
    .tier-icon {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 992px) {
    .levelup-title {
      font-size: 3rem;
    }
    
    .tier-path {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .tier-item {
      flex: 0 0 calc(33.333% - 20px);
    }
    
    .tier-connector-svg {
      display: none;
    }
    
    .stats-display {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .level-up-section {
      padding: 15px 0;
      min-height: auto;
    }
    
    /* Disable AOS on mobile to prevent hiding tiers */
    .tier-item[data-aos] {
      opacity: 1 !important;
      transform: none !important;
      pointer-events: auto !important;
    }
    
    .levelup-header {
      margin-bottom: 15px;
    }
  
    
    .explore-xp-btn {
      padding: 8px 20px;
      font-size: 0.8rem;
      margin-bottom: 12px;
    }
    
    .level-up-visual {
      padding: 15px 12px;
      border: none;
      box-shadow: none;
    }
    
    .journey-header {
      margin-bottom: 12px;
    }
    
    .journey-header h5 {
      font-size: 0.85rem;
      letter-spacing: 1px;
    }
    
    .journey-header i {
      font-size: 1rem;
    }
    
    /* MOBILE: 2x2 grid for first 4, then full width for Ultimate */
    .tier-path-container {
      padding: 0;
      margin-bottom: 12px;
    }
    
    .tier-connector-svg {
      display: none;
    }
    
    .tier-path {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 0;
    }
    
    .tier-item {
      width: 100%;
      max-width: none;
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 6px;
      background: radial-gradient( circle at center, rgba(107, 33, 168, 0.06) 0%,  rgba(107, 33, 168, 0.03) 40%,  transparent 70%);
  
      border: none;
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    
    /* First 4 tiers in 2x2 grid */
    .tier-item:nth-child(1),
    .tier-item:nth-child(2),
    .tier-item:nth-child(3),
    .tier-item:nth-child(4) {
      grid-column: span 1;
    }
    
    /* Ultimate spans full width and centers content */
    .tier-item:nth-child(5) {
      grid-column: 1 / -1;
      max-width: 50%;
      margin: 0 auto;
    }
    
    .tier-item:hover,
    .tier-item.active {
      transform: scale(1.02);
      background: linear-gradient(135deg, rgba(107, 33, 168, 0.08), rgba(190, 24, 93, 0.08));
      border: none;
      box-shadow: 0 4px 12px rgba(107, 33, 168, 0.15);
    }
    
    .tier-icon-wrapper {
      width: 55px;
      height: 55px;
      margin-bottom: 6px;
    }
    
    .tier-icon {
      width: 45px;
      height: 45px;
    }
    
    .tier-badge {
      font-size: 0.5rem;
      padding: 2px 5px;
      top: -8px;
      right: -8px;
    }
    
    .tier-info {
      text-align: center;
    }
    
    .tier-name {
      font-size: 0.85rem;
      margin-bottom: 2px;
      font-weight: 700;
    }
    
    .tier-hours {
      font-size: 0.7rem;
      margin-bottom: 0;
    }
    
    .tier-description {
      display: none;
    }
    
    /* Hide carousel elements */
    .carousel-dots,
    .scroll-hint {
      display: none !important;
    }
    
    /* Progress section */
    .progress-section {
      margin-bottom: 12px;
    }
    
    .progress-header {
      margin-bottom: 6px;
    }
    
    .progress-label {
      font-size: 0.75rem;
    }
    
    .progress-percentage {
      font-size: 1rem;
    }
    
    .stats-bar {
      height: 10px;
    }
    
    /* Stats cards - 3 columns, very compact */
    .stats-display {
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-bottom: 12px;
    }
    
    .stats-card {
      padding: 10px 6px;
      flex-direction: column;
      text-align: center;
      gap: 6px;
      border: none;
    }
    
    .stats-card i {
      font-size: 1.3rem;
    }
    
    .stat-value {
      font-size: 1.1rem;
      font-weight: 800;
    }
    
    .stat-label {
      font-size: 0.6rem;
    }
    
    .stats-text {
      padding: 8px;
      font-size: 0.75rem;
      border: none;
    }
    
    .stats-text i {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .level-up-section {
      padding: 12px 0;
    }
    
    .levelup-title {
      font-size: 1.4rem;
    }
    
    .tier-item {
      padding: 8px 5px;
    }
    
    .tier-icon-wrapper {
      width: 50px;
      height: 50px;
    }
    
    .tier-icon {
      width: 40px;
      height: 40px;
    }
    
    .tier-name {
      font-size: 0.8rem;
    }
    
    .tier-hours {
      font-size: 0.65rem;
    }
  }
  
  @media (max-width: 576px) {
    .level-up-section {
      padding: 30px 0;
    }
    
    .levelup-title {
      font-size: 1.8rem;
    }
    
    .tier-item {
      flex: 0 0 75%;
      min-width: 220px;
      max-width: 260px;
    }
    
    .tier-path {
      gap: 15px;
      padding: 20px 15px;
    }
    
    .tier-icon-wrapper {
      width: 90px;
      height: 90px;
    }
    
    .tier-icon {
      width: 75px;
      height: 75px;
    }
    
    .explore-xp-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
    
    .stats-card {
      padding: 15px;
    }
  }
  
  
  /* ================================================================================================================================================================================ 
      split_panels.css
     ================================================================================================================================================================================*/
  .hero-split {
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    margin-left: -50vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero-split .hero-title {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 3;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    pointer-events: none;
  }
  
  .hero-sides {
    display: flex;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .hero-side {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10%;
    cursor: pointer;
    z-index: 1;
  }
  
  /* Desktop videos inside split panels */
  .hero-side video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Desktop: fade video in on hover */
  .hero-side:hover video {
    opacity: 1;
  }
  
  .hero-sides:hover .hero-side {
    filter: brightness(0.2);
    transform: scale(0.98);
  }
  
  .hero-sides:hover .hero-side:hover {
    filter: brightness(1);
    transform: scale(1.02);
    z-index: 2;
  }
  
  .hero-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
    transition: filter 0.3s ease;
  }
  
  .hero-side.left {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(126,30,146,0.15)),
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(126,30,146,0.15) 100%),
      url('../images/company.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .hero-side.right {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(126,30,146,0.15)),
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(126,30,146,0.15) 100%),
      url('../images/volunteer.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .hero-side > * {
    position: relative;
    z-index: 2;
  }
  
  .label-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    pointer-events: none;
  }
  
  .hero-btn {
    background-color: #ffcc00;
    color: #1A1A2E;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    transition: 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #ffd633;
    color: #000;
  }
  
  .overlay-text {
    z-index: 3;
  }
  
  /* ==========================
     MOBILE SWIPER VIDEO LAYER
     ========================== */
  @media (max-width: 768px) {
    .hero-sides {
      flex-direction: column;
    }
  
    .hero-side {
      height: 50vh;
      padding-bottom: 60px;
      filter: brightness(1) !important;
      transform: none !important;
    }
  
    /* Desktop panels are hidden on mobile in your setup,
       but keep this safe (do NOT display:none videos if you ever show them) */
    .hero-side video {
      display: block;
      opacity: 0;
    }
  
    /* Mobile carousel slide video */
    .mobile-hero-carousel .swiper-slide {
      position: relative;
      overflow: hidden;
    }
  
   .mobile-hero-carousel .mobile-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
    /* 👇 RE-FRAME THE VIDEO */
   object-position: 75% 35%;
    /*   ^ left   ^ up   */
  
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  
  
    /* Fade in only when JS marks slide as playing */
    .mobile-hero-carousel .swiper-slide.is-playing .mobile-hero-video {
      opacity: 1;
    }
  
    .mobile-hero-carousel .label-banner,
    .mobile-hero-carousel .hero-btn {
      position: relative;
      z-index: 2;
    }
  
    /* optional overlay */
    .mobile-hero-carousel .swiper-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.25);
      z-index: 1;
    }
  }
  
  .mobile-hero-carousel .mobile-hero-video {
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  
  .mobile-hero-carousel .swiper-slide.is-playing .mobile-hero-video {
    opacity: 1;
  }
  
  .volunteer-btn {
    background: linear-gradient(to bottom, #A020F0, #7B2CBF);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.25rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(123,44,191,0.4);
  }
  
  .volunteer-btn:hover {
    background: linear-gradient(to bottom, #8b1fe4, #6821a5);
    transform: scale(1.05);
  }
  
  .company-btn {
    background-color: #ffcc00;
    color: #1A1A2E;
  }
  
  .company-btn:hover {
    background-color: #ffd633;
    color: #000;
  }
  
  .hero-side .label-banner {
    font-size: 9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.3s ease;
  }
  
  .hero-side.right:hover .label-banner,
  .hero-side.left:hover .label-banner {
    text-shadow:
      0 0 6px #862bad,
      0 0 10px #862bad,
      0 0 14px #862bad;
  }
  
  .hero-side {
    transition: filter 1.5s ease, transform 1.5s ease;
  }
  
  /* ============================================
     DESKTOP vs MOBILE HERO SWAP - PRESERVED
     ============================================ */
  
  .desktop-hero {
    display: block;
  }
  
  .mobile-hero-carousel {
    display: none;
  }
  
  
  @media (max-width: 768px) {
    .desktop-hero {
      display: none;
      height: 0;
      overflow: hidden;
      visibility: hidden;
    }
  
    .mobile-hero-carousel {
      display: block;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      position: relative;
    }
  
    .mobile-hero-carousel .swiper-slide {
      flex-shrink: 0;
      width: 100vw;
      height: 100vh;
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      text-align: center;
    }
  
    .volunteer-slide {
      background-image: url('../images/volunteer.jpg');
    }
  
    .company-slide {
      background-image: url('../images/company.jpg');
    }
  
    .mobile-hero-carousel .label-banner {
      position: static;
      transform: none;
      font-size: 4.5rem;
      margin-bottom: 1rem;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.5);
      transition: none;
    }
  
    .mobile-hero-carousel .hero-btn {
      font-size: 1rem;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      background: #ffcc00;
      color: #1A1A2E;
    }
  
    .mobile-hero-carousel .volunteer-btn {
      background-color: #7B2CBF;
      color: #fff;
    }
  
    .mobile-hero-carousel .company-btn {
      background-color: #ffcc00;
      color: #1A1A2E;
    }
  
    .mobile-hero-carousel .swiper-pagination {
      bottom: 20px !important;
      display: block !important;
    }
  
    .mobile-hero-carousel .swiper-button-next,
    .mobile-hero-carousel .swiper-button-prev {
      width: 50px !important;
      height: 50px !important;
      border-radius: 50% !important;
      background: rgba(255, 255, 255, 0.08) !important;
      color: #fff !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      border: 1px solid rgba(255, 255, 255, 0.15);
      opacity: 1 !important;
    }
    .swiper-button-next svg, .swiper-button-prev svg {
        width: auto;
        height: auto;
    }
    .mobile-hero-carousel .swiper-button-prev::after,
    .mobile-hero-carousel .swiper-button-next::after {
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1;
      color: #fff;
    }
  
    .mobile-hero-carousel .swiper-button-next:hover,
    .mobile-hero-carousel .swiper-button-prev:hover {
      background: var(--primary-color, #6c43f3) !important;
      transform: scale(1.1);
    }
  
    .mobile-hero-carousel .swiper-button-disabled {
      opacity: 0.3 !important;
      cursor: not-allowed;
      transform: none !important;
    }
    #site-footer .col-sm-3{
      max-width: 50%;
      flex:0 0 50%;
    }
  }
  
  @media (min-width: 769px) {
    .mobile-hero-carousel {
      display: none !important;
    }
    .mobile-hero-carousel .swiper-button-next,
    .mobile-hero-carousel .swiper-button-prev,
    .mobile-hero-carousel .swiper-pagination {
      display: none !important;
    }
  }
  
  /*----Added styles by Sohail---*/
  @media (max-width: 1600px){
    .hero-side .label-banner{
      font-size: 7rem;
    }
  }
  @media(max-width: 1400px){
    .hero-split{
      height: auto;
    }
  }
  @media (max-width: 991px){
    .hero-side .label-banner{
      font-size: 3.5rem;
    }
  }
  @media(max-width: 480px){
    #site-footer .col-sm-3{
      max-width: 100%;
      flex:0 0 100%;
    }
    #site-footer .justify-content-center{
      justify-content: flex-start !important;
    }
  }
  
  
  /* ================================================================================================================================================================================ 
      categories.css
     ================================================================================================================================================================================*/
  
  
  #chapter-categories {
    padding: var(--spacing-section) 0;
    position: relative;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
  }
  
  #chapter-categories .chapter-header {
    text-align: center;
    margin-bottom: var(--spacing-medium);
  }
  
  #chapter-categories .chapter-title {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  #chapter-categories .chapter-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  #chapter-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  #chapter-categories .category-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(107, 33, 168, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
  }
  
  #chapter-categories .category-card:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  #chapter-categories .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1), rgba(190, 24, 93, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
  }
  
  #chapter-categories .category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  }
  
  #chapter-categories .category-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.4s var(--ease-smooth);
  }
  
  #chapter-categories .category-card:hover .category-icon i {
    color: #ffffff;
  }
  
  #chapter-categories .category-title {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color 0.4s var(--ease-smooth);
  }
  
  #chapter-categories .category-card:hover .category-title {
    color: var(--primary-color);
  }
  
  #chapter-categories .category-description {
    color: #64748b;
    font-size: 0.9375rem;
    transition: color 0.4s var(--ease-smooth);
  }
  
  #chapter-categories .category-card:hover .category-description {
    color: #475569;
  }
  
  /* ================================================================================================================================================================================ 
      volunteer_values.css
     ================================================================================================================================================================================*/
  
     .volunteer-values-section {
    background: linear-gradient(to bottom right, #8723b5, #b44de7);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .volunteer-values-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .volunteer-values-section .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .value-card {
    background: #fff;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .value-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .value-card h3 {
    color: #8723b5;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .value-card p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button {
    margin-top: 50px;
  }
  
  .cta-btn {
    background-color: #fff;
    color: #8723b5;
    font-weight: bold;
    border-radius: 30px;
    padding: 14px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .cta-btn:hover {
    background-color: #ececec;
    color: #6d1f92;
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ================================================================================================================================================================================ 
      why_volunteer.css
     ================================================================================================================================================================================*/
  
     
  #why-volunteer-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  #why-volunteer-section::before,
  #why-volunteer-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #6a0dad, #ff4eb8, #6a0dad);
    background-size: 200% 100%;
    animation: slide-gradient 6s linear infinite;
    z-index: 2;
  }
  
  #why-volunteer-section::before {
    top: 0;
    animation-direction: normal;
    box-shadow: 0 2px 10px rgba(106, 13, 173, 0.25);
  }
  
  #why-volunteer-section::after {
    bottom: 0;
    animation-direction: reverse;
    box-shadow: 0 -2px 10px rgba(255, 78, 184, 0.25);
  }
  
  @keyframes slide-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  
  @media (prefers-reduced-motion: reduce) {
    #why-volunteer-section::before,
    #why-volunteer-section::after {
      animation: none;
      background-position: 50% 50%;
    }
  }
  
  .volunteer-card-img {
    position: relative;
    overflow: visible;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 200px 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .volunteer-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
  }
  
  .card-bg-img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  }
  
  .volunteer-card-img .card-body {
    position: relative;
    z-index: 2;
    padding: 16px 20px 8px;
  }
  
  .volunteer-card-img h4,
  .volunteer-card-img p {
    margin-bottom: 0;
  }
  
  .volunteer-card-img h4 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
  }
  
  .volunteer-card-img p {
    margin-top: 0.75rem;
    line-height: 1.6;
    color: #f5f5f5;
  }
  
  #why-volunteer-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #be185d !important;
    margin-bottom: 3rem;
  }
  
  #why-volunteer-section .row {
    margin-top: 3rem;
  }
  
  #why-volunteer-section > .container > h2 {
    margin-bottom: 6rem !important;
  }
  /*--Added Styles by Sohail---*/
  
  /*---Media Queries----*/
  @media(max-width: 1200px){
    .volunteer-card-img{
      padding: 170px 15px 20px 15px;
    }
    .card-bg-img{
      width: 100%;
      top:-25px;
    }
  }
  @media(min-width: 768px) and (max-width: 991px){
    .volunteer-card-img{
      padding: 120px 15px 20px 15px;
    }
    .card-bg-img{
      width: 100%;
      top:-25px;
    }
    .volunteer-card-img .card-body{
      padding:0 0 0.5rem  0 !important;
    }
  }
  @media(max-width: 767px){
    .volunteer-card-img{
      padding: 280px 15px 20px 15px;
    }
    .volunteer-card-img .card-body{
      padding:1.5rem  !important;
    }
    .card-bg-img{
      width: 100%;
      top:-25px;
    }
  }
  
  /* ================================================================================================================================================================================ 
      featured.css
     ================================================================================================================================================================================*/
  
  #featured-section{
     
  }
  
  .featured-job-card{
      background-color: var(--light-color);
      border-radius: 10px;
  }
  .featured-job-card h5{
      font-weight: 700;
      margin: 10px 0;
  }
  .featured-job-card span{
      font-size: 13px;
      margin: 5px 0;
      font-weight: 600;
  }
  .featured-job-card ul li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 12px;
    margin-right: 8px;
  }
  
  .featured-job-card .btn-primary{
      width: auto;
      display: inline-block;
  }
  /*------Process section styles---*/
  #process-section{
      background-color: var(--light-color);
  }
  
  .process-list {
    list-style: none;
    position: relative;
  }
  
  .process-list li{
      font-size: 18px;
      font-weight: 600;
  }
  .process-list li i{
      font-size: 24px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      float: left;
      display: inline-block;
      border-radius: 100%;
      text-align: center;
      margin: 0 10px 0 0;
  }
  .process-list.list-left li i{
    background-color: var(--primary-color);
      color: var(--light-color);
  }
  .process-list.list-right li i{
    background-color: var(--secondary-color);
      color: var(--light-color);
  }
  
  /* Feature cards inside process section */
  .feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #7e22ce, #a855f7); /* purple gradient */
    color: #fff;
  }
  
  .feature-card i {
    font-size: 2rem;
    color: #7e22ce; /* main purple */
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .feature-card:hover i {
    color: #fff;
  }
  
  .feature-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    transition: color 0.3s ease;
  }
  
  .feature-card:hover h5 {
    color: #fff;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .feature-card:hover p {
    color: #f3e8ff; /* light lavender for readability */
  }
  
  
  
  
  
  @media (max-width: 768px) {
    .hero-content {
      max-width: 100%;      /* removes the 800px cap */
      padding: 0 10px;      /* smaller side padding = visually wider */
    }
  
    .cinematic-search {
      width: 100%;
      max-width: none;
      padding: 0;           /* so you're not double-padding */
    }
  
    .search-glass-card {
      width: 100%;
    }
  }
  
  
  
  

/* ================================================================================================================================================================================ 
   hero.css
   ================================================================================================================================================================================*/



#constellation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   CHAPTER 1: CINEMATIC HERO (NEW)
   ============================================ */


#cinematic-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 100px 20px 80px;

  background: url('../images/hero-section-bg-image-01.png') center center/cover no-repeat;

  animation: heroIntro 2s ease forwards;
  transition: filter 0.3s ease-out;
}

@keyframes heroIntro {
  0%   { filter: blur(25px) brightness(0.5); opacity: 0; }
  100% { filter: blur(0)    brightness(1);   opacity: 1; }
}

/* ------------------------------------------
   CINEMATIC OVERLAY
------------------------------------------- */

.light-sweep {
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.15) 50%,
    transparent 80%
  );
  animation: sweep 9s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(160%); }
}

/* ------------------------------------------
   CONTENT
------------------------------------------- */

.hero-content {
  position: relative;
  z-index: 10;

  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

/* Title */
.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;

  color: #fff;
  text-shadow: 0 6px 22px rgba(0,0,0,0.45);

  margin-bottom: 1.2rem;
  transform: translateY(-25px);

  opacity: 0;
  animation: titleRise 1.5s ease forwards;
}

@keyframes titleRise {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(-25px); }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: #e9e9e9;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: subtitleFade 1.8s ease forwards;
  animation-delay: .2s;
}

@keyframes subtitleFade {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------
   CTA Buttons
------------------------------------------- */

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #582cff, #8e50ff);
  color: #fff;
}

.cta-secondary {
  background: linear-gradient(135deg, #d72c66, #ff4e72);
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

/* ------------------------------------------
   SCROLL INDICATOR
------------------------------------------- */

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: scrollFade 2.5s ease forwards;
  animation-delay: .7s;
}

.scroll-indicator span {
  font-size: 0.9rem;
  color: #ffffffcc;
  letter-spacing: 0.15em;
}

/* ------------------------------------------
   MOBILE RESPONSIVE
------------------------------------------- */

@media (max-width: 768px) {

  #cinematic-hero {
    padding: 140px 20px 60px;
    background-position: center top;
  }

  .hero-title {
    font-size: 2.8rem;
    transform: translateY(-5px);
  }

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

  .cta-btn {
    width: 100%;
    padding: 14px;
  }

  .scroll-indicator {
    bottom: 25px;
  }
}

/* ============================================
   CHAPTER BASE STYLES (NEW STRUCTURE)
   ============================================ */

.chapter {
  padding: var(--spacing-section) 0;
  position: relative;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
}

.chapter-header {
  text-align: center;
  margin-bottom: var(--spacing-medium);
}

.chapter-title {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}



/* ================================================================================================================================================================================ 
   search.css
   ================================================================================================================================================================================*/

.cinematic-search {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.search-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5),
                0 0 30px rgba(180,0,255,0.35);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.search-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 75px rgba(0,0,0,0.55),
                0 0 40px rgba(200,0,255,0.6);
    border-color: rgba(200,0,255,0.6);
}

/* Search Fields Container */
.search-fields {
    display: flex;
    align-items: stretch;
    gap: 10px;
    position: relative;
    z-index: 2;
}

/* Individual Search Field - CHUNKIER */
.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff; 
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.35s ease;
    border: 2px solid transparent;  /* base */
    


}

.search-field:hover {
    background: #ffffff;
    border-color: rgba(107, 33, 168, 0.15);
}

.search-field:focus-within {
    background: #faf5ff;
    border-color: rgba(107, 33, 168, 0.3);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.search-field:hover,
.search-field:focus-within {
    border-color: #8b5cf6 !important; /* brighter purple */
    box-shadow: 
        0 0 12px rgba(139, 92, 246, 0.7),
        0 0 24px rgba(192, 38, 211, 0.5),
        0 0 36px rgba(219, 39, 119, 0.35);
}
/* Icon Wrapper - CHUNKIER */
.field-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-icon-wrapper i {
    font-size: 1.35rem;
    color: #6b21a8;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.search-field:hover .field-icon-wrapper i {
    color: #7c3aed;
    transform: scale(1.1);
}

/* Icon Ripple */
.icon-ripple {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #6b21a8;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.4s ease;
}

.search-field:hover .icon-ripple {
    opacity: 0.3;
    transform: scale(1.2);
    border-color: #7c3aed;
}

/* Input Wrapper */
.field-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.field-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9333ea;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1;
}

.search-field:hover .field-label,
.search-field:focus-within .field-label {
    color: #7c3aed;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #6b21a8;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    line-height: 1.3;
}

.search-input::placeholder {
    color: #a855f7;
    font-weight: 500;
    opacity: 0.8;
}

.search-input:focus {
    color: #6b21a8;
}

/* ============================================ 
   CUSTOM MODERN DROPDOWN 
============================================ */

/* Hide the native select */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

/* Custom Select Display */
.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #6b21a8;
    font-size: 1rem;
    font-weight: 600;
    user-select: none;
}

.custom-select-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.custom-select-arrow svg {
    width: 100%;
    height: 100%;
    fill: #6b21a8;
}

.search-field:hover .custom-select-arrow svg {
    fill: #7c3aed;
}

/* Custom Dropdown Menu */
.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 2px solid rgba(107, 33, 168, 0.2);
    box-shadow: 0 20px 60px rgba(107, 33, 168, 0.3),
                0 0 40px rgba(200, 0, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

.custom-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scrollbar Styling */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(107, 33, 168, 0.05);
    border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
    border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

/* Dropdown Options */
.custom-dropdown-option {
    padding: 14px 18px;
    color: #6b21a8;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.custom-dropdown-option:hover {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.08) 0%, rgba(190, 24, 93, 0.08) 100%);
    color: #7c3aed;
    font-weight: 600;
    transform: translateX(4px);
}

.custom-dropdown-option.selected {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(190, 24, 93, 0.15) 100%);
    color: #6b21a8;
    font-weight: 700;
}

.custom-dropdown-option.selected::before {
    content: '✓';
    position: absolute;
    right: 18px;
    font-size: 1.1rem;
    color: #6b21a8;
}

/* Dropdown Animation Shine */
.custom-dropdown-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.custom-dropdown-option:hover::after {
    left: 100%;
}

/* Submit Button - CHUNKIER */
.search-submit {
    position: relative;
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
    border: none;
    border-radius: 16px;
    padding: 18px 34px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.165,0.84,0.44,1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

.search-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107,33,168,0.5);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

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

.search-submit i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
    color: white;
}

.search-submit:hover i {
    transform: translateX(5px);
}

/* Button Shine */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

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

/* ============================================ 
   RESPONSIVE ADJUSTMENTS 
============================================ */
@media (max-width: 768px) {
    .cinematic-search {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .search-fields {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-submit {
        width: 100%;
        justify-content: center;
        padding: 20px 34px;
    }
    
    .custom-dropdown-menu {
        max-height: 300px;
    }
}

/* ============================================ 
   OPTIONAL: ANIMATED FOCUS EFFECTS 
============================================ */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 33, 168, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(107, 33, 168, 0); }
}

.search-field:focus-within {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ============================================ 
   POPULAR SECTION SPACING FIX 
============================================ */
.popular-section {
    margin-top: 35px;
}

/* ============================================ POPULAR TAGS ============================================ */
.popular-tags {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.tags-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);  /* Changed from 0.6 - more visible */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-label i {
    color: #c084fc;  /* Lighter purple for better visibility */
    font-size: 1rem;
}

.tags-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s ease;
}

.tag-bg {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    transition: 0.3s ease;
}

.tag-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.9);  /* Changed from 0.8 - more visible */
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

.tag:hover .tag-bg {
    background: rgba(107,33,168,0.2);
    border-color: rgba(107,33,168,0.5);
}

.tag:hover .tag-text {
    color: white;
}

/* ================================================
   MOBILE FIXES FOR POPULAR TAGS
================================================ */
/*--Added Styles by Sohail--*/

@media(max-width: 767px){
    .tags-container {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 640px) {

    .popular-tags {
        margin-top: 10px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .tags-container {
        flex-direction: column;
        gap: 15px;
    }

    .tags-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tag {
        padding: 8px 16px;          /* smaller & cleaner */
        border-radius: 25px;
        flex-shrink: 0;
    }

    .tag-bg {
        border-width: 1px;
        background: rgba(255,255,255,0.08); /* slightly clearer on mobile */
    }

    .tag-text {
        font-size: 0.85rem;         /* slightly smaller text */
    }

    .tag-label {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        justify-content: center;
    }
}


/* ================================================================================================================================================================================ 
    how it works.css
   ================================================================================================================================================================================*/


.how-it-works-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 33, 168, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(190, 24, 93, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works-section h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.how-it-works-section .lead {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 4rem;
}

/* Process Grid & Step Cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step,
.step-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  border: 2px solid transparent;
}

.step-card::before,
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.step-card:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.step-card:hover,
.process-step:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(107,33,168,0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(107,33,168,0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover .step-icon::before,
.process-step:hover .step-icon::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.step-icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
  transition: 0.4s ease;
}

.step-card:hover .step-icon,
.process-step:hover .step-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(107,33,168,0.4);
}

.step-card:hover .step-icon i,
.process-step:hover .step-icon i {
  transform: scale(1.2) rotate(-10deg);
}

.step-card h5,
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: 0.3s ease;
}

.step-card:hover h5,
.process-step:hover .step-title {
  color: var(--secondary-color);
}

.step-card p,
.step-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.step-connector {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
  }
  .step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    opacity: 0.2;
  }
}

/*---Added styles by Sohail--*/
/*---Media Queries---*/
@media(max-width: 1200px){
  .step-card{
    padding: 1rem 0.75rem;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  .step-card{
    padding: 1.5rem;
  }
}


/* ================================================================================================================================================================================ 
    level_up.css
   ================================================================================================================================================================================*/

.level-up-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/*----Added Styles By Sohail-----*/
#levelup-particles{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
}
/* ============================================
   SECTION HEADER
   ============================================ */

.levelup-header {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.levelup-title {
  font-size: 4rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.1;
}

.title-normal {
  display: inline-block;
  margin-right: 15px;
}

.title-gradient-xp {
  background: linear-gradient(135deg, #6b21a8 0%, #be185d 50%, #9333ea 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  filter: drop-shadow(0 0 20px rgba(107, 33, 168, 0.3));
}

.levelup-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Explore Button */
.explore-xp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.explore-xp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.5);
}

.explore-xp-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.explore-xp-btn:hover i {
  transform: translateX(5px);
}

.btn-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.explore-xp-btn:hover .btn-particles {
  animation: buttonSparkle 1s ease;
}

@keyframes buttonSparkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); }
}

/* ============================================
   LEVEL UP VISUAL CONTAINER
   ============================================ */

.level-up-visual {
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 10px 50px rgba(107, 33, 168, 0.1);
  border: 2px solid rgba(107, 33, 168, 0.1);
  margin-top: 40px;
}

.journey-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.journey-header i {
  font-size: 2rem;
  color: #6b21a8;
  animation: iconRotate 3s linear infinite;
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.journey-header h5 {
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

/* ============================================
   TIER PATH
   ============================================ */

.tier-path-container {
  position: relative;
  margin-bottom: 60px;
}

.tier-connector-svg {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.tier-animated-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawTierPath 2s ease forwards, pathFlow 3s linear infinite;
  animation-delay: 0.5s, 2.5s;
}

@keyframes drawTierPath {
  to { stroke-dashoffset: 0; }
}

@keyframes pathFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

.tier-path {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 10;
  padding: 0 30px;
}

/* ============================================
   TIER ITEMS
   ============================================ */

.tier-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.tier-item:hover {
  transform: translateY(-15px) scale(1.05);
  z-index: 100;
}

/* Tier Icon Wrapper */
.tier-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Tier Glow Effects */
.tier-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bronze-glow { background: radial-gradient(circle, #cd7f32 0%, transparent 70%); }
.silver-glow { background: radial-gradient(circle, #c0c0c0 0%, transparent 70%); }
.gold-glow { background: radial-gradient(circle, #ffd700 0%, transparent 70%); }
.diamond-glow { background: radial-gradient(circle, #b9f2ff 0%, transparent 70%); }
.ultimate-glow { background: radial-gradient(circle, #9333ea 0%, transparent 70%); }

.tier-item:hover .tier-glow,
.tier-item.active .tier-glow {
  opacity: 0.8;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Tier Pulse Ring */
.tier-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid;
  opacity: 0;
  transform: scale(0.9);
}

.bronze .tier-pulse { border-color: #cd7f32; }
.silver .tier-pulse { border-color: #c0c0c0; }
.gold .tier-pulse { border-color: #ffd700; }
.diamond .tier-pulse { border-color: #b9f2ff; }
.ultimate .tier-pulse { border-color: #9333ea; }

.tier-item:hover .tier-pulse,
.tier-item.active .tier-pulse {
  opacity: 0.6;
  animation: pulsateRing 1.5s ease-out infinite;
}

@keyframes pulsateRing {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tier Icon Image */
.tier-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  transition: all 0.3s ease;
}

.tier-item:hover .tier-icon,
.tier-item.active .tier-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

/* Tier Shine Effect */
.tier-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tier-item:hover .tier-shine {
  opacity: 1;
  animation: shineRotate 2s linear infinite;
}

@keyframes shineRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Ultimate Tier Rays */
.ultimate-rays {
  position: absolute;
  inset: -30px;
  background: 
    linear-gradient(0deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%),
    linear-gradient(135deg, transparent 48%, rgba(147, 51, 234, 0.3) 50%, transparent 52%);
  opacity: 0;
  animation: raysRotate 4s linear infinite;
}

.ultimate:hover .ultimate-rays,
.ultimate.active .ultimate-rays {
  opacity: 1;
}

@keyframes raysRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Tier Badges */
.tier-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  z-index: 10;
  animation: badgeBounce 2s ease-in-out infinite;
}

.top20 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
}

.top5 {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.5);
}

.elite {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.5);
}

/* Tier Info */
.tier-info {
  text-align: center;
}

.tier-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.bronze .tier-name { color: #cd7f32; }
.silver .tier-name { color: #71717a; }
.gold .tier-name { color: #ca8a04; }
.diamond .tier-name { color: #0891b2; }
.ultimate .tier-name { color: #9333ea; }

.tier-item:hover .tier-name,
.tier-item.active .tier-name {
  transform: scale(1.1);
}

.tier-hours {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.tier-description {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  font-style: italic;
}


/* ============================================
   PROGRESS BAR SECTION
   ============================================ */

.progress-section {
  margin-bottom: 40px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-percentage {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar-container {
  position: relative;
}

.stats-bar {
  position: relative;
  width: 100%;
  height: 20px;
  background: rgba(107, 33, 168, 0.1);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.stats-fill {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6b21a8 0%, #be185d 50%, #9333ea 100%);
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.progress-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.progress-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmerMove 2s ease-in-out infinite;
}

@keyframes shimmerMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   STATS DISPLAY
   ============================================ */

.stats-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.05), rgba(190, 24, 93, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(107, 33, 168, 0.1);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 33, 168, 0.3);
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.15);
}

.stats-card i {
  font-size: 2.5rem;
  color: #6b21a8;
  transition: all 0.3s ease;
}

.stats-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #be185d;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   STATS TEXT
   ============================================ */

.stats-text {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(107, 33, 168, 0.05);
  border-radius: 15px;
  border: 2px dashed rgba(107, 33, 168, 0.2);
}

.stats-text i {
  font-size: 1.2rem;
  color: #6b21a8;
  animation: cursorBlink 1.5s ease-in-out infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}



/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .tier-path {
    gap: 15px;
    padding: 0 20px;
  }
  
  .tier-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .tier-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 992px) {
  .levelup-title {
    font-size: 3rem;
  }
  
  .tier-path {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tier-item {
    flex: 0 0 calc(33.333% - 20px);
  }
  
  .tier-connector-svg {
    display: none;
  }
  
  .stats-display {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .level-up-section {
    padding: 15px 0;
    min-height: auto;
  }
  
  /* Disable AOS on mobile to prevent hiding tiers */
  .tier-item[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  
  .levelup-header {
    margin-bottom: 15px;
  }

  
  .explore-xp-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .level-up-visual {
    padding: 15px 12px;
    border: none;
    box-shadow: none;
  }
  
  .journey-header {
    margin-bottom: 12px;
  }
  
  .journey-header h5 {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  
  .journey-header i {
    font-size: 1rem;
  }
  
  /* MOBILE: 2x2 grid for first 4, then full width for Ultimate */
  .tier-path-container {
    padding: 0;
    margin-bottom: 12px;
  }
  
  .tier-connector-svg {
    display: none;
  }
  
  .tier-path {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }
  
  .tier-item {
    width: 100%;
    max-width: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 6px;
    background: radial-gradient( circle at center, rgba(107, 33, 168, 0.06) 0%,  rgba(107, 33, 168, 0.03) 40%,  transparent 70%);

    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  /* First 4 tiers in 2x2 grid */
  .tier-item:nth-child(1),
  .tier-item:nth-child(2),
  .tier-item:nth-child(3),
  .tier-item:nth-child(4) {
    grid-column: span 1;
  }
  
  /* Ultimate spans full width and centers content */
  .tier-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .tier-item:hover,
  .tier-item.active {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.08), rgba(190, 24, 93, 0.08));
    border: none;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.15);
  }
  
  .tier-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 6px;
  }
  
  .tier-icon {
    width: 45px;
    height: 45px;
  }
  
  .tier-badge {
    font-size: 0.5rem;
    padding: 2px 5px;
    top: -8px;
    right: -8px;
  }
  
  .tier-info {
    text-align: center;
  }
  
  .tier-name {
    font-size: 0.85rem;
    margin-bottom: 2px;
    font-weight: 700;
  }
  
  .tier-hours {
    font-size: 0.7rem;
    margin-bottom: 0;
  }
  
  .tier-description {
    display: none;
  }
  
  /* Hide carousel elements */
  .carousel-dots,
  .scroll-hint {
    display: none !important;
  }
  
  /* Progress section */
  .progress-section {
    margin-bottom: 12px;
  }
  
  .progress-header {
    margin-bottom: 6px;
  }
  
  .progress-label {
    font-size: 0.75rem;
  }
  
  .progress-percentage {
    font-size: 1rem;
  }
  
  .stats-bar {
    height: 10px;
  }
  
  /* Stats cards - 3 columns, very compact */
  .stats-display {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .stats-card {
    padding: 10px 6px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
    border: none;
  }
  
  .stats-card i {
    font-size: 1.3rem;
  }
  
  .stat-value {
    font-size: 1.1rem;
    font-weight: 800;
  }
  
  .stat-label {
    font-size: 0.6rem;
  }
  
  .stats-text {
    padding: 8px;
    font-size: 0.75rem;
    border: none;
  }
  
  .stats-text i {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .level-up-section {
    padding: 12px 0;
  }
  
  .levelup-title {
    font-size: 1.4rem;
  }
  
  .tier-item {
    padding: 8px 5px;
  }
  
  .tier-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .tier-icon {
    width: 40px;
    height: 40px;
  }
  
  .tier-name {
    font-size: 0.8rem;
  }
  
  .tier-hours {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .level-up-section {
    padding: 30px 0;
  }
  
  .levelup-title {
    font-size: 1.8rem;
  }
  
  .tier-item {
    flex: 0 0 75%;
    min-width: 220px;
    max-width: 260px;
  }
  
  .tier-path {
    gap: 15px;
    padding: 20px 15px;
  }
  
  .tier-icon-wrapper {
    width: 90px;
    height: 90px;
  }
  
  .tier-icon {
    width: 75px;
    height: 75px;
  }
  
  .explore-xp-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .stats-card {
    padding: 15px;
  }
}


/* ================================================================================================================================================================================ 
    split_panels.css
   ================================================================================================================================================================================*/
.hero-split {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  margin-left: -50vw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.hero-split .hero-title {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 3;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  pointer-events: none;
}

.hero-sides {
  display: flex;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-side {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10%;
  cursor: pointer;
  z-index: 1;
}

/* Desktop videos inside split panels */
.hero-side video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

/* Desktop: fade video in on hover */
.hero-side:hover video {
  opacity: 1;
}

.hero-sides:hover .hero-side {
  filter: brightness(0.2);
  transform: scale(0.98);
}

.hero-sides:hover .hero-side:hover {
  filter: brightness(1);
  transform: scale(1.02);
  z-index: 2;
}

.hero-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: 0;
  transition: filter 0.3s ease;
}

.hero-side.left {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(126,30,146,0.15)),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(126,30,146,0.15) 100%),
    url('../images/company.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-side.right {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(126,30,146,0.15)),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(126,30,146,0.15) 100%),
    url('../images/volunteer.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-side > * {
  position: relative;
  z-index: 2;
}

.label-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
  pointer-events: none;
}

.hero-btn {
  background-color: #ffcc00;
  color: #1A1A2E;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffd633;
  color: #000;
}

.overlay-text {
  z-index: 3;
}

/* ==========================
   MOBILE SWIPER VIDEO LAYER
   ========================== */
@media (max-width: 768px) {
  .hero-sides {
    flex-direction: column;
  }

  .hero-side {
    height: 50vh;
    padding-bottom: 60px;
    filter: brightness(1) !important;
    transform: none !important;
  }

  /* Desktop panels are hidden on mobile in your setup,
     but keep this safe (do NOT display:none videos if you ever show them) */
  .hero-side video {
    display: block;
    opacity: 0;
  }

  /* Mobile carousel slide video */
  .mobile-hero-carousel .swiper-slide {
    position: relative;
    overflow: hidden;
  }

 .mobile-hero-carousel .mobile-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 👇 RE-FRAME THE VIDEO */
 object-position: 75% 35%;
  /*   ^ left   ^ up   */

  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}


  /* Fade in only when JS marks slide as playing */
  .mobile-hero-carousel .swiper-slide.is-playing .mobile-hero-video {
    opacity: 1;
  }

  .mobile-hero-carousel .label-banner,
  .mobile-hero-carousel .hero-btn {
    position: relative;
    z-index: 2;
  }

  /* optional overlay */
  .mobile-hero-carousel .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
  }
}

.mobile-hero-carousel .mobile-hero-video {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-hero-carousel .swiper-slide.is-playing .mobile-hero-video {
  opacity: 1;
}

.volunteer-btn {
  background: linear-gradient(to bottom, #A020F0, #7B2CBF);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.25rem;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(123,44,191,0.4);
}

.volunteer-btn:hover {
  background: linear-gradient(to bottom, #8b1fe4, #6821a5);
  transform: scale(1.05);
}

.company-btn {
  background-color: #ffcc00;
  color: #1A1A2E;
}

.company-btn:hover {
  background-color: #ffd633;
  color: #000;
}

.hero-side .label-banner {
  font-size: 9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  transition: text-shadow 0.3s ease;
}

.hero-side.right:hover .label-banner,
.hero-side.left:hover .label-banner {
  text-shadow:
    0 0 6px #862bad,
    0 0 10px #862bad,
    0 0 14px #862bad;
}

.hero-side {
  transition: filter 1.5s ease, transform 1.5s ease;
}

/* ============================================
   DESKTOP vs MOBILE HERO SWAP - PRESERVED
   ============================================ */

.desktop-hero {
  display: block;
}

.mobile-hero-carousel {
  display: none;
}


@media (max-width: 768px) {
  .desktop-hero {
    display: none;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .mobile-hero-carousel {
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .mobile-hero-carousel .swiper-slide {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
  }

  .volunteer-slide {
    background-image: url('../images/volunteer.jpg');
  }

  .company-slide {
    background-image: url('../images/company.jpg');
  }

  .mobile-hero-carousel .label-banner {
    position: static;
    transform: none;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: none;
  }

  .mobile-hero-carousel .hero-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    background: #ffcc00;
    color: #1A1A2E;
  }

  .mobile-hero-carousel .volunteer-btn {
    background-color: #7B2CBF;
    color: #fff;
  }

  .mobile-hero-carousel .company-btn {
    background-color: #ffcc00;
    color: #1A1A2E;
  }

  .mobile-hero-carousel .swiper-pagination {
    bottom: 20px !important;
    display: block !important;
  }

  .mobile-hero-carousel .swiper-button-next,
  .mobile-hero-carousel .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 1 !important;
  }
  .swiper-button-next svg, .swiper-button-prev svg {
      width: auto;
      height: auto;
  }
  .mobile-hero-carousel .swiper-button-prev::after,
  .mobile-hero-carousel .swiper-button-next::after {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
  }

  .mobile-hero-carousel .swiper-button-next:hover,
  .mobile-hero-carousel .swiper-button-prev:hover {
    background: var(--primary-color, #6c43f3) !important;
    transform: scale(1.1);
  }

  .mobile-hero-carousel .swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    transform: none !important;
  }
  #site-footer .col-sm-3{
    max-width: 50%;
    flex:0 0 50%;
  }
}

@media (min-width: 769px) {
  .mobile-hero-carousel {
    display: none !important;
  }
  .mobile-hero-carousel .swiper-button-next,
  .mobile-hero-carousel .swiper-button-prev,
  .mobile-hero-carousel .swiper-pagination {
    display: none !important;
  }
}

/*----Added styles by Sohail---*/
@media (max-width: 1600px){
  .hero-side .label-banner{
    font-size: 7rem;
  }
}
@media(max-width: 1400px){
  .hero-split{
    height: auto;
  }
}
@media (max-width: 991px){
  .hero-side .label-banner{
    font-size: 3.5rem;
  }
}
@media(max-width: 480px){
  #site-footer .col-sm-3{
    max-width: 100%;
    flex:0 0 100%;
  }
  #site-footer .justify-content-center{
    justify-content: flex-start !important;
  }
}


/* ================================================================================================================================================================================ 
    categories.css
   ================================================================================================================================================================================*/


#chapter-categories {
  padding: var(--spacing-section) 0;
  position: relative;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
}

#chapter-categories .chapter-header {
  text-align: center;
  margin-bottom: var(--spacing-medium);
}

#chapter-categories .chapter-title {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}

#chapter-categories .chapter-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

#chapter-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

#chapter-categories .category-card {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(107, 33, 168, 0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

#chapter-categories .category-card:hover {
  background: #f8f9fa;
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#chapter-categories .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.1), rgba(190, 24, 93, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-smooth);
}

#chapter-categories .category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

#chapter-categories .category-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.4s var(--ease-smooth);
}

#chapter-categories .category-card:hover .category-icon i {
  color: #ffffff;
}

#chapter-categories .category-title {
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  transition: color 0.4s var(--ease-smooth);
}

#chapter-categories .category-card:hover .category-title {
  color: var(--primary-color);
}

#chapter-categories .category-description {
  color: #64748b;
  font-size: 0.9375rem;
  transition: color 0.4s var(--ease-smooth);
}

#chapter-categories .category-card:hover .category-description {
  color: #475569;
}

/* ================================================================================================================================================================================ 
    volunteer_values.css
   ================================================================================================================================================================================*/

   .volunteer-values-section {
  background: linear-gradient(to bottom right, #8723b5, #b44de7);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.volunteer-values-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.volunteer-values-section .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  background: #fff;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
}

.value-card h3 {
  color: #8723b5;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button {
  margin-top: 50px;
}

.cta-btn {
  background-color: #fff;
  color: #8723b5;
  font-weight: bold;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-btn:hover {
  background-color: #ececec;
  color: #6d1f92;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================================================================================================================================ 
    why_volunteer.css
   ================================================================================================================================================================================*/

   
#why-volunteer-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#why-volunteer-section::before,
#why-volunteer-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #6a0dad, #ff4eb8, #6a0dad);
  background-size: 200% 100%;
  animation: slide-gradient 6s linear infinite;
  z-index: 2;
}

#why-volunteer-section::before {
  top: 0;
  animation-direction: normal;
  box-shadow: 0 2px 10px rgba(106, 13, 173, 0.25);
}

#why-volunteer-section::after {
  bottom: 0;
  animation-direction: reverse;
  box-shadow: 0 -2px 10px rgba(255, 78, 184, 0.25);
}

@keyframes slide-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  #why-volunteer-section::before,
  #why-volunteer-section::after {
    animation: none;
    background-position: 50% 50%;
  }
}

.volunteer-card-img {
  position: relative;
  overflow: visible;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 200px 20px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.volunteer-card-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

.card-bg-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}

.volunteer-card-img .card-body {
  position: relative;
  z-index: 2;
  padding: 16px 20px 8px;
}

.volunteer-card-img h4,
.volunteer-card-img p {
  margin-bottom: 0;
}

.volunteer-card-img h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
}

.volunteer-card-img p {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: #f5f5f5;
}

#why-volunteer-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #be185d !important;
  margin-bottom: 3rem;
}

#why-volunteer-section .row {
  margin-top: 3rem;
}

#why-volunteer-section > .container > h2 {
  margin-bottom: 6rem !important;
}
/*--Added Styles by Sohail---*/

/*---Media Queries----*/
@media(max-width: 1200px){
  .volunteer-card-img{
    padding: 170px 15px 20px 15px;
  }
  .card-bg-img{
    width: 100%;
    top:-25px;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  .volunteer-card-img{
    padding: 120px 15px 20px 15px;
  }
  .card-bg-img{
    width: 100%;
    top:-25px;
  }
  .volunteer-card-img .card-body{
    padding:0 0 0.5rem  0 !important;
  }
}
@media(max-width: 767px){
  .volunteer-card-img{
    padding: 280px 15px 20px 15px;
  }
  .volunteer-card-img .card-body{
    padding:1.5rem  !important;
  }
  .card-bg-img{
    width: 100%;
    top:-25px;
  }
}

/* ================================================================================================================================================================================ 
    featured.css
   ================================================================================================================================================================================*/

#featured-section{
   
}

.featured-job-card{
    background-color: var(--light-color);
    border-radius: 10px;
}
.featured-job-card h5{
    font-weight: 700;
    margin: 10px 0;
}
.featured-job-card span{
    font-size: 13px;
    margin: 5px 0;
    font-weight: 600;
}
.featured-job-card ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 12px;
  margin-right: 8px;
}

.featured-job-card .btn-primary{
    width: auto;
    display: inline-block;
}
/*------Process section styles---*/
#process-section{
    background-color: var(--light-color);
}

.process-list {
  list-style: none;
  position: relative;
}

.process-list li{
    font-size: 18px;
    font-weight: 600;
}
.process-list li i{
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    float: left;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    margin: 0 10px 0 0;
}
.process-list.list-left li i{
  background-color: var(--primary-color);
    color: var(--light-color);
}
.process-list.list-right li i{
  background-color: var(--secondary-color);
    color: var(--light-color);
}

/* Feature cards inside process section */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #7e22ce, #a855f7); /* purple gradient */
  color: #fff;
}

.feature-card i {
  font-size: 2rem;
  color: #7e22ce; /* main purple */
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-card:hover i {
  color: #fff;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c2c2c;
  transition: color 0.3s ease;
}

.feature-card:hover h5 {
  color: #fff;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #f3e8ff; /* light lavender for readability */
}





@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;      /* removes the 800px cap */
    padding: 0 10px;      /* smaller side padding = visually wider */
  }

  .cinematic-search {
    width: 100%;
    max-width: none;
    padding: 0;           /* so you're not double-padding */
  }

  .search-glass-card {
    width: 100%;
  }
}




