/*Header Sticky Part*/

.floating_menu {
    position: absolute;
    height:fit-content;
    top: 80px;
    right: 80px;
    z-index:99;
}

.floating_menu-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    
    .button {
        background: var(--color-pink);
        color: var(--color-white);
    }
}

.floating_menu-drawer-button {
    width: 50px;
    min-width: 50px;
    padding: 0;
    
    svg {
        width: 24px;
        height: auto;
    }
}

@media (max-width:999px) {
    .floating_menu {
        top: 40px;
        right: 40px;
    }
}

@media (max-width:768px) {
    
    .floating_menu-inner {
        gap: 0px;
    }
    
    .floating_menu-contact {
        display: none;
    }   
    
    .floating_menu-drawer-button {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* Header CSS Start */

.header {
    position: absolute;
    top: 80px;
    left: 80px;
    right: 0;
    z-index: 99999;
    width: calc(60% - 135px);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.header-logo {
  display: flex;
  flex: 1 0 0;

  img {
    width: 100%;
    max-width: 200px;
  }
}

.header-navigation {
    
    ul {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        
        a {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            text-transform: uppercase;
        }
    }
}

@media (max-width:1280px) {
    .header-navigation {
    
        ul {
            gap: 4px;
            
            a {
                font-size: 14px;
            }
        }
    }
}

@media (max-width:1000px) {
    .header {
        top: 40px;
        left: 40px;
        width: fit-content;
    }
    .header-navigation {
        display: none;
    }
}

@media (max-width:768px) {
    .header-logo {
      img {
        max-width: 150px;
      }
    }
}

/* Main hero Section CSS */

.home_hero {
    height: 100dvh;
    
    .section-inner {
        padding-block: 80px;
        height: -webkit-fill-available;
    }
}

.home_hero-inner {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: flex-end;
    height: 100%;
}

.home_hero-info {
    padding-right: 40px;
}

.home_hero-badge {
    display: flex;
    width: fit-content;
    
    a {
        display: flex;
    }
    
    svg {
        width: 150px;
        height: auto;
    }
}

.home_hero-heading h1 {
    font-size: 100px;
    font-weight: bolder;
    line-height: 1;
    margin: 20px 0px 30px;
    text-transform: uppercase;
    font-family: var(--font-roboto-flex);
    letter-spacing: -2px;
    
    span {
        color: var(--color-green);
    }
}

.home_hero-text {
    display: grid;
    grid-template-columns: 60% 30%;
    justify-content: space-between;
    align-items: flex-end;

    p {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.6;
        margin: 0;
        text-transform: capitalize;
    }
    
    .button {
        --current-btn-hover-clr: var(--color-white);
        --btn-text-clr: var(--color-black);
        
        background: var(--color-pink);
        color: var(--color-white);
    }
}

.home_hero-video {
    width: 100%;
    height: 100%;
    display: flex;
    
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1;
    }
}

@media (max-width:1680px) {
    .home_hero-heading h1 {
        font-size: 72px;
        margin: 20px 0px 25px;
    }
    
    .home_hero-text {
        grid-template-columns: 55% 40%;
    
        p {
            font-size: 18px;
        }
    }
}

@media (max-width:1280px) {
    .home_hero-heading h1 {
        font-size: 54px;
        margin: 20px 0px;
    }
    
    .home_hero-text {
        grid-template-columns: 1fr;
        gap: 20px;
    
        p {
            font-size: 16px;
        }
    }
}

@media (max-width:1000px) {
    .home_hero {
        height: auto;
        
        .section-inner {
            padding-block: 40px;
            padding-top: 150px;
        }
    }
    
    .home_hero-inner {
        grid-template-columns: 1fr;
    }
    
    .home_hero-info {
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width:768px) {
    .home_hero-badge {
        svg {
            width: 100px;
            height: auto;
        }
    }
    
    .home_hero-heading h1 {
        font-size: 36px;
        line-height: 1.1;
        margin: 10px 0px;
        letter-spacing: 0px;
        
        br {
            display: none;
        }
    }
    
    .home_hero-text {
        gap: 10px;
        
        p {
            font-size: 14px;
        }
    }
}


/* Service Section */

.service-section .section-inner {
  padding-inline: 0;
}

.services__grid {
  gap: 0;
  width: 100%;
  height: min-content;
  padding: 0;

  display: grid;
  grid-template-rows: repeat(1, min-content);
  grid-template-columns: 0.8fr 1.2fr;
  grid-auto-rows: min-content;
  justify-content: center;

  position: relative;
  overflow: visible;

  padding-block: 40px;
}

.services__sidebar {
  place-self: start;
  align-items: center;

  gap: 10px;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;

  position: sticky;
  z-index: 1;
  top: 0;
  overflow: visible;

  grid-area: 1 / 1 / 2 / 2;
}

.services__sidebar-content {
  height: 80vh;

  flex-flow: column;
  flex: none;

  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;

  margin: 40px 0;
  display: flex;
  position: relative;

  border-block: 1px solid var(--border-color);
}

.services__title {
  padding-inline: 40px;
  width: 100%;
  max-width: 350px;

  font-family: var(--font-roboto-flex);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;

  .services__title-rotator {
    display: block;
    position: relative;
    overflow: hidden;

    span {
      display: block;
      line-height: 1;
      color: var(--color-blue);
    }

    span:nth-child(1) {
      transform: translateY(0%);
      position: relative;
    }

    span:nth-child(2),
    span:nth-child(3) {
      position: absolute;
    }

    span:nth-child(2) {
      top: 0;
      left: 0;
      transform: translateY(100%);
    }

    span:nth-child(3) {
      top: 0;
      left: 0;
      transform: translateY(200%);
    }
  }
}

.services__panel {
  grid-area: 1 / 2 / 2 / 3;

  flex-flow: column;

  justify-content: center;
  place-self: start;
  align-items: center;
  gap: 0;

  width: 100%;
  height: min-content;
  padding: 0;

  display: flex;
  position: relative;
  overflow: visible;
  border-left: 1px solid var(--border-color);
}

.service-card {
  z-index: 0;

  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;

  width: 100%;
  height: 100vh;
  padding: 0;
  margin-top: 3rem;

  display: flex;
  position: relative;
  overflow: visible;
}

.service-card__inner {
  width: 100%;

  position: relative;
  border-block: 1px solid var(--border-color);
}

.service-card__inner-wrapper {
  padding: 80px 40px;
  position: relative;
}

.service-card__header {
  h3 {
    font-size: clamp(28px, 4vw, 65px);
    font-family: var(--font-roboto-flex);
    text-transform: uppercase;
    font-weight: 700;
    max-width: 25ch;
    letter-spacing: -2px;
    line-height: 1.2;
  }
}

.service-card__header .services__title {
  display: none;
}

.service-card__body {
  margin-top: 25px;

  p {
    max-width: 70ch;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: capitalize;
  }
}

.service-card__body ul {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  font-weight: 300;

  list-style: none;

  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  max-width: 800px;

  li {
    padding: 10px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.services__sidebar .section_dots-top {
  &::after,
  &::before {
    top: 50px;
  }
}

.services__sidebar .section_dots-bottom {
  &::after,
  &::before {
    bottom: 50px;
  }
}

.service-card .section_dots-top {
  &::after,
  &::before {
    top: 40px;
  }
}

.service-card .section_dots-bottom {
  &::after,
  &::before {
    bottom: 40px;
  }
}

.spacer {
  min-height: 100vh;
}

.service-card__cta {
  --current-btn-hover-clr: var(--color-pink);
  --btn-text-clr: var(--color-white);

  margin-top: 25px;

  cursor: pointer;
  height: 50px;
  max-width: 300px;

  padding-inline: 20px;
  background: var(--color-white);
  color: var(--color-black);

  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (max-width: 1280px) {
  .services__sidebar-content h2 {
    max-width: 300px;
  }

  .service-card__inner-wrapper {
    padding: 45px 25px;
  }

  .service-card__body ul {
    max-width: 600px;
  }
}

@media screen and (max-width: 999px) {
    .service-card .section_dots-top ,
    .service-card .section_dots-bottom{
        &::after, &::before {
            top: 10px;
        }
    }
    
    
  .services__grid {
    display: flex;
    flex-flow: column;
  }
  .services__sidebar {
    display: none;
  }

  .service-card {
    height: fit-content;
    margin-block: 0;
    gap:10px;
  }

  .service-card__header .services__title {
    display: block;
    padding-inline: 0;
    margin-bottom: 30px;
  }
  
  .service-card__header {
      h3 {
        font-weight: 500;
      }
    }
  
  .services__panel{
    border-left: none;
  }
}

@media screen and (max-width: 768px) {
    
    .service-card__inner-wrapper {
        padding: 20px;
    }

    
  
  .service-card__body,
  .service-card__body ul,
  .service-card__cta {
    margin-top: 20px;
  }

  .service-card__body ul {
    li {
      padding: 5px;

      svg {
        width: 20px;
        height: auto;
      }
    }
  }
}

@media screen and (max-width:500px){
    .service-card__body ul {
        display:flex;
        flex-direction:column;
    }
}


/* Shopify Badge Introduction Section CSS */
.shopify_badge {
    .section-inner {
        padding-block: 150px;
        padding-inline: 0;
    }
}

.shopify_badge-inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items:center;
}

.shopify_badge-info {
    display: flex;
    flex-direction: column;
    grid-column: span 7;
    
    .shopify_badge-heading, .shopify_badge-text {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        
        h2 {
            grid-column: 2 / span 6;
            font-size: clamp(36px, 4.8vw, 90px);
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            font-family: var(--font-roboto-flex);
            letter-spacing: -2px;
        }
        
        p {
            grid-column: 3 / span 5;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            margin-top: 30px;
        }
        
        p:first-child {
            margin-top: 60px;
        }
        
        a{
            grid-column: 3 / span 5;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            max-width:fit-content;
        }
    }
}

.shopify_badge-img {
    grid-column: 9 / span 3;
    overflow: hidden;
    position:relative;
    
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        
        min-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width:1680px) {
    .shopify_badge {
        .section-inner {
            padding-block: 120px;
        }
    }
    
    .shopify_badge-info {
        
        .shopify_badge-heading, .shopify_badge-text {
            p {
                margin-top: 25px;
            }
            
            p:first-child {
                margin-top: 45px;
            }
        }
    }
}

@media (max-width:1280px) {
    .shopify_badge {
        .section-inner {
            padding-block: 90px;
        }
    }
    
    .shopify_badge-info {
        .shopify_badge-heading, .shopify_badge-text {
            p {
                font-size: 16px;
                margin-top: 15px;
            }
            
            p:first-child {
                margin-top: 30px;
            }
        }
    }
}

@media (max-width:999px) {
    .shopify_badge {
        .section-inner {
            padding-block: 40px;
            padding-inline: 20px;
        }
    }
    
    .shopify_badge-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shopify_badge-info {
        grid-column: span 1;
        
        .shopify_badge-heading, .shopify_badge-text {
            grid-template-columns: 1fr;
            
            h2 {
                grid-column: 1 / span 1;
                letter-spacing: 0px;
                line-height: 1.2;
            }
            
            p {
                grid-column: 1 / span 1;
                font-size: 16px;
                margin-top: 10px;
            }
            
            p:first-child {
                margin-top: 20px;
            }
        }
    }
    
    .shopify_badge-img {
        grid-column: 1 / span 1;
        
        span {
            text-align: left;
            
            p:first-child {
                font-size: 16px;
            }
            
            p:last-child {
                font-size: 13px;
            }
        }
    }
}

@media (max-width:768px) {
    
    .shopify_badge-info {
        .shopify_badge-heading, .shopify_badge-text {
            p {
                font-size: 14px;
            }
        }
    }
    
    .shopify_badge-img {
        span {
            p:first-child {
                font-size: 14px;
            }
            p:last-child {
                font-size: 12px;
            }
        }
    }
}






/* Homepage Advantage Section CSS */

.home_advantage {
    .section-inner {
        padding-block: 150px 40px;
        padding-inline: 0;
    }
    
    .section_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: var(--color-blue);
        z-index: -1;
    }
}

.home_advantage-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    
    .home_advantage-header-inner {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-column: 5 / span 8;
        
        .home_advantage-subheading  {
            grid-column: 1 / span 2;
            
            span {
                font-size: 14px;
                font-weight: 500;
                text-transform: uppercase;
                background: var(--color-white);
                color: var(--color-black);
                padding: 4px 12px;
            }
        }
        
        .home_advantage-heading {
            grid-column: 1 / span 7;
            
            h2 {
                font-size: clamp(40px, 6vw, 90px);
                font-weight: 700;
                line-height: 1;
                text-transform: uppercase;
                font-family: var(--font-roboto-flex);
                letter-spacing: -2px;
                margin: 20px 0px 25px;
            }
        }
        
        .home_advantage-text {
            grid-column: 1 / span 4;
            
            p {
                font-size: 16px;
                font-weight: 500;
                line-height: 1.6;
            }
        }
    }
}

.home_advantage-items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 110px;
    gap: 1px;
    border-top:1px solid var(--border-color);
    
    .home_advantage-item {
        grid-column: span 3;
        height: 400px;
        background: #ffffff;
        color: var(--color-black);
        box-shadow: 0px 0px 0px 1px #eeeeee;
        position: relative;
        
        &::before, &::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--color-black);
            z-index: 1;
        }
        
        &::before {
           top: -1px;
           right: -1px;
        }
        
        &::after {
           bottom: -1px;
           left: -1px;
        }
    }
    
    .home_advantage-item:nth-child(even) {
        margin-top: 0px;
    }
    
    .home_advantage-item:nth-child(odd) {
        margin-top:70px;
    }
    
    .home_advantage-item-inner {
        height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .home_advantage-item-heading {
        padding: 40px;
        
        h3 {
            /*font-size: 90px;*/
             font-size: clamp(50px, 6vw, 80px);
            font-weight: 700;
            line-height: 1;
        }
    }
    
    .home_advantage-item-text {
        padding: 10px 40px;
        display: flex;
        align-items: center;
        background: #f6f6f6;
        height: 50px;
        
        p {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.6;
            text-transform: uppercase;
        }
    }
}

@media screen and (max-width: 1280px){
    .home_advantage {
        .section-inner {
            padding-block: 110px 40px;
        }
    }
    
        .home_advantage-header {
            .home_advantage-header-inner {
                .home_advantage-subheading {
                    span {
                        font-size: 12px;
                    }
                }
        }
    }
    
    .home_advantage-items{
        margin-top: 70px;
        grid-template-columns: repeat(2, 1fr);
        
        .home_advantage-item:nth-of-type(1){
            grid-area: 1 / 1 / 2 / 2;
        }
        .home_advantage-item:nth-of-type(2){
         grid-area: 1 / 2 / 2 / 3;
        }
        .home_advantage-item:nth-of-type(3){
            grid-area: 2 / 1 / 3 / 2;
        }
        .home_advantage-item:nth-of-type(4){
             grid-area: 2 / 2 / 3 / 3; 
        }
    }
    
    .home_advantage-items{
        grid-column:initial;
    }
}

@media screen and (max-width:1024px){
    .home_advantage-header {
        .home_advantage-header-inner {
            grid-column: 3 / span 8;
            
            .home_advantage-subheading{
                grid-column: 1 / span 4;
            }
            
            .home_advantage-heading {
                grid-column: 1 / span 8;
            }
            
            .home_advantage-text {
                grid-column: 1 / span 7;
                
                p{
                    font-size:14px;
                }
            }
        }
    }
}


@media screen and (max-width:768px){
    .home_advantage {
        .section-inner {
            padding-block: 80px 40px;
        }
    }
    
    .home_advantage-header {
        display:flex;
        padding-inline:20px;
        
        .home_advantage-header-inner {
            display:flex;
            flex-direction:column;
        }
    }
    
    .home_advantage-items{
        margin-top:50px;
        display: flex;
        flex-direction: column;
        gap:25px;
        
        .home_advantage-item{
            height: 250px;
            margin-top: 0px !important;
            
            .home_advantage-item-inner{
                height:100%;
            }
        }
        
        .home_advantage-item-heading {
            padding: 20px;
        }
        
        .home_advantage-item-text{
            padding: 10px 20px;
        }
    }
}

/* Rating Section Style */
.rating-section .section-inner {
  padding-inline: 0;
}

.rating-section .ratings__container {
  padding-block: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ratings__content {
  padding: 4rem 0;
  border-right: 1px solid var(--border-color);
}

.ratings__header {
  display: flex;
  flex-direction: column;
  gap: 50px;

  padding-inline: 2.5rem;
}

.ratings__header img {
  max-width: 130px;
  width: 100%;
}

.ratings__header h2 {
  font-family: var(--font-roboto-flex);
  /* font-size: 50px; */
  font-size: clamp(28px, 3.5vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.ratings__description {
  margin-block: 2rem;
  padding-inline: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 25px;

  p {
    font-size: 18px;
    line-height: 1.6;
  }
}

.ratings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--border-color);

  .rating-content-card:last-child {
    border-right: 0;
  }
}

.rating-card a {
  display: block;
  border-right: 1px solid var(--border-color);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);

  &:hover {
    background-color: #212121;
  }
}

.rating-card img {
  width: 100%;
  max-width: 110px;
}

.rating-card__stars {
  margin-block: 10px;
  display: flex;
  align-items: center;
  gap: 5px;

  svg {
    color: #f5c242;
    width: 22px;
    height: auto;
  }

  h3 {
    margin-left: 5px;
  }
}

.rating-card__body p {
  font-size: 16px;
  font-weight: 500;
  line-height:1.6;
}

.ratings__cta a {
  --current-btn-hover-clr: var(--color-pink);
  --btn-text-clr: var(--color-white);
  --icon-bg-color: var(--color-black);
  --icon-color: var(--color-white);
  --icon-hover-color: var(--color-black);
  --icon-bg-hover-color: var(--color-white);

  cursor: pointer;
  height: 90px;

  padding-inline: 20px;
  background: var(--color-white);
  color: var(--color-black);

  border: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ratings__media {
  height: 100%;
  width: 100%;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: clip-path, transform;
    clip-path: inset(0 100% 0 0);
  }
}

@media screen and (max-width: 1200px) {
  .rating-section .ratings__container {
    display: flex;
    flex-direction: column;
  }
  .ratings__content {
    padding-top:2rem;
    padding-bottom: 0;
  }
  
  .ratings__description p{
      font-size:16px;
  }
}

@media screen and (max-width:999px){
    .rating-section .ratings__container{
        padding-bottom:15px;
    }
}

@media screen and (max-width:768px){
    .ratings__content{
        padding-top: 1.5rem;
    }
    
    .ratings__header{
        padding-inline: 1.5rem;
        gap:35px;
    }
    
    .ratings__description{
        padding-inline: 1.5rem;
    }
    
    .ratings__grid{
        display:flex;
        flex-direction:column;
    }
    
    .rating-card a{
        padding:1.5rem;
    }

}


/*Home Process Section CSS Start*/

.home_process {
    .section-inner {
        padding-block: 150px 40px;
        padding-inline: 0;
    }
}

.home_process-inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: flex-start;
    position:relative;
    padding-bottom: 70px;
    
    .home_process-img {
        position:absolute;
        bottom:0;
        
        img {
            width: 100%;
            height:100%;
            max-width:250px;
        }
    }
    
    .home_process-img-one {
        /*grid-column: 1 / span 2;*/
        left:0;
    }
    
    .home_process-img-two {
        /*grid-column: 11 / span 2;*/
        right:0;
    }
    
    .home_process-info {
        grid-column: 4 / span 6;
        text-align: center;
        
        .home_process-subheading span {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            background: var(--color-white);
            color: var(--color-black);
            padding: 4px 12px;
        }
        
        .home_process-heading h2 {
            font-size: clamp(36px, 5.5vw, 75px);
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            font-family: var(--font-roboto-flex);
            letter-spacing: -2px;
            margin: 20px 0px 25px;
        }
        
        .home_process-text p {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
        }
    }
}


