/*-hero-banner-*/
.sec-banner{
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 110px;
    align-items: end;
    margin: auto;
    max-width: 800px;
    justify-items: center;
    text-align: center;
}

/*-client-logos-*/
.collab_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.collab_imgs li {
  position: relative;
  height: 60px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0; 
}

.collab_imgs li img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity, filter;
}

.collab_imgs li img.exit {
  animation: fadeDown 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.collab_imgs li img.enter {
  opacity: 0;
  transform: translate(-50%, -150%);
  filter: blur(5px);
}

.collab_imgs li img.enter.active {
  animation: fadeFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeDown {
  to {
    opacity: 0;
    transform: translate(-50%, 150%) scale(0.9);
    filter: blur(10px);
  }
}

@keyframes fadeFromTop {
  from {
    opacity: 0;
    transform: translate(-50%, -150%) scale(0.9);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

@media only screen and (max-width: 767px) {
  .collab_imgs {
    gap: 1.5rem;
    flex-wrap: nowrap;
  }
  .collab_imgs li {
    width: 155%;
  }
}

/*-Macbook-frame-*/
.frame-cont{
    position: relative;
    margin: 90px 0px;
}
.seo-key{
    position: absolute;
    z-index: -1;
}

.frame-showreel {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.frame-cvr {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width:767px){
    .frame-cont{
        margin: 60px 0px;
    }
}
/*-3-cols-under-frame*/
.under-frame{
    display: flex;
    grid-column-gap:74px;
    grid-row-gap:44px;
}

.under-frame li{
    display: grid;
    grid-template-columns: 1fr;
}

.under-frame li h3{
    margin-top: 26px;
    margin-bottom: 10px;
}

@media only screen and (max-width:999px){
    .under-frame{
        flex-direction:column;
    }
    .under-frame li {
        justify-items: center;
        text-align: center;
    }
}


/*-Work-*/
.work-cont{
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.3fr;
    justify-content: space-between;
    grid-row-gap: 44px;
    grid-column-gap: 0px;
}

.section-label {
    position: absolute;
    top: 5px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    color: #808080;
}

.section-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #a6a6a6;
    border-radius:50%;
    margin-right: 6px;
}

.section-label::after {
    content: "";
    flex:1;
    height: 1px;
    background:linear-gradient(to right, #a6a6a6, transparent);
    margin-left: 8px;
    width: 50px;
}

/*-work-fact-column-*/
.work-fact-col{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.work-fact-cont{
    background:white;
    border-radius:10px;
    padding:12px;
}

.f-numb{
    font-size: 34px;
    font-weight: 600;
    color: var(--brand-red-color);
}

.f-title{
    font-size: 15px;
}

/*-work-items-*/
.workitemscont{
    display: grid;
    grid-template-columns: 0.31fr 1fr;
}

.work-items-cols{
    grid-column:2;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap:44px;
    grid-row-gap: 34px;
}

.work-stk-img {
    position: sticky;
    top: 2rem;
    /*width: 100%;
    max-height: 400px;*/
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.scroll-sections {
    display: flex;
    flex-direction: column;
}

.workscrollitem {
    height: 250px;
    height: auto;
    max-height:auto;
    margin-bottom: 3rem;
    padding: 4rem 1.5rem;
    background: #f0f0f0;
    background: #ffffff63;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.3;
    transform: scale(0.98);
    box-shadow: 0 5px 10px rgba(0,0,0,0.04);
}

.workscrollitem.active {
    opacity: 1;
    transform: scale(1.02);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding-right: 0rem;
    padding-left: 1rem;
    background: transparent;
    box-shadow: none;
}

.workscrollitem h3 {
    margin: 0 0 1rem;
}

.workscrollitem p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}
.workscrollitem:last-child{
    margin-bottom: 0rem;
}

.work_type{
    display: flex;
    gap: 7px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.work_type li{
    background: hsl(0deg 0.9% 21.76% / 5%);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 17px;
}

.work-btm-info{
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 104px;
    grid-row-gap: 24px;
    max-width: 700px;
    margin: auto;
    justify-items: center;
    text-align: center;
}

.over_link{
    transform: all 0.3s ease;
}

.over_link:hover h3{
    color: var(--hover);
    text-decoration: underline;
}

@media only screen and (max-width:1080px){
    .work-cont {
        grid-template-columns: 1fr;
    }
    .workitemscont{
        grid-template-columns: 1fr;
    }
}
    
@media only screen and (max-width:999px){
    .work-items-cols{
        grid-template-columns: 1fr;
    }
    .work-stk-img{
        width: 100%;
        height: 100%;
    }
}

/*-services-*/
.fixed-2cols{
    display: grid;
    grid-template-columns: 0.31fr 1fr;
    grid-row-gap: 44px;
}

.service-cont{
    display: grid;
    grid-template-columns: 0.31fr 1fr;
}

.service-cols{
    grid-column: 2;
    display: flex;
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    align-items: center;
    justify-content: space-between;
}

.service-col-1{
    display: flex;
    flex-direction: column;
    grid-row-gap: 1.1rem;
    font-size: 2rem;
}

.service-col-1 a span{
    color:var(--main);
    transition: all 0.2s ease;
}
.service-col-1 a:hover span{
    color:var(--hover);
    font-weight: 500;
}

.service-btm-msg{
    grid-column: 2;
    display: flex;
    grid-column-gap: 44px;
    align-items: center;
    justify-content: space-between;
}

.service-archive a{
    color:var(--blue-color);
    font-weight:600;
}

@media only screen and (max-width:1080px){
    .fixed-2cols{
        grid-template-columns: 1fr;
    }
    
    .service-cont {
        grid-template-columns: 0.07fr 1fr;
    }
    
}

@media only screen and (max-width: 768px) {
    .service-cont {
        grid-template-columns: 1fr;
    }
    .service-cols {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
    }
    .service-btm-msg{
        grid-column: 1;
        justify-content: center;
    }
}
/*-testimonial-*/
.review-cont{
    border-radius:10px;
    padding: 80px;
    margin-left: 80px;
    margin-right: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff, #f8f9ff);
    background: var(--primary-bg-light);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.review-cont svg{
    position: absolute;
    top: -80px;
    color: var(--white);
}

.review-cols{
    display: flex;
    grid-column-gap: 104px;
    grid-row-gap: 54px;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 134px;
}

.review-text{
    position: relative;
    font-size: 36px;
    font-weight: 500;
    color: inherit;
    max-width: 900px;
}

.review-cl{
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.about-cl{
    color:var(--d-text);
}

@media only screen and (max-width: 1080px) {
    .review-cont{
        margin-left: 0px;
        margin-right: 0px;
        padding: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .review-cont{
        margin-left: 0px;
        margin-right: 0px;
        padding:30px;
    }
    .review-cont svg{
        width:190px;
    }
    
    .review-cols {
        flex-direction: column;
        align-items: inherit;
    }
    
    .review-text{
        font-size: 24px;
    }
    .review-cl-info{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        grid-column-gap: 44px;
    }
    .review-cl-info img{
        width:90px;
    }
    .review-cl{
        font-size: 15px;
    }
    .about-cl{
        font-size: 13px;
    }
}
/*-Expertise-*/
.whyus-cont{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap:44px;
    grid-column-gap:44px;
}

.whyus-col2{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-list {
    margin: 0;
    padding: 0;
}

.expertise-list dt:first-child{
    border-top: 0px;
}

.expertise-list dt {
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: var(--outline);
}

.expertise-list dt::after {
    content: "+";
    position: absolute;
    top: 24px;
    right: 0;
    font-size: 20px;
    color: var(--d-light-text);
    transition: transform 0.3s ease;
}

.expertise-list dt.active::after {
    content: "-";
    transform: rotate(180deg);
}

.expertise-list dd {
    color:var(--d-text);
    margin-left: 0px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.expertise-list dd .break {
    display:block;
    margin-bottom: 15px;
}

.expertise-list dd.open {
    margin-bottom: 24px;
    max-height: 700px;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .whyus-cont {
        grid-template-columns: 1fr;
    }
}

/*-blogs-*/
.blog-cont{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 44px;
    align-items: start;
}
.ftr-item{
    display:grid;
    grid-template-columns:auto;
    grid-row-gap:24px;
}
.ftr-reading{
    font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.ftr-reading::before{
    content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #a6a6a6;
  border-radius: 50%;
  margin-right: 6px;
}
.ftr-title{
    margin-top: 5px;
    margin-bottom: 10px;
}

.ftr-title a span{
    color:var(--main);
}

.ftr-title a:hover span{
    color:var(--hover);
}

.vert-cont{
    display:grid;
    grid-template-columns:1fr;
}
.vert-cont li{
    padding: 20px 0px;
    border-radius: 0px;
    border-bottom: var(--outline);
}

.vert-cont li:last-child{
    border-bottom: 0px;
}

.vert-cont li a{
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.vert-cont li a:hover{
    color: var(--hover);
}

@media only screen and (max-width:1080px){
    .blog-cont {
        grid-template-columns: 1fr;
    }
    
    .vert-cont li:first-child{
        border-top: var(--outline);
    }
    .vert-cont li:last-child{
        border-bottom: var(--outline);
    }
    
}