
/*=====================================  Slide 1 =====================================*/

}

.slide-1 h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.slide-1 p {
    font-size: 1.3rem;
    color: #475569;
    max-width: 800px;
    line-height: 1.6;
    font-weight: 400;
}







.slide1-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6eff7 0%, #c4cbc8 100%);
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  width: 1600px;
  height: 950px;
}

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

}

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

}



.slide1-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.slide1-text {
  flex: 1;
  z-index: 2;
  position: relative;
  margin: 20px;
  text-align: center;
}

.slide1-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #059669 0%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide1-subtitle {
  font-size: 1.4rem;
  color: #475569;
  margin-bottom: 40px;
  font-weight: 500;
}




/* Responsive fix for slide1-subtitle under 600px */
@media (max-width: 600px) {
  .slide1-subtitle {
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
  }

  .slide1-text {
    max-width: 400px;
  }


}

.slide1-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.slide1-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.slide1-feature img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.slide1-feature span {
  font-weight: 600;
  color: #334155;
  font-size: 1rem;
}

.slide1-image {
  flex: 0 0 400px;
  z-index: 2;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide1-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
}

.slide1-image img:hover {
  transform: scale(1.02);
}



/* Mobile Large (430px - 767px) */
/* @media (min-width: 430px) and (max-width: 767px) { */
@media (max-width: 767px) {

  
  .slide1-content {
    padding: 40px 0;
    gap: 0;
  }

  .slide1-text {
    margin: 15px;
    text-align: center;
  }

  .slide1-text h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .slide1-subtitle {
    font-size: 0.7rem;
    margin-bottom: 25px;
    line-height: 1.4;
    padding: 0 150x;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .slide1-features {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
  }

  .slide1-feature {
    padding: 8px 18px;
    gap: 6px;
    border-radius: 20px;
    min-width: 220px;
    justify-content: center;
  }

  .slide1-feature img {
    width: 24px;
    height: 24px;
  }

  .slide1-feature span {
    font-size: 0.9rem;
  }

  .slide1-image {
    display: none;
  }

  .slide1-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 18px;
  }
}

/* Tablet (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1020px) {
  .slide1-content {
    flex-direction: column;
    padding: 200px 25px;

    gap: 30px;
  }

  .slide1-text {
    margin: 20px;
    text-align: center;
  }

  .slide1-text h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
  }

  .slide1-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide1-features {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .slide1-feature {
    padding: 14px 20px;
    gap: 12px;
    border-radius: 22px;
    flex: 0 1 auto;
    min-width: 180px;
  }

  .slide1-feature img {
    width: 26px;
    height: 26px;
  }

  .slide1-feature span {
    font-size: 0.95rem;
  }

  .slide1-image {
    flex: none;
    width: 100%;
    margin: 20px 0;
  }

  .slide1-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
  }
}

/* Desktop Small (1020px - 1440px) */
@media (min-width: 1020px) and (max-width: 1440px) {
  .slide1-content {
    flex-direction: column;
    padding: 300px 25px;
    gap: 30px;
    height: 100%;
    width: 100%;
  }

  .slide1-text {
    margin: 20px 20px 0 20px;
    text-align: center;
  }

  .slide1-text h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
  }

  .slide1-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide1-features {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .slide1-feature {
    padding: 14px 20px;
    gap: 12px;
    border-radius: 22px;
    flex: 0 1 auto;
    min-width: 180px;
  }

  .slide1-feature img {
    width: 26px;
    height: 26px;
  }

  .slide1-feature span {
    font-size: 0.95rem;
  }

  .slide1-image {
    flex: none;
    width: 100%;
    margin: 20px 0 0 0;
  }

  .slide1-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
  }
}

/* Desktop Large (1440px - 2000px) */
@media (min-width: 1440px) and (max-width: 2000px) {
  .slide1-content {
    flex-direction: row;
    padding: 50px 40px;
    gap: 50px;
  }

  .slide1-text {
    margin: 30px;
    text-align: left;
    flex: 1;
  }

  .slide1-text h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  .slide1-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.4;
  }

  .slide1-features {
    flex-direction: row;
    gap: 30px;
    margin-top: 40px;
    justify-content: flex-start;
  }

  .slide1-feature {
    padding: 15px 20px;
    gap: 12px;
    border-radius: 25px;
  }

  .slide1-feature img {
    width: 28px;
    height: 28px;
  }

  .slide1-feature span {
    font-size: 1rem;
  }

  .slide1-image {
    flex: 0 0 400px;
    margin: 30px;
  }

  .slide1-image img {
    width: 400px;
    height: 300px;
    border-radius: 20px;
  }
}

/* Ultra Wide (2000px+) */
@media (min-width: 2000px) {
  .slide1-content {
    flex-direction: row;
    padding: 60px 50px;
    gap: 60px;
    max-width: 1800px;
    margin: 0 auto;
  }

  .slide1-text {
    margin: 40px;
    text-align: left;
    flex: 1;
  }

  .slide1-text h1 {
    font-size: 4rem;
    margin-bottom: 35px;
    line-height: 1.2;
  }

  .slide1-subtitle {
    font-size: 1.5rem;
    margin-bottom: 45px;
    line-height: 1.4;
  }

  .slide1-features {
    flex-direction: row;
    gap: 35px;
    margin-top: 45px;
    justify-content: flex-start;
  }

  .slide1-feature {
    padding: 16px 22px;
    gap: 14px;
    border-radius: 28px;
  }

  .slide1-feature img {
    width: 32px;
    height: 32px;
  }

  .slide1-feature span {
    font-size: 1.1rem;
  }

  .slide1-image {
    flex: 0 0 450px;
    margin: 40px;
  }

  .slide1-image img {
    width: 450px;
    height: 340px;
    border-radius: 22px;
  }
}



/* Mobile Small (375px - 430px) */
/* @media (max-height: 700px) {
  .slide1-content {
    padding-top: 140px;
    flex-direction: column;
    gap: 20px;
  }

  .slide1-text {
    margin: 10px;
    text-align: center;
  }

  .slide1-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.1;
  }

  .slide1-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .slide1-features {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
  }

  .slide1-feature {
    padding: 10px 15px;
    gap: 8px;
    border-radius: 15px;
    min-width: 200px;
    justify-content: center;
  }

  .slide1-feature img {
    width: 20px;
    height: 20px;
  }

  .slide1-feature span {
    font-size: 0.8rem;
  }

  .slide1-image {
    flex: none;
    width: 100%;
    margin: 10px 0;
  }

  .slide1-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
  }
}
 */



/* Mobile Small (375px - 430px) */
@media (max-width: 650px) {
  .slide1-content {
    min-height: 100vh;
    height: auto;
  }
}