.process__container {
  position: relative;
  overflow: visible;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 800px;
  
  border-top: 1px solid var(--border-color);
}

.process__card {
  width: 100%;
  height: 420px;
  position: relative;
  box-shadow: 0px 0px 0px 1px var(--border-color);
  transform: translateY(var(--offset));
}

.process__card .section_dots-top{
    &::after{
        top:0;
    }
    
    &::before{
        display:none;
    }
}

.process__card .section_dots-bottom{
    &::before{
        bottom:0;
    }
    
    &::after{
        display:none;
    }
}

.process__card-1{
    --offset: 0px;
}

.process__card-2{
    --offset: 120px;
}

.process__card-3{
    --offset: 240px;
}

.process__card-4{
    --offset: calc(100% - 45px);
}

.process__card-inner{
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process__card-header{
    padding:1.5rem;
    background: #212121;
}

.process__card-header span{
    color: #ffffff80;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.process__card-body h3{
    margin-bottom: 10px;
    
    font-size: clamp(28px, 3vw, 40px);
    font-family: var(--font-roboto-flex);
    text-transform:uppercase;
    letter-spacing:-2px;
    line-height:1.1;
    font-weight: 600;
    max-width: 10ch;
}

.process__card-body{
    padding: 1.5rem;
    
    p{
        font-size: 18px;
        line-height: 1.6;
    }
}


@media screen and (max-width:1440px){
    .process__card-header{
        padding:1rem;
    }
    
    .process__card-body{
        padding: 1rem;
        
        p{
            font-size: 16px;
            line-height: 1.6;
        }
    }
}


@media screen and (max-width:1280px){
    
    .home_process-inner {
        & .home_process-img {
            img {
                max-width: 180px;
            }
        }
        
        & .home_process-info {
            .home_process-text p {
                font-size: 16px;
            }
            
            .home_process-subheading span {
                font-size: 12px;
            }
        }
    }
    
    .process__container{
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 460px;
    }
    
    .process__card-2{
        --offset: 0px;
    }
    
    .process__card-3{
        --offset: 0px;
    }
    
    .process__card-4{
        --offset: 0px;
    }
}

@media screen and (max-width:999px){
    
    .home_process {
        .section-inner {
            padding-block: 100px 40px;
        }
    }
    
    
    .home_process-inner {
        & .home_process-img {
            img {
                max-width: 180px;
            }
        }
        
        & .home_process-info {
            .home_process-text p {
                font-size: 14px;
            }
        }
    }
    .process__container{
        grid-auto-rows: 420px;
    }
    .process__card {
      height: 380px;
    }
}

@media screen and (max-width:768px){
    .home_process-inner {
        display:block;
        
        .home_process-info {
            padding-block: 0px 110px;
            padding-inline:25px;
            
            .home_process-heading h2 {
                max-width: 20ch;
                text-align: center;
                margin-inline: auto;

            }
            
            .home_process-text p {
                max-width: 60ch;
                text-align: center;
                margin-inline: auto;
            }
        }
        
        & .home_process-img {
            img {
                max-width: 120px;
            }
        }
    }
    
    
    .process__container{
        display:flex;
        flex-direction:column;
    }
    
    .process__container{
        grid-auto-rows: auto;
    }
    
    .process__card {
      height: 280px;
    }
    
    .process__card-1{
        border-block: 0;
    }
    
    .process__card-2{
        border-inline: 0;
    }
    
    .process__card-3{
        border: 0;
    }
    
    .process__card-4{
        border-inline: 0;
    }
}

@media screen and (max-width:525px){
    .home_process-inner {
        .home_process-info {
            padding-block: 0px 70px;
        }
        
        & .home_process-img {
            img {
                max-width: 90px;
            }
        }
    }
}


/* Tools Section Style */
.tools-section .section-inner {
  padding-inline: 0;
  padding-block: 40px;
}

.tools__container {
  position: relative;
}

.tools__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr;
}

