/*==============================================
    Services One
===============================================*/
.servces-one {
    position: relative;
    display: block;
    background-color: var(--techguru-black);
    counter-reset: count;
    padding: 140px 0 121px;
    overflow: hidden;
    z-index: 1;
}

.servces-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--techguru-white-rgb), 0.04);
    z-index: -1;
}

.servces-one__shape-2 {
    position: absolute;
    width: 962px;
    top: 0px;
    height: 1147px;
    left: -491px;
    opacity: 0.5;
    filter: blur(60px);
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #4CC24C 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.servces-one__shape-3 {
    position: absolute;
    top: 45px;
    right: 0;
    mix-blend-mode: lighten;
    z-index: -1;
}

.servces-one__shape-3>img {
    width: auto;
}

.servces-one__top {
    position: relative;
    display: block;
    margin-bottom: 78px;
}

.servces-one__top .section-title {
    margin-bottom: 0;
}

.servces-one__top-left {
    position: relative;
    display: block;
}

.servces-one__top-right {
    position: relative;
    display: block;
    margin-top: 50px;
}

.servces-one__bottom {
    position: relative;
    display: block;
}

.servces-one__img-box {
    position: relative;
    display: block;
    margin-right: 17px;
}

.servces-one__img {
    position: relative;
    display: block;
}

.servces-one__img>img {
    width: 100%;
}

.servces-one__img-2 {
    position: absolute;
    bottom: -60px;
    left: -95px;
}

.servces-one__img-2>img {
    width: auto;
}

.servces-one__shape-1 {
    position: absolute;
    top: -12px;
    right: 12px;
}

.servces-one__shape-1 img {
    width: auto;
}

.servces-one__bottom-right {
    position: relative;
    display: block;
}

.services-one__services-list {
    position: relative;
    display: block;
}

.services-one__services-list li {
    position: relative;
    display: block;
}

.services-one__services-list li+li {
    margin-top: 18px;
}

.services-one__services-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(var(--techguru-white-rgb), .10);
    padding-bottom: 19px;
}

.services-one__services-list li:last-child .services-one__services-single {
    border-bottom: 0;
}

.services-one__count-and-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.services-one__count {
    position: relative;
    display: block;
    top: 5px;
}

.services-one__count::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    color: var(--techguru-gray);
    counter-increment: count 1;
    content: "0"counter(count);
    transition: 500ms;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__services-list li:hover .services-one__count::before {
    color: var(--techguru-base);
}

.services-one__content {
    position: relative;
    display: block;
}

.services-one__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.services-one__title a {
    color: var(--techguru-white);
}

.services-one__services-list li:hover .services-one__title a {
    color: var(--techguru-base);
}

.services-one__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__services-list li:hover .services-one__text {
    color: var(--techguru-base);
}

.services-one__arrow {
    position: relative;
    display: block;
}

.services-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 18px;
    color: var(--techguru-white);
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;
}

.services-one__arrow a span {
    transform: rotate(-45deg);
}

.services-one__services-list li:hover .services-one__arrow a {
    background-color: var(--techguru-base);
    color: var(--techguru-black);
}

.services-one__arrow a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #2E8B2E, #4CC24C) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.services-one__services-list li:hover .services-one__arrow a:before {
    display: none;
}

.services-one__hover-img {
    position: absolute;
    top: -30px;
    right: 75px;
    height: 150px;
    width: 150px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    -webkit-animation: inactiveImageAnimation 1s forwards ease;
    animation: inactiveImageAnimation 1s forwards ease;
    z-index: 2;
}

.services-one__hover-img:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #2E8B2E, #4CC24C) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
}

.services-one__hover-img img {
    width: 100%;
    border-radius: 8px;
}

.services-one__services-list li:hover .services-one__hover-img {
    -webkit-animation: activeImageAnimation 1s forwards ease;
    animation: activeImageAnimation 1s forwards ease;
}


@keyframes inactiveImageAnimation {
    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes activeImageAnimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 140px 0 140px;
    overflow: hidden;
    z-index: 1;
}

.services-two__shape-1 {
    position: absolute;
    left: -26.04%;
    right: 75.94%;
    top: 12.69%;
    bottom: -4.15%;
    opacity: .50;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #4CC24C 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.services-two__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 58px;
}

.services-two__top .section-title {
    margin-bottom: 0px;
}

.services-two__round-text-box {
    position: relative;
    display: block;
    top: -11px;
}

.services-two__round-text-box-outer {
    position: relative;
    display: block;
    width: 135px;
    height: 135px;
}

.services-two__round-text-box-inner {
    position: relative;
    display: block;
    width: 135px;
    height: 135px;
}

