/*==============================================
  Service One  
===============================================*/
.service-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.service-one__shape-1 {
    position: absolute;
    top: 123px;
    left: 70px;
    opacity: 0.05;
    z-index: -1;
}

.service-one__shape-1 img {
    width: auto;
}

.service-one__shape-2 {
    position: absolute;
    right: 75px;
    top: 120px;
    z-index: -1;
}

.service-one__shape-2 img {
    width: auto;
}

.service-one__top {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--mgtheme-bdr-color);
    padding-bottom: 82px;
    margin-bottom: 60px;
}

.service-one__top-text {
    position: relative;
    display: block;
    text-transform: capitalize;
    margin-left: 145px;
    padding-left: 60px;
}

.service-one__top-text::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 1px;
    height: 123px;
    background-color: var(--mgtheme-bdr-color);
}

.service-one__bottom {
    position: relative;
    display: block;
}

.service-one__single {
    position: relative;
    display: block;
}

.service-one__single::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 48px;
    height: 1px;
    background-color: var(--mgtheme-base);
    background-position: left right;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: left;
    transform-style: preserve-3d;
    transform: scalex(0);
    z-index: 2;
}

.service-one__single:hover::before {
    transform: scalex(1.0);
}

.service-one__single::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: var(--mgtheme-base);
    background-position: bottom top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaley(0);
    z-index: 2;
}

.service-one__single:hover::after {
    transform: scaley(1.0);
}

.service-one__single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--mgtheme-bdr-color);
    padding: 34px 40px 32px;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0% 50%);
}

.service-one__single-inner-shape-1 {
    position: absolute;
    bottom: -10px;
    right: 24px;
    width: 1px;
    height: 65px;
    background-color: var(--mgtheme-bdr-color);
    transform: rotate(48deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-one__single:hover .service-one__single-inner-shape-1 {
    background-color: var(--mgtheme-base);
}

.service-one__single-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--mgtheme-base);
    background-position: right left;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: right;
    transform-style: preserve-3d;
    transform: scalex(0);
    z-index: 2;
}

.service-one__single:hover .service-one__single-inner::before {
    transform: scalex(1.0);
}

.service-one__single-inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: var(--mgtheme-base);
    background-position: top bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaley(0);
    z-index: 2;
}

.service-one__single:hover .service-one__single-inner::after {
    transform: scaley(1.0);
}

.service-one__sub-title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-one__sub-title-shape-1 {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--mgtheme-gray);
    border-radius: 50%;
}

.service-one__title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin: 13px 0 20px;
}

.service-one__title a {
    color: var(--mgtheme-black);
}

.service-one__title a:hover {
    color: var(--mgtheme-base);
}

.service-one__icon {
    position: relative;
    display: inline-block;
}

.service-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--mgtheme-black);
    transition: all 500ms ease;
}

.service-one__single:hover .service-one__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.service-one__text {
    margin-top: 19px;
    text-transform: capitalize;
}

.service-one__arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.service-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--mgtheme-white);
    border: 1px solid var(--mgtheme-bdr-color);
    border-radius: 50%;
    font-size: 23px;
    color: var(--mgtheme-black);
}

.service-one__single:hover .service-one__arrow a {
    background-color: var(--mgtheme-base);
    border: 1px solid var(--mgtheme-base);
    transform: rotate(-45deg);
}

