
/* Menu end */



/* Header and hero*/

/* Hero Section Styling */
/* WRAPPER: same background for menu + hero */
    .hero-wrapper {
      position: relative;
      color: #fff;
      /* 👇 use your banner image here */
      background-image: url("/assets/img/Printers-banner-bg.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #14553E;
    }

    /* Dark gradient overlay for better text contrast */
    /* .hero-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, #1fd0a0 0, #003b32 55%, #001d20 100%);
      mix-blend-mode: multiply;
      opacity: 0.9;
    } */


.gradient-btn {
    background: linear-gradient(90deg, rgb(22 163 74), #059669);
    color: #fff !important;
    padding: 20px 40px !important;
    border-radius: 12px;
    font-weight: 700 !important;
    text-decoration: none;
    transform: scale(1);
}

.gradient-btn:not(:hover) {
    animation: zoomOut 0.6s forwards;
}
.gradient-btn:hover {
  animation: zoomIn 0.6s forwards;
  box-shadow: 0 25px 50px -12px rgb(34 197 94 / 25%);
}
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
   
    /* --- SIMPLE HERO STYLES (minimal) --- */
.simple-hero {
  color: #e1fbe8;
  position: relative;
  overflow: hidden;
}

/* faint decorative mark behind the title */
.simple-hero .hero-backmark {
    position: absolute;
    left: 32%;
    top: -15%;
    transform: translate(-50%, -30%);
    width: 260px;
    max-width: 35%;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* title */
.simple-hero .hero-title {
  position: relative;
  z-index: 2;
  font-family: "CooperBTLight", serif; /* optional - keep if available */
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #c8f6d0;         /* pale green text like reference */
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.12);
}

/* CTA button */
.simple-hero .hero-cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(90deg,#15a34a,#059669);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2,86,36,0.18);
  border: none;
}

/* small screens: slightly smaller backmark and title spacing */
@media (max-width: 576px) {
  .simple-hero .hero-backmark {
    width: 180px;
    top: 28%;
  }
  .simple-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}






/* EDI SECTION */
.edi-section {
  padding: 70px 0;
  background: #fff;
}

/* Title */
.edi-title {
 

  max-width: 1000px;
  margin: 0 auto 30px;
  font-weight: 500;
}

/* Divider line */
.edi-divider {
  max-width: 1100px;
  margin: 0 auto 50px;
  border-top: 1px solid #cfcfcf;
}

/* Content */
.edi-content p {
  
 
  color: #000;
  margin-bottom: 16px;
}

/* Image */
.edi-image {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .edi-title {
    font-size: 22px;
  }

  .edi-content {
    text-align: center;
  }
}




/* ============== ACCOUNTING LOGO SLIDER ============== */

.accounting-logos-section {
  background: linear-gradient(180deg, #ddf7e5 0%, #b5e3b7 100%);
}

.accounting-logos-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: "CooperBTLight", serif;
}

/* Slider container */
.logo-slider-wrapper {
  max-width: 100%;
}

/* Viewport (only 5 logos visible on desktop) */
.logo-slider-viewport {
  overflow: hidden;
}

/* Track */
.logo-slider-track {
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Each slide: 5 at a time on desktop -> 20% width */
.logo-slide {
  flex: 0 0 20%;
  padding: 0.5rem 1rem;
}

.logo-slide img {
  max-height: 70px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slide img:hover {
  transform: translateY(-4px) scale(1.03);
  opacity: 0.95;
}

/* Arrows */
.logo-slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.logo-slider-arrow span {
  font-size: 1.6rem;
  line-height: 1;
  color: #18472b;
}

.logo-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.logo-slider-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

/* ---------- Responsive: show fewer logos on smaller screens ---------- */

/* Tablet: 3 logos */
@media (max-width: 991.98px) {
  .logo-slide {
    flex: 0 0 33.3333%;
  }
}

/* Mobile: 2 logos */
@media (max-width: 575.98px) {
  .logo-slide {
    flex: 0 0 50%;
  }

  .logo-slider-arrow {
    width: 34px;
    height: 34px;
  }

  .logo-slider-arrow span {
    font-size: 1.3rem;
  }
}




    


      
