.commonTitleWrapper {
    background: url("../images/solutions/swSolution/zikim/zikimBackGroundImg.jpg") no-repeat center 40%;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonTitle {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    color: #f1f8ff;
}

.zikimIntroWrapper {
    max-width: 1000px;
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 400px;
}

.zikimIntro1 {
    width: 30%;
    height: auto;
    aspect-ratio: 300/400;
    position: relative;
    z-index: 100;
    opacity: 0;
    transform: translateY(-100px) scale(0.5);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.zikimIntro2 {
    width: 80%;
    height: auto;
    aspect-ratio: 800/480;
    position: relative;
    top: -180px;
    z-index: 99;
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.zikimIntroBar {
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(
            to right,
            rgba(129, 18, 18, 0) 0%,
            rgba(42, 51, 212, 100) 50%,
            rgba(129, 18, 18, 0) 100%
    );
    border-radius: 2px;
}

.zikimIntroContentWrapper {
    position: relative;
    top: -180px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.zikimIntroContentWrapper.animate {
    opacity: 1;
}

.zikimIntroContent {
    margin: 30px 0 0 0;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.zikimIntroContent > span {
    font-weight: bold;
    transition: color 0.3s ease;
}

.zikimIntroContent:hover > span {
    color: #006fff;

}

/*지킴이 인트로 애니메이션*/
.zikimIntro1.animate {
    opacity: 1;
    transform: translateY(0);
}

.zikimIntro2.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 지킴서비스 */
.zikimServiceWrapper {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 130px;
    margin-bottom: 480px;
}

.zikimLogo {
    max-width: 250px;
    width: 100%;
    height: auto;
    aspect-ratio: 250/100;
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 1s ease, transform 1s ease;
}

.zikimServiceCommentWrapper {
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.2s;
    padding: 0 40px;
    box-sizing: border-box;
}

.zikimServiceCommentTitle {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.5px;
    position: relative;
    margin: 0;
    line-height: 40px;
}

.zikimServiceCommentTitle > span {
    font-weight: 800;
    background-image: linear-gradient(205deg, #f1f8ff 0%, #9AC6FF63 100%);
}

.zikimServiceCommentTitle::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: linear-gradient(180deg, #b6dbff 0%, #006fff 100%);
}


.zikimServiceCommentSubTitle {
    font-size: 20px;
    margin: 20px 0 16px 0;
    font-weight: 700;
}

.zikimServiceComment {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}


/* 지킴서비스 애니메이션*/

.zikimLogo.animate {
    opacity: 1;
    transform: translateY(0);
}


.zikimServiceCommentWrapper.animate {
    opacity: 1;
    transform: translateY(0);
}


/* 지킴 실제 서비스 화면 */
.zikimRealServiceTotalWrapper {
    max-width: 1000px;
    width: 100%;
    height: 1000px;
    opacity: 0;
    transition: opacity 1s ease;
    margin-bottom: 300px;
}

.zikimRealServiceTotalWrapper.animate {
    opacity: 1;
}

.zikimRealServiceTitleWrapper {
    padding: 0 60px;
}

.zikimRealServiceTitle {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
}

.zikimRealServiceTitle::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: linear-gradient(180deg, #b6dbff 0%, #006fff 100%);
}

.zikimRealServiceTitle > span {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background-image: linear-gradient(205deg, #f1f8ff 0%, #9AC6FF63 100%);
}


.zikimSubTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.zikimRealServiceTabs {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tabZikimWrapper {
    width: fit-content;
    list-style: none;
    padding: 0 30px;
    margin: 80px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: auto;
}

.tabZikimWrapper > li {

    padding: 20px 70px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    background-color: #d7e9fd;
    color: #12212c;
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 20px;
}

.tabZikimWrapper > li:hover {
    background-color: #12212c;
    color: white;
}

.tabZikimWrapper > li.active {
    color: white;
    background-color: #006fff;
}

.zikimTabsContentWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}


.zikimTabsContentWrapper .swiper {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.zikimTabsContentWrapper .swiper.fade-out {
    opacity: 0;
}

.zikimRealServiceSwiperImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 8 / 6;
    display: block;
    transition: all 0.3s ease;
}


.functionWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.functionWrapper.active {
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    position: relative;
}


.zikimDashBoardFunction {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.zikimEntranceExitManagementFunction {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.zikimAppFunction {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1.4px;
}

/* 지킴 주요 기능 */

.zikimFeaturesWrapper {
    max-width: 1140px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 250px;
    box-sizing: border-box;
    padding: 0 40px;
}

.zikimFeaturesTitle {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
}

.zikimFeaturesTitle::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: linear-gradient(180deg, #b6dbff 0%, #006fff 100%);
}

.zikimFeaturesTitle > span {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background-image: linear-gradient(205deg, #f1f8ff 0%, #9AC6FF63 100%);
}


.zikimFeaturesSubTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* 지킴 주요 기능 */
.zikimFeaturesGridWrapper {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2열 */
    grid-template-rows: repeat(4, auto); /* 4행  */
    gap: 10px;
    align-items: center;
}

.zikimFeatureImg {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 1s ease, transform 1s ease;
}

.zikimFeatureImg1, .zikimFeatureImg2 {
    max-width: 270px;
    width: 100%;
    height: auto;
    aspect-ratio: 270/350;
}

.zikimFeatureImg3, .zikimFeatureImg4 {
    max-width: 426px;
    width: 100%;
    height: auto;
    aspect-ratio: 426/350;
}

/* 지킴 주요 기능 애니메이션 */
.zikimFeatureImg.animate {
    opacity: 1;
    transform: translateY(0);
}

.zikimFeature {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.zikimFeatureTitle {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    white-space: nowrap;
}

.zikimFeatureTitle::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: linear-gradient(180deg, #b6dbff 0%, #006fff 100%);
}

.zikimFeatureTitle > span {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background-image: linear-gradient(205deg, #f1f8ff 0%, #9AC6FF63 100%);
}


.zikimFeatureComment {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin: 0;
}

/*지킴 인증 및 고객*/
.zikimCertificationClientWrapper {
    width: 100%;
    height: 1100px; /* 고정 */
    background: url("../images/solutions/swSolution/zikim/zikimLastBackImg.webp") no-repeat center center;
    background-size: 100% 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zikimGsWrapper {
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.zikimGsComments {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 10px;
    box-sizing: border-box;
    padding: 40px;
}

.zikimGsComment1 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #AAD5FF;
}

.zikimGsComment2 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #f1f8ff;
    position: relative;
}

.zikimGsComment2::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: linear-gradient(180deg, #B6DBFF 0%, #FFFFFF 100%);
}

.zikimGsComment3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #f1f8ff;
}

/* Swiper */
.clientSwiperWrapper {
    width: 1100px;
    height: 100px;
    background-color: white;
    box-shadow: 0 0 25px 4px rgba(5.025163043478282, 210.392520454277, 251.6, 0.36);
    border-radius: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clientSwiper {
    padding-top: 60px;
}

.client-swiper {
    width: 1000px;
    height: 80px;
    overflow: hidden;
}

.swiper-slide {
    width: 200px;
    height: 80px;
}

.swiper-button-next {
    position: absolute;
    background: url(../images/mainBody/client/clientRightArrow.svg) no-repeat center;
}

.swiper-button-prev {
    position: absolute;

    background: url(../images/mainBody/client/clientLeftArrow.svg) no-repeat center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}


/* 지킴 GS 인증 및 고객 애니메이션 */

.ZikimGsCertificationClient {
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 1s ease, transform 1s ease;
}

.ZikimGsCertificationClient.animate {
    opacity: 1;
    transform: translateY(0);
}

.zikimGsComments {
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1s ease, transform 1s ease;
}

.zikimGsComments.animate {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width: 1150px) {
    .zikimFeaturesTitle {
        font-size: 24px;
    }

    .zikimFeaturesTitle > span {
        font-size: 24px;
    }

    .zikimFeaturesSubTitle {
        font-size: 14px;
    }

    .zikimFeatureTitle {
        font-size: 24px;
    }

    .zikimFeatureTitle > span {
        font-size: 24px;
    }

    .zikimFeatureComment {
        font-size: 14px;
    }

    .zikimFeaturesGridWrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* 1행: 1, 2 순서 유지 */
    .zikimFeaturesGridWrapper > div:nth-child(1) {
        order: 1;
    }

    .zikimFeaturesGridWrapper > div:nth-child(2) {
        order: 2;
    }

    /* 2행: 3, 4 순서 바꾸기 */
    .zikimFeaturesGridWrapper > div:nth-child(3) {
        order: 4;
    }

    .zikimFeaturesGridWrapper > div:nth-child(4) {
        order: 3;
    }

    /* 3행: 5, 6 순서 유지 */
    .zikimFeaturesGridWrapper > div:nth-child(5) {
        order: 5;
    }

    .zikimFeaturesGridWrapper > div:nth-child(6) {
        order: 6;
    }

    /* 4행: 7, 8 순서 유지 */
    .zikimFeaturesGridWrapper > div:nth-child(7) {
        order: 7;
    }

    .zikimFeaturesGridWrapper > div:nth-child(8) {
        order: 8;
    }

    .zikimGsWrapper {
        flex-direction: column;
        gap: 50px;
    }

    .zikimGsWrapper {
        margin-bottom: 50px;
    }
    .clientSwiperWrapper{
        width: 700px;
    }

    .client-swiper{
        width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .commonTitle {
        font-size: 36px;
    }


    .zikimIntro2 {
        top: -130px;
    }

    .zikimIntroContentWrapper {
        top: -130px;
    }

    .zikimIntroContent {
        font-size: 16px;
    }

    .zikimServiceCommentTitle {
        font-size: 32px;
    }

    .zikimServiceCommentSubTitle {
        font-size: 16px;
    }

    .zikimServiceComment {
        font-size: 12px;
    }

    .zikimRealServiceTitle {
        font-size: 24px;
    }

    .zikimRealServiceTitle > span {
        font-size: 24px;
    }

    .zikimSubTitle {
        font-size: 16px;
    }

    .zikimDashBoardFunction {
        font-size: 16px;
    }

    .zikimEntranceExitManagementFunction {
        font-size: 16px;
    }

    .zikimAppFunction {
        font-size: 16px;
    }

    /*지킴 주요 특징*/
    .zikimFeaturesTitle {
        font-size: 24px;
    }

    .zikimFeaturesTitle > span {
        font-size: 24px;
    }

    .zikimFeaturesSubTitle {
        font-size: 14px;
    }

    .zikimFeatureTitle {
        font-size: 20px;
    }

    .zikimFeatureTitle > span {
        font-size: 20px;
    }

    .zikimFeatureComment {
        font-size: 12px;
    }


    .zikimFeaturesGridWrapper {
        grid-template-columns: 1fr;
    }

    .zikimFeaturesGridWrapper > div {
        order: 0;
    }

    .zikimFeature {
        height: auto;
        padding: 30px 0;
    }

    .zikimGsComment1 {
        font-size: 16px;
    }

    .zikimGsComment2 {
        font-size: 24px;
    }

    .zikimGsComment3 {
        font-size: 16px;
    }

    .clientSwiperWrapper{
        width: 500px;
    }

    .client-swiper{
        width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .commonTitle {
        font-size: 30px;
    }

    .zikimIntro2 {
        top: -80px;
    }

    .zikimIntroContentWrapper {
        top: -80px;
    }

    .zikimIntroContent {
        font-size: 12px;
    }

    .zikimDashBoardFunction {
        font-size: 12px;
    }

    .zikimEntranceExitManagementFunction {
        font-size: 12px;
    }

    .zikimAppFunction {
        font-size: 12px;
    }

    .zikimFeature {
        flex-direction: column;
        gap: 10px;
    }

    .zikimGsComment1 {
        font-size: 14px;
    }

    .zikimGsComment2 {
        font-size: 20px;
    }

    .zikimGsComment3 {
        font-size: 14px;
    }

    .clientSwiperWrapper{
        width: 300px;
    }

    .client-swiper{
        width: 200px;
    }
}


