/* ------------------ */
/* HERO MAIN SECTION  */
/* ------------------ */

a{
    text-decoration: none;
}
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    color: #fff;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Load background from data-src */
.hero-banner {
    background-image: url("/wp-content/uploads/2025/12/website-banner.webp");
}

html,body{
	overflow-x:hidden;
}

/* Dark overlay */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Shapes */
.shape {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(40px);
}
.shape:nth-child(1) { top: 10%; left: 10%; }
.shape:nth-child(2) { bottom: 20%; right: 15%; }
.shape:nth-child(3) { top: 50%; right: 5%; }

/* Content Box */
.hero-content {
    position: relative;
    z-index: 10;
    /*max-width: 650px;*/
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    max-width: 650px;
}

/* Info area (button + text) */
.hero-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #fff;
    transition: 0.3s;
}

.hero-btn:hover {
    color: #ff4500;
    border-color: #ff4500;
}

.hero-subtitle {
    margin-top: 25px;
    font-size: 18px;
    max-width: 460px;
    line-height: 1.6;
}

/* ------------------ */
/* RIGHT SOCIAL LINKS */
/* ------------------ */
.hero-social {
   position: absolute;
    right: 40px;
    top: 50%;
    text-align: right;
    z-index: 10;
    color: #fff;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg) translateY(85%);
    transform: rotate(180deg) translateY(85%);
        display: flex;
}

.hero-social .social-title {
    font-size: 16px;
    padding-bottom: 35px;
    position: relative;
}

.hero-social .social-title:after {
    content: '';
    height: 15px;
    width: 2px;
    background-color:  #999696;
    display: inline-block;
    border-radius: 3px;
    margin-top: 15px;
    margin-bottom: 15px;
    position: absolute;
    bottom: -5px;
    left: 11px;
}

.hero-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.hero-social ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: 0.3s;
}

.hero-social ul li {
    position: relative;
}

.hero-social ul li:not(:last-child):after{
    content: '';
    height: 2px;
    width: 15px;
    background-color: #999696;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    border-radius: 3px;
    right: 5px;
}

.hero-social ul li a:hover {
    color: #ff4500;
}

/* ------------------ */
/* SCROLL DOWN ARROW  */
/* ------------------ */

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 20px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    transform: translateX(-50%);
    z-index: 11;
}

.scroll-down::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
    animation: scroll 1.4s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ------------------ */
/* RESPONSIVE         */
/* ------------------ */

@media (max-width: 992px) {
    .hero-banner {
        padding: 80px 40px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-social {
        position: static;
        margin-top: 60px;
        text-align: center;
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 60px 20px;
        height: auto;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
}



:root{
  --overlay-color: rgba(0,0,0,0.45);
}

.segments-section{
  position: relative;
  overflow: hidden;
  /*padding: 80px 0;*/
  /*background: #f9a61a;*/
}

.segments-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity .5s ease, transform .5s ease;
  z-index: 1;
}

.segments-overlay{
  position: absolute;
  inset: 0;
  /*background: var(--overlay-color);*/
  z-index: 2;
}

.segments-inner{
  position: relative;
  z-index: 3;
}

.grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}

.segment{
  /*padding: 50px 40px;*/
  background: #00000045;
  transition: background .3s, transform .3s;
  height: 506px;
      display: flex;
      flex-direction: column;
    justify-content: flex-end;
        box-shadow: 0 0 1px;
}

.segment:hover{
  background: #00000045;
  /*transform: translateY(-6px);*/
}
.segment:hover .segment-content{
    transform: translateY(0);
    /*margin-bottom: 0;*/
}
.segment:hover h3{
    opacity: 0;
}
.segment h3 {
    padding-left: 30px;
    transition: opacity 0.2s;
    position: absolute;
    opacity: 0.9;
    font-size: 1.2rem;
    padding-bottom: 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: 100%;
    background: linear-gradient(359deg, #00000059, transparent);
    padding-top: 20px;
    margin: 0;
    
}
.segment-content h4 {
    font-size: 21px;
    margin-bottom: 16px;
}
.segment-content p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.segment-content .banner-btn {
    font-size: 0.85rem;
}
.segment-content {
    background: #fff;
    color: #212121;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s;
    /*transition: all 0.3s;*/
    /*margin-bottom: -50%;*/
}
.segments-section.bg-visible .segments-bg{
  opacity: 1;
  transform: scale(1);
}
.banner-btn {
    text-decoration: none;
    color: #f9a61a;
}

/* client log  */
.grey-bg {
    background: #0a0a0a;
    position: relative;
}
.grey-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0000006b;
    z-index: 0;
}
.pb-50 {
	padding-bottom:50px;
}
.client-area-text {
    position: relative;
}
.client-area {
    padding: 5rem 0px;
}
.client-area-text .section-title {
    /*max-width: 340px;*/
    /*position: absolute;*/
    /*inset-inline-start: 40%;*/
    /*top: 55px;*/
        margin-bottom: 3rem;
}