.tools__header {
  grid-area: 1 / 1 / 2 / 2;

  gap: 40px;

  padding: 3rem;
  display: flex;
  flex-direction: column;

  position: relative;
  overflow: visible;

  h2 {
    font-family: var(--font-roboto-flex);
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
    max-width: 25ch;
  }

  p {
    max-width: 60ch;
    line-height: 1.6;
    font-size: 16px;
  }
}

.tools__list {
  border-left: 1px solid var(--border-color);
  grid-area: 1 / 2 / 2 / 3;
}

.tools__list {
  display: flex;
  flex-direction: column;

  .tools__item:nth-of-type(1) {
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }

  .tools__item:nth-of-type(2) {
    margin-inline: auto;
    background: #20202080;
  }

  .tools__item:nth-of-type(3) {
    margin-left: auto;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .tools__item:nth-of-type(4) {
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }
}

.tools__item {
  background: #202020;
  max-width: 50%;
  min-width: 50%;
  height: 100%;
  min-height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    max-width: 150px;
  }
}

.tools__decorative {
  border-top: 1px solid var(--border-color);
}

.tools__decorative-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);

  .tools__item {
    width: 100%;
    max-width: 100%;
  }
}

#tools__decorative-one {
  .tools__item:nth-of-type(1) {
    grid-area: 1 / 6 / 2 / 7;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .tools__item:nth-of-type(2) {
    grid-area: 1 / 4 / 2 / 5;
    border-inline: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .tools__item:nth-of-type(3) {
    grid-area: 1 / 2 / 2 / 3;
  }
}

#tools__decorative-two {
  .tools__item:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 2;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }

  .tools__item:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 4;
    border-top: 1px solid var(--border-color);
    border-inline: 1px solid var(--border-color);
  }

  .tools__item:nth-of-type(3) {
    grid-area: 1 / 6 / 2 / 5;
  }
}

