/*
Custom Css
*/
.who-card {
background: #fff;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.who-card:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.who-card img {
transition: transform 0.3s ease;
}
.who-card:hover img {
transform: rotate(-5deg) scale(1.1);
}

.solution-card, .who-card, .workshop-card, .testimonial-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .solution-card:hover, .who-card:hover, .workshop-card:hover, .testimonial-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .solution-card img, .who-card img, .workshop-card img, .testimonial-card img {
    transition: transform 0.3s ease;
  }
  .solution-card:hover img, .who-card:hover img, .workshop-card:hover img, .testimonial-card:hover img {
    transform: rotate(-5deg) scale(1.1);
  }

  /* Who section background */
  .who-section {
    background: #ffffff !important;
  }

/* Issues Section */
.issues-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  position: relative;
}

.issues-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #222;
}

.issues-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.issues-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  max-width: 400px;
}

.issues-center {
  flex: 1;
  min-width: 300px; /* Ensures space for 3D model */
}

/* Issue Card Styles */
.issue-card {
  background: rgba(255, 255, 243, 0.3); /* more transparent */
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid #DDF2EB; /* unified highlight/outline */
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  backdrop-filter: blur(4px) saturate(110%);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.issue-card:nth-child(1) { animation-delay: 0.2s; }
.issue-card:nth-child(2) { animation-delay: 0.4s; }
.issue-card:nth-child(3) { animation-delay: 0.6s; }

/* Right column staggered */
.issues-column.right .issue-card:nth-child(1) { animation-delay: 0.3s; }
.issues-column.right .issue-card:nth-child(2) { animation-delay: 0.5s; }
.issues-column.right .issue-card:nth-child(3) { animation-delay: 0.7s; }

/* Hover Effect */
.issue-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  border-color: #DDF2EB; /* keep highlight on hover */
  opacity: 1; /* slightly less transparent on hover */
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 0.85; /* end slightly transparent */
    transform: translateY(0);
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .issue-card {
    animation: none;
    opacity: 0.85;
    transform: none;
    transition: opacity 0.2s ease;
  }
}

  

/* Solution Section */
.solution-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #111; /* dark background */
  color: #f9f9f9;
  position: relative;
}

.solution-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #fff;
}

.solution-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.solution-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  max-width: 400px;
}

.solution-center {
  flex: 1;
  min-width: 300px; /* Space for 3D model */
}

/* Solution Cards */
.solution-card {
  background: linear-gradient(145deg, rgba(28,28,28,0.6), rgba(42,42,42,0.6)); /* more transparent */
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid #DDF2EB; /* unified highlight/outline */
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.solution-card h3 {
  color: #ffd700; /* accent gold */
  margin-bottom: 0.5rem;
}

.solution-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-card:nth-child(1) { animation-delay: 0.2s; }
.solution-card:nth-child(2) { animation-delay: 0.4s; }
.solution-card:nth-child(3) { animation-delay: 0.6s; }

/* Right column staggered */
.solution-column.right .solution-card:nth-child(1) { animation-delay: 0.3s; }
.solution-column.right .solution-card:nth-child(2) { animation-delay: 0.5s; }
.solution-column.right .solution-card:nth-child(3) { animation-delay: 0.7s; }

/* Hover Effect */
.solution-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  border-color: #DDF2EB; /* keep highlight on hover */
}

/* Start with hidden state */
.issue-card, 
.solution-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animate in when visible */
.card-visible {
  opacity: 1;
  transform: translateY(0);
}



/* Audience Section */
.audience-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fdfdfd;
  position: relative;
}

.audience-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #222;
}

.audience-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.audience-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  max-width: 400px;
}

.audience-center {
  flex: 1;
  min-width: 300px; /* Space for 3D model */
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.audience-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.audience-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #111;
}

.audience-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Full-width closer */
.audience-bottom {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.audience-visible {
  opacity: 1;
  transform: translateY(0);
}



/* How It Works – Workshop Cards */
.workshop-card {
  background: rgba(255,255,255,0.35); /* transparent glass */
  border: 2px solid #DDF2EB; /* unified highlight */
  backdrop-filter: blur(4px) saturate(110%);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.workshop-card:hover {
  background: rgba(255,255,255,0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
