body {
    background-color: var(--secondary);
    color: white;
}

/* hero section */
.hero-section {
    padding-top: 200px;
}

.hero-title {
    color: var(--orange);
    font-size: var(--font-size-title-lg);
    font-weight: 700;
}

.hero-desc {
    font-size: var(--font-size-title-md);
    font-weight: 400;
}

/* who-we-are-section */
.who-we-are-title {
    color: var(--orange);
}

/* our clients */
.slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin: 50px 0;
}

.our-clients-title {
    color: white;
}

.slider {
    display: flex;
    transition: transform 0.5s;
    align-items: center;
}

.slide {
    flex: 0 0 auto;
    margin: 0 15px;
    position: relative;
    transition: transform 0.5s, opacity 0.5s;
}

.slide-img {
    display: block;
    width: 200px;
    height: 190px;
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    overflow: hidden;
    transition: transform 0.5s, filter 0.5s;
}

.slide-img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    margin: auto;
}

.slide-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(4px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.slide.active .slide-shadow {
    opacity: 1;
}

.slider-controls {
    display: flex;
    gap: 20px;
    margin-top: 100px;
}

.slider-controls button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* what we do */
/* people trust us */
.trust-us {
    position: relative;
    background-color: #0a0a0a;
}

.trust-us-title {
    margin-bottom: 25px;
    color: var(--orange);
}

.trust-us-desc {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.black-layer {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    height: 90%;
}

[dir='rtl'] .black-layer {
    transform: scaleX(-1);
}

.trust-us-slider {
    display: flex;
    position: relative;
    z-index: 1;
    background: rgb(34, 34, 34);
}

.trust-slider-content {
    width: 40%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 5px;
    inset-inline-end: 20px;
    padding: 20px;
}

.mobile-only {
    display: none;
}

.arrows.desktop-only {
    display: block;
}

@media (max-width: 1280px) {
    .mobile-only {
        display: block;
    }

    .arrows.desktop-only {
        display: none;
    }

    .swiper-pagination-bullet {
        background-color: #757b7e;
    }

    .swiper-pagination-bullet-active {
        width: 10px;
        height: 10px;
        background-color: #f9810d;
        border-radius: 50%;
        opacity: 1;
        transition: all 0.3s ease;
    }
}

.swiper-slide {
    height: auto !important;
    padding: 20px;
}

.trust-slider-img {
    padding: 20px;
    width: 100%;
    aspect-ratio: 16/9;
}

.trust-slider-text {
    font-size: var(--font-size-body-md);
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 20px;
}

.slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrows {

    display: flex;
    align-items: center;
    gap: 15px;

}

.arrows .right-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    position: absolute;
    inset-inline-end: -40px;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f9810d;
}

.arrows .left-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    position: absolute;
    inset-inline-start: -40px;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f9810d;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    top: auto;
    bottom: 20px;
    width: auto;
    height: auto;
}

.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* portfolio */
.portfolio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.see-more {
    width: 200px;
    font-size: var(--font-size-body-md);
    font-weight: 500;
    color: white;
    background-color: var(--orange);
    margin: auto;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--orange);
    transition: 0.4s;
}

.see-more:hover {
    background-color: transparent;
    color: var(--orange);
}

.portfolio-desc {
    font-size: var(--font-size-body-md);
    font-weight: 400;
}

/* portfolio grid wrapper */
.portfolio-images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

}

.portfolio-image img {
    display: block;
    width: 100%;
    filter: grayscale(100%);
    transition: 0.4s;
}

.portfolio-overlay-text {
    position: absolute;
    bottom: 15px;
    inset-inline-start: 15px;
    color: white;
    font-weight: 800;
    font-size: var(--font-size-body-lg);
    transition: 0.4s;
}

.portfolio-image:hover img {
    cursor: pointer;
    filter: grayscale(0%);
}

.portfolio-image:hover .portfolio-overlay-text {
    color: orange;
    transition: 0.4s;
}

