/* Satoshi Regular */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Satoshi Bold */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/* ---------------- Hero Section ----------------*/
.growth-hero{
	padding: 0px 20px;
}
.grad-bg {
    background-image: url(https://medspamarketingportal.com/wp-content/uploads/2026/04/grad-bg-1.jpg);
    background-position: center center;
    background-size: cover;
    padding: 150px 15px 100px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 5px 5px 0px 0px #A3A3A3;
    border: 1px solid #A3A3A3;
}
.heading-1{
	margin-top: 0px !important;
}
.heading-1 {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 65px;
    line-height: 70px;
    letter-spacing: -0.04em;
    color: #000000;
}
.growth-hero .lead{
	font-family: 'Satoshi', sans-serif;
	font-weight: 400;
	font-size: 35px;
	line-height: 40px;
	margin: 40px 0px 40px;
}

a.my-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #f59e2e;
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover effect */
a.my-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(245, 158, 46, 0.4);
}

/* Shine animation */
a.my-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

a.my-btn:hover::before {
  left: 130%;
}




.animate-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vector {
  position: absolute;
  animation: floatRotate 12s linear infinite;  
	z-index: 1;
}

.vector-1 {
	top: 80px;
	left: -150px;
	animation-duration: 14s;
	z-index: 546;
	width: 350px;
}

.vector-2 {
    bottom: 50px;
    left: -90px;
    animation-duration: 18s;
    width: 240px;
}

.vector-3 {
    bottom: 60px;
    right: -70px;
    animation-duration: 16s;
    width: 220px;
}

@keyframes floatRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(90deg);
  }
  50% {
    transform: translate(0px, -30px) rotate(180deg);
  }
  75% {
    transform: translate(-10px, -15px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}








@media(max-width: 990px){
	.grad-bg {
    padding: 90px 15px 50px;
	}
	.heading-1 {
    font-size: 45px;
    line-height: 55px;
	}
	.growth-hero .lead {
    font-size: 24px;
    line-height: 28px;
    margin: 20px 0px 20px;
	}
}

@media(max-width: 767px){
	.heading-1 {
    font-size: 30px;
    line-height: 35px;
	}
	.growth-hero .lead {
    font-size: 18px;
    line-height: 22px;
	}
}