/* Keep it lean: let Bootstrap do the heavy lifting */

/* Brand */
.elevate-logo {
  height: 44px;
  width: auto;
}

/* Mobile first: use the phone-friendly image */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("hero_image3_cell.png");     /* <= mobile image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* On tablets/desktop, switch to the wide hero image */
@media (min-width: 768px) {
  .hero {
    background-image:
      linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
      url("hero_image3.png");        /* <= desktop image */
  }
}

/* Optional: center on mobile, right-align on lg+ */
@media (min-width: 992px) {
  .hero .text-lg-end { text-align: right !important; }
}


/* If you keep the inline phone screenshot on the right,
   this ensures it doesn't dominate on small screens */
.hero-phone {
  max-width: 420px;
}

/* Post/service images */
.service-img {
  object-fit: cover;
  max-height: 200px;
}

/* Social icons */
.social-icon {
  height: 28px;
  width: 28px;
}

/* Optional: subtle card hover */
.card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1);
}

/* Icon links */
.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  transition:background .2s, transform .2s;
}
.social-icons a:hover{ background:rgba(255,255,255,.18); transform:translateY(-1px); }
.social-icons i{ font-size:18px; color:#fff; line-height:1; }
