
/* Slide 2 */
.slide2-content {
  display: flex;
  background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;

  width: 1600px;
  height: 950px;
}

@media (max-width: 1800px) {
  .slide2-content {
    height: 100%;
    width: 100%;
  }

}

@media (max-height: 700px) {
  .slide2-content {
    height: unset;
  }

}

.slide2-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(239, 68, 68, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(245, 101, 101, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

.slide-2-problem-left {
  width: 60%;
  margin-left: 30px;
  padding: 60px 20px 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.slide-2-problem-left h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
  font-weight: 700;
}

.slide-2-problem-left h2 span {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.slide-2-problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.slide-2-problem-stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.slide-2-problem-stat img {
  width: 60px;
  height: 60px;
}

.slide-2-problem-stat h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 5px;
}

.slide-2-problem-stat p {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.problem-highlight-2 {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  height: 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.slide-2-problem-left img {
  background: #dc2626;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 15px;
  top: -35px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.slide-2-problem-left p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #374151;
  font-weight: 500;
}

.slide-2-problem-left p strong {
  font-weight: 700;
  color: #1f2937;
}

.slide-2-bottom-bar {
  height: 25px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 15px;
  margin: 0 30px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.slide-2-problem-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.slide-2-problem-right img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slide-2-img {
 display: none; 
}


@media (max-height: 900px) {
  .slide-2-img {
    display: none !important;
  }
}









/* Desktop Small (1020px - 1440px) */
@media (min-width: 1020px) and (max-width: 1440px) {

  .slide-2 {
    padding: 0;
  }
  
  .slide2-content {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .slide-2-problem-left {
    width: 100%;
    display: block;
    padding: 0;
    margin: auto;
  }

  

  .slide-2-problem-left h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }

  .slide-2-problem-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-2-problem-stat {
    flex: 1;
    padding: 20px 120px;
    max-width: 250px;
  }

  .slide-2-problem-stat img {
    width: 55px;
    height: 55px;
  }

  .slide-2-problem-stat h3 {
    font-size: 1.6rem;
  }

  .slide-2-problem-stat p {
    font-size: 0.85rem;
  }

  .slide-2-bottom-bar {
      margin: auto;
      height: 20px;
      width: 50%;
      margin-bottom: 40px;
  }

  .slide-2-problem-left p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .slide-2-problem-right {
    display: none;
  }

  .slide-2-problem-right img {
    width: 100%;
    max-width: 500px;
    height: 280px;
    border-radius: 18px;
  }

  .slide-2-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    margin: auto;
  }


  .slide-2-img img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
}




/* -------------------------------------------------------------------------------  */






/* Desktop Small (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1020px) {

  .slide-2 {
    padding: 0;
  }

  
  .slide2-content {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .slide-2-problem-left {
    width: 100%;
    display: block;
    padding: 0;
    margin: auto;
  }



  .slide-2-problem-left h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .slide-2-problem-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-2-problem-stat {
    flex: 1;
    padding: 20px 100px;
    max-width: 250px;
  }

  .slide-2-problem-stat img {
    width: 45px;
    height: 45px;
  }

  .slide-2-problem-stat h3 {
    font-size: 1.4rem;
  }

  .slide-2-problem-stat p {
    font-size: 0.85rem;
  }

  .slide-2-bottom-bar {
      margin: auto;
      height: 16px;
      width: 40%;
      margin-bottom: 40px;
  }

  .slide-2-problem-left p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .slide-2-problem-right {
    display: none;
  }

  .slide-2-problem-right img {
    width: 100%;
    max-width: 500px;
    height: 280px;
    border-radius: 18px;
  }
}







@media (max-width: 767px) {
  .slide-2 {
    padding: 0;
  }


  .slide2-content {
    flex-direction: column;
    padding: 40px 0;
    gap: 40px 0;
    
  }

  .slide-2-problem-left {
    width: 90%;
    display: block;
    padding: 0;
    margin: auto;
  }



  .slide-2-problem-left h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .slide-2-problem-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-2-problem-stat {
    flex: 1;
    padding: 20px 30px;
    max-width: 250px;
  }

  .slide-2-problem-stat img {
    width: 45px;
    height: 45px;
  }

  .slide-2-problem-stat h3 {
    font-size: 1.4rem;
  }

  .slide-2-problem-stat p {
    font-size: 0.85rem;
  }

  .slide-2-bottom-bar {
      margin: auto;
      height: 14px;
      width: 70%;
      margin-bottom: 40px;
  }

  .slide-2-problem-left p {
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .slide-2-problem-right {
    display: none;
  }

  .slide-2-problem-right img {
    width: 100%;
    max-width: 500px;
    height: 280px;
    border-radius: 18px;
  }
}



/* Mobile Small (375px - 430px) */
@media (max-height: 700px) {
  .slide2-content {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}