.service-block-three .inner-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 40px 30px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-block-three .inner-box{
    background-size: cover ;
}

/* BACKGROUND IMAGE */
.service-block-three .inner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* DARK OVERLAY */
.service-block-three .inner-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

.services-img-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.services-img-container figure{
    flex-basis: calc(50% - 20px);
    border-radius: 20px;
    overflow: hidden;
}

/* faq section */

:root{
  --theme-color: #F91B02;
  --secondary-color: #000000;
  --text-color: #444444;
  --title-color: #010101;
  --title-font: 'Fira Sans', sans-serif;
  --text-font: 'Barlow', sans-serif;
}

/* SECTION */
.faq-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* ACCORDION */
.accordion-box {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-block {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

/* BUTTON */
.acc-btn {
  position: relative;
  padding: 20px 60px 20px 20px;
  cursor: pointer;
  font-family: var(--title-font);
  font-size: 18px;
  color: var(--title-color);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.acc-btn:hover {
  color: var(--theme-color);
}

/* ACTIVE */
.acc-btn.active {
  color: #fff;
  background: var(--theme-color);
}

/* ICON */
.icon-outer {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLUS ICON */
.icon-outer::before,
.icon-outer::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: 0.3s;
}

.icon-outer::before {
  width: 12px;
  height: 2px;
}

.icon-outer::after {
  width: 2px;
  height: 12px;
}

/* ACTIVE ICON */
.acc-btn.active .icon-outer::after {
  transform: scaleY(0);
}

/* CONTENT */
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
  font-family: var(--text-font);
  color: var(--text-color);
}

/* OPEN CONTENT */
.acc-content.current {
  padding: 20px;
  max-height: 300px;
}

/* TEXT ANIMATION */
.acc-content p {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* ACTIVE TEXT */
.acc-content.current p {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON CONTAINER */
.btn-container-projects {
    margin-top: 25px;
}

/* BUTTON */
.project-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--theme-color);
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

/* INNER SPAN (ANIMATION LAYER) */
.project-btn span {
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

/* TEXT ABOVE ANIMATION */
.project-btn {
    z-index: 1;
}

.project-btn::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.project-btn:hover span {
    transform: scaleX(1);
    transform-origin: left;
    padding-left: 55px;
    padding-top: 15px;
}

.project-btn:hover {
    color: #fff;
}

.project-btn:hover::after {
    transform: translateX(6px);
}

/* TEXT FIX */
.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ELEVATION */
.project-btn:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* CLICK FEEL */
.project-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ENTRY ANIMATION */
.project-btn {
    animation: fadeUpBtn 1s ease;
}

@keyframes fadeUpBtn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}