.dr1057herogallery {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.dr1057herogallery-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* CONTENT */
.dr1057herogallery-content {
  flex: 1;
  color: #fff;
}

.dr1057herogallery-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.dr1057herogallery-content h1 span {
  background: linear-gradient(90deg, #00f5a0, #00d9f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dr1057herogallery-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #d0e6f0;
  line-height: 1.6;
}

/* BUTTONS */
.dr1057herogallery-buttons {
  display: flex;
  gap: 15px;
}

.dr1057herogallery-btn {
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.dr1057herogallery-btn.primary {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #000;
  box-shadow: 0 10px 25px rgba(0,255,200,0.4);
}

.dr1057herogallery-btn.secondary {
  border: 1px solid #00d9f5;
  color: #00d9f5;
}

.dr1057herogallery-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* IMAGE */
.dr1057herogallery-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dr1057herogallery-imgwrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-8deg);
  transition: 0.5s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.dr1057herogallery-imgwrap img {
  width: 100%;
  display: block;
}

.dr1057herogallery-imgwrap:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* FLOATING BLOBS */
.dr1057herogallery-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.blob1 {
  width: 300px;
  height: 300px;
  background: #00f5a0;
  top: -50px;
  left: -50px;
}

.blob2 {
  width: 250px;
  height: 250px;
  background: #00d9f5;
  bottom: -80px;
  right: 0;
}

.blob3 {
  width: 200px;
  height: 200px;
  background: #ff00cc;
  top: 50%;
  left: 40%;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .dr1057herogallery-container{
    flex-direction: column;
    text-align: center;
  }
}