@media screen and (max-width: 1280px) {
  .tools__header {
    padding: 2rem;
  }
}

@media screen and (max-width: 1200px) {
  .tools__wrapper {
    display: flex;
    flex-direction: column;
  }

  .tools__header {
    gap: 26px;

    h2 {
      max-width: 30ch;
    }
  }

  .tools__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 0;
    border-top: 1px solid var(--border-color);

    .tools__item {
      min-width: 100%;
      width: 100%;
      max-width: 100%;

      img {
        max-width: 110px;
      }
    }

    .tools__item:nth-of-type(1) {
      border-left: 0;
    }
    .tools__item:nth-of-type(2) {
      display: none;
    }
    .tools__item:nth-of-type(3) {
      grid-area: 1 / 3 / 2 / 4;
      border-top: 0;
      border-bottom: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
    }
    .tools__item:nth-of-type(4) {
      grid-area: 1 / 4 / 2 / 5;
      border-left: 1px solid var(--border-color);
      border-right: 0;
      border-top: 0;
      border-bottom: 1px solid var(--border-color);
    }
  }

  .tools__decorative {
    border-top: 0;
  }

  .tools__decorative-list {
    grid-template-columns: repeat(4, 1fr);
  }

  #tools__decorative-one {
    .tools__item:nth-of-type(1) {
      grid-area: 1 / 2 / 2 / 3;
      border: 1px solid var(--border-color);
    }
    .tools__item:nth-of-type(2) {
      grid-area: 1 / 3 / 2 / 4;
      border: 1px solid var(--border-color);
    }
  }

  #tools__decorative-two {
    .tools__item:nth-of-type(1) {
      grid-area: 1 / 1 / 2 / 2;
      border: 1px solid var(--border-color);
    }
    .tools__item:nth-of-type(2) {
      grid-area: 1 / 4 / 2 / 5;
      border: 1px solid var(--border-color);
    }
  }

  .tools__item[aria-hidden="true"] {
    display: none;
  }
}

