body {
  overflow-x: hidden;
  padding-top: 80px;
}

.container {
  padding: 40px 20px;
  background: none;
  border-radius: 15px;
}
.sub-title {
  font-size: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #03c4fe, #f64eb7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
}

.button-link {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  padding: 0.8em 1.3em 0.8em 0.9em;
  color: white;
  text-decoration: none;
  background: linear-gradient(50deg, #1900f5, #7c09a3, #a40675);
  border: none;
  border-radius: 16px;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
}

.button-link svg {
  margin-right: 8px;
  transform: rotate(30deg);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.button-link:hover svg {
  transform: translateX(5px) rotate(90deg);
}

.button-link:hover {
  transform: translateX(2px);
}

.img-fluid {
  max-width: 100%; /* Changed from 48% to 100% for responsiveness */
  height: auto;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: float 5s ease-in-out infinite;
  display: block;
}

.img-fluid:hover {
  transform: scale(1.05);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Gradient Wrapper */
.img-wrapper {
  position: relative;
  display: inline-block;
  padding: 5px;
  border-radius: 25px;
  background: linear-gradient(135deg, #03c4fe, #f64eb7);
  overflow: hidden;
}

.img-wrapper .img-fluid {
  border-radius: 50% 50% 0 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .home-banner .headline-title div {
    font-size: 2rem;
  }

  .img-fluid {
    max-width: 100%;
  }

  .d-flex.flex-wrap.justify-content-end {
    justify-content: center !important;
  }
}
