.dagsal-showcase {
  background: #02132d;
  padding: 100px 0;
  overflow: hidden;
}

.dagsal-showcase .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.showcase-content {
  flex: 1;
}

.section-tag {
  display: inline-block;
  color: #4ea1ff;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.showcase-content h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
}

.showcase-content p {
  color: #b8c3d9;
  font-size: 18px;
  line-height: 1.8;
}

.feature-list {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.feature-item span {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  font-size: 24px;
}

.feature-item h4 {
  color: #fff;
  margin-bottom: 6px;
}

.feature-item p {
  margin: 0;
  font-size: 15px;
}

.explore-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  box-shadow: 0 15px 35px rgba(37,99,235,.35);
  transition: .3s;
}

.explore-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.showcase-image {
  flex: 1;
  text-align: center;
}

.showcase-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,102,255,.25);
  transition: .4s;
}

.showcase-image img:hover {
  transform: translateY(-10px);
}

/* Mobile */

@media (max-width:991px) {
  .dagsal-showcase .container {
    flex-direction: column;
  }
}

@media (max-width:991px) {
  .showcase-content h2 {
    font-size: 38px;
  }
}

@media (max-width:991px) {
  .showcase-image img {
    max-width: 100%;
  }
}