/*@media screen and (max-width: 1024px) {*/
/*  .tools__item {*/
/*    img {*/
/*      max-width: 90px;*/
/*    }*/
/*  }*/
/*}*/

@media screen and (max-width: 768px) {
  .tools__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;

    .tools__item {
      grid-area: auto;
    }

    .tools__item:nth-of-type(3) {
      grid-area: 1 / 2 / 2 / 3;
    }

    .tools__item:nth-of-type(4) {
      grid-area: 2 / 2 / 3 / 3;
      border-top: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
    }
  }

  .tools__decorative-list {
    grid-template-columns: repeat(2, 1fr);

    .tools__item {
      grid-area: auto !important;
    }
  }
}



/* Cta Action Styles */
.cta-section .section-inner {
  padding-block: 40px;
}

.cta__container {
  padding: 100px 0 180px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cta__container h2 {
  font-family: var(--font-roboto-flex);
  font-size: clamp(30px, 4.2vw, 70px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  max-width: 22ch;
  text-align: center;
}

.cta__container p {
  font-size: 16px;
  max-width: 70ch;
  text-align: center;
}

.cta__container a {
  max-width: 250px;
  width: 100%;
}

.bg-pattern {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  max-width: calc(100% - 80px);
  height: 400px;

  position: absolute;
  bottom: 40px;

  pointer-events: none;
}

.bg-pattern-inner {
  display: grid;
  position: relative;

  width: 100%;
  flex: 1;

  grid-template-columns: repeat(12, minmax(50px, 1fr));
  grid-auto-rows: minmax(0, 1fr);
}

/* FIX: Replace SCSS nesting with valid CSS */
.bg-pattern-inner[data-pattern="1"] .bg-filler {
  grid-column: span 10;
}

.bg-pattern-inner[data-pattern="2"] .bg-filler {
  grid-column: span 8;
}

.bg-pattern-inner[data-pattern="3"] .bg-filler {
  grid-column: span 6;
}

.bg-pattern-inner[data-pattern="4"] .bg-filler {
  grid-column: span 4;
}

/* Optional: add for pattern 5 if needed */
.bg-pattern-inner[data-pattern="5"] .bg-filler {
  grid-column: span 2;
}

.bg-blank {
  width: 100%;
  height: 100%;
  background-color: #212121;
  position: relative;
}

.bg-blank.bg-dif-blank {
  background-color: rgba(33, 33, 33, 0.5);
}

@media screen and (max-width: 1280px) {
  .cta__container {
    padding-top: 60px;

    gap: 25px;
  }

  .cta__container p {
    max-width: 50ch;
    font-size: 14px;
  }

  .bg-pattern {
    height: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .cta__container a {
    max-width: 180px;
  }
}

@media screen and (max-width: 768px) {
  .cta__container {
    padding-block: 40px;
  }

  .bg-pattern {
    display: none;
  }
}


/* Our Work Section Styles */
.our-work-section .section-inner {
    --border-color: #00000015;
  padding: 40px 0;
  border-inline: 1px solid var(--border-color);
}

.our-work-section{
    &::after,&::before{
        background: #00000015;
    }
}

.our-work-section .section_dots{
    &::after,&::before{
        background: var(--color-black);
    }
}

.our-work-section .section_bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: -1;
}

.our-work__header {
  padding-inline: 40px;
  padding-block: 40px;

  display: grid;
  grid-template-rows: repeat(1, min-content);
  grid-template-columns: repeat(12, minmax(50px, 1fr));

  position: relative;
  overflow: visible;
}

.our-work__title {
  grid-column: span 7;

  place-self: start;
  align-items: flex-start;
  gap: 30px;

  display: flex;
  flex-flow: column;
  position: relative;
}

.our-work__title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--color-black);
  color: var(--color-white);
  padding: 4px 12px;
}

