html {
    scroll-behavior: smooth;
}
  
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: black;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    padding: 0;
}
  
#radial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}
  
.background-glow {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;  /* smaller width */
    height: 1000px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}
  
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 1;
    position: relative;
}
  
nav a {
    margin: 0 1rem;
    font-family: 'Satoshi', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 600;
}
  
.logo {
    height: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: rgb(102, 106, 219);
}

h2 {
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 10px 0 20px;
    color: white;
}

h3 {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 20px 0;
    color: white;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    background-color: #f0f0f000;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.stats,
.stats-container {
    display: flex;
    margin: 40px 0;
}

.stats {
    justify-content: space-between;
}

.stat-item,
.stat-column {
    text-align: center;
    flex: 1;
}

.stat-item {
    font-size: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.stat-item strong {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: white;
}

.highlight-text {
    margin: 20px 0 30px; /* Changed from 40px 0 to move the button up */
}

.highlight-text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: white;
}

hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.process-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.process-table th {
    text-align: left;
    padding: 15px;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.process-table td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.process-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.process-image-placeholder {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* For actual images (replace the placeholder div with img tags later) */
.process-image {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.work-section {
    text-align: center;
    margin: 60px 0;
}

.categories {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 40px 0;
    color: white;
}

.btn-link {
    background: none;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Add to juryx.css */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 40px 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

.process-step h3 {
  color: rgb(102, 106, 219);
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin: 40px 0;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

.feature-item h3 {
  color:rgb(102, 106, 219);
  margin-top: 10px;
}

ul {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1000px;
}

.lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-lightbox:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

/* New CSS additions */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 30px 0;
}

.finding-card {
    display: flex;
    gap: 2rem;
    margin: 60px 0;
    align-items: center;
}

.finding-card.reverse {
    flex-direction: row-reverse;
}

.finding-content {
    flex: 1;
}

.finding-image {
    flex: 1;
}

.finding-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote {
    font-style: italic;
    padding: 15px;
    background: rgba(102, 106, 219, 0.1);
    border-left: 3px solid rgb(102, 106, 219);
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.user-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.user-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 106, 219, 0.5);
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    background: rgba(102, 106, 219, 0.2);
    color: rgb(102, 106, 219);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.user-needs {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.recommendation-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.rec-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgb(102, 106, 219);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.redesign-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.redesign-item {
    margin-bottom: 30px;
}

.redesign-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.redesign-item img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .finding-card, 
    .finding-card.reverse {
        flex-direction: column;
    }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Add some padding to prevent touching edges */
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 80px); /* Account for close button space */
  object-fit: contain; /* Ensures image maintains aspect ratio */
  display: block;
  margin: 0 auto;
}

.close-lightbox {
  position: absolute;
  top: -50px; /* Move further up to not overlap */
  right: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
    z-index: 1001; /* Ensure it's above the image */
}

.close-lightbox:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.lightbox-nav button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}


.lightbox-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Add cursor pointer to all lightbox-trigger images */
img[data-lightbox] {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

img[data-lightbox]:hover {
  transform: scale(1.02);
}