


/* SR Promo Section */
.sr-promo {
  text-align: center;
  padding: 80px 20px;
  background: transparent; /* no background */
    font-size: 3rem; /* sets all text inside to 100px */

}

.sr-content {
  display: inline-block;
  text-align: center;
}

.sr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: -5px;
}



.sr-logo .sr-icon {
  width: 80x;
  height: 80px;
  object-fit: contain;
}

.sr-promo h2 {
  color: #fff;
  font-weight: 900;
  font-size: 3rem;         /* same as #hero h1 */
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.sr-button {
  display: inline-block;
  background: #7ef9ff;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(126, 249, 255, 0.5);
  margin-top: 40px; /* 👈 pushes the button down */

}

.sr-button:hover {
  background: #6de0e6;
  transform: translateY(-3px);
}