/**
 * Main CSS File
 * Note: global.css, header.css, footer.css are loaded separately in global-styles.php
 * to eliminate render-blocking @import chain and improve LCP
 */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*.software-ser p{*/
/*    font-family: Geist !important;*/
/*}*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  background-size: cover;
  overflow: hidden;
}

.hero .hero_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 130%;
  width: 100%;
  transform-origin: center;
  will-change: transform;
  z-index: -1;

  & img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  &:before {
    content: "";
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, rgb(19, 19, 19) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 575px) {
  .hero_content {
    padding: 80px 0px 0 !important;
  }
}
.hero_content {
  padding: 80px;
  position: relative;
  height: 100%;
  display: grid;
  align-content: end;
  justify-content: space-between;

  & h1 {
    font-family: var(--heading-font);
    font-size: 66px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    letter-spacing: -2px;
    text-wrap-style: balance;
    color: var(--contrast-color);
    background: linear-gradient(165deg, rgb(255, 255, 255) 24%, rgb(102, 102, 102) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  & p {
    font-family: var(--heading-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-wrap-style: balance;
    color: color-mix(in hsl, var(--contrast-color) 70%, transparent);
  }

  & .right_box {
    width: 100%;
    display: grid;
    gap: 24px;
    align-items: end;
    justify-items: end;

    & .video_exp {
      position: relative;
      padding: 10px;
      width: 180px;
      aspect-ratio: 9/16;
      border-radius: 16px;
      overflow: hidden;
      display: grid;
      align-content: space-between;
      justify-items: center;
      transition: width 0.4s ease-in-out;

      & video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      & .close {
        position: relative;
        z-index: 1;
        display: flex;
        width: 24px;
        height: 24px;
        padding: 6px;
        background: var(--contrast-color);
        border-radius: 5px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-self: end;
        transition: all 0.3s ease-in-out;

        &:hover {
          transform: scale(1.03);
        }
      }

      & .play {
        position: relative;
        font-size: 24px;
        color: var(--contrast-color);
        background: #ffffff30;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 99px;
        backdrop-filter: blur(5px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-in-out;

        &:hover {
          transform: scale(1.03);
        }
      }

      &:hover .play {
        opacity: 1;
        pointer-events: all;
        cursor: pointer;
      }

      & .btn-hello,
      .btn-hello:focus {
        position: relative;
        font-family: var(--heading-font);
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        height: 48px;
        width: 100%;
        padding: 16px 20px;
        border-radius: 50px;
        background: var(--black);
        color: var(--contrast-color);
        box-shadow: 0px 4px 0px 0px rgb(0 0 0 / 25%);

        &:hover {
          color: var(--black);
          background: var(--accent-color);
        }
      }
    }

    & .accreditations {
      display: flex;
      align-items: center;
      gap: 24px;
      max-width: 530px;

      & img {
        height: 60px;
        width: 100%;
        object-fit: cover;
      }
    }
  }
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.inner-page .hero {
  height: auto;

  & .hero_img {
    height: 160%;
    &:before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgb(0, 0, 0) 100%);
    }
  }

  & .hero_content {
    padding: 140px 80px 80px 80px;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 0 auto;

    & h1 {
      font-size: 52px;
      line-height: 60px;
      margin-bottom: 20px;
    }

    & .accreditations {
      display: flex;
      align-items: center;
      gap: 24px;

      & img {
        height: 50px;
        width: auto;
      }
    }
  }
}

@media (max-width: 768px) {
  .inner-page .hero {
    & .hero_content {
      padding: 140px 10px 40px 10px;
      height: auto;

      & h1 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
      }
      & .right_box {
        width: 100%;
        display: grid;
        gap: 24px;
        align-items: start;
        justify-items: start;
        margin-top: 30px;

        & .accreditations {
          display: flex;
          align-items: start;
          gap: 20px;

          & img {
            height: 34px;
            width: auto;
          }
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/




.about {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;

  & .title {
    color: #141414;
    font-family: Geist;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1px;
  }

  & p {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
  }

  & .box {
    position: relative;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 10px;
    background: var(--accent-light);

    & h3 {
      color: #000;
      font-family: Geist;
      font-size: 54px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin: 0;
    }

    & h4 {
      color: #000;
      font-family: Inter;
      font-size: 22px;
      font-weight: 600;
      margin: 0;
    }

    & p {
      font-size: 14px;
    }
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/



.about-ser-content-area h3 {
  font-size: 26px !important;
  text-align: left;
}
.about-ser-content-area {
  text-align: left !important;
  background-color: #fff;
  padding-top: 15px;
}
.about-ser-content h5 {
  font-size: 17px !important;
  color: #494949;
  text-align: left;
  padding-top: 20px;
  font-weight: 400 !important;
}

.vision-sub p{
  color:#8f8f8f !important;
  font-weight: 100;
      font-size: 17px !important;
      width: 70% !important;
}


.about_page {
  & .about {
    & .section-title {
      padding-bottom: 20px;

      & .small_title {
        justify-self: start;
      }
      & h2 {
        color: #000;
        text-align: start;
        font-family: var(--heading-font);
        font-size: 60px;
        font-weight: 400;
        line-height: 78px;
        letter-spacing: -1px;
        margin-bottom: 50px;
        width: 86%;
      }
    }

    & h3 {
      color: #000;
      font-family: Geist;
      font-size: 66px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    & .box {
      padding: 0;
      gap: 16px;
      background: transparent;

      & h3 {
        color: #000;
        font-family: Geist;
        font-size: 66px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 0;
        letter-spacing: -3px;
      }

      & p {
        font-size: 18px;
        font-weight: 400;
      }
    }

    & .content {
      & p {
        font-size: 24px;
        color: var(--black);
        margin-bottom: 20px;
        font-weight: 400;
          font-family: var(--heading-font);
      }
    }
  }
}



/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-area-title h1{
  color: #000000 !important;
  -webkit-text-fill-color: unset !important;
}
.team-area-title p{
  color: #000000;
   font-family: var(--heading-font);
}



.team-work-data h5{
  color: #000000;
  font-size: 35px;
}
.team-work-data p{
  color: #000000;
     font-family: var(--heading-font);
}








.item-scroll {
  position: relative;

}
.item-scroll:after {
  content: "";
  display: block;
  height: 100vh;
  margin-bottom: -120vh;
}
.item-scroll:last-of-type {
  margin-bottom: 0;
 }
.item-scroll:last-of-type:after {
  display: none;
}
.item-scroll .image-holder {
  position: sticky;
  top: 0;
  float: left;
  overflow: hidden;
  width: 50%;
  height: 80vh;
}
.item-scroll .image-holder img {
  position: relative;

  left: 50%;
  transform: translateX(-50%);
}
.item-scroll .text-holder {
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-height: 120vh;
  margin-left: 50%;
  padding: 2em;
}
.image-holder img{
  width: 100%;
  height: auto;
}

.text-holder p{
  font-family: var(--heading-font);
}


.team-content {
    padding: 100px 0 0 !important;
}



@media (max-width: 575px) {
  .team-work img{
    width: 100%;
  }
  .team-work{
  display: block;
}
.scroll-reveal-section{
  display: none !important;
}
}

@media (min-width: 1200px) {
  .team-content-mob{
    display: none !important;
  }
}




.drop-data{
  display: flex;
  justify-content: center;
      flex-direction: column;
    width: 100%;
    align-items: center;
}
.drop-data h2{
  color: #fff;
  font-size: 40px;
  
}
.drop-data p{
  color: #fff;
    font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Careers Page
--------------------------------------------------------------*/

.careers-ser-content-area h3 {
  font-size: 23px !important;
  text-align: left;
  padding-top: 20px;
}
.careers-ser-content-area {
  text-align: left !important;
  background-color: #fff;

}
.careers-ser-content h5 {
  font-size: 17px !important;
  color: #494949;
  text-align: left;
  padding-top: 20px;
  border-bottom: solid 2px #000000;
  padding-bottom: 20px;
  font-weight: 400;
}
.careers-services h2 {
  font-size: 40px;
  padding-bottom: 30px;
}
.careers-ser-content {
  padding-left: 20px;
}


/*--------------------------------------------------------------
# Terms & conditions Page
--------------------------------------------------------------*/

.terms-data{
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.terms-data div{
  margin-bottom: 35px;
}
.terms-data h2{
  font-size: 24px;
  padding-top: 20px;
}
.terms-data h3{
  font-size: 20px;
      padding-left: 15px;
    color: #454545;
}
.terms-data p{
   font-family: var(--heading-font);
}

.terms-data li{
  margin-bottom: 10px;
  font-family: var(--heading-font);
}
.terms-data h5{
  color: #404040;
}
.shape {
         
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
        }

/*--------------------------------------------------------------
# Our Approach Page
--------------------------------------------------------------*/
.our-approach-img img {
  width: 100% !important;
  height: auto;
}
.container-full {
  width: 80% !important;
}
.our-approach-item {
  overflow: hidden !important;
}
.our-approach-item img {
  overflow: hidden !important;
}
.our-approach-item a img {
  transition: transform 0.6s ease;
  overflow: hidden !important;
}

.our-approach-item a:hover img {
  transform: scale(1.10);
}

.approach-title h2 {
  font-size: 48px !important;
  font-weight: 400 !important;
}
.approach-title p {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
  font-family: Geist;
  width: 80%;
  text-align: center;
}

.approach-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-approach-item i {
  transition: 0.4s all;
}
.our-approach-item a:hover .arrow-right {
  margin-left: 5px;
}

.related-industry h2 {
  font-size: 42px;
  font-weight: 400;
  padding-bottom: 30px;
}

.breadcrumbs a {
  color: #d1d1d1;
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs span {
  color: hsl(20, 21%, 53%);
}

.services-box-item i {
  transition: 0.4s all;
}
.services-box-item a:hover .arrow-right {
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Data & Analytics Page
--------------------------------------------------------------*/
.analytics-ser-image img {
  object-fit: cover;
  height: 532px;
}

.analytics-ser-content p {
  font-family: var(--heading-font);
  font-weight: 400;
}

.analytics-ser-content-area {
  padding: 35px;
}
.analytics-ser-content-area h2 {
  font-size: 40px !important;
  line-height: 54px !important;
}

/*--------------------------------------------------------------
# Digital Transform Page
--------------------------------------------------------------*/

.digital-ser-content-area h3 {
  font-size: 22px !important;
  text-align: left;
}
.digital-ser-content-area {
  text-align: left !important;
  background-color: #fff;
  padding: 15px;
}
.digtal-ser-content h5 {
  font-size: 17px !important;
  color: #494949;
  text-align: left;
  padding-top: 20px;
  font-weight: 400;
}
.arrow-right {
  font-size: 30px;
}
.learnmore-btn {
  display: flex;
  align-items: center;
  color: #000;
  margin-top: 15px;
  font-size: 20px;
}
.digital-strategy h3 {
  font-size: 28px !important;
  text-align: left !important;
}
.digital-strategy p {
  font-size: 17px !important;
}

.industry-solutions h2 {
  font-size: 40px !important;
}
.first-bx{
  position: relative;
}
.first-bx::before {
    position: absolute;
    content: '';
    background-color: #252525;
 width: 3px;
    height: 250px;
    right: -40px;
}
.stratergy-boxes {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
/*--------------------------------------------------------------
# DeVops Page
--------------------------------------------------------------*/

.devops-img-sec {
  position: absolute;
  top: 50px;
  width: 50%;
  right: 0;
  z-index: -1;
}
.devops-hero .hero_img {
  height: 100% !important;
}

.devops-ser-content-area h3 {
  font-size: 22px !important;
  text-align: left;
  padding-top: 20px;
}
.devops-ser-content-area {
  text-align: left !important;
  background-color: #fff;
  padding: 15px;
}
.devops-ser-content h5 {
  font-size: 17px !important;
  color: #494949;
  text-align: left;
  padding-top: 20px;
}
.devops-services h2 {
  font-size: 40px;
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# AI and Machine learning Page
--------------------------------------------------------------*/
.machine-learning-ser-content p {
  font-family: var(--heading-font);
  font-weight: 400;
}

.machine-learning-ser-image img {
  border-radius: 14px;
}
.ai-title h6 {
  text-align: left !important;
}
.machine-learning-ser-image img {
  background-color: #fff;
}


.ai-connect h2{
  color: #fff;
  font-size: 42px;
  font-weight: 400  !important;
}
.ai-connect{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.ai-connect-quote{
  width: 50%;
  padding-left: 40px;
  color: #fff;
}

.services-card01 {
  display: flex;
  padding: 20px;
}
.services-card01 img {
  border-radius: 12px;
}
.services-card01 h3 {
  font-size: 30px !important;
  text-align: left;
}
.services-card01 p {
  text-align: left;
}
.hero_content.services-min {
  margin: unset !important;
}

.cyber-security-content {
  padding-left: 20px;
}
.cyber-security-content h3 {
  width: 50%;
}

.ai-title h2 {
  font-size: 36px !important;
  line-height: 45px !important;
}

@media (max-width: 575px) {
  .services-card01 {
    display: block;
  }
  .cyber-security-content {
    padding-left: 0px;
  }

  .hero_content .right_box .accreditations img {
    height: 34px;
    width: 100%;
    object-fit: cover;
  }

  .cyber-security-content h3 {
    width: 100%;
  }
  .services-card01 p {
    padding-bottom: 25px;
  }
}


/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-main{
  width: 73%;
  margin-left: auto;
  margin-right: auto;
}
.faq-section h2{
  font-size: 48px;
}
.faq-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faq-title p{
  font-family: var(--heading-font);
      width: 50%;
    text-align: center;
}
.grid-faq {
  background-color: #fff;
  color: hsl(0, 0%, 7.8%);
  margin: 20px 0;
  font-family: var(--heading-font);
}

.question {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
   color: hsl(0, 0%, 7.8%);
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/

.service_page {
  & .about {
    & .section-title {
      padding-bottom: 20px;

      & .small_title {
        justify-self: start;
      }
      & h2 {
        color: #000;
        text-align: start;
        font-family: var(--heading-font);
        font-size: 48px;
        font-weight: 400;
        line-height: 66px;
        letter-spacing: -1px;
        margin-bottom: 10px;
        width: 86%;
      }
    }

    & h3 {
      color: #000;
      font-family: Geist;
      font-size: 66px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    & .box {
      padding: 0;
      gap: 16px;
      background: transparent;

      & h3 {
        color: #000;
        font-family: Geist;
        font-size: 66px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 0;
        letter-spacing: -3px;
      }

      & p {
        font-size: 18px;
        font-weight: 400;
      }
    }

    & .content {
      & p {
        font-size: 24px;
        color: var(--black);
        margin-bottom: 20px;
        font-weight: 400;
        font-family: Geist;
      }
    }
  }
}

.img-sec {
  position: absolute;
  top: 50px;
  width: 50%;
  right: 0;
  z-index: -1;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.info-at{
  margin-left: 20px; 
}
.info-at-img{
  background-color: #fff;
  border-radius: 50px ;
  padding: 10px;
  width: 50px;
  height: 50px;
}
.contact-page-quote p{
  width: 60%;
  margin-left: auto;
  margin-right: auto; 
}

.why {
  & .box {
    position: relative;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--accent-light);

    & .icon {
      width: 40px;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    & h3 {
      color: #000;
      font-family: Inter;
      font-size: 22px;
      font-weight: 600;
      margin: 0;
    }

    & p {
      color: var(--text-light);
      font-family: Inter;
      font-size: 16px;
      margin: 0;
    }
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
  & .ser_grid {
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
    grid-template-rows: repeat(7, minmax(120px, 1fr));
    grid-template-columns: repeat(6, minmax(0, 1fr));

    & .item {
      position: relative;
      display: flex;
      align-items: flex-start;
      border-radius: 16px;
      overflow: clip;
      background: var(--accent-light);
      padding: 30px;
      gap: 10px;
      flex: 1 0 0;
      align-self: stretch;

      & .image {
        position: absolute;
        & img {
          transition: all 0.3s ease;
        }
      }

      &:before {
        content: "";
        position: absolute;
        min-width: 340px;
        border-radius: 999px;
        aspect-ratio: 1/1;
        background: lightblue;
      }

      &:nth-child(1) {
        grid-row: 1 / span 3;
        grid-column: 1 / span 2;
        & .image {
          left: 0;
          bottom: -44px;
        }
        &:before {
          top: 80px;
          left: -136px;
          width: 600px;
          background: #dfe4e7;
          transition: all 0.3s ease;
        }
        &:hover:before {
          top: 110px;
        }
      }
      &:nth-child(2) {
        grid-row: 1 / span 2;
        grid-column: 3 / span 4;
        & .image {
          top: -30px;
          right: 140px;
          width: 200px;
        }
        &:before {
          top: -180px;
          right: -100px;
          width: 700px;
          background: linear-gradient(242deg, #837ccd, #463f94);
          transition: all 0.3s ease;
        }
        &:hover:before {
          right: -40px;
        }
      }
      &:nth-child(3) {
        grid-row: 3 / span 3;
        grid-column: 3 / span 2;
        & .image {
          top: 170px;
          right: -48px;
          width: 560px;
          opacity: 0.7;
        }
        &:before {
          top: 100px;
          right: -76px;
          width: 600px;
          background: #d8e8fb;
          transition: all 0.3s ease;
        }
        &:hover:before {
          top: 120px;
        }
      }
      &:nth-child(4) {
        grid-row: 3 / span 3;
        grid-column: 5 / span 2;
        & .image {
          top: 160px;
          left: 50px;
          width: 248px;
        }
        &:before {
          top: 76px;
          left: -170px;
          width: 600px;
          background: #b8cdbc;
          transition: all 0.3s ease;
        }
        &:hover:before {
          left: -120px;
        }
      }
      &:nth-child(5) {
        grid-row: 4 / span 3;
        grid-column: 1 / span 2;
        & .image {
          top: 110px;
          left: 0;
          width: 460px;
        }
        &:before {
          top: 90px;
          right: -150px;
          width: 580px;
          background: #101d40;
          transition: all 0.3s ease;
        }
        &:hover:before {
          top: 70px;
          width: 600px;
        }
      }
      &:nth-child(6) {
        grid-row: 6 / span 2;
        grid-column: 3 / span 4;
        & .image {
          top: -0;
          right: 140px;
          width: 300px;
        }
        &:before {
          top: -120px;
          right: -60px;
          width: 700px;
          background: #e4e9f2;
          transition: all 0.3s ease;
        }
        &:hover:before {
          top: -160px;
          right: -20px;
        }
      }
      &:nth-child(7) {
        grid-row: 7 / span 1;
        grid-column: 1 / span 2;
        font-family: var(--heading-font);
        background: var(--accent-color);
        color: var(--contrast-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: 500;
        transition: 0.5s ease;
        &:before {
          content: none;
        }
        &:hover {
          border-radius: 160px;
        }
      }

      & .content {
        position: relative;
        background: var(--contrast-color);
        padding: 16px;
        border-radius: 5px;
        min-height: 62px;
        width: 100%;

        & h3 {
          font-size: 24px;
        }

        & p {
          position: relative;
          font-size: 16px;
          margin: 0;
          opacity: 0 !important;
        }
      }

      &:hover {
        & .image img {
          transform: scale(1.03);
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/

.clients {
  & .client_slider_wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    position: relative;

    &:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to right,
        var(--contrast-color) 1%,
        transparent 10%,
        transparent 90%,
        var(--contrast-color) 99%
      );
    }

    & .client_slider {
      display: flex;
      width: max-content;
      gap: 60px;

      & .client_logos {
        display: flex;
        gap: 60px;
      }

      & .c-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 160px;

        & img {
          height: 86px;
          width: auto;
          object-fit: contain;
          filter: invert(1);
          opacity: 0.8;
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

.testimonials {
  & .testimonial_wrapper {
    position: relative;

    &:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to right,
        var(--contrast-color) 1%,
        transparent 10%,
        transparent 90%,
        var(--contrast-color) 99%
      );
    }

    & .testimonial_slider {
      display: flex;
      width: max-content;
      gap: 20px;

      & .testimonial_track {
        display: flex;
        gap: 20px;
        flex-shrink: 0;

        & .item {
          flex: 0 0 auto;
          padding: 20px;
          background: var(--contrast-color);
          border-radius: 16px;
          width: 450px;
          box-shadow: 0px 4px 40px 4px rgba(0, 0, 0, 0.048);

          & .title {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;

            & .image {
              width: 48px;
            }
            & h3 {
              font-size: 22px;
              margin-bottom: 6px;
            }
            & h4 {
              font-size: 16px;
              color: var(--black3);
              margin: 0;
            }
          }

          & .content {
            & p {
              margin: 0;
            }
          }
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# Blogs Section
--------------------------------------------------------------*/
.blog-details .image {
  height: 400px !important;
}

.blogs {
  & .item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease-in-out;

    & .image {
      height: 240px;
      overflow: hidden;
      border-radius: 10px;
    }

    & .tags {
      display: flex;
      align-items: center;
      gap: 14px;

      & .line-navigation {
        background-color: #aaa9a5;
        width: 1px;
        height: 20px;
      }

      & .date,
      & .category {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 16px;
        font-weight: 600;
      }
    }

    & .contents {
      & h3 {
        font-size: 22px;
      }
      & p {
        font-style: 16px;
        margin: 0;
      }
    }

    &:hover {
      background: var(--accent-light);
    }
  }
}

/*--------------------------------------------------------------
# Cases Section
--------------------------------------------------------------*/

@media (max-width: 575px) {
  .cases .item .right {
    align-items: unset !important;
    aspect-ratio: 5/3;
    display: unset !important;
  }
}

.cases {
  & .item {
    display: flex;
    align-items: end;
    background: var(--accent-light);
    border-radius: 16px;
    padding: 10px;
    transition: all 0.3s ease;

    & .left {
      display: grid;
      gap: 10px;
      padding: 10px;

      & img {
        width: 52px;
      }

      & h3 {
        margin: 0;
      }
      & p {
        margin: 0;
      }
    }

    & .right {
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      display: flex;
      align-items: end;
      aspect-ratio: 6/3;

      & .image {
        position: absolute;
        top: 0;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.3s ease;
        }
      }

      & .content {
        position: relative;
        border-radius: 10px;
        padding: 10px;
        margin: 10px;
        background: #ffffffa6;
        border: 1px solid #fff;
        backdrop-filter: blur(15px);

        & h4 {
          font-size: 22px;
        }

        & p {
          margin: 0;
        }
      }
    }

    &:hover {
      cursor: pointer;
      background: var(--accent-light-hover);
    }

    &:hover .right .image img {
      transform: scale(1.04);
    }
  }
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/

.cta {
  & .section_bg {
    &:before {
      content: "";
      background: linear-gradient(180deg, rgb(19 19 19 / 35%) 0%, rgb(0 0 0) 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  }
  & .section-title {
    & span {
      font-family: var(--heading-span);
      background: linear-gradient(90deg, var(--contrast-color) 25%, #d1d1d1 75%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--accent-light);
  padding: 30px;
  border-radius: 16px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 24px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
   font-family: var(--heading-font);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .email-form {
  background-color: var(--accent-light);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  padding: 30px;
}
.contact .email-form input{
font-family: var(--heading-font);
}

 
@media (max-width: 575px) {
  .contact .email-form {
    padding: 20px;
  }
}

.contact .email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