.our-work__title h2 {
  font-family: var(--font-roboto-flex);
  font-size: clamp(38px, 4.5vw, 75px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  max-width: 20ch;
 color: var(--color-black);
}

.our-work__description {
  grid-column: span 4;
  height: min-content;
  display: flex;
  flex-flow: column;
  position: relative;
  width: 100%;

  place-self: end start;
  align-items: flex-start;
  gap: 50px 0;
}

.our-work__description p {
  font-size: 18px;
  max-width: 50ch;
  line-height: 1.6;
  color: var(--color-black-light);
}

.our-work__cta {
  --current-btn-hover-clr: var(--color-pink);
  --btn-text-clr: var(--color-white);
    --icon-bg-color: var(--color-white);
    --icon-color: var(--color-black);
  --icon-hover-color: var(--color-black);
  --icon-bg-hover-color: var(--color-white);
  cursor: pointer;
  height: 60px;
  padding-inline: 20px;
    background: var(--color-black);
    color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 300px;
}

.our-work__list {
  display: grid;
  flex: none;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  justify-content: center;
  gap: 60px 20px;
  position: relative;
  
  
  work-card{
    border:1px solid var(--border-color);
  }
  
  work-card:nth-of-type(1){
      border-left:0;
  }
  work-card:nth-of-type(2){
      border-right:0;
  }
  work-card:nth-of-type(3){
      border-left:0;
      border-bottom:0;
  }
  work-card:nth-of-type(4){
      border-right:0;
      border-bottom:0;
  }
}

/* Make custom element behave like li */
work-card {
  display: block;
}

/* List item */
.our-work__item {
  width: 100%;
  position: relative;
}

/* Link */
.our-work__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
}

