

/* 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/Erp-Accounting-Integration-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;
   padding:  95px 0 60px 0;
}

/* 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;
  }
}



/* DENALI SECTION */
.denali-section {
  background: #fff;
}

.section-title {
  font-family: "CooperBTLight", serif;
  font-size: 34px;
  margin-bottom: 12px;
  text-align: left !important;
}

.section-desc {
 
  line-height: 30px;
  max-width: 900px;
}

/* Main Images */
/* .feature-main-img {
  border-radius: 10px;
  border: 3px solid #0f5132;
} */

/* Right-side feature points */
.feature-point {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
}

.feature-point img {
  width: 40px;
  height: 40px;
}

.feature-point h5 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature-point p {
  
  line-height: 26px;
}

/* Expect grid */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expect-card {
  border: 1px solid #0f5132;
  border-radius: 10px;
  padding: 18px;
}

.expect-card img {
  width: 36px;
  margin-bottom: 10px;
}

.expect-card h6 {
  
  margin-bottom: 6px;
}

.expect-card p {

  line-height: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  .expect-grid {
    grid-template-columns: 1fr;
  }
}




/* OUR INTEGRATIONS SECTION */
.our-integrations-section {
  background: linear-gradient(to bottom, #ddf7e5 0%, #b5e3b7 100%);
  padding: 70px 20px;
}

.our-integrations-title {
  font-family: "CooperBTLight", serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: #000;
}

.integrations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: nowrap;
}

.integrations-logos img {
  max-height: 60px;
  width: auto;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .integrations-logos {
    gap: 25px;
  }

  .integrations-logos img {
    max-height: 45px;
  }
}

    


      