.services-two__curved-circle {
    position: absolute;
    top: -5px;
    left: 0px;
    bottom: 0;
    right: 0;
    color: var(--techguru-base);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize !important;
    height: 135px !important;
}

.services-two__round-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.services-two__round-icon img {
    width: auto;
}

.services-two__top .section-title__title img {
    width: 120px;
    border-radius: 20px;
}

.services-two__bottom {
    position: relative;
    display: block;
}

.services-two__services-list {
    position: relative;
    display: block;
}

.services-two__services-list-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 0 32px;
    z-index: 1;
}

.services-two__services-list-single-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    opacity: 0.2;
    z-index: -1;
}

.services-two__services-list-single::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    opacity: 0.2;
    z-index: -1;
}

.services-two__count-and-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-two__count {
    position: relative;
    display: block;
}

.services-two__count::after {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: var(--techguru-white);
    counter-increment: count 1;
    content: "0"counter(count);
    transition: 500ms;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__count:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #2E8B2E, #4CC24C) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.services-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    text-transform: capitalize;
}

.services-two__title a {
    color: var(--techguru-white);
}

.services-two__services-list-single:hover .services-two__title a {
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-two__service-list-box {
    position: relative;
    display: block;
    max-width: 650px;
    width: 100%;
}

.services-two__services-list-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;
}

.services-two__services-list-inner li {
    position: relative;
    display: block;
    max-width: 180px;
    width: 100%;
}

.services-two__services-list-inner li+li {
    margin-top: 7px;
}

.services-two__services-list-inner li p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
}

.services-two__services-list-single:hover .services-two__services-list-inner li p {
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-two__services-list-inner li p span {
    position: relative;
    font-size: 8px;
}

.services-two__hover-img {
    position: absolute;
    top: -50px;
    left: 355px;
    height: 320px;
    width: 250px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    -webkit-animation: inactiveImageAnimation 1s forwards ease;
    animation: inactiveImageAnimation 1s forwards ease;
    z-index: 2;
}

.services-two__hover-img img {
    width: 100%;
    border-radius: 20px;
}

.services-two__services-list-single:hover .services-two__hover-img {
    -webkit-animation: activeImageAnimation 1s forwards ease;
    animation: activeImageAnimation 1s forwards ease;
}


@keyframes inactiveImageAnimation {
    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes activeImageAnimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    background-color: var(--techguru-black);
    padding: 140px 0 140px;
    overflow: hidden;
    z-index: 1;
}

.services-three::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--techguru-white-rgb), 0.04);
    z-index: -1;
}

.services-three__shape-1 {
    position: absolute;
    left: 24.95%;
    right: 24.95%;
    top: 0%;
    bottom: -11.72%;
    opacity: .30;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #2E8B2E 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.services-three__shape-2 {
    position: absolute;
    left: -26.04%;
    right: 75.94%;
    top: 12.69%;
    bottom: -4.15%;
    opacity: .50;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #4CC24C 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.services-three__single {
    position: relative;
    display: block;
    padding: 30px 40px 30px;
    border-radius: 10px;
    z-index: 1;
}

.services-three__single:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 10px;
    border: 1px solid rgba(var(--techguru-white-rgb), .10);
    z-index: -1;
}

.services-three__icon-and-title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    transform: scale(0.9);
}

.services-three__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    text-transform: capitalize;
}

.services-three__title a {
    color: var(--techguru-white);
}

.services-three__title a:hover {
    color: var(--techguru-base);
}

.services-three__text {
    font-size: 16px;
    line-height: 26px;
}

.services-three__list {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.services-three__list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.services-three__list li+li {
    margin-top: 5px;
}

.services-three__list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-three__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--techguru-white);
}

.services-three__list li .text {
    position: relative;
    display: block;
    flex: 1;
}

.services-three__list li .text p {
    font-size: 16px;
    color: var(--techguru-white);
}

.services-three__btn {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-weight: 500;
    color: var(--techguru-white);
}

.services-three__btn:hover {
    color: var(--techguru-base);
}


/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    position: relative;
    display: block;
    padding: 140px 0 133px;
    background-color: var(--techguru-black);
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    z-index: 1;
}

.services-four__bg-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    height: 496px;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}

.services-four::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--techguru-white-rgb), 0.05);
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    z-index: -1;
}

.services-four__left {
    position: relative;
    display: block;
    margin-right: 378px;
}

.services-four__img-box {
    position: relative;
    display: block;
}

.services-four__img {
    position: relative;
    display: block;
}

.services-four__img img {
    width: 100%;
    border-radius: 40px;
}

.services-four__img-2 {
    position: absolute;
    top: 54px;
    right: -270px;
    max-width: 255px;
    width: 100%;
}

.services-four__img-2 img {
    width: 100%;
    border-radius: 40px;
}

.services-four__shape-1 {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
}

