@charset "UTF-8";
/*!
* Protech Consulting - Custom Styles
*/

/* HTML & Body */
body,
html {
  height: 100%;
}
.hero-img {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* Custom Gradient Background */
.bg-gradient-primary-to-secondary {
  background: #2596be;
  background: linear-gradient(135deg, #184f92 0%, #7ab52b 100%);
}

/* Text Gradient Effect */
.text-gradient {
  background: -webkit-linear-gradient(315deg, #184f92 0%, #7ab52b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rounded Corners */
.rounded-4 {
  border-radius: 1rem !important;
}

/* Feature Icon Container */
.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}
