/* hero section */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bangers&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Paytone+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Russo+One&family=Unbounded:wght@200..900&family=Vina+Sans&display=swap');

* {
  font-family: "Poppins", sans-serif;
}

/* hero section start */
.hero-container {
  /* margin-top: 68px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; */

  margin-top: 68px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* color: #ffffff; */
  gap: 8px;
  padding: 0 8px;
}

.hero-main-text {
  font-size: 2.625rem;
  font-weight: 700;
  text-align: center;
}

.hero-sub-text {
  width: 869px;
  line-height: 1.5;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-image {
  width: 100%;
  height: 600px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -1;
}


.hero-button-image {
  box-shadow: 0px 2px 10px 0px #0000001A;
  border-radius: 8px;
  margin-right: 8px;
}

.hero-button-image:hover {
  box-shadow: 0px 4px 20px 0px #0000001A;
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .hero-container {
    height: 270px;
  }

  .hero-image {
    height: 400px;
  }

  .hero-main-text {
    font-size: 2rem;
  }

  .hero-sub-text {
    font-size: 1rem;
    width: 520px;
  }

  .hero-button-image {
    width: 156px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .hero-container {
    /* height: 200px; */
  }

  .hero-main-text {
    font-size: 1.5rem;
  }

  .hero-sub-text {
    font-size: 14px;
    width: 340px;
  }

}

@media screen and (max-width: 320px) {
  .hero-button-image {
    width: 140px;
    height: 30px;
  }

}

/* hero section end */


/* feature section start */

.feature-section {
  padding: 50px 0;
}

.feature-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #00853F;
  letter-spacing: 0%;
  margin-bottom: 38px;
}

.feature-card-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.feature-card {
  position: relative;
  width: 300px;
  min-height: 288px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.feature-card-body {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.card-icon-container {
  background-color: #00A64F;
  border-radius: 100%;
  width: 80px;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.feature-card-icon {
  width: 50px;
  height: 50px;
}

.wave-img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.card-title {
  text-wrap-mode: nowrap;
  font-size: 1rem;
  font-weight: 700;
  text-wrap-mode: wrap;
  padding: 0 18px;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .feature-card-container {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .feature-section {
    padding: 24px 0;
  }

  .feature-card {
    width: 100%;
    min-height: 250px;

  }

  .feature-card-container {
    flex-direction: column;
    padding: 0 12px;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .card-icon-container {
    width: 80px;
    height: 80px;
  }

}

/* feature section end */



/* state section start */

.state-section {
  padding: 50px 0;
  position: relative;
  height: 388px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(115.62% 115.62% at 26.11% 50.04%, rgba(102, 191, 145, 0.9) 0%, rgba(51, 170, 108, 0.9) 50%);
}

.state-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  object-position: center;
  height: 388px;
}

.state-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.state-card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.state-card-icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 100%;
}

.state-card-icon-img {
  width: 50px;
  height: 50px;
}

.state-card {
  gap: 16px;
  color: #ffffff;
}

.state-card-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
}

.state-card-text {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .state-card-container {
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 768px) {
  .state-card-container {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .state-container {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .state-title {
    margin-bottom: 24px;
  }

  .state-card-icon {
    width: 48px;
    height: 48px;
  }

  .state-card-icon-img {
    width: 24px;
    height: 24px;
  }

  .card-icon {
    width: 32px;
    height: 32px;
  }

  .state-card-title {
    font-size: 1.25rem;
  }

  .state-card-text {
    font-size: 0.8rem;
  }

  .state-title {
    font-size: 1.5rem;
  }
}

/* states section end */



/* help you section start */

.helpyou-section {
  padding: 50px 0;
}

.delivery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.delivery-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #00A64F;
  margin-bottom: 24px;
}

.delivery-card-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
}

.delivery-card {
  width: 364px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0px 2px 10px 0px #0000001A;
}

.delivery-card-img {
  width: 100%;
  height: 100%;
}

.delivery-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}

.delivery-card-title {
  font-size: 18px;
  font-weight: 700;
}

.delivery-card-description {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .delivery-card-container {
    flex-direction: column;
    padding: 0 12px;
  }

  .delivery-card {
    width: 100%;
  }
}

/* help you section end */



/* categories section start */

.categories-section {
  background-color: #FFFBF5;
  padding: 80px 0;
}

.categories-container {
  position: relative;
  padding: 0 14px;
}

.categories-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px;
  display: flex;
  gap: 24px;
}

.categories-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #00A64F;
  padding-bottom: 40px;
}

.categories-card {
  flex: 0 0 230px;
  height: 180px;
  display: flex;
  position: relative;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0px 2px 12px 0px #0000001F;
  background: white;
}

.category-wave {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
}

.categories-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 14px 0;
}

.categories-card-img img {
  width: 80px;
  height: 80px;
}

