.services-item {
  display: flex;
  flex-direction: column;
  /* fix the height you want: */
  height: 470px;          /* ← set your desired height here */
  /* or use min/max if you want them to grow/shrink a bit: */
  /* min-height: 350px;
     max-height: 470px; */
}

.services-content .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcrumb__area breadcrumb__bg  {
    background-image: url('https://actonflow.kz/storage/backgrounds/footer-bg.png');
}
.breadcrumb__bg {
    background-image: url('https://actonflow.kz/storage/backgrounds/footer-bg.png');
}
.services-content .icon {
    display: none;
}

.services-bg {
    padding: 10px 0 10px 0;
}

.ck-content{
    padding: 70px 0 50px 0;
}

.pagemenu ul {
    display: flex;
    border-bottom: 1px solid rgb(66 75 90 / 30%);
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pagemenu ul li {
    font-weight: 600;
    font-size: 18px;
    font-family: "open-sans", sans-serif;
    line-height: 1.2;
    padding-bottom: 15px;
    position: relative;
}

.pagemenu ul li:not(:last-child) {
    margin-right: 45px;
}

.pagemenu ul li.active {
    font-weight: 700;
}

.pagemenu ul li.active:before {
    width: 100%;
}

.pagemenu ul li:before {
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    height: 3px;
    background: #0a2a50;
    transition: 0.5s;
    bottom: -2px;
}

.pagemenu ul li:hover:before {
      width: 100%;
    }

   .pagemenu ul li:hover a {
      color: #297cc0;
    }

    .pagemenu ul li.active a {
      color: #297cc0;
    }
    
    .pagemenu ul li a {
    color: #0a2a50;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer; /* 👈 Makes the cursor a hand on hover */
}
    
.pagemenu ul li a::after {
    display: inline;
    margin-left: 8px; /* Adjust spacing */
    font-size: 16px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.pagemenu ul li#active-01 {
    padding-top: 10px;
}
.pagemenu ul li#active-02 {
    padding-top: 10px;
}


/* fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* pulse */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.btn:after {
     display: none;
}
.banner {
  background: #e6f7ff;
  animation: fadeIn 1s ease;
  padding: 12px 20px;
  border-radius: 6px;
  width: 100%;        /* fill available space up to… */
  max-width: 800px;   /* …but never exceed 800px */
  margin: 0 auto;   
}

/* Banner wrapper */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* Push text left, buttons right */
  flex-wrap: wrap;                 /* Allows wrapping on very small screens */
  gap: 12px;  
  width: 100% !important;
}

/* Group the two buttons horizontally */
.button-group {
  display: flex;
  gap: 20px;        /* space between the two buttons */
}

/* Optional: ensure the button-group doesn’t wrap */
.button-group {
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  font-size: 1rem;
  color: #003366;
}

.btn {
  
  align-items: center;
  gap: 10px;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background 0.2s, box-shadow 0.2s;
  width: auto;
    height: 40px;
    align-items: center;
}



.more-btn {
  background: #297cc0;
}
.more-btn:hover {
  background: #297cc0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.more-btn .arrow {
  font-size: 1.2em;
}


.btn.with-icon::after {
  display: none;
}





@media (max-width: 991.98px) {

.banner-content {
    flex-direction: column;       /* move text and buttons into a column */
    align-items: flex-start;      /* keep left alignment */
  }

  .button-group {
    flex-direction: column;       /* stack buttons one on top of the other */
    width: 100%;                  /* allow them to fill container */
    gap: 12px;                    /* spacing between buttons */
  }

  .btn {
    width: 100%;                  /* full-width buttons */
    justify-content: center;      /* center icon+text */
  }

	.services-bg {
    padding: 0;
	}
  .ck-content {
    padding: 70px 20px 50px 20px;
	}
  .pagemenu ul {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    padding: 0;
    gap: 10px;
  }

  .pagemenu ul li {
    margin: 0;
    width: 100%;
  }

  .pagemenu ul li a {
    display: block;
    width: 100%;
    padding: 10px 45px 10px 25px; /* 👈 Extra space on the right for arrow */
    background-color: #f2f6fa;
    color: #0a2a50;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative; /* 👈 Needed for the arrow */
  }

  .pagemenu ul li a::after {
    content: '→'; /* Right arrow */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #297cc0;
    transition: color 0.3s ease;
  }

  .pagemenu ul li a:hover {
    background-color: #297cc0;
    color: #fff;
  }

  .pagemenu ul li a:hover::after,
  .pagemenu ul li.active a::after {
    color: #fff;
  }

  .pagemenu ul li.active a {
    background-color: #297cc0;
    color: #fff;
  }

  .pagemenu ul li::before {
    display: none;
  }
}