.feature-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 767px) {
  .feature-area {
    /* height: auto; */
    overflow: visible;
    padding: 20px 15px;
   
  }
}


/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-area {
    padding: 20px 40px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-area {
    padding: 0px 0px;
  }
}

/* Static Heading */
.feature-top {
  text-align: center;
  padding-bottom: 20px;
}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-top {
    padding-bottom: 30px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-top {
    padding-bottom: 40px;
  }
} 


.feature-top h1 {
  font-size: 32px;
  color: #DA2F47;
  font-family: Inter;
  font-weight: 500;
  font-family: 'inter', sans-serif;
}

.ai-highlight {
  color: #da2f47;/* Use your desired color here */
  font-weight: 600;
}

.feature-top p {
  font-size: 16px;
  color: #000000;
  /* max-width: 700px; */
  margin: auto;
  font-family: 'inter', sans-serif;
  /* margin-top: 4px; */
  font-weight: 500;
}

/* Scrollable area */
.feature-scroll {
  position: relative;
  height: calc(100% - 160px);
  overflow: hidden;
}

/* @media (max-width: 767px) { */
  /* .feature-scroll { */
    /* height: 800px; */
    /* overflow: visible; */
  /* } */
/* } */


/* Slides */
.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .feature-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-slide .info {
    order: 1;
    width: 120%;
    padding-bottom: 20px;
  }

  .feature-slide .img {
    order: 2;
    width: 50%;
  }

  .feature-slide .img img {
    width: 50%;
    /* height: auto; */
    border-radius: 10px;
  }
}



/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-slide {
    padding: 50px;
    border-radius: 16px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-slide {
    padding: 60px 80px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
  }
}

.feature-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%);
  background-color: #f7f8fc;
}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-slide.active {
    background-color: #f5f7fb; /* Slightly brighter */
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-slide.active {
 
    transform: translateY(-1%);
  }
}

.feature-slide .info {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  flex: 1;
  padding-right: 40px;
}

.feature-slide.active .info {
  opacity: 1;
  transform: translateY(0);
}

.feature-slide .info h2 {
  font-size: 24px;
  color: #2C2F5C;
  margin-bottom: 16px;
  transition-delay: 0.2s;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 10px;

}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-slide .info h2 {
    font-size: 28px;
    padding: 12px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-slide .info h2 {
    font-size: 32px;
    padding: 14px;
    margin-bottom: 20px;
  }
}




.feature-slide .info p {
  font-size: 16px;
  color: #6B7280;
  transition-delay: 0.4s;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  padding: 10px;
  line-height: 24px;

}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-slide .info p {
    font-size: 18px;
    line-height: 26px;
    padding: 12px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-slide .info p {
    font-size: 20px;
    line-height: 28px;
    padding: 14px;
  }
}

.feature-slide .img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-slide .img img {
  /* width: 90%; */
  border-radius: 12px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: 506px;
  height: 328px;
}

/* 18-inch PC (1366px to 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
  .feature-slide .img img {
    width: 560px;
    height: 360px;
    border-radius: 14px;
  }
}

/* 21-inch PC (1920px and up) */
@media (min-width: 1920px) {
  .feature-slide .img img {
    width: 620px;
    height: 400px;
    border-radius: 16px;
  }
}

.feature-slide.active .img img {
  opacity: 1;
  transform: scale(1);
}

/* Scroll dots */
.scroll-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 17px;
}

.scroll-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s;
}

.scroll-dots .dot.active {
  background: #8e44ff;
  height: 50px;
  border-radius: 10px;
  transition: 1.2s;
}

@media (max-width: 767px) {
  .scroll-dots {
    display: none !important;
  }
}
