/*.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: 0;
    padding-top: 60px;
}

#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;
        padding-bottom: 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%);
}

/* HERO SECTION */

#hero {
    padding: 60px 0;
    padding-bottom: 0;
}

#hero h1 {
    font-size: 36px;
    line-height: 1.2;
}

#hero p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    #hero {
        padding-top: 60px;
        padding-bottom: 0;
        text-align: center;
    }
}



/***images ****/
/* Image wrapper */

@media (max-width: 768px) {

    #about .col-lg-6.text-center {
        margin-bottom: 35px;
    }

}


.image-card {
    position: relative;
    display: inline-block;
    padding: 10px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Image itself */
.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slight offset for alternating visual interest */
.offset-card {
    transform: translateY(20px);
}

/* Mobile reset */
@media (max-width: 768px) {
    .offset-card {
        transform: none;
    }
}


/*** pricing buttons */
.pricing-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-item ul {
    flex-grow: 1;
}

/* Button sits at bottom */
.pricing-item .cta-btn {
    margin-top: auto;
}


.cta-btn-2 {
  color: var(--contrast-color);
  background: var(--accent-color);

  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;

  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;

  transition: 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Hover */
.cta-btn-2:hover {
  background: color-mix(in srgb, var(--accent-color), white 20%);
  color: var(--contrast-color);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}




/* SHOP CARD */
.shop-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.shop-image {
  overflow: hidden;
  border-radius: 12px;
}

.shop-image img {
  width: 100%;
  height: auto;
  transition: 0.4s ease;
}

.shop-item:hover .shop-image img {
  transform: scale(1.05);
}

/* CONTENT */
.shop-content {
  text-align: center;
  padding: 10px 5px;
}

/* TITLE */
.shop-content h5 {
  font-weight: 600;
  margin: 10px 0 5px;
}

/* PRICE */
.shop-price {
  font-size: 18px;
  font-weight: 600;
  color: #17403c; /* your brand color */
  margin-bottom: 10px;
}

/* BUTTON */
.shop-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;

  background: #17403c;
  color: #fff;

  transition: 0.3s ease;
}

.shop-btn:hover {
  background: #0f2f2c;
  color: #fff;
}