/* Thumbnail wrapper */
.our-work__thumbnail {
  aspect-ratio: 1.675;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Logo layer */
.our-work__logo-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}

/* FIXED (no nesting) */
.our-work__logo-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 250px;
}

/* Mockup layer */
.our-work__mockup-thumbnail {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  will-change: clip-path;
}

/* FIXED (no nesting) */
.our-work__mockup-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Hover = start infinite animation */
.our-work__link:hover .our-work__mockup-thumbnail img {
    animation: scrollImage 10s ease-in-out 0.6s infinite alternate;
}

@keyframes scrollImage {
  0% {
    object-position: top;
  }
  100% {
    object-position: bottom;
  }
}

/* Hover animation */
.our-work__link:hover .our-work__mockup-thumbnail {
  clip-path: inset(0 0 0 0);
}

/* Content */
.our-work__item-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Category */
.our-work__item-category {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--color-black);
  color: var(--color-white);
  padding: 4px 12px;
  width: fit-content;
}

/* Title */
.our-work__item-title {
  font-family: var(--font-roboto-flex);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--color-black);
}

/* Description */
.our-work__item-description {
  max-width: 40ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-black-light);
}

/* Accessibility: focus state */
.our-work__link:focus-visible {
  outline: 2px solid black;
  outline-offset: 4px;
}