/*==============================================
    Service Two   
===============================================*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 109px;
    z-index: 1;
}

.services-two__top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.services-two__top .section-title-two {
    margin-bottom: 0;
}

.services-two__btn-box {
    position: relative;
    display: inline-block;
}

.services-two__btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid var(--mgtheme-black);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    gap: 5px;
    color: var(--mgtheme-black);
    text-transform: capitalize;
}

.services-two__btn-box a:hover {
    border: 1px solid var(--mgtheme-base);
    color: var(--mgtheme-base);
}

.services-two__btn-box a span {
    font-size: 18px;
    position: relative;
    top: -2px;
    font-weight: 700;
}

.services-two__bottom {
    position: relative;
    display: block;
    padding-top: 60px;
}

.services-two__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid var(--mgtheme-bdr-color);
    padding-top: 60px;
}

.services-two__content-box {
    position: relative;
    display: block;
    max-width: 917px;
    width: 100%;
}

.services-two__content-list {
    position: relative;
    display: block;
}

.services-two__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-two__content-list li+li {
    margin-top: 30px;
    border-top: 1px solid var(--mgtheme-bdr-color);
    padding-top: 40px;
}

.services-two__icon-and-title {
    position: relative;
    display: block;
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--mgtheme-black);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__content-list li:hover .services-two__icon {
    border: 1px solid var(--mgtheme-base);
    background-color: var(--mgtheme-base);
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--mgtheme-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__content-list li:hover .services-two__icon span {
    color: var(--mgtheme-white);
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.services-two__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 19px;
    text-transform: capitalize;
}

.services-two__title a {
    color: var(--mgtheme-black);
}

.services-two__title a:hover {
    color: var(--mgtheme-base);
}

.services-two__title a span {
    font-weight: 600;
}

.services-two__single-text {
    position: relative;
    display: block;
}

.services-two__img-box {
    position: relative;
    display: block;
    max-width: 313px;
    width: 100%;
}

.services-two__img {
    position: relative;
    display: block;
}

.services-two__img img {
    width: 100%;
}

.services-two__single+.services-two__single {
    margin-top: 60px;
}

/*==============================================
    Services Three  
===============================================*/
.services-three {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    border: 1px solid #2A2A2A;
    padding: 32px 30px 32px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 30px;
    z-index: 1;
}

.services-three__single:hover {
    border: 1px solid transparent;
    transition-delay: 250ms;
}

.services-three__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.services-three__single:hover .services-three__single-bg {
    opacity: 1;
    transform: translateY(0px);
}

.services-three__single-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 25, 27, .96);
    z-index: -1;
}

.services-three__count {
    position: relative;
    display: block;
}

.services-three__count::before {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--mgtheme-gray);
    counter-increment: count 1;
    content: "0"counter(count);
    font-family: var(--mgtheme-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
    color: var(--mgtheme-base);
}

.services-three__icon {
    position: relative;
    display: inline-block;
    margin: 63px 0 25px;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--mgtheme-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    color: var(--mgtheme-base);
}

.services-three__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.services-three__title a {
    color: var(--mgtheme-white);
}

.services-three__title a:hover {
    color: var(--mgtheme-base);
}

.services-three__text {
    margin: 14px 0 27px;
}

.services-three__read-more {
    position: relative;
    display: inline-block;
}

.services-three__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 15px;
    color: var(--mgtheme-white);
    text-transform: capitalize;
}

.services-three__single:hover .services-three__read-more a {
    color: var(--mgtheme-base);
}

.services-three__read-more a span {
    font-weight: 700;
}

/*==============================================
    Services Page  
===============================================*/
.services-page {
    padding: 120px 0 120px;
}

.services-page .services-three__icon span {
    color: var(--mgtheme-black);
}

.services-page .services-three__title a {
    color: var(--mgtheme-black);
}

.services-page .services-three__single:hover .services-three__title a {
    color: var(--mgtheme-white);
}

.services-page .services-three__read-more a {
    color: var(--mgtheme-black);
}

.services-page__pagination {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 40px;
}

.services-page__pagination .pg-pagination li {
    display: inline-block;
}

.services-page__pagination .pg-pagination li a {
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    color: var(--mgtheme-black);
    font-weight: 400;
    font-size: 18px;
    border-radius: 50%;
    background-color: transparent;
    font-family: var(--mgtheme-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-page__pagination .pg-pagination li:hover a,
.services-page__pagination .pg-pagination li.active a {
    background-color: var(--mgtheme-black);
    color: var(--mgtheme-white);
}

.services-page__pagination .pg-pagination li:first-child:hover a {
    background-color: transparent;
    color: var(--mgtheme-base);
}

.services-page__pagination .pg-pagination li:last-child:hover a {
    background-color: transparent;
    color: var(--mgtheme-base);
}

.services-page__pagination .pg-pagination li:first-child {
    margin-right: 30px;
}

.services-page__pagination .pg-pagination li:last-child {
    margin-left: 30px;
}

/*==============================================
    Services Details  
===============================================*/
.services-details {
    position: relative;
    display: block;
    padding: 80px 0 60px;
    z-index: 1;
}

.services-details__top {
    position: relative;
    display: block;
}

.services-details__top-left {
    position: relative;
    display: block;
}

.services-details__top-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--mgtheme-black);
    text-transform: capitalize;
}

