/* Title CSS Start ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.section-title-over {
    position: relative;
}

.section-title-over h2 {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: -1;
    vertical-align: middle;
    display: grid;
    place-content: center;
    width: max-content;
}

.section-title-over.title-center h2,
.section-title-over.title-center p {
    margin: auto;
    text-align: center;
}

/* Title CSS End ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* process-we-follow ==============================================================*/
.process-we-follow {
    padding: 102px 0 50px;
    position: relative;
}

/* Enhanced Animation keyframes */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 5px currentColor;
    }
    50% {
        transform: scale(1.15);
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

@keyframes blockFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes lineDraw {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes blockGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

@keyframes waveEffect {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.process-round-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
}

.bg-line-image {
    position: absolute;
    top: 47%;
    z-index: -1;
    left: 0;
    width: 100%;
}

.bg-line-image svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: lineDraw 3s ease-in-out 0.5s forwards;
}

.process-block.two-block {
    margin: 56px auto 0;
}

.process-block.three-block {
    margin-left: auto;
}

.process-block h2 {
    margin: 30px 0 15px;
    animation: textSlideIn 0.8s ease 1s forwards;
    opacity: 0;
}

.process-block p {
    animation: textSlideIn 0.8s ease 1.2s forwards;
    opacity: 0;
}

.process-block {
    aspect-ratio: 1;
    max-width: 330px;
    text-align: center;
    display: grid;
    place-content: center;
    border-radius: 50%;
    padding: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInFromBottom 1s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0) scale(1);
}

.process-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.process-block:hover::before {
    left: 100%;
}

.process-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.process-block.clicked::after {
    animation: rippleEffect 0.6s ease-out;
}

.process-block:nth-child(1) {
    animation-delay: 0.2s;
}

.process-block:nth-child(2) {
    animation-delay: 0.4s;
}

.process-block:nth-child(3) {
    animation-delay: 0.6s;
}

.process-block:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-block span {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    animation: numberPulse 2s ease-in-out infinite;
}

.process-block:hover span {
    animation: numberPulse 0.8s ease-in-out infinite;
}

.process-block.one-block span {
    animation-delay: 0s;
}

.process-block.two-block span {
    animation-delay: 0.5s;
}

.process-block.three-block span {
    animation-delay: 1s;
}

.process-block.one-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

.process-block.two-block {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #90caf9;
}

.process-block.three-block {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 2px solid #ce93d8;
}

.process-block.one-block:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #FFD700;
}

.process-block.two-block:hover {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-color: #17a2b8;
}

.process-block.three-block:hover {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

@media screen and (max-width: 1024px) {

    .process-round-blocks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-block.one-block,
    .process-block.three-block {
        margin: 0 0 0 auto;
    }

    .process-block.two-block {
        margin: 0 auto 0 0;
        transform: translateY(50%);
    }

    .process-round-blocks {
        margin-top: 30px;
    }

    .process-we-follow {
        padding: 70px 0 70px;
    }
}

@media screen and (max-width: 767px) {
    .process-round-blocks {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    .process-block h2 {
        margin: 10px 0;
    }

    .process-block.two-block {
        transform: none;
    }

    .process-block.two-block {
        margin: 0;
    }

    .bg-line-image {
        display: none;
    }

    .process-we-follow .g-165-700 {
        font-size: 70px;
        line-height: 70px;
    }

    .process-block {
        aspect-ratio: auto;
        max-width: 100%;
        border-radius: 18px;
        padding: 15px;
    }

    .process-round-blocks {
        margin-top: 30px;
    }

    .process-we-follow {
        padding: 50px 0;
    }

}

/* our-service ============================================================== */
.our-service {
    padding: 46px 0 0;
}

.our-service .page-width {
    max-width: 1640px;
}

.service-block {
    border-radius: 25px;
    padding: 30px;
    position: relative;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
    max-width: calc(32.33% - 50px);
    width: 100%;
}

.our-services-block {
    display: flex;
    gap: 70px 75px;
    flex-wrap: wrap;
    margin-top: 80px;
    justify-content: center;
}

.service-info p {
    margin: 19px 0 18px;
}

.service-image {
    margin-bottom: 30px;
}

.service-block a {
    border-bottom: 1px solid #000;
}

.service-block:before {
    content: '';
    height: 187px;
    width: 1px;
    background: rgba(255, 197, 20, 1);
    display: block;
    position: absolute;
    top: -20px;
    left: -11px;
}

.service-block:after {
    content: '';
    height: 187px;
    width: 1px;
    background: rgba(255, 197, 20, 1);
    display: block;
    position: absolute;
    top: -103px;
    left: 71px;
    transform: rotate(90deg);
}

.border-service::before {
    content: '';
    height: 187px;
    width: 1px;
    background: rgba(255, 197, 20, 1);
    display: block;
    position: absolute;
    right: -9px;
    left: auto;
    bottom: -20px;
    top: auto;
}

.border-service::after {
    content: '';
    height: 187px;
    width: 1px;
    background: rgba(255, 197, 20, 1);
    display: block;
    position: absolute;
    top: auto;
    bottom: -103px;
    left: auto;
    right: 72px;
    transform: rotate(90deg);
}


section.our-service * {
    box-sizing: border-box;
}

.our-services-block.swiper-wrapper {
    padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {

    .service-block {
        max-width: calc(47% - 50px);
        width: 100%;
        padding: 20px;

    }

    .our-services-block {
        margin-top: 49px;
    }
    .our-services-block.swiper-wrapper {
        padding-bottom: 20px;
    }


    .our-service {
        padding: 0 0 0;
    }
}

@media screen and (max-width: 767px) {
    .our-services-block {
        gap: unset;
        flex-wrap: unset !important;
        flex-direction: row;
    }

    .our-services-block {
        justify-content: unset;
    }

    .service-info p {
        margin: 20px 0 10px;
    }

    .our-service .swiper {
        padding: 30px 35px 0;
        margin: 0 -15px;
    }

    .service-block {
        max-width: 100%;
        margin: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .our-service .g-165-700 {
        font-size: 70px;
        line-height: 60px;
    }

    .our-services-block .g-165-700 {
        font-size: 70px;
        line-height: 60px;
    }

    .section-title-over.title-center h2,
    .section-title-over.title-center p {
        margin: auto;
        text-align: center;
        width: 100%;
    }

    .our-services-block {
        margin-top: 20px;
    }

    .our-service {
        padding: 0 0 50px 0;
    }
    .our-services-block.swiper-wrapper {
        padding-bottom: 30px;
        align-items: self-start;
    }
}

@media screen and (max-width: 600px) {
    .service-info p {
        aspect-ratio: 1.8;
    }
}

/* key-features-service ============================================================== */
.key-features-service {
    padding: 72px 0 102px;
}

.key-features-service .page-width {
    max-width: 1550px;
}

.key-features-service--mob {
    display: none;
}

.section-image-content {
    margin-top: 60px;
}

.key-features-service--tab {
    display: none;
}

.key-features-service .section-title-over {
    margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
    .key-features-service {
        padding: 70px 0 70px;
    }
    .key-features-service--tab {
        display: block;
    }

    .key-features-service--desk {
        display: none;
    }

    .key-features-service .section-title-over {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .key-features-service--mob {
        display: block;
    }

    .key-features-service--tab {
        display: none;
    }

    .key-features-service {
        padding: 0;
    }

    .key-features-service .g-165-700 {
        font-size: 60px;
        line-height: 60px;
    }

    .section-image-content {
        margin-top: 30px;
    }

    .key-features-service--desk {
        display: none;
    }
}