.see-more-container {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* get a quote */
.get-a-quote {
    background-color: white;
}

.get-a-quote-content {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.get-a-quote-title {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 5px;
}

.get-a-quote-title span {
    font-weight: 400;
    color: var(--orange);
}

.get-a-quote-text {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 20px;
}

.get-a-quote-btn {
    width: 200px;
    font-size: var(--font-size-body-md);
    font-weight: 500;
    color: white;
    background-color: var(--orange);
    margin: auto;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--orange);
    transition: 0.4s;
}

.get-a-quote-btn:hover {
    background-color: white;
    color: var(--orange);
}

/* our story */
.our-story-title {
    text-align: center;
    line-height: 1.3;

}


.our-story-title span {
    font-weight: 100;
}

.story-container {
    display: flex;
    justify-content: center;
    gap: 55px;
    flex-wrap: wrap;
    margin-top: 55px;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-circle {
    width: 160px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #757b7e;
}

.story-circle::before {
    content: "";
    position: absolute;
    width: 145px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--secondary);
}

.circle-num {
    font-size: var(--font-size-title-lg);
    font-weight: 700;
    color: var(--orange);
    position: relative;
    z-index: 1;
}

.circle-text {
    margin-top: 20px;
    font-size: var(--font-size-body-lg);
    font-weight: 600;
    color: white;
}

/* mobile */
@media (max-width: 767px) {
    .main-section {
        min-height: 50vh;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-section {
        padding-top: 150px;
    }

    .hero-title {
        color: var(--orange);
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-weight: 300;
    }
    
    .orange-card-img {
        position: absolute;
        inset-inline-start: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .orange-card-content {
        position: relative;
        z-index: 2;
    }

    /* mobile slider */
    .our-clients-content {
        width: 100%;
    }

    .slide-img {
        display: block;
        width: 100px;
        height: 100px;
        background-color: white;
        border-radius: 15px;
        padding: 10px;
        overflow: hidden;
        transition: transform 0.5s, filter 0.5s;
    }

    .slider-controls {
        gap: 20px;
        margin-top: 60px;
    }

    .slider-controls img {
        width: 40px;
        height: auto;
    }

    .slider-arrow {
        width: 40px;
        height: auto;
    }

    .slide-shadow {
        /* bottom: -30px; */
        width: 140px;
        height: 8px;
    }

    /* what we do */
    .what-we-do-content {
        flex-direction: column;
        margin: auto;
        width: 100%;
    }

    .what-we-do-cards {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .orange-card {
        width: 100%;
        max-width: 100%;
    }

    .orange-card-title {
        margin-bottom: 10px;
    }

    .orange-card-desc {
        font-size: var(--font-size-body-md);
    }
    
    .orange-card-img {
        position: absolute;
        inset-inline-start: 0;
        bottom: -20px;
        z-index: 1;
    }

    .orange-card-img img {
        width: 80px;
        height: 80px;
    }
    
    .orange-card-content {
        position: relative;
        z-index: 2;
    }

    .read-more {
        font-size: var(--font-size-body-md);
    }

    /*.card {*/
    /*    width: 165px;*/
    /*    height: 165px;*/
    /*    padding: 0;*/
    /*}*/
    .card img {
        width: 70px;
        height: auto;
    }


    /* people trust us */
    .trust-us-slider {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .black-layer {
        opacity: 20%;
    }

    .trust-slider-content {
        position: static;
        width: 100%;
        padding: 0;
        margin-top: 10px;
        text-align: center;
    }

    .trust-slider-img {
        padding: 0px;
        width: 100%;
        text-align: center;
    }

    .trust-slider-text {
        margin-bottom: 20px;
        text-align: start;
    }

    .slider-bottom {
        gap: 15px;
    }

    .slider-company {
        font-size: 12px;
    }

    .date {
        font-size: 12px;
    }

    .left-arrow,
    .right-arrow {
        width: 40px;
    }

    .arrows {
        gap: 20px;
    }

    /* portfolio */
    .portfolio-head {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .portfolio-images-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .see-more {
        display: block;
        width: 145px;
        padding: 8px;
        color: white;
        background-color: var(--orange);
        text-align: center;
        border-radius: 65px;
        transition: 0.4s;
        margin: auto;
    }

    /* get-a-quote */
    .get-a-quote-btn {
        padding: 10px;
        font-size: var(--font-size-body-md);
        padding: 8px;
    }

    .get-a-quote-title {
        font-size: var(--font-size-title-sm);
    }

    .get-a-quote-title span {
        display: block;
    }

    .get-a-quote-content {
        padding-top: 50px;
        margin-bottom: 0;
    }

    /* our story */
    .story-container {
        gap: 20px;
    }


    .story-circle {

        width: 125px;

        aspect-ratio: 1/1;
    }

    .story-circle::before {


        width: 110px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        background: var(--secondary);
    }


    .circle-text {
        font-weight: 600;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        padding-top: 150px;
    }

    .hero-title {
        font-weight: 500;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-weight: 400;
    }

    .our-clients-content {
        width: 100%;
    }

    .slide-img {
        width: 150px;
        height: 130px;
    }

    .slider-controls {
        gap: 40px;
        margin-top: 60px;
    }

    .slider-controls img {
        width: 50px;
        height: auto;
    }

    .slide-shadow {
        bottom: -30px;
        width: 170px;
        height: 10px;
    }

    /* what we do */
    .what-we-do-content {
        flex-direction: column;
        justify-content: center;
    }

    .orange-card {
        width: 100%;
        max-width: 100%;
    }

    .orange-card-title {
        margin-bottom: 10px;
    }

    .orange-card-img {
        position: absolute;
        inset-inline-start: 0;
        bottom: -20px;
        z-index: 1;
    }

    .orange-card-img img {
        width: 80px;
        height: 80px;
    }
    
    .orange-card-content {
        position: relative;
        z-index: 2;
    }

    .read-more {
        font-size: var(--font-size-body-md);
    }

    .what-we-do-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    /* people trust us */
    .trust-us-slider {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .trust-slider-content {
        position: static;
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        text-align: center;
    }

    .trust-slider-img {
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .trust-slider-text {
        margin-bottom: 20px;
        text-align: start;
    }

    .slider-bottom {
        gap: 30px;
    }

    .slider-company {
        font-size: 18px;
    }

    .date {
        font-size: 15px;
    }

    .left-arrow,
    .right-arrow {
        width: 50px;
    }

    .arrows {
        gap: 20px;
    }

    .black-layer {
        opacity: 20%;
        height: 90%;
    }

    /* portfolio */
    .portfolio-head {
        flex-direction: column;
        gap: 30px;
    }

    .portfolio-images-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .see-more {
        display: block;
        width: 145px;
        padding: 8px;
        color: white;
        background-color: var(--orange);
        text-align: center;
        border-radius: 65px;
        transition: 0.4s;
        margin: auto;
        margin-top: 30px;
    }

    /* our story */
    .story-circle {
        width: 140px;
    }

    .story-circle::before {
        width: 125px;
        border-radius: 50%;
        background: var(--secondary);
    }


    /* trust us */
    .trust-us-slider {
        flex-direction: row;
        padding: 20px;
    }

    .trust-slider-content {
        position: static;
        width: 100%;
        padding: 15px;
    }

    .trust-slider-img {
        width: 100%;
        padding: 10px;
    }
}

/* Small desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-section {
        padding-top: 150px;
    }

    .hero-title {
        font-weight: 500;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-weight: 400;
    }

    /* mobile slider */
    .our-clients-content {
        width: 100%;
    }

    .slide-img {
        width: 150px;
        height: 130px;
    }

    .slider-controls {
        gap: 40px;
        margin-top: 60px;
    }

    .slider-controls img {
        width: 50px;
        height: auto;
    }

    .slide-shadow {
        bottom: -30px;
        width: 170px;
        height: 10px;
    }

    /* what we do */
    .what-we-do-content {
        flex-direction: column;
        justify-content: center;
    }

    .orange-card {
        width: 100%;
        max-width: 100%;
    }

    .orange-card-title {
        margin-bottom: 10px;
    }

    .orange-card-desc {
        font-size: var(--font-size-body-md);
    }

    .orange-card-img {
        position: absolute;
        inset-inline-start: 0;
        bottom: -20px;
        z-index: 1;
    }

    .orange-card-img img {
        width: 80px;
        height: 80px;
    }
    
    .orange-card-content {
        position: relative;
        z-index: 2;
    }

    .read-more {
        font-size: var(--font-size-body-md);
    }

    .what-we-do-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    /* people trust us */
    .trust-slider-img {
        width: 70%;
    }

    /* .trust-slider-content {
    width: 25%;
  } */
    .trust-slider-text {
        margin-bottom: 50px;
    }

    .slider-company {
        font-size: 15px;
    }

    .date {
        font-size: 12px;
    }
}

/* Large desktops */
@media (min-width: 1281px) and (max-width: 1400px) {
    .trust-slider-content {
        width: 40%;
        padding: 20px;
    }

    .trust-slider-img {
        width: 60%;
    }
}

/* ------------------- People Trust Us Fix -------------- */
.lightgallery-item {
    position: relative;
    width: 58%;
    aspect-ratio: 16/9;
    display: flex;
}

@media (max-width: 1024px) {
    .lightgallery-item {
        width: 100%;
    }
}

.lightgallery-item .play-button {
    position: absolute;
    inset-inline-start: 50%;
    bottom: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.79);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

@media (max-width: 768px) {
    .lightgallery-item .play-button {
        width: 40px;
        height: 40px;
    }
}

.lightgallery-item:hover .play-button {
    background-color: white;
}

.lightgallery-item .play-button img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.trust-slider-img {
    width: 100%;
}

.lightgallery-item .view-button {
    position: absolute;
    inset-inline-start: 30px;
    top: 30px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    z-index: 10;
    /* background-color: rgba(255, 255, 255, 0.79); */
    transition: all 0.3 ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightgallery-item .view-button img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.lightgallery-item:hover .view-button img {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
}

/* what we do */
.what-we-do-section {
    background-color: white;
}
.what-we-do-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
  }
  
  .what-we-do-title {
    color: var(--secondary);
  }
  /* i need the height of orange-card to be the same height of what-we-do-cards height */
  .orange-card {
    max-width: 420px;
    min-width: 320px;
    background-color: #f79334;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    perspective: 1000px;
  }
  
  /* Flip animation states */
  .orange-card.flip-in {
    animation: flipIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
  }
  
  .orange-card.flip-out {
    animation: flipOut 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
  }
  
  /* Flip animation keyframes */
  @keyframes flipIn {
    0% {
      transform: rotateY(-90deg) scale(0.8);
      opacity: 0;
    }
    50% {
      transform: rotateY(-45deg) scale(0.9);
      opacity: 0.7;
    }
    100% {
      transform: rotateY(0deg) scale(1);
      opacity: 1;
    }
  }
  
  @keyframes flipOut {
    0% {
      transform: rotateY(0deg) scale(1);
      opacity: 1;
    }
    100% {
      transform: rotateY(90deg) scale(0.8);
      opacity: 0;
    }
  }
  

  .orange-card-content {
    transition: all 0.3s ease-in-out;
    z-index: 2;
    height: 100%;
    position: relative;
    padding: 25px;
  
  }
  @media (min-width: 768px) and (max-width: 1280px) {
    .orange-card-content {
      position: static;
    }
  }
  .orange-card.flip-in .orange-card-content {
    animation: contentFadeIn 0.4s ease-in-out 0.2s both;
  }
  
  @keyframes contentFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Ensure smooth animation on all screen sizes */
  @media (max-width: 767px) {
    .orange-card {
      transform-style: preserve-3d;
      transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    .orange-card.flip-in {
      animation: flipInMobile 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }
    
    .orange-card.flip-out {
      animation: flipOutMobile 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }
  }
  
  @keyframes flipInMobile {
    0% {
      transform: rotateY(-90deg) scale(0.9);
      opacity: 0;
    }
    50% {
      transform: rotateY(-45deg) scale(0.95);
      opacity: 0.7;
    }
    100% {
      transform: rotateY(0deg) scale(1);
      opacity: 1;
    }
  }
  
  @keyframes flipOutMobile {
    0% {
      transform: rotateY(0deg) scale(1);
      opacity: 1;
    }
    100% {
      transform: rotateY(90deg) scale(0.9);
      opacity: 0;
    }
  }
  
  .orange-card-title {
    font-size: var(--font-size-title-md);
    font-weight: 700;
  }
  
  .orange-card-desc {
    font-size: var(--font-size-body-md);
    font-weight: 400;
    margin-bottom: 15px;
  }
  
  .orange-card-img {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 1;
  }
  
  .orange-card-img img {
    width: 155px;
    height: 180px;
    filter: grayscale(100%) brightness(0) invert(1);
  }
  
  .read-more {
    color: white;
  }
  
  .what-we-do-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
  }
  
  .card {
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .card-image-wrapper {
    padding: 15px;
    border: 1px solid #77777740;
    border-radius: 10px;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
  }
  
  .card img {
    padding: 0;
    transition: none;
    filter: none;
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .card:hover .card-image-wrapper {
    background-color: var(--orange);
  }
  
  .card:hover img {
    filter: grayscale(100%) brightness(0) invert(1);
  }
  
  .card-text {
    font-size: var(--font-size-body-xs);
    font-weight: 500;
    color: #757b7e;
    margin-bottom: 20px;
  }
  
  /* mobile */
  @media (max-width: 767px) {
    .what-we-do-content {
      flex-direction: column;
      margin: auto;
      width: 100%;
    }
  
    .what-we-do-cards {
      display: grid;
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .orange-card {
      width: 100%;
      max-width: 100%;
    }
  
    .orange-card-title {
      margin-bottom: 10px;
    }
  
    .orange-card-desc {
      font-size: var(--font-size-body-md);
    }

    .orange-card-img {
      position: absolute;
      inset-inline-start: 0;
      bottom: -20px;
      z-index: 1;
    }

    .orange-card-img img {
      width: 80px;
      height: 80px;
    }
    
    .orange-card-content {
      position: relative;
      z-index: 2;
    }
    
    .read-more {
      font-size: var(--font-size-body-md);
    }

    .card-image-wrapper {
      height: 100px;
    }
    
    .card img {
      max-width: 70px;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
    }
  
    .card-text {
      font-size: var(--font-size-body-xs);
    }
  }
  
  /* tablet */
  @media (min-width: 768px) and (max-width: 1024px) {
    .what-we-do-content {
      flex-direction: column;
      justify-content: center;
    }
    .orange-card {
      width: 100%;
    }

    .orange-card-title {
      font-size: var(--font-size-title-md);
    }

    .orange-card-desc {
      font-size: var(--font-size-body-md);
    }
    
    .orange-card-img {
      position: absolute;
      inset-inline-start: 0;
      bottom: -20px;
      z-index: 1;
    }
    
    .orange-card-img img {
      width: 80px;
      height: 80px;
    }
    
    .orange-card-content {
      position: relative;
      z-index: 2;
    }
    
    .read-more {
      font-size: var(--font-size-body-md);
    }
  
    .what-we-do-cards {
      width: 100%;
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* small desktop */
  @media (min-width: 1025px) and (max-width: 1280px) {
    .what-we-do-content {
      flex-direction: column;
      justify-content: center;
    }
    .orange-card {
      width: 100%;
      max-width: 100%;
    }

    .orange-card-title {
      font-size: var(--font-size-title-md);
      margin-bottom: 10px;
    }

    .orange-card-desc {
      font-size: var(--font-size-body-md);
    }
    
    .orange-card-img {
      position: absolute;
      inset-inline-start: 0;
      bottom: -20px;
      z-index: 1;
    }
    
    .orange-card-img img {
      width: 80px;
      height: 80px;
    }
    
    .orange-card-content {
      position: relative;
      z-index: 2;
    }
    
    .read-more {
      font-size: var(--font-size-body-md);
    }
  
    .what-we-do-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 1280px){
    .orange-card{
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      min-height: 320px;
    }
  }