.client-area .clients-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
        gap: 30px;
}

.client-area .client-box {
    display: flex;
    justify-content: center;
    align-items: center;
	    padding: 15px 0px;
}
.client-area .client-box img {
    width: 100px;
/*     opacity: 0.6; */
    transition: all 0.5s;
	filter: grayscale(1);
}
.client-area .client-box img:hover {
    filter: grayscale(0);
}

.marquee {
    height: 400px;
    overflow: hidden;
    position: relative;
}
.marquee-track {
  display: flex;
  flex-direction: column;
  animation: scrollUp 17s linear infinite;
}



@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media (max-width: 1199px) {
    .client-area-text .section-title {
        max-width: 280px;
        top: 40px;
    }
}

@media (max-width: 991px) {
    .client-area-text .section-title {
        max-width: 230px;
        top: 25px;
    }
}

@media (max-width: 767px) {

    .client-area-text .section-title {
        text-align: center;
        position: static;
        margin: 0 auto 10px;
    }

    .client-area .clients-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-area .client-box {
        aspect-ratio: 100 / 50;
        border: 1px solid #292929 !important;
    }

    .client-area .client-box:nth-child(1),
    .client-area .client-box:nth-child(2),
    .client-area .client-box:nth-child(7),
    .client-area .client-box:nth-child(12) {
        grid-column-start: auto;
    }
    .hero-info {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .client-area .clients-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* vision mission */
section.service-area {
    padding: 5rem 0px;
}
.service-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: auto 730px;
}

.service-area .section-title {
    max-width: 470px;
    text-align: left;
}

.service-area .section-content .title-wrapper {
    margin-top: 33px;
}

.service-area .section-content .shape {
    margin-top: 37px;
}

.service-area .section-content .shape img {
    transform: rotateY(180deg);
}

.service-area .section-content .btn-wrapper {
    margin-top: 50px;
}

.service-area .services-wrapper {
    display: grid;
    gap: 93px 120px;
    grid-template-columns: repeat(2, 1fr);
}

.service-box .tag {
    font-size: 14px;
    display: block;
    color: #fff;
    padding-bottom: 23px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
}

.service-box .title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 29px;
}

.service-box .icon {
    margin-top: 32px;
}

.service-box .icon img {
    height: 60px;
}

.service-box .text {
    margin-top: 30px;
}

.service-box .btn-wrapper {
    margin-top: 51px;
}
.service-box .title a {
    color: #fff;
    text-decoration: none;
}
.service-box .btn-wrapper a {
    color: #fff;
    text-decoration: none;
}
.service-area .wc-btn-primary {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #ffffff;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
}
@media (max-width: 1400px) {
    .service-area .section-title {
        max-width: 430px;
    }
}

@media (max-width: 1199px) {
    .service-area-inner {
        grid-template-columns: auto 630px;
    }
    .service-area .section-title {
        max-width: 370px;
    }
    .service-area .services-wrapper {
        gap: 93px 80px;
    }
    .service-box .title {
        font-size: 26px;
    }
    .service-box .btn-wrapper {
        margin-top: 41px;
    }
}

@media (max-width: 991px) {
    .service-area-inner {
        grid-template-columns: auto 540px;
    }
    .service-area .section-content .title-wrapper {
        margin-top: 28px;
    }
    .service-area .section-content .shape {
        margin-top: 27px;
    }
    .service-area .section-content .btn-wrapper {
        margin-top: 40px;
    }
    .service-area .services-wrapper {
        gap: 63px 50px;
    }
    .service-box .tag {
        padding-bottom: 13px;
    }
    .service-box .title {
        font-size: 22px;
        margin-top: 19px;
    }
    .service-box .icon {
        margin-top: 22px;
    }
    .service-box .icon img {
        height: 45px;
    }
    .service-box .btn-wrapper {
        margin-top: 31px;
    }
    
}