.services-four__shape-1 img {
    width: auto;
}

.services-four__qualified-box {
    position: absolute;
    top: 100px;
    right: -55px;
    background: linear-gradient(270deg, rgba(76, 194, 76, 0.8) 0%, rgba(46, 139, 46, 0.8) 100%);
    border-radius: 16px;
    max-width: 187px;
    width: 100%;
    padding: 25px 20px 24px;
}

.services-four__qualified-icon {
    position: relative;
    display: block;
}

.services-four__qualified-icon img {
    width: auto;
}

.services-four__qualified-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--techguru-white);
    margin: 11px 0 6px;
}

.services-four__qualified-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: var(--techguru-white);
}

.services-four__right {
    position: relative;
    display: block;
}

.services-four__right .section-title {
    margin-bottom: 24px;
}

.services-four__right .section-title__title {
    margin-right: -100px;
}

.services-four__points-box {
    position: relative;
    display: block;
    margin-top: 24px;
}

.services-four__points-box li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.services-four__points-box li+li {
    margin-top: 23px;
}

.services-four__points-box li .icon {
    position: relative;
    display: inline-block;
    top: 7px;
}

.services-four__points-box li .icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--techguru-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-four__points-box li:hover .icon span {
    transform: scale(0.9);
}

.services-four__points-box li .content {
    position: relative;
    display: block;
    flex: 1;
}

.services-four__points-box li .content h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--techguru-white);
    margin-bottom: 3px;
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.services-details {
    position: relative;
    display: block;
    padding: 140px 0 133px;
    z-index: 1;
}

.services-details__shape-1 {
    position: absolute;
    left: -42.97%;
    right: -42.97%;
    top: -17.69%;
    bottom: -19.1%;
    opacity: .30;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, rgba(46, 139, 46, 0.31) 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.services-details__shape-2 {
    position: absolute;
    bottom: 14%;
    left: 0;
    opacity: .70;
    z-index: -1;
}

.services-details__shape-2 img {
    width: auto;
}

.services-details__left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.services-details__services-list-box {
    position: relative;
    display: block;
    background-color: #0D1D35;
    padding: 21px 25px 25px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.services-details__services-list-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    color: var(--techguru-white);
    border-bottom: 1px dashed rgba(231, 231, 232, .10);
    padding-bottom: 12px;
    margin-bottom: 19px;
}

.services-details__services-list {
    position: relative;
    display: block;
}

.services-details__services-list li {
    position: relative;
    display: block;
}

.services-details__services-list li+li {
    margin-top: 8px;
}

.services-details__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--techguru-white-rgb), 0.05);
    border-radius: 12px;
    font-weight: 500;
    color: var(--techguru-gray);
    text-transform: capitalize;
    padding: 12px 17px 12px;
    overflow: hidden;
    z-index: 1;
}

.services-details__services-list li.active a {
    color: var(--techguru-white);
}

.services-details__services-list li:hover a {
    color: var(--techguru-white);
}

.services-details__services-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #4CC24C 0%, #2E8B2E 100%);
    border-radius: 12px;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.services-details__services-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-details__services-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-details__need-help {
    position: relative;
    display: block;
}

.services-details__need-help-img {
    position: relative;
    display: block;
}

.services-details__need-help-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 24.9%, rgba(0, 0, 0, 0) 100%);
    border-radius: 16px;
}

.services-details__need-help-img img {
    width: 100%;
    border-radius: 16px;
}

.services-details__need-help-content {
    position: absolute;
    left: 25px;
    bottom: 30px;
}

.services-details__need-help-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--techguru-white);
}

.services-details__need-help-title:before {
    content: "";
    position: absolute;
    top: -17px;
    left: 0px;
    right: 0px;
    height: 1px;
    border-top: 1px solid transparent;
    background: linear-gradient(-90deg, #4CC24C, #2E8B2E) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.services-details__need-help-number {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 9px;
}

.services-details__need-help-number a {
    color: var(--techguru-base);
}

.services-details__need-help-number a:hover {
    color: var(--techguru-white);
}

.services-details__right {
    position: relative;
    display: block;
}

.services-details__title-1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    color: var(--techguru-white);
}

.services-details__bdr {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(var(--techguru-white-rgb), .20);
    margin: 31px 0 31px;
}

.services-details__text-2 {
    margin: 27px 0 48px;
}

.services-details__img-1 {
    position: relative;
    display: block;
}

.services-details__img-1 img {
    width: 100%;
    border-radius: 40px;
}

.services-details__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: var(--techguru-white);
    margin: 56px 0 31px;
}

.services-details__points-box {
    position: relative;
    display: block;
    margin: 5px 0 48px;
}

.services-details__points-list {
    position: relative;
    display: block;
}