@media screen and (max-width:1440px){
    .our-work__description p {
        font-size: 16px;
    }
    
    .our-work__item-description {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px){
    .our-work__header{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .our-work__logo-thumbnail img{
        max-width: 190px;
    }
    
    .our-work__item-category{
        font-size:12px;
    }
    
    .our-work__description .our-work__cta{
        width:stretch;
        max-width:inherit;
    }
}


@media screen and (max-width:1024px){
    .our-work__header {
        padding: 20px;
    }
}

@media screen and (max-width:768px){
    .our-work-section .section-inner{
        padding-block:20px;
    }
    
    .our-work__list{
        display: flex;
        flex-direction: column;
        
          work-card{
            border-inline:0;
          }

      work-card:nth-of-type(3){
          border-bottom:1px solid var(--border-color);
      }
    }
    
    .our-work__description{
        gap:25px;
    }
}


/* Review Section Styles */
.review-section .section-inner {
  padding: 40px 0;
}

.review__header {
  padding: 40px;

  display: grid;
  grid-template-rows: repeat(1, min-content);
  grid-template-columns: repeat(12, minmax(50px, 1fr));
}

.review__title {
  grid-column: span 8;
  place-self: start;

  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review__title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--color-white);
  color: var(--color-black);
  padding: 4px 12px;
  width: fit-content;
}

.review__title h2 {
  font-family: var(--font-roboto-flex);
  font-size: clamp(40px, 4.8vw, 75px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  max-width: 20ch;
}

.review__title p {
  font-size: 16px;
  max-width: 50ch;
  line-height: 1.6;
}

.review__cta {
  grid-column: span 4;
  height: min-content;
  place-self: flex-end;
}

.review__avatar-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.review__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--border-color);
  object-fit: cover;
  margin-left: -20px;
  background: var(--color-black-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review__avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.review__cta p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.review__content {
  border-top: 1px solid var(--border-color);
}

.review__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}

.review__item {
  position: relative;
  overflow: hidden;
  
  border-right: 1px solid var(--border-color);
  
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 2.2fr 1fr;
}


.review__card {
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap:80px;
}


.review__card[data-flex="column-reverse"]{
    flex-flow:column-reverse;
    background:var(--color-blue);
}

.review__card-quote svg{
    width:clamp(60px,5vw,100px);
    height:auto;
}


.review__card-quote[data-quote="reverse"] {
  width: max-content;
  transform: rotate(180deg);
}

.review__card-content{
    display: flex;
    flex-direction: column;
    gap:10px;
}

.review__card[data-flex="column-reverse"] .review__card-quote{
    align-self: flex-end;
}


.review__card[data-flex="column-reverse"] .review__card-footer{
    order: -1;
    margin-block:0 24px;
    align-self: flex-start;
    flex-flow: row-reverse;
}



.review__card-body p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.review__card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  margin-top: 30px;
}

.review__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review__card-info h3 {
  font-weight: 600;
  font-family: var(--font-roboto-flex);
  font-size: 16px;
}

.review__card-info p {
  color: #ffffff80;
  color: var(--color-white);
  font-size:14px;
}

.review__card-avatar .review__avatar {
  margin-inline: 0;
}

.review__card[data-flex="column-reverse"] .review__avatar {
    background: #ffffff;
    border-color: #e9e9e9;
    color: var(--color-black);
}

.review__card[data-flex="column-reverse"] .review__card-info p{
    color: var(--color-white);
}

.review__card-detail{
    border-top: 1px solid var(--border-color);
    padding: 24px;
    
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.review__card-detail h3{
    /*font-size: 60px;*/
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 700;
    font-family: var(--font-roboto-flex);
    letter-spacing: -2px;
}

.review__card-detail p{
    color: #ffffff90;
}

.review__card-detail a{
  --current-btn-hover-clr: var(--color-pink);
  --btn-text-clr: var(--color-white);
  --icon-bg-color: var(--color-black);
  --icon-color: var(--color-white);
  --icon-hover-color: var(--color-black);
  --icon-bg-hover-color: var(--color-white);
  
  cursor: pointer;
  height: 60px;
  padding-inline: 20px;
  background: var(--color-white);
  color: var(--color-black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: stretch;
  max-width: 300px;
}


@media (max-width: 1200px) {
  .review__list {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
  }
  
  ..review__title span{
      font-size:12px;
  }

  .review__item {
    min-width: 50%;
    flex: 0 0 50%;
  }
  
  .review__list {
      scroll-snap-type: x mandatory;
    }
    
    .review__item {
      scroll-snap-align: start;
    }
    
    .review__card-detail p{
        font-size:14px;
    }
}


@media screen and (max-width:1024px){
    .review__header{
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
    .review__title{
        gap:20px;
    }
    
    .review__cta{
        place-self: flex-start;
        margin-top: 20px;
    }
    
    .review__avatar-group{
        justify-content: flex-start;
        margin-left:20px;
    }
    
    .review__cta p {
        margin-top:10px;
    }
    
}

@media screen and (max-width:768px){
  .review__item {
    min-width: 100%;
    flex: 0 0 100%;
  }
}