/*.hero-bg {
  position: relative;
  background-image: url('../img/hero-bg-light.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}

.hero-bg > * {
  position: relative;
  z-index: 1;
}*/

.featured-services .service-item .icon {
    border-radius: 5px;
}

.testimonials .testimonial-item {
    min-height: 220px;
}

.client-logo {
    margin-top: 0 !important;
}

/* Hero layout tweaks for mobile */
#hero.hero-bg {
    padding: 60px 0;
}

#hero .hero-content {
    min-height: 40vh;
    padding: 0 12px;
}

#hero .hero-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
}

#hero .hero-subtitle {
    max-width: 720px;
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.6;
}

/* Trust row: ensure readable on dark hero */
#hero .hero-trust-text {
    color: #000;
    text-align: center;
}

/* Space between logos and button */
#hero .hero-cta {
    margin-top: 22px;
}

/* Optional: tighten spacing on smaller screens */
@media (max-width: 576px) {
    #hero.hero-bg {
        padding: 44px 0;
    }

    #hero .hero-content {
        min-height: auto;
    }

    #hero .hero-subtitle br {
        display: none;
    }
}


/* Our Work Section */
.our-work {
    padding: 80px 0;
}

.work-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.work-image {
    height: 420px; /* visible preview height */
    overflow: hidden;
    position: relative;
}

.work-image img {
    width: 100%;
    transition: transform 6s ease;
}

/* Scroll effect on hover */
.work-card:hover .work-image img {
    transform: translateY(-60%);
}

/* Responsive tweak */
@media (max-width: 768px) {
    .work-image {
        height: 360px;
    }
}


.pricing h4 {
    font-size: 28px;
    margin-top: 12px;
}

/* Default (desktop) */
.main {
    margin-top: 60px;
}

/* Mobile */
@media (max-width: 576px) {
    .main {
        margin-top: 20px;
    }
}

.page-cta {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.page-cta:hover, .page-cta:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