@media (max-width: 767px) {
    .service-area-inner {
        grid-template-columns: auto;
    }
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .segment {
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 575px) {
    .service-area .services-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* awards  */
.tt-heading {
    position: relative;
    padding: 0 15px;
    margin-bottom: 40px;
    z-index: 9;
}

.tt-heading.tt-heading-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.tt-heading-subtitle {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-size: calc(15px + 0.1vw);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.tt-heading-title {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 600;
    line-height: 1;
}

.tt-heading.tt-heading-xxxlg .tt-heading-title {
    font-size: 56px;
}

.tt-text-reveal > span {
    position: relative;
    display: inline;
    color: #111;
    -webkit-text-fill-color: #111;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-image: linear-gradient(#111, #111);
    background-size: 0% 100%;
    will-change: background-size;
}

.tt-section {
    position: relative;
    padding: 80px 0;
}

.tt-section-inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.tt-avards-list {
    position: relative;
}

.tt-avlist-item {
    position: relative;
    display: block;
    padding: 24px 2vw;
    color: #fff;
    border-top: 1px solid rgb(255 255 255 / 19%);
    counter-increment: tt-avlist-counter;
    transition: color .3s .1s;
    text-decoration: none;
}

body:not(.is-mobile) .tt-avlist-item:hover,
body:not(.is-mobile) .tt-avlist-item:focus {
    color: #000;
}

body:not(.is-mobile) .tt-avlist-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background-color: #fafafa;
    clip-path: inset(50% 0);
    z-index: 1;
    transition: clip-path .3s ease-in-out;
}

body:not(.is-mobile) .tt-avlist-item:hover::before {
    clip-path: inset(0 0);
}

.tt-avlist-item-inner {
    position: relative;
    max-width: 1600px;
    margin: auto;
    z-index: 2;
}

.tt-avlist-col {
    position: relative;
}

.tt-avlist-count::before {
    content: counter(tt-avlist-counter, decimal-leading-zero);
    font-size: 14px;
    opacity: .5;
}

.tt-avlist-title {
    margin: 0;
    font-family: 'Inter';
    font-size: 19px;
    font-weight: 500;
}

.tt-avlist-description,
.tt-avlist-info {
    font-size: 16px;
    opacity: .8;
}

body:not(.is-mobile) .tt-avlist-item:hover *,
body:not(.is-mobile) .tt-avlist-item:focus * {
    opacity: 1;
}

/* ---- MEDIA QUERIES LAST ---- */

@media (min-width: 769px) {
    .tt-avlist-item-inner {
        display: flex;
    }

    .tt-avlist-col {
        display: flex;
        flex: 1;
        align-items: center;
        padding: 0 15px;
    }

    .tt-avlist-col.tt-avlist-col-count {
        flex: 0.2;
    }

    .tt-avlist-col.tt-avlist-col-info {
        flex: 0.5;
        justify-content: flex-end;
    }
}

@media (min-width: 992px) {
        .tt-heading.tt-heading-xxxlg .tt-heading-subtitle {
        margin-bottom: 10px;
        font-weight: 300;
        font-size: 12px;
    }
    .tt-heading.tt-heading-xxxlg .tt-heading-title + p,
    .tt-heading.tt-heading-xxxlg .tt-heading-subtitle + p {
        margin-top: 30px;
    }
}


.call-action-sec {
  position: relative;
}

.call-action-sec .call-action {
    width: 100%;
}

.butn-arrow {
    padding: 7px 7px 7px 20px;
    border-radius: 10px;
    background: #fff;
    backdrop-filter: blur(10px);
    color: #111012;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    transition: all 0.4s;
    text-decoration: none;
    padding: 10px 20px;
}
.butn-arrow.butn-rounded {
    border-radius: 40px;
}
.butn-arrow .arrow-icon {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 5px;
  background: #111012;
  margin-left: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.butn-arrow .arrow-icon svg {
  stroke: #fff;
  width: 32px;
  transition: all 0.4s;
}
.butn-arrow .arrow-icon svg:first-of-type {
  position: absolute;
  top: 0;
  height: 100%;
  transform: translateY(-40px);
}
.butn-arrow:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff;
}
.butn-arrow:hover .arrow-icon svg:first-of-type {
  transform: translateY(0);
}
.butn-arrow:hover .arrow-icon svg:last-of-type {
  transform: translateY(40px);
}
.bg-img-re {
    padding: 90px 0px;
    background-attachment: fixed;
    background-size: cover;
	position:relative;
}
.bg-img-re:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #000000c4;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.call-action-sec .call-action {
    text-align: center;
    z-index: 2;
	position: relative;
}
.call-action-sec .call-action h2 {
    font-size: 58px;
/*     margin: 4rem 0px; */
    line-height: initial;
}
@media screen and (max-width: 992px) {
  .hero-demo h1 {
    font-size: 40px !important;
  }
  .call-action h2 {
    font-size: 55px !important;
  }
}
@media screen and (max-width: 768px) {
  .call-action h2 {
    font-size: 36px !important;
  }
}

/* box feat  */
.main-marq {
    position: relative;
    padding: 0;
    margin-bottom: 8rem;
    border-bottom: solid 1px #ffffff1c;
    padding-bottom: 70px;
}
.main-marq .section-title {
    margin-bottom: 50px;
    font-weight: 400;
}
.w-70px {
    width: 70px;
}
.box-feat .item .view_more {
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
    display: inline-block;
	transition: .3s ease;
}
.box-feat .item .view_more:hover {
    background: #fff;
    color: #000;
}
.main-marq:after {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -5px;
  right: -5px;
  pointer-events: none;
  background: linear-gradient(to left, #161616, rgba(255, 255, 255, 0) 250px, rgba(255, 255, 255, 0) calc(100% - 250px), #161616);
}
.main-marq.with-shad:after {
  content: "";
}
.main-marq.md-text .box .item-mark h4 {
  font-size: 40px;
}
.main-marq.lrg .box .item-mark h4 {
  font-size: 5vw;
}
.main-marq.xlrg .box .item-mark {
  padding: 0 30px;
}
.main-marq.xlrg .box .item-mark h4 {
  font-size: 10vw;
}
.main-marq .slide-har {
  display: flex;
}
.main-marq .strok .item-mark h4 {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .strok .item-mark h4 a {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .non-strok .item-mark h4 {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .non-strok .item-mark h4 a {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .box {
  display: flex;
}
.main-marq .box .item-mark {
  padding: 0 30px;
}
.main-marq .box .item-mark h4 {
  white-space: nowrap;
  margin: 0;
  line-height: 1.2;
}
.main-marq .box .item-mark h4 .icon {
  margin-bottom: -15px;
}
.main-marq .box .item-mark h2 {
  margin: 0;
}
.main-marq .box .item-mark:nth-of-type(even) h4 {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box .item-mark:nth-of-type(even) h4 a {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box:last-of-type .item-mark:nth-of-type(even) h4 {
  color: #fff;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item-mark:nth-of-type(even) h4 a {
  color: #fff;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item-mark:nth-of-type(odd) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.main-marq .box:last-of-type .item-mark:nth-of-type(odd) h4 a {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.main-marq.sm-pad .box .item {
  padding: 0 15px;
}

.slide-har {
  position: relative;
}
.slide-har.st1 .box {
  position: relative;
  animation: slide-har 70s linear infinite;
}
.slide-har.st2 .box {
  position: relative;
  animation: slide-har-revers 70s linear infinite;
}

@keyframes slide-har {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-har-revers {
  100% {
    transform: translateX(0%);
  }
  0% {
    transform: translateX(-100%);
  }
}

section.box-feat {
	padding:6rem 0;
}
.box-feat .item {
    background: #1f1f1f;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
	padding: 0px;
	height: 330px;
}
.porto.pl-15px.pr-15px {
    padding: 30px 0px;
}
.box-feat .item h2 {
    font-size: 38px;
    font-weight: 300;
    margin: 0;
}
section.box-feat h2.section-title.has_fade_anim {
    margin-bottom: 60px;
}
.box-feat .img {
    background: #000;
    padding: 0px;
    overflow: hidden;
	height: 100%;
/*     border-radius: 30px; */
}
.box-feat .img img {
    width: 100%;
	object-fit: cover;
}
.box-feat .item span {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  font-size: 13px;
}

.box-feat .item .respo {
  position: absolute;
  bottom: 80px;
  right: 40px;
}

.box-feat .item .line-svg {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
}

.box-feat .item .line-svg svg path {
  stroke: #fff;
}

/* .porto.pl-15px.pr-15px {
    padding: 10px 0px;
    padding-top: 30px;
} */
.box-feat .item p.mb-15px {
    margin-bottom: 0;
    margin-top: 14px;
    padding: 0px 20px;
}

.portfolio-slider .swiper-button-prev, .portfolio-slider .swiper-button-next {
    color: #fff;
}

























/*testi*/
/* .testimonial {
    padding: 100px 0;
} */
.testimonial-item {
    text-align: center;
    max-width: 1070px;
    margin: auto;
}
.testimonial h1.about-main-title{
	    margin-bottom: 60px;
}
.testimonial-item .text-wrapper {
    margin-top: 53px;
}
.testimonial-item .text {
    font-size: 20px;
    line-height: 1.38;
    font-weight: 300;
}
.testimonial-item .author {
    margin-top: 44px;
}
.testimonial-item .name {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}
.testimonial-item .post {
    font-size: 18px;
    display: inline-block;
}

.testimonial .swiper-button-prev, .testimonial .swiper-button-next {
    color: #fff;
}



/* Swiper pagination container */
.portfolio-slider .swiper-pagination,
.case_study-slider .swiper-pagination{
  position: absolute;
  bottom: 0px;   /* image se bahar 40px */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}


.portfolio-slider .swiper-pagination-bullet,
.case_study-slider .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: #bfbfbf; /* light grey */
  opacity: 1;
  margin: 0 6px;
}

.portfolio-slider .swiper-pagination-bullet-active
.case_study-slider .swiper-pagination-bullet-active, {
  background: #ffffff; /* white */
}
.portfolio-slider,
.case_study-slider{
  position: relative;
/*   padding-bottom: 60px;  */
}


/*faq*/

.faq-area {
/*     padding: 100px 0; */
    border-top: solid 1px #eeeeee2e;
}

.faq-area .section-title {
    color: #fff;
}

.faq-area .section-content {
    background-color: #000;
    /*display: grid;*/
    /*gap: 0px;*/
    /*grid-template-columns: 450px auto;*/
    /*justify-content: space-between;*/
}

.faq-area .accordion-wrapper {
    margin-top: 47px;
}

.faq-area .accordion .accordion-button {
    font-size: 20px;
    line-height: 1.00;
    color: #fff;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    text-align: start;
    font-weight: 200;
}

.faq-area .accordion .accordion-button .section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #121212;
    text-transform: uppercase;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 10px;
    background-color: #fff;
}

.faq-area .accordion .accordion-button br {
    /* media removed → keeping default display */
}

.faq-area .accordion .accordion-button::after {
    content: "+";
    color: #fff;
    background-image: none;
    line-height: 1;
    width: auto;
    height: auto;
    font-size: 25px;
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.faq-area .accordion .accordion-button:not(.collapsed) {
    pointer-events: none;
}

.faq-area .accordion .accordion-button:not(.collapsed)::after {
    content: "-";
}

.faq-area .accordion .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: transparent;
    border-radius: 0;
}

.faq-area .accordion .accordion-item:not(:first-child) {
    margin-top: 0px;
}

.faq-area .accordion .accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-area .accordion .accordion-body {
    font-size: 18px;
    line-height: 1.44;
    padding-inline-start: 0px;
    padding-inline-end: 0px;
    padding-bottom: 24px;
    padding-top: 0;
    color: #999;
}

.faq-area .thumb {
    position: relative;
}

.faq-area .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-area .thumb .wc-btn-circle {
   display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    width: 100px;
    height: 100px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    font-weight: 500;
    font-size: 16px;

}




.services {
    padding: 6rem 0;
    /*padding-top: 70px;*/
}
h3.subtitle {
	font-size: 13px;
	margin-bottom: 20px;
	background: #fff;
	color: #000;
	padding: 5px 10px;
	display: inline-block;
	border-radius: 20px
}
.services .title {
    font-size: 50px;
    margin-bottom: 45px;
}

section.services.case-study-main.awards {
  padding-bottom: 50px;
  background: #121212; 
}

.services .btn-link {
    text-decoration: none;
    color: #fefefe;
    visibility: visible;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
    animation-name: fadeInLeft;
}

.services .btn-link {
    text-decoration: none;
    color: #f39c12;
    visibility: visible;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
    animation-name: fadeInLeft;
}


.services .btn-link:hover span::before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.services .btn-link span::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
}


.services .btn-link span {
    display: inline-block;
    position: relative;
}
.services .btn-link svg {
    margin-left: 15px;
}



a.service-card {
    position: relative;
    border-radius: 15px;
	display: block;
    max-height: 300px;
    overflow: hidden;
}

a.service-card img {
    width: 100%;
    border-radius: inherit;
    border: none;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #000000;
    opacity: 0.5;
}

.card-info {
    position: absolute;
    padding: 0 25px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
	width: 100%;
	text-align: center;
}
.card-title {
    font-size: 22px;
    margin: 0;
    line-height: 1.5em;
    color: #fff;
}

a.service-card:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    filter: drop-shadow(0px 0px 30px #f39c12);
    z-index: -1;
    background: #f39c12;
    border-radius: 18px;
    opacity: 0;
    transition: all 0.4s ease;
}

a.service-card:hover:before {
    opacity: 0.5;
}
.case_study-slider .cs-post.cs-style1 {
    background: #000;
    border: solid 1px #ffffff36;
    border-radius: 15px;
    box-shadow: 0px 0px 40px -37px #fff;
    overflow: hidden;
	position:relative;
}
.case_study-slider .cs-post_info {
    padding: 15px 20px;
}

.case_study-slider .cs-post_info h2.cs-post_title a {
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    display: revert;
    font-size: 22px;
}
.case_study-slider .cs-post_info .cs-category {
    font-size: 14px;
    background: var(--secondary-color);
    display: inline-block;
    color: #000;
    padding: 0px 10px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 5px;
	position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}
.case_study-slider .cs-post_info h2.cs-post_title {
    font-size: 25px;
    margin: 0px;
}
/* .cs-posted_by {
    margin-top: 20px;
    font-size: 12px;
} */
.cs-post.cs-style1 img {
/*     width: 100%; */
    height: 330px;
    object-fit: cover;
}
.cs-post.cs-style1{
	text-align:center;
}

/* .case_study-slider {
    position: absolute;
    right: 0;
    top: 50%;
    width: 60%;
    padding: 20px 0px;
    transform: translateY(-50%);
} */
.case-study-main {
    position: relative;
    /*padding-bottom: 200px;*/
    /*background: #121212;*/
}

.sec-bg {
    /*background: #121212;*/
}

section.service-area {
    /*background: #121212;*/
}

.awards .case_study-slider .cs-post.cs-style1 {
    border: none;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

p.team-desc {
    font-size: 13px;
}

@media screen and (max-width: 1023px) {
 
 .client-area-text .section-title {
        position: unset;
        max-width: 100%;
        margin-bottom: 40px;
    }
    .case_study-slider {
        position: unset;
        transform: unset;
        width: 100%;
    }
    .services .title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    .section-heading {
        margin-bottom: 40px;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .segment {
    height: 273px;
  }
  
  .service-area-inner {
      grid-template-columns: unset;
  }
}


@media screen and (max-width: 767px){
 .bg-img-re {
    padding: 3.5rem 0px;
}
.about-section, .footer {
    padding: 0;
}

h2.about-label {
    font-size: 36px;
}
.section-heading
 {
    margin-bottom: 40px;
}
.services .title {
    font-size: 36px;
    margin-bottom: 30px;
}
.services .btn-link {
    font-size: 18px;
}


.card-info {
    padding: 0;
    left: 50%;
    transform: translate(-50%);
}
.card-title {
    font-size: 32px;
}

.services.sec-bg {
    padding-bottom: 15px;
}


section.box-feat {
    padding: 4rem 0;
}
.case-study-main {
    background: #121212;
    padding: 4rem 0;
}



.case_study-slider {
    position: unset;
    width: 100%;
    transform: unset;
}


/* .testimonial {
    padding: 5rem 0 3.5rem;
} */

    .testimonial h1.about-main-title {
        font-size: 42px;
            margin-bottom: 30px;
    }


.testimonial-item .text {
    font-size: 24px;
}


.faq-area .section-content {
    grid-template-columns: auto;
}


.faq-area {
    padding: 20px 0;
}


.box-feat .item {
    margin-bottom: 20px;
}
.team-card {
    margin-bottom: 20px;
}
	.main-marq {
    margin-bottom: 0rem;
}
	.call-action-sec {
     padding: 0;
}
	.testimonial-item .text {
        font-size: 16px;
        padding: 0px 50px;
    }
.faq-area .content-last {
    padding: 60px 15px 80px;
    border: solid 1px #eeeeee2e;
}
}


/* Backto Up */

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 40px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow:inset 0 0 0 2px #f39c1229;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: '\f062';
	font-family: 'FontAwesome';
	text-align: center;
	line-height: 40px;
	font-size: 17px;
	color: var(--main-color);
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: #f2c308;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