.services-details__top-text {
    position: relative;
    display: block;
    margin-left: 85px;
    margin-right: -60px;
}

.services-details__top-text-1 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--mgtheme-font-two);
}

.services-details__top-text-two {
    position: relative;
    display: block;
    margin-left: 90px;
}

.services-details__top-text-2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--mgtheme-font-two);
}

.services-details__img {
    position: relative;
    display: block;
    margin-top: 60px;
    margin-bottom: 48px;
}

.services-details__img img {
    width: 100%;
}

.services-details__content {
    position: relative;
    display: block;
}

.services-details__title-1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--mgtheme-black);
    text-transform: capitalize;
}

.services-details__text-1 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.services-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 120px;
    margin-top: 15px;
}

.services-details__points-list {
    position: relative;
    display: block;
}

.services-details__points-list li {
    position: relative;
    display: block;
}

.services-details__points-list li+li {
    margin-top: 11px;
}

.services-details__points-list li p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--mgtheme-black);
    text-transform: capitalize;
}

.services-details__title-2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--mgtheme-black);
    text-transform: capitalize;
    margin: 47px 0 30px;
}

.services-details__text-2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--mgtheme-font-two);
}

.services-details__img-box {
    position: relative;
    display: block;
    margin-top: 51px;
    margin-bottom: 20px;
}

.services-details__img-box-img {
    position: relative;
    display: block;
    margin-right: 55px;
    margin-bottom: 19px;
}

.services-details__img-box-img img {
    width: 100%;
}

.services-details__img-box-img-2 {
    position: relative;
    display: block;
    margin-left: -55px;
    margin-bottom: 19px;
}

.services-details__img-box-img-2 img {
    width: 100%;
}

.services-details__text-3 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--mgtheme-font-two);
}

.services-details__text-4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--mgtheme-font-two);
    margin-top: 6px;
}

/*==============================================
    Services Carousel Page   
===============================================*/
.services-carousel-page {
    padding: 120px 0 90px;
}

.services-carousel-page__carousel {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

/*==============================================
    Services Page Section Styles   
===============================================*/

/* Section 1: IT Staffing - Deep Purple/Violet Theme */
#it.why-choose-three {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1e1240 100%);
    position: relative;
    overflow: hidden;
}

#it.why-choose-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235c28ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

#it .section-title-three__tagline {
    background: linear-gradient(135deg, #5c28ff 0%, #8b5cf6 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

#it .section-title-three__title,
#it .why-choose-three__title-1,
#it .why-choose-three__title-2,
#it h4 {
    color: #fff;
}

#it p,
#it .why-choose-three__text-1 {
    color: rgba(255, 255, 255, 0.85);
}

#it .process-step {
    background: rgba(92, 40, 255, 0.15) !important;
    border: 1px solid rgba(92, 40, 255, 0.3);
    backdrop-filter: blur(10px);
}

#it .process-step h4 {
    color: #fff;
}

#it .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Section 2: Non-IT Staffing - Light Gradient Theme */
#nonit.why-choose-three {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

#nonit.why-choose-three::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(92, 40, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

#nonit.why-choose-three::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

#nonit .section-title-three__tagline {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

#nonit .section-title-three__title,
#nonit .why-choose-three__title-1,
#nonit .why-choose-three__title-2 {
    color: #1e293b;
}

#nonit .process-step {
    background: #fff !important;
    border-left: 4px solid var(--mgtheme-base) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Section 3: Lateral & Leadership - Dark Navy Theme */
#lateral-leadership.why-choose-three {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

#lateral-leadership.why-choose-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(92, 40, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 0;
}

#lateral-leadership .section-title-three__tagline {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

#lateral-leadership .section-title-three__title,
#lateral-leadership .why-choose-three__title-1,
#lateral-leadership .why-choose-three__title-2,
#lateral-leadership h4 {
    color: #fff;
}

#lateral-leadership p,
#lateral-leadership .why-choose-three__text-1 {
    color: rgba(255, 255, 255, 0.85);
}

#lateral-leadership .process-step {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#lateral-leadership .process-step h4 {
    color: #fff;
}

#lateral-leadership .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Section 4: RPO - Soft Blue/Purple Gradient */
#RPO.why-choose-three {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #f5f3ff 100%);
    position: relative;
}

#RPO.why-choose-three::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(92, 40, 255, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