.services-details__points-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.services-details__points-list li+li {
    margin-top: 20px;
}

.services-details__points-list li .icon {
    position: relative;
    display: inline-block;
}

.services-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--techguru-base);
}

.services-details__img-box {
    position: relative;
    display: block;
}

.services-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__img-box-img img {
    width: 100%;
    border-radius: 40px;
}

.services-details__title-3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--techguru-white);
    margin: 21px 0 26px;
}

.services-details__points-box-2 {
    margin: 48px 0 47px;
}

.services-details__points-two {
    position: relative;
    display: block;
}

.services-details__points-two li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.services-details__points-two li+li {
    margin-top: 23px;
}

.services-details__points-two li .icon {
    position: relative;
    display: inline-block;
}

.services-details__points-two li .icon span {
    position: relative;
    display: inline-block;
    font-size: 48px;
    color: var(--techguru-base);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-details__points-two li:hover .icon span {
    transform: scale(.9);
}

.services-details__points-two li .content {
    position: relative;
    display: block;
    flex: 1;
}

.services-details__points-two li .content h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--techguru-white);
    margin-bottom: 3px;
}

.services-details__bottom-img {
    position: relative;
    display: block;
}

.services-details__bottom-img img {
    width: 100%;
    border-radius: 16px;
}

.services-details__title-4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--techguru-white);
    margin: 35px 0 9px;
}


/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 140px;
}













/*--------------------------------------------------------------
# DevZoic Service Cards (Homepage)
--------------------------------------------------------------*/
.dz-svc-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 32px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #4cc24c, #00d4ff) 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
    overflow: hidden;
    height: 100%;
}
.dz-svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at top left, rgba(76,194,76,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.dz-svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76,194,76,0.20);
    box-shadow: 0 20px 60px rgba(76,194,76,0.10), 0 8px 24px rgba(0,0,0,0.3);
    text-decoration: none !important;
}
.dz-svc-card:hover::before {
    opacity: 1;
}
.dz-svc-card__icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(76,194,76,0.08);
    border: 1px solid rgba(76,194,76,0.15);
    z-index: 1;
}
.dz-svc-card__icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(76,194,76,0.12) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.dz-svc-card:hover .dz-svc-card__icon-wrap::after {
    opacity: 1;
    animation: dz-icon-pulse 2s ease-in-out infinite;
}
@keyframes dz-icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
.dz-svc-card__body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.dz-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}
.dz-svc-card:hover .dz-svc-card__title {
    background: linear-gradient(90deg, #4cc24c, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dz-svc-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0 0 16px;
}
.dz-svc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dz-svc-card__tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.dz-tag-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
img.dz-tag-icon {
    object-fit: contain;
}
.dz-tag-icon--invert {
    filter: invert(1) brightness(2);
}
svg.dz-tag-icon {
    stroke: currentColor;
}
.dz-svc-card:hover .dz-svc-card__tags span {
    color: #4cc24c;
    border-color: rgba(76,194,76,0.25);
    background: rgba(76,194,76,0.08);
}
.dz-svc-card:hover .dz-tag-icon {
    opacity: 1;
    filter: brightness(1.2);
}
.dz-svc-card__arrow {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: 4px;
}
.dz-svc-card:hover .dz-svc-card__arrow {
    background: linear-gradient(135deg, #4cc24c, #2E8B2E);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
}
@media (max-width: 991px) {
    .dz-svc-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 28px 24px;
    }
    .dz-svc-card__icon-wrap {
        width: 60px;
        height: 60px;
    }
    .dz-svc-card__icon-wrap svg {
        width: 36px;
        height: 36px;
    }
    .dz-svc-card__arrow {
        position: absolute;
        top: 28px;
        right: 24px;
    }
    .dz-svc-card__title {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Service Detail – Tech Icon Grid
--------------------------------------------------------------*/
.dz-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.dz-tech-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    cursor: default;
    flex: 0 0 auto;
}

.dz-tech-card:hover {
    border-color: rgba(76, 194, 76, 0.25);
    background: rgba(76, 194, 76, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dz-tech-card__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.dz-tech-card__name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.dz-tech-card:hover .dz-tech-card__name {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
    .dz-tech-grid {
        gap: 8px;
    }
    .dz-tech-card {
        padding: 10px 14px;
        gap: 8px;
    }
    .dz-tech-card__icon {
        width: 22px;
        height: 22px;
    }
    .dz-tech-card__name {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Tech Card Monogram Fallback
--------------------------------------------------------------*/
.dz-tech-card__mono {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #4CC24C, #2E8B2E);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 767px) {
    .dz-tech-card__mono {
        width: 22px;
        height: 22px;
        font-size: 12px;
        border-radius: 6px;
    }
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/