/* =========================
   SECTION BASE
========================= */
.dr1057heroservices {
  position: relative;
  padding: 100px 6%;
  background: radial-gradient(circle at 20% 20%, #0f172a, #020617);
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   CONTAINER
========================= */
.dr1057heroservices-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* =========================
   CONTENT
========================= */
.dr1057heroservices-content {
  flex: 1;
  max-width: 600px;
  animation: dr1057fadeUp 1s ease forwards;
}

.dr1057heroservices-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.dr1057heroservices-content h1 span {
  background: linear-gradient(90deg, #06b6d4, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dr1057heroservices-content p {
  font-size: 1.1rem;
  color: #cbd5f5;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */
.dr1057heroservices-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dr1057-btn {
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* PRIMARY */
.dr1057-btn.primary {
  background: linear-gradient(135deg, #06b6d4, #22c55e);
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

.dr1057-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
}

/* SECONDARY */
.dr1057-btn.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}

.dr1057-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================
   IMAGE SIDE
========================= */
.dr1057heroservices-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE BOX (NO CROPPING SAFE) */
.dr1057heroservices-imgbox {
  position: relative;
  width: 420px;
  aspect-ratio: 1 / 1; /* keeps shape responsive */
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #020617, #0f172a);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    inset 0 0 30px rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.4s ease;
}

/* ✅ IMAGE FIXED (NO CROPPING) */
.dr1057heroservices-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 FULL IMAGE VISIBLE */
  object-position: center;
  z-index: 2;
}

/* SOFT GLOW BACKGROUND FOR EMPTY SPACE */
.dr1057heroservices-imgbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(34,211,238,0.2), transparent 70%);
  z-index: 1;
}

/* GLOSS EFFECT */
.dr1057heroservices-imgbox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25),
    transparent 40%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
}

/* HOVER 3D */
.dr1057heroservices-imgbox:hover {
  transform: scale(1.05) rotateY(8deg) rotateX(4deg);
}

/* =========================
   GLOW BACKGROUND
========================= */
.dr1057-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.dr1057-glow.g1 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: -100px;
  left: -100px;
}

.dr1057-glow.g2 {
  width: 300px;
  height: 300px;
  background: #22c55e;
  bottom: -100px;
  right: -100px;
}

/* ================= HIGHLIGHTS ================= */
.dr1057heroservices-highlights {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 25px;
	font-size: 14px;
	color: #9ae6ff;
}

.dr1057heroservices-highlights span {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 600px) {
	.dr1057heroservices-highlights {
		font-size: 13px;
		text-align: left;
	}
}

/* =========================
   ANIMATION
========================= */
@keyframes dr1057fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .dr1057heroservices-container {
    flex-direction: column;
    text-align: center;
  }

  .dr1057heroservices-content h1 {
    font-size: 2.3rem;
  }

  .dr1057heroservices-imgbox {
    width: 300px;
  }
}

@media (max-width: 576px) {
  .dr1057heroservices {
    padding: 70px 5%;
  }

  .dr1057heroservices-content h1 {
    font-size: 2rem;
  }

  .dr1057-btn {
    width: 100%;
    text-align: center;
  }
}