
/* ===== STYLE 7 ===== */
.style-7{
  position:relative;
  width:100%;
  margin:80px auto;
}

.style-7 .feature-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.style-7 .feature-content{
  position:absolute;
  top:10%;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  padding:30px;
  width:320px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:0.3s;
}
.style-7 .feature-content{
  left:10%;
  right:auto;
}

.style-7.reverse .feature-content{
  left:auto;
  right:10%;
}

.style-7 button{
  margin-top:15px;
  padding:10px 20px;
  border:none;
  border-radius:20px;
  background:linear-gradient(45deg,#6c5ce7,#a29bfe);
  color:white;
  cursor:pointer;
}

@media(max-width:992px){
  .style-7{ width:90%; }
  .style-7 .feature-content{ width:280px; padding:20px; }
}
@media(max-width:768px){
  .style-7 .feature-content{ position:static; transform:none; width:auto; margin-top:-40px; }
  .style-7 .feature-content:hover{ transform:none; }
}

@media(max-width:480px){
  .style-7 .feature-content{ padding:15px; }
  .style-7 h2{ font-size:18px; }
  .style-7 p{ font-size:14px; }
  .style-7 button{ padding:8px 16px; font-size:14px; }
}