.categories-card-text {
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.categories-scroll-wrapper {
  cursor: grab;
  user-select: none;
}

.categories-scroll-wrapper.grabbing {
  cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Edge */
.categories-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.categories-scroll-wrapper {
  scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
.categories-scroll-wrapper {
  -ms-overflow-style: none;
}


body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
body {
  scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
body {
  -ms-overflow-style: none;
}



/* categories section end */



/* services section start*/


.services-container {
  position: relative;
  padding: 80px 40px;
}

.services-card-container {
  cursor: grab;
  user-select: none;
}

.services-card-container.grabbing {
  cursor: grabbing;
}

.services-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #00A64F;
  margin: 0;
  margin-bottom: 40px;
}

.services-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
}

.services-card-body {
  display: flex;
  gap: 24px;
  padding: 0 8px;
  align-items: center;
  justify-content: start;
  overflow-x: auto;
  padding-bottom: 8px;
}

.services-wave {
  border-radius: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.services-card {
  position: relative;
  display: flex;
  flex: 0 0 230px;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0px 2px 12px 0px #0000001F;
  padding: 24px;
}

.services-card-img {
  z-index: 2;
}

.services-card-img img {
  width: 80px;
  height: 80px;
  z-index: 2;
  margin-bottom: 12px;
}

.services-card-text {
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

/* Hide scrollbar for Chrome, Safari and Edge */
.services-card-body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.services-card-body {
  scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
.services-card-body {
  -ms-overflow-style: none;
}

@media (max-width: 768px) {

  .services-container {
    padding: 12px;
  }

  .services-card-container {
    padding: 24px 12px;
  }



  .services-card {
    /* width: 130px; */
    flex: 0 0 130px;
    height: 90px;
    padding: 12px;
  }

  .container {
    padding: 0 16px;
  }

  .services-card-img img {
    width: 35px;
    height: 35px;
  }

  .services-card-text {
    font-size: 12px;
  }
}

/* services section end*/

@media (max-width: 1024px) {

  .categories-title {
    font-size: 1.5rem;
    padding: 24px 0;
    margin: 0;
  }

  .categories-container {
    padding-bottom: 24px;
  }

  .categories-scroll-wrapper {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 12px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }

  .services-card-body {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 12px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .categories-section {
    padding: 24px 0;
  }

  .categories-scroll-wrapper {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 70px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }

  .services-card-body {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 70px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }

  .categories-card-img {
    padding: 8px 0;
  }

  .categories-card-img img {
    width: 35px;
    height: 35px;
  }

  .categories-card-text {
    font-size: 12px;
  }

  .categories-card {
    height: 90px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .categories-scroll-wrapper {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 12px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }

  .services-card-body {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - 12px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .categories-scroll-wrapper {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - -30px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }

  .services-card-body {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: calc(34% - -30px);
    grid-auto-flow: column;
    gap: 16px;
    width: 100%;
  }
}

/* vertical tabs section start*/

.benefits-section {
  background-color: #FFFBF5;
  padding: 80px 0;
}

.vert-tab>div {
  margin: 8px;
  width: 10%;
  cursor: pointer;
  height: 500px;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}

.recr-content {
  position: relative;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 36px 28px;
  border-radius: 8px;
}

.recr-content h3 {
  text-align: left;
  color: #00A64F;
  white-space: nowrap;
  transform: rotate(269deg);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
}

.vertical-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 160px;
  width: 3px;
  background-color: #00A64F;
}

.work_items_content {
  display: none;
}

.cards-container {
  padding-top: 6px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  width: 185px;
  height: 154px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 0.76px 4.58px 0px #00000014;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-vertical-line {
  position: absolute;
  left: 25%;
  top: 0;
  height: 4px;
  width: 100px;
  background-color: #00A64F;
  z-index: 2;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0.76px 4.58px 0px #00000014;
}

.benefits-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.card p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.recr-content.active {
  width: 100%;
}

.recr-content.active {
  background: white;
}

.recr-content.active h3 {
  display: none;
}

.recr-content.active .work_items_content {
  display: block;
}

.vert-tab {
  display: flex;
}

.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00A64F;
  margin-bottom: 24px;
}

.benefits-description {
  color: #00A64F;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
}


@media (max-width: 1180px) {
  .work_items_content {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .benefits-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .recr-content.active {
    /* width: 96%; */
    margin: 8px 0;
  }

  .benefits-description {
    font-size: 14px;
    text-align: center;
  }

  .benefits-card-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 14px;
  }

  .card p {
    font-size: 12px;
  }

  .card-vertical-line {
    position: absolute;
    left: 25%;
    top: 0;
    height: 2px;
    width: 38px;
    background-color: #00A64F;
    z-index: 2;
  }

  .recr-content {
    width: 100%;
    padding: 16px 0px;
    overflow-x: hidden;
    box-shadow: 0px 2px 12px 0px #0000001F;
  }


  .work_items_content {
    padding: 6px;
    overflow-x: hidden;
  }

  .card {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .cards-container {
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }

  .vert-tab>div {
    height: 400px;
  }

  .vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 3px;
    width: 160px;
    background-color: #00A64F;
  }

  .vert-tab {
    flex-direction: column;
  }

  .vert-tab>div {
    width: 100%;
    height: auto;
    margin: 8px 0;
  }

  .recr-content h3 {
    transform: rotate(0deg);
    text-align: center;
    white-space: normal;
    font-size: 18px;
  }
}

/* vertical tabs section end*/



/* portfolio section start */

.portfolio-section {
  padding: 80px 0;
}

.tabs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.tabs {
  width: 680px;
  display: flex;
  justify-content: center;
  background: #F3FBF6;
  border-radius: 8px;
  padding: 10px;
}

.tab-btn {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  background: transparent;
  color: #555;
  transition: 0.3s;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  text-wrap-mode: nowrap;
}

.tab-btn.active {
  background: #00A64F;
  color: #fff;
}

.content {
  display: flex;
  justify-content: space-between;
  gap: 46px;
  height: 314px;
  overflow-y: hidden;
  overflow-x: auto;
}

.content img {
  width: 145px;
  height: 320px;
  border-radius: 25px;
  padding: 2px;
  object-fit: cover;
  border-radius: 5px;
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs-container {
    width: 100%;
  }

  .tabs {
    width: 100%;
  }

  .content:nth-last-child(1) {
    padding-right: 16px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .content {
    overflow-x: auto;
  }

  .content img {
    width: 124px;
    height: 260px;
    border-radius: 21.62px;
    padding: 1.73px;

  }
}

/* portfolio section end */



/* making a difference section start */

.making-difference-section {
  padding: 80px 0;
  background-color: #FAFBFA;
}

.making-difference-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.making-difference-img {
  border-radius: 12px;
  width: 50%;
}

.making-difference-dropdowns {
  width: 50%;
  box-shadow: 0px 2px 12px 0px #0000001F;
  z-index: 2;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 8px;
  padding: 24px;
  transform: translateX(-80px);
}

.making-difference-title {
  text-align: center;
  color: #00A64F;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0px 16px;
  margin-bottom: 40px;
}

.accordion-button {
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 700;
  background-color: #fff;
  width: 100%;
  border-radius: 8px !important;
}

.accordion-item {
  border: 1px solid #E6E7E6 !important;
  border-radius: 8px;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff !important;
  color: #00A64F !important;
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  padding: 15px 20px;
  line-height: 1.6;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:hover {
  background-color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;

}

@media (max-width: 980px) {

  .making-difference-section {
    padding-bottom: 24px;
  }

  .making-difference-dropdowns {
    width: 96%;
    transform: translateY(-40px);
  }

  .making-difference-img {
    width: 100%;
  }

  .making-difference-body {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .accordion-button {
    font-size: 14px !important;
  }
}

.transition-rotate {
  transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) .transition-rotate {
  transform: rotate(180deg);
}

.fa-angle-down {
  font-size: 20px;
  color: #666;
}

.accordion-button span {
  margin-right: 10px;
}

.dropdown-item .btn {
  background: white;
  border: none;
  padding: 1rem;
  text-align: left;
}

.dropdown-item .btn:hover,
.dropdown-item .btn:focus {
  background: #f8f9fa;
}


.btn[aria-expanded="true"] .transition-rotate {
  transform: rotate(180deg);
}

/* making a difference section end */



/* coming soon section start */

.coming-soon-section {
  margin: 0 0 20px 0;
}

.coming-soon-title {
  text-align: center;
  color: #00A64F;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 24px;
}

.coming-soon-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-card {
  position: relative;
  box-shadow: 0px 2px 12px 0px #0000001F;
  color: #ffffff;
  width: 780px;
  padding: 40px;
  border-radius: 8px;
  /* background-color: #00a650e7; */
  background-image: url('./assets/images/home/coming-soon-img.jpg');
  background-size: cover;
  background-position: center;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00a650e7;
  border-radius: 8px;
  z-index: 1;
}


.coming-soon-card>* {
  position: relative;
  z-index: 2;
}

.coming-soon-body-title {
  z-index: 2;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.coming-soon-body-text {
  margin: 0 !important;
}

/* coming soon section end */

.categories-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.categories-scroll-arrow:hover {
  background: #f5f5f5;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.services-scroll-arrow:hover {
  background: #f5f5f5;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .categories-scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .services-scroll-arrow {
    width: 30px;
    height: 30px;
  }

}

@media (max-width: 400px) {
  .categories-container {
    padding: 8px;
  }
}

.flip-card {
  background-color: transparent;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
  width: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
}

.flip-card-front {
  background-color: #f8f8f8;
  color: #001108;
}

.flip-card-front h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.flip-card-back {
  background-color: #00A64F;
  color: white;
  transform: rotateY(180deg);
}

.flip-card-back p {
  margin: 0;
}

.center-display-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}