#RPO .section-title-three__tagline {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

#RPO .section-title-three__title,
#RPO .why-choose-three__title-1,
#RPO .why-choose-three__title-2 {
    color: #1e1b4b;
}

#RPO .process-step {
    background: #fff !important;
    box-shadow: 0 8px 30px rgba(92, 40, 255, 0.1);
    border: none !important;
}

#RPO .process-step span {
    color: #7c3aed !important;
}

/* Section 5: Talent Development - Warm Coral/Gradient Theme */
#talent-development.why-choose-three {
    background: linear-gradient(135deg, #18181b 0%, #27272a 50%, #1f1f23 100%);
    position: relative;
    overflow: hidden;
}

#talent-development.why-choose-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(92, 40, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

#talent-development .section-title-three__tagline {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
}

#talent-development .section-title-three__title,
#talent-development .why-choose-three__title-1,
#talent-development .why-choose-three__title-2,
#talent-development h4 {
    color: #fff;
}

#talent-development p,
#talent-development .why-choose-three__text-1 {
    color: rgba(255, 255, 255, 0.85);
}

#talent-development .process-step {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

#talent-development .process-step h4 {
    color: #fff;
}

#talent-development .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* General enhancements for all service sections */
.why-choose-three {
    position: relative;
    z-index: 1;
}

.why-choose-three .container {
    position: relative;
    z-index: 2;
}

.why-choose-three__left ul li {
    position: relative;
    padding-left: 5px;
    margin-bottom: 8px;
}

/* Service section buttons */
#it .thm-btn,
#lateral-leadership .thm-btn,
#talent-development .thm-btn {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
    border: none;
}

#nonit .thm-btn,
#RPO .thm-btn {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
}

/* Process step hover effects */
.process-step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Services intro section enhancement */
.services-details {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.services-details__top-title {
    background: linear-gradient(135deg, #1e1b4b 0%, #5c28ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*==============================================
    Service Content Cards (Clean Design)
===============================================*/

/* Content card wrapper */
.why-choose-three__left {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-choose-three__left:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light theme sections */
#nonit .why-choose-three__left,
#RPO .why-choose-three__left {
    background: #fff;
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

#nonit .why-choose-three__left:hover,
#RPO .why-choose-three__left:hover {
    box-shadow: 0 20px 50px rgba(92, 40, 255, 0.12);
}

/* Card titles */
.why-choose-three__title-1,
.why-choose-three__title-2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(92, 40, 255, 0.3);
    display: inline-block;
}

#nonit .why-choose-three__title-1,
#nonit .why-choose-three__title-2,
#RPO .why-choose-three__title-1,
#RPO .why-choose-three__title-2 {
    color: #1e1b4b;
    border-bottom-color: rgba(92, 40, 255, 0.2);
}

/* List styling */
.why-choose-three__left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-three__left ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
}

.why-choose-three__text-1 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.why-choose-three__text-1::before {
    content: '';
    display: none;
}

/* Replace # with styled bullets */
.why-choose-three__left ul li p {
    position: relative;
    padding-left: 20px;
}

.why-choose-three__left ul li p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
    border-radius: 50%;
}

#nonit .why-choose-three__left ul li p::before,
#RPO .why-choose-three__left ul li p::before {
    background: linear-gradient(135deg, #5c28ff 0%, #7c3aed 100%);
}

/* Section title styling */
.section-title-three__tagline-box {
    margin-bottom: 15px;
}

.section-title-three__tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title-three__title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
}

/* Process steps enhancement */
.process-step {
    padding: 25px !important;
    height: 100%;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Top section with description */
.why-choose-three__top {
    margin-bottom: 50px;
    max-width: 800px;
}

.why-choose-three__top p {
    font-size: 16px;
    line-height: 1.8;
}

/* Bottom grid spacing */
.why-choose-three__bottom .row {
    margin-bottom: 0;
}

.why-choose-three__bottom .col-xl-4 {
    margin-bottom: 30px;
}

/* Button box */
.why-choose-three__btn-box {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-title-three__title {
        font-size: 30px;
    }
    
    .why-choose-three__left {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-title-three__title {
        font-size: 26px;
    }
    
    .why-choose-three__left {
        padding: 20px;
    }
    
    .process-step {
        padding: 20px !important;
    }
}

/*==============================================
    End   
===============================================*/