        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            overflow-x: hidden;
        }

        body {
            font-family: Georgia, serif;
            background: #fff;
            color: #1f1d1d;
        }

        /* LOADER SESSION STRT  */
        .sk-loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            pointer-events: none;
            overflow: hidden;
        }

        .sk-loader-center {
            position: absolute;
            inset: 0;
            background: #FFE0C2;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 8;
            animation: skCenterHide .75s ease forwards;
            animation-delay: 2.7s;
        }

        .sk-loader-logo {
            font-size: 76px;
            font-weight: 700;
            color: #111;
            line-height: 1;
            animation: skLogoZoom .9s ease forwards;
            animation-delay: 1.35s;
        }

        .sk-loader-logo span {
            color: #a9c8ef;
            font-size: 60px;
            margin-right: -13px;
            font-weight: 500;
        }

        .sk-loader-title {
            margin-top: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 2px;
            width: fit-content;
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            text-align: center;
            animation: skTextWrite 1.1s steps(6) forwards;
            animation-delay: .25s;
        }

        .sk-loader-slice {
            position: absolute;
            top: 0;
            width: 25%;
            height: 100%;
            background: #ffdfbf;
            z-index: 6;
            transform: translateY(0);
            will-change: transform;
        }

        .sk-slice-1 {
            left: 0;
            animation: skSliceUp 1.18s cubic-bezier(.65, 0, .12, 1) forwards;
            animation-delay: 3.05s;
        }

        .sk-slice-4 {
            left: 75%;
            animation: skSliceUp 1.18s cubic-bezier(.65, 0, .12, 1) forwards;
            animation-delay: 3.65s;
        }

        .sk-slice-2 {
            left: 25%;
            animation: skSliceUp 1.18s cubic-bezier(.65, 0, .12, 1) forwards;
            animation-delay: 4.25s;
        }

        .sk-slice-3 {
            left: 50%;
            animation: skSliceUp 1.18s cubic-bezier(.65, 0, .12, 1) forwards;
            animation-delay: 4.85s;
        }

        @keyframes skTextWrite {
            to {
                max-width: 230px;
            }
        }

        @keyframes skLogoZoom {
            to {
                transform: scale(.72);
                opacity: .75;
            }
        }

        @keyframes skCenterHide {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        @keyframes skSliceUp {
            to {
                transform: translateY(-105%);
            }
        }

        /* LOADER SESSION END  */

        /* NAVBAR SESSION STRT  */
        .skx-header {
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #111;
            position: relative;
            z-index: 999;
        }

        .skx-navbar {
            height: 80px;
            padding: 0;
        }

        .skx-container {
            padding: 0 30px;
            height: 100%;
        }

        .skx-logo {
            font-size: 48px;
            font-weight: 700;
            color: #111;
            line-height: 1;
            text-decoration: none;
        }

        .skx-logo span {
            color: #a9c8ef;
            font-size: 42px;
            margin-right: -8px;
            font-weight: 500;
        }

        .skx-menu {
            gap: 32px;
        }

        .skx-menu .nav-link {
            font-size: 18px;
            font-weight: 500;
            color: #000;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .skx-menu .nav-link:hover,
        .skx-menu .nav-link.active {
            color: #9bbfe9;
        }

        .skx-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .skx-cart-btn {
            width: 42px;
            height: 42px;
            border: 1px solid #111;
            border-radius: 50%;
            background: transparent;
            color: #000;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .3s ease;
        }

        .skx-cart-btn:hover {
            background: #a9c8ef;
            border-color: #a9c8ef;
            transform: translateY(-2px);
        }

        .skx-register-btn {
            background: #f7d9bd;
            color: #000;
            border-radius: 50px;
            padding: 13px 30px;
            font-size: 18px;
            text-decoration: none;
            transition: .3s ease;
        }

        .skx-register-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-2px);
        }

        .skx-toggle {
            width: 54px;
            height: 54px;
            border: 0;
            background: transparent;
            box-shadow: none !important;
            position: relative;
            padding: 0;
        }

        .skx-toggle span {
            position: absolute;
            left: 50%;
            width: 22px;
            height: 2px;
            background: #111;
            border-radius: 20px;
            transition: .35s ease;
            transform: translateX(-50%);
        }

        .skx-toggle span:nth-child(1) {
            top: 17px;
        }

        .skx-toggle span:nth-child(2) {
            top: 25px;
        }

        .skx-toggle span:nth-child(3) {
            top: 33px;
        }

        .skx-toggle[aria-expanded="true"] span:nth-child(1) {
            top: 25px;
            transform: translateX(-50%) rotate(45deg);
        }

        .skx-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
            transform: translateX(-50%) scaleX(0);
        }

        .skx-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 25px;
            transform: translateX(-50%) rotate(-45deg);
        }

        /* NAVBAR SESSION STRT  */

        /* HERO SESSION STRT  */
        .skx-hero {
            height: 420px;
            display: flex;
            align-items: center;
            padding: 70px 30px;
            background: #fff;
            overflow: hidden;
        }

        .skx-hero-content {
            max-width: 1100px;
            width: 100%;
        }

        .skx-hero-title {
            font-size: clamp(32px, 5.3vw, 64px);
            font-weight: 600;
            line-height: 1.48;
            letter-spacing: 1px;
            color: #211f1f;
            max-width: 1080px;
            margin-bottom: 40px;
        }

        .skx-hero-title::after {
            content: "";
            display: inline-block;
            width: 4px;
            height: 58px;
            background: #a9c8ef;
            margin-left: 8px;
            border-radius: 20px;
            transform: translateY(8px);
            animation: skxBlink .8s infinite;
        }

        .skx-hero-title.skx-type-done::after {
            display: none;
        }

        @keyframes skxBlink {
            50% {
                opacity: 0;
            }
        }

        .skx-hero-bottom {
            display: flex;
            align-items: center;
            gap: 55px;
            flex-wrap: wrap;
        }

        .skx-hero-text {
            max-width: 480px;
            font-size: 23px;
            line-height: 1.35;
            color: #222;
            margin: 0;
        }

        .skx-shop-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #f7d9bd;
            color: #000;
            border-radius: 50px;
            padding: 17px 30px;
            font-size: 18px;
            text-decoration: none;
            transition: .35s ease;
        }

        .skx-shop-btn img {
            width: 26px;
            height: 26px;
            object-fit: contain;
            transition: .45s ease;
        }

        .skx-shop-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-4px);
        }

        .skx-shop-btn:hover img {
            transform: rotate(45deg);
            filter: brightness(0) invert(1);
        }

        .skp-product-showcase {
            width: 100%;
            position: relative;
            background: #fff;
            padding-top: 130px;
            overflow: hidden;
        }

        .skp-image-wrap {
            width: 100%;
            height: 380px;
            position: relative;
            overflow: hidden;
            clip-path: inset(0 50% 0 50%);
            transition: clip-path 2s cubic-bezier(.65, 0, .15, 1);
        }

        .skp-product-showcase.skp-show .skp-image-wrap {
            clip-path: inset(0 0 0 0);
        }

        .skp-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.08);
            transition: transform 2s cubic-bezier(.65, 0, .15, 1);
        }

        .skp-product-showcase.skp-show .skp-main-img {
            transform: scale(1);
        }

        .skp-rotate-circle {
            width: 210px;
            height: 210px;
            border: 3px solid #A7C5EB;
            border-radius: 50%;
            position: absolute;
            right: 10%;
            top: 30px;
            background: #FFF5EB;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skp-circle-text {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: skpSpin 10s linear infinite;
        }

        .skp-circle-text svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .skp-circle-text text {
            font-family: Georgia, serif;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 3px;
            fill: #1d1b1b;
            text-transform: uppercase;
        }

        .skp-arrow-center {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #A7C5EB;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .5s ease;
            z-index: 3;
        }

        .skp-arrow-center img {
            width: 44px;
            height: 44px;
            object-fit: contain;
            transition: .5s ease;
        }

        .skp-rotate-circle:hover .skp-arrow-center img {
            transform: rotate(45deg);
        }

        @keyframes skpSpin {
            from {
                transform: rotate(0);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* HERO SESSION END  */

        /* MARQUEE SESSION STRT  */
        .skp-marquee {
            width: 100%;
            background: #1f1b1b;
            overflow: hidden;
            white-space: nowrap;
            padding: 23px 0;
            position: relative;
            z-index: 6;
        }

        .skp-marquee-track {
            display: inline-flex;
            align-items: center;
            gap: 34px;
            animation: skpMarquee 35s linear infinite;
        }

        .skp-marquee span,
        .skp-star {
            font-size: 40px;
            font-weight: 600;
            color: #ffe6cc;
            line-height: 1;
        }

        @keyframes skpMarquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* MARQUEE SESSION END  */

        .skx-cart-content {
            border: none;
            border-radius: 5px;
            overflow: hidden;
        }

        .skx-cart-header {
            padding: 16px 24px;
            border-bottom: 1px solid #ddd;
        }

        .skx-cart-header h5 {
            font-size: 28px;
            font-weight: 700;
            color: #333;
        }

        .skx-cart-body {
            min-height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 991px) {
            .skx-navbar {
                height: 72px;
            }

            .skx-container {
                padding: 0 18px;
            }

            .skx-logo {
                font-size: 42px;
            }

            .skx-logo span {
                font-size: 38px;
            }

            .skx-collapse {
                position: absolute;
                left: 16px;
                right: 16px;
                top: 82px;
                background: #fff;
                border: 1px solid #e5e5e5;
                border-radius: 24px;
                padding: 18px;
                box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
            }

            .skx-menu {
                gap: 4px;
                text-align: center;
            }

            .skx-menu .nav-link {
                padding: 13px 15px;
                border-radius: 50px;
            }

            .skx-menu .nav-link:hover,
            .skx-menu .nav-link.active {
                background: #eef5ff;
                color: #8fb8e8;
            }

            .skx-actions {
                justify-content: center;
                margin-top: 18px;
            }

            .skx-hero {
                height: auto;
                min-height: 430px;
                padding: 70px 20px 60px;
                text-align: center;
            }

            .skx-hero-title {
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 35px;
            }

            .skx-hero-bottom {
                justify-content: center;
                gap: 25px;
            }

            .skp-product-showcase {
                padding-top: 100px;
            }

            .skp-image-wrap {
                height: 320px;
            }

            .skp-rotate-circle {
                width: 170px;
                height: 170px;
                right: 5%;
                top: 25px;
            }

            .skp-circle-text text {
                font-size: 14px;
                letter-spacing: 2.5px;
            }

            .skp-arrow-center {
                width: 78px;
                height: 78px;
            }

            .skp-arrow-center img {
                width: 35px;
                height: 35px;
            }

            .skp-marquee span,
            .skp-star {
                font-size: 32px;
            }
        }

        @media (max-width: 575px) {
            .sk-loader-logo {
                font-size: 62px;
            }

            .sk-loader-logo span {
                font-size: 50px;
            }

            .sk-loader-title {
                font-size: 42px;
            }

            @keyframes skTextWrite {
                to {
                    max-width: 210px;
                }
            }

            .skx-logo {
                font-size: 38px;
            }

            .skx-logo span {
                font-size: 34px;
            }

            .skx-hero {
                min-height: 430px;
                padding: 55px 16px 45px;
            }

            .skx-hero-title {
                font-size: 38px;
                line-height: 1.3;
                letter-spacing: -1px;
            }

            .skx-hero-title::after {
                height: 38px;
            }

            .skx-hero-text {
                font-size: 18px;
            }

            .skx-shop-btn {
                padding: 16px 30px;
            }

            .skx-cart-btn {
                width: 46px;
                height: 46px;
            }

            .skx-register-btn {
                padding: 12px 28px;
            }

            .skp-product-showcase {
                padding-top: 80px;
            }

            .skp-image-wrap {
                height: 250px;
            }

            .skp-rotate-circle {
                width: 130px;
                height: 130px;
                right: 15px;
                top: 18px;
            }

            .skp-circle-text text {
                font-size: 10px;
                letter-spacing: 2px;
            }

            .skp-arrow-center {
                width: 58px;
                height: 58px;
            }

            .skp-arrow-center img {
                width: 27px;
                height: 27px;
            }

            .skp-marquee span,
            .skp-star {
                font-size: 25px;
            }
        }

        @media (max-width: 575px) {
            .sk-loader-slice {
                width: 25.5%;
            }

            .sk-slice-1 {
                left: 0;
            }

            .sk-slice-2 {
                left: 24.8%;
            }

            .sk-slice-3 {
                left: 49.6%;
            }

            .sk-slice-4 {
                left: 74.4%;
            }
        }

        /* CATEGORY SESSION STRT  */
        .skc-category-section {
            width: 100%;
            background: #fff;
            overflow: hidden;
        }

        .skc-category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            min-height: 630px;
            border-top: 1px solid #ffd8b8;
            border-bottom: 1px solid #ffd8b8;
        }

        .skc-category-intro,
        .skc-category-card {
            opacity: 0;
            transform: translateY(55px);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
        }

        .skc-category-section.skc-show .skc-category-intro,
        .skc-category-section.skc-show .skc-category-card {
            opacity: 1;
            transform: translateY(0);
        }

        .skc-category-section.skc-show .skc-category-intro {
            transition-delay: 0.1s;
        }

        .skc-category-section.skc-show .skc-category-card:nth-child(2) {
            transition-delay: 0.25s;
        }

        .skc-category-section.skc-show .skc-category-card:nth-child(3) {
            transition-delay: 0.4s;
        }

        .skc-category-section.skc-show .skc-category-card:nth-child(4) {
            transition-delay: 0.55s;
        }

        .skc-category-intro {
            background: #fff7ef;
            border-right: 1px solid #ffd8b8;
            padding: 42px 60px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .skc-category-intro h2 {
            font-size: 42px;
            line-height: 1.08;
            font-weight: 700;
            color: #231f1f;
            margin-bottom: 25px;
        }

        .skc-category-intro p {
            font-size: 22px;
            line-height: 1.35;
            color: #161616;
            margin: 0;
            max-width: 240px;
        }

        .skc-explore-btn {
            width: max-content;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: #ffdfbf;
            color: #111;
            border-radius: 50px;
            padding: 19px 32px;
            font-size: 18px;
            text-decoration: none;
            transition: 0.35s ease;
        }

        .skc-explore-btn img {
            width: 25px;
            height: 25px;
            transition: 0.4s ease;
        }

        .skc-explore-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-4px);
        }

        .skc-explore-btn:hover img {
            transform: rotate(45deg);
            filter: brightness(0) invert(1);
        }

        .skc-category-card {
            position: relative;
            border-right: 1px solid #ffd8b8;
            min-height: 630px;
            padding: 45px 35px 70px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            background: #fff;
        }

        .skc-category-card:last-child {
            border-right: none;
        }

        .skc-hover-layer {
            position: absolute;
            inset: 0;
            background: #fff7ef;
            transform: translateY(100%);
            transition: 0.55s cubic-bezier(.65, 0, .15, 1);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skc-category-card:hover .skc-hover-layer {
            transform: translateY(0);
        }

        .skc-order-btn {
            background: #ffdfbf;
            color: #111;
            border-radius: 50px;
            padding: 15px 30px;
            font-size: 18px;
            text-decoration: none;
            transform: translateY(25px) scale(0.9);
            opacity: 0;
            transition: 0.45s ease 0.12s;
            position: relative;
            z-index: 5;
        }

        .skc-category-card:hover .skc-order-btn {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .skc-order-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-4px) scale(1);
        }

        .skc-card-img-wrap {
            position: relative;
            z-index: 2;
            width: 210px;
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skc-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: 0.45s ease;
        }

        .skc-category-card:hover .skc-card-img-wrap img {
            transform: translateY(-10px) scale(1.05);
        }

        .skc-category-card h3 {
            position: relative;
            z-index: 4;
            font-size: 42px;
            font-weight: 700;
            color: #211f1f;
            margin: 0;
            transition: 0.35s ease;
        }

        .skc-category-card:hover h3 {
            transform: translateY(-8px);
        }

        @media (max-width: 1199px) {
            .skc-category-intro {
                padding: 38px 35px 50px;
            }

            .skc-category-card h3 {
                font-size: 34px;
            }

            .skc-card-img-wrap {
                width: 190px;
                height: 245px;
            }
        }

        @media (max-width: 991px) {
            .skc-category-grid {
                grid-template-columns: 1fr 1fr;
                min-height: auto;
            }

            .skc-category-intro {
                min-height: 360px;
                border-bottom: 1px solid #ffd8b8;
            }

            .skc-category-card {
                min-height: 460px;
                border-bottom: 1px solid #ffd8b8;
            }
        }

        @media (max-width: 575px) {
            .skc-category-grid {
                grid-template-columns: 1fr;
            }

            .skc-category-intro {
                min-height: 220px;
                padding: 18px 16px 24px;
                border-right: none;
                gap: 30px;
            }

            .skc-category-intro h2 {
                font-size: 22px;
                line-height: 1.1;
                margin-bottom: 12px;
            }

            .skc-category-intro p {
                font-size: 12px;
                line-height: 1.35;
                max-width: 330px;
            }

            .skc-explore-btn {
                padding: 13px 24px;
                font-size: 13px;
                gap: 9px;
            }

            .skc-explore-btn img {
                width: 12px;
                height: 12px;
            }

            .skc-category-card {
                min-height: 360px;
                padding: 28px 20px 32px;
                border-right: none;
            }

            .skc-card-img-wrap {
                width: 190px;
                height: 230px;
            }

            .skc-category-card h3 {
                font-size: 20px;
            }

            .skc-order-btn {
                font-size: 14px;
                padding: 12px 24px;
            }
        }

        /* CATEGORY SESSION END  */

        /* BENEFITS SESSION STRT  */
        .ski-benefits-section {
            width: 100%;
            background: #fff;
            padding: 90px 14px 60px;
            overflow: hidden;
            font-family: Georgia, serif;
        }

        .ski-benefits-container {
            max-width: 1360px;
            margin: 0 auto;
        }

        .ski-arrival-head {
            max-width: 1360px;
            margin: 0 auto 70px;
            padding: 0 16px;
        }

        .ski-arrival-head h2 {
            font-size: clamp(42px, 5vw, 72px);
            line-height: 1;
            font-weight: 500;
            color: #211f1f;
            margin-bottom: 22px;
        }

        .ski-arrival-head p {
            font-size: 22px;
            line-height: 1.35;
            color: #111;
            margin: 0;
        }


        .ski-benefit-img-wrap {
            width: 100%;
            height: 565px;
            position: relative;
            overflow: hidden;
            background: #fbf3eb;
        }

        .ski-benefit-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.08);
            opacity: 0;
            transition: 1.5s cubic-bezier(.65, 0, .15, 1);
        }

        .ski-img-curtain {
            position: absolute;
            top: 0;
            width: 50%;
            height: 100%;
            background: #ffdfbf;
            z-index: 2;
            transition: transform 1.6s cubic-bezier(.65, 0, .15, 1);
        }

        .ski-curtain-left {
            left: 0;
        }

        .ski-curtain-right {
            right: 0;
        }

        .ski-benefits-section.ski-show .ski-benefit-img {
            transform: scale(1);
            opacity: 1;
        }

        .ski-benefits-section.ski-show .ski-curtain-left {
            transform: translateX(-101%);
        }

        .ski-benefits-section.ski-show .ski-curtain-right {
            transform: translateX(101%);
        }

        .ski-benefits-list {
            width: 100%;
        }

        .ski-benefit-item {
            display: grid;
            grid-template-columns: 1fr 160px;
            gap: 35px;
            align-items: start;
            padding: 0 0 32px;
        }

        .ski-benefit-text h3 {
            font-size: 28px;
            font-weight: 700;
            color: #2a2525;
            margin-bottom: 12px;
        }

        .ski-benefit-text p {
            font-size: 20px;
            line-height: 1.4;
            color: #141414;
            margin: 0;
            max-width: 620px;
        }

        .ski-benefit-num {
            font-size: 118px;
            line-height: .8;
            font-weight: 400;
            color: transparent;
            -webkit-text-stroke: 2px #a9c8ef;
            opacity: 0;
            transform: translateY(30px);
            transition: 1s ease;
            text-align: right;
        }

        .ski-benefits-section.ski-show .ski-benefit-num {
            opacity: 1;
            transform: translateY(0);
        }

        .ski-benefit-line {
            width: 100%;
            height: 1px;
            background: #222;
            margin-bottom: 38px;
            transform: scaleX(0);
            transition: transform 1.15s cubic-bezier(.65, 0, .15, 1);
        }

        .ski-line-left {
            transform-origin: left;
        }

        .ski-line-right {
            transform-origin: right;
        }

        .ski-benefits-section.ski-show .ski-benefit-line {
            transform: scaleX(1);
        }

        .ski-benefits-section.ski-show .ski-benefit-line:nth-of-type(1) {
            transition-delay: .25s;
        }

        .ski-benefits-section.ski-show .ski-benefit-line:nth-of-type(2) {
            transition-delay: .45s;
        }

        .ski-benefits-section.ski-show .ski-benefit-line:nth-of-type(3) {
            transition-delay: .65s;
        }

        @media (max-width: 1199px) {
            .ski-benefit-img-wrap {
                height: 460px;
            }

            .ski-benefit-num {
                font-size: 95px;
            }

            .ski-benefit-item {
                grid-template-columns: 1fr 120px;
            }
        }

        @media (max-width: 991px) {
            .ski-benefits-section {
                padding: 70px 16px 45px;
            }

            .ski-benefit-img-wrap {
                height: 430px;
            }

            .ski-benefits-list {
                margin-top: 10px;
            }

            .ski-benefit-item {
                grid-template-columns: 1fr 110px;
                gap: 20px;
            }
        }

        @media (max-width: 575px) {
            .ski-benefits-section {
                padding: 55px 14px 35px;
            }

            .ski-benefit-img-wrap {
                height: 330px;
            }

            .ski-benefit-item {
                grid-template-columns: 1fr;
                gap: 18px;
                padding-bottom: 24px;
            }

            .ski-benefit-text h3 {
                font-size: 24px;
            }

            .ski-benefit-text p {
                font-size: 17px;
            }

            .ski-benefit-num {
                font-size: 78px;
                text-align: left;
            }

            .ski-benefit-line {
                margin-bottom: 28px;
            }
        }

        @media (max-width: 575px) {
            .ski-arrival-head {
                margin-bottom: 35px;
                padding: 0px 20px;
            }

            .ski-arrival-head h2 {
                font-size: 36px;
                margin-bottom: 14px;
            }

            .ski-arrival-head p {
                font-size: 16px;
            }
        }

        /* BENEFITS SESSION END  */

        /* SHOP SESSION STRT  */
        .skp-shop-section {
            width: 100%;
            padding: 22px 14px 70px;
            background: #fff;
            overflow: hidden;
        }

        .skp-shop-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            max-width: 1325px;
            margin: 0 auto;
        }

        .skp-product-card {
            border: 1px solid #ffdfbf;
            background: #fff;
            opacity: 0;
            transform: translateY(45px);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
        }

        .skp-shop-section.skp-show .skp-product-card {
            opacity: 1;
            transform: translateY(0);
        }

        .skp-shop-section.skp-show .skp-product-card:nth-child(1) {
            transition-delay: .1s
        }

        .skp-shop-section.skp-show .skp-product-card:nth-child(2) {
            transition-delay: .22s
        }

        .skp-shop-section.skp-show .skp-product-card:nth-child(3) {
            transition-delay: .34s
        }

        .skp-shop-section.skp-show .skp-product-card:nth-child(4) {
            transition-delay: .46s
        }

        .skp-product-img {
            height: 368px;
            background: #fff7ef;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .skp-product-img img {
            width: 90%;
            height: 80%;
            object-fit: contain;
            transition: .45s ease;
        }

        .skp-product-card:hover .skp-product-img img {
            transform: scale(1.06) translateY(-8px);
        }

        .skp-add-btn {
            width: 64px;
            height: 64px;
            border: none;
            background: #ffdfbf;
            color: #111;
            font-size: 34px;
            position: absolute;
            right: 0;
            bottom: -32px;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .35s ease;
        }

        .skp-add-btn:hover {
            background: #a9c8ef;
            transform: translateY(-4px);
        }

        .skp-product-info {
            padding: 58px 24px 28px;
        }

        .skp-price {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .skp-product-info h3 {
            font-size: 30px;
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .skp-product-info p {
            font-size: 18px;
            line-height: 1.35;
            margin: 0;
            max-width: 280px;
        }

        .skp-all-btn-wrap {
            text-align: center;
            margin-top: 30px;
        }

        .skp-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: #ffdfbf;
            color: #111;
            text-decoration: none;
            border-radius: 50px;
            padding: 19px 34px;
            font-size: 20px;
            transition: .35s ease;
        }

        .skp-all-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-4px);
        }

        .skp-all-btn i {
            transition: .35s ease;
        }

        .skp-all-btn:hover i {
            transform: rotate(45deg);
        }

        .sk-cart-content {
            border: none;
            border-radius: 5px;
            overflow: hidden;
            font-family: Georgia, serif;
        }

        .sk-cart-header {
            padding: 16px 24px;
            border-bottom: 1px solid #ddd;
        }

        .sk-cart-header h3 {
            font-size: 30px;
            font-weight: 700;
            margin: 0;
        }

        .sk-cart-body {
            padding: 24px;
        }

        .sk-cart-row {
            display: grid;
            grid-template-columns: 60px 1fr 60px;
            gap: 16px;
            align-items: center;
            padding-bottom: 22px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 16px;
        }

        .sk-cart-row img {
            width: 45px;
            height: 55px;
            object-fit: contain;
        }

        .sk-cart-row h5 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 4px;
        }

        .sk-cart-row p {
            font-size: 16px;
            margin: 0 0 2px;
        }

        .sk-cart-row a {
            color: #111;
            font-size: 15px;
        }

        .sk-cart-row input {
            width: 60px;
            height: 40px;
            border: 1px solid #ffdfbf;
            background: #fff7ef;
            text-align: center;
            outline: none;
            font-size: 16px;
        }

        .sk-cart-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            font-size: 20px;
            font-weight: 700;
        }

        .sk-checkout-btn {
            width: 100%;
            height: 44px;
            border: none;
            background: #a9c8ef;
            color: #111;
            font-size: 18px;
            transition: .35s ease;
        }

        .sk-checkout-btn:hover {
            background: #ffdfbf;
        }

        .sk-empty-cart {
            text-align: center;
            padding: 55px 0;
            font-size: 16px;
            color: #333;
        }

        @media(max-width:991px) {
            .skp-shop-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:575px) {
            .skp-shop-section {
                padding: 15px 12px 45px;
            }

            .skp-shop-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .skp-product-img {
                height: 300px;
            }

            .skp-product-info {
                padding: 56px 24px 26px;
            }

            .skp-product-info h3 {
                font-size: 26px;
            }

            .skp-price {
                font-size: 23px;
            }

            .sk-cart-row {
                grid-template-columns: 48px 1fr 54px;
                gap: 12px;
            }

            .sk-cart-row h5 {
                font-size: 18px;
            }
        }

        /* SHOP SESSION END  */

        /* STORY SESSION STRT  */
        .sko-story-section {
            width: 100%;
            background: #fff;
            padding: 70px 30px 60px;
            overflow: hidden;
        }

        .sko-story-container {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .sko-story-subtitle {
            font-size: clamp(38px, 4.5vw, 58px);
            line-height: 1;
            color: #a9c8ef;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .sko-story-title {
            font-size: clamp(42px, 4.8vw, 56px);
            line-height: 1.1;
            font-weight: 700;
            color: #111;
            margin-bottom: 42px;
        }

        .sko-story-text {
            max-width: 650px;
            font-size: 23px;
            line-height: 1.35;
            color: #000;
            margin-bottom: 32px;
        }

        .sko-story-btn {
            margin-top: 4px;
            width: max-content;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: #ffdfbf;
            color: #111;
            border-radius: 50px;
            padding: 19px 32px;
            font-size: 18px;
            text-decoration: none;
            transition: 0.35s ease;
        }

        .sko-story-btn img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            transition: 0.4s ease;
        }

        .sko-story-btn:hover {
            background: #a9c8ef;
            color: #fff;
            transform: translateY(-4px);
        }

        .sko-story-btn:hover img {
            transform: rotate(45deg);
            filter: brightness(0) invert(1);
        }

        .sko-story-image-area {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 560px;
        }

        .sko-story-img-wrap {
            width: min(560px, 90vw);
            position: relative;
            transform: scale(0);
            opacity: 0;
            clip-path: circle(0% at 50% 50%);
            will-change: transform, clip-path, opacity;
        }

        .sko-story-section.sko-show .sko-story-img-wrap {
            animation: skoCircleReveal 1.75s cubic-bezier(.2, .9, .25, 1) forwards;
        }

        @keyframes skoCircleReveal {
            0% {
                opacity: 0;
                transform: scale(.35);
                clip-path: circle(0% at 50% 50%);
            }

            25% {
                opacity: 1;
                transform: scale(.55);
                clip-path: circle(25% at 50% 50%);
            }

            50% {
                transform: scale(.72);
                clip-path: circle(45% at 50% 50%);
            }

            75% {
                transform: scale(.9);
                clip-path: circle(70% at 50% 50%);
            }

            100% {
                opacity: 1;
                transform: scale(1);
                clip-path: circle(120% at 50% 50%);
            }
        }

        /* STORY SESSION END  */

        /* MAIN IMG SESSION STRT  */
        .sko-story-main-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .sko-story-content {
            opacity: 0;
            transform: translateY(40px);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
        }

        .sko-story-section.sko-show .sko-story-content {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .sko-story-section {
                padding: 60px 20px;
            }

            .sko-story-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .sko-story-image-area {
                min-height: auto;
            }

            .sko-story-text {
                font-size: 20px;
            }

            .sko-story-img-wrap {
                width: min(520px, 92vw);
                margin: 0 auto;
            }
        }

        @media (max-width: 575px) {
            .sko-story-section {
                padding: 45px 16px 50px;
            }

            .sko-story-subtitle {
                font-size: 36px;
            }

            .sko-story-title {
                font-size: 38px;
                margin-bottom: 28px;
            }

            .sko-story-text {
                font-size: 17px;
                margin-bottom: 24px;
            }

            .sko-story-btn {
                padding: 15px 28px;
                font-size: 15px;
            }
        }

        /* MAIN IMG SESSION END  */

        /* TESTIMONIAL SESSION STRT  */
        .skt-testimonial-section {
            width: 100%;
            min-height: 640px;
            background-image: url("images/testimonialimg.webp");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            padding: 70px 30px 55px;
        }

        .skt-testimonial-wrap {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            min-height: 520px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 55px;
            align-items: start;
        }

        .skt-quote-img {
            width: 250px;
            max-width: 100%;
            opacity: 0;
            transform: translateX(-45px) scale(.9);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
        }

        .skt-testimonial-section.skt-show .skt-quote-img {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .skt-slider {
            width: 100%;
            overflow: hidden;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(45px);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
            transition-delay: .25s;
        }

        .skt-testimonial-section.skt-show .skt-slider {
            opacity: 1;
            transform: translateY(0);
        }

        .skt-track {
            display: flex;
            width: 100%;
            transition: transform .85s cubic-bezier(.65, 0, .15, 1);
            will-change: transform;
        }

        .skt-slide {
            width: 100%;
            min-width: 100%;
            flex: 0 0 100%;
        }

        .skt-text {
            font-size: clamp(29px, 3.8vw, 42px);
            line-height: 1.2;
            font-weight: 600;
            font-style: italic;
            color: #211f1f;
            margin-bottom: 135px;
        }

        .skt-author {
            font-size: 34px;
            line-height: 1;
            font-weight: 700;
            color: #2b2727;
            margin-bottom: 26px;
        }

        .skt-role {
            font-size: 16px;
            color: #111;
            margin: 0;
        }

        .skt-controls {
            position: absolute;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            gap: 18px;
            z-index: 5;
        }

        .skt-arrow {
            width: 62px;
            height: 62px;
            border: 2px solid #1d1b1b;
            border-radius: 50%;
            background: transparent;
            color: #1d1b1b;
            font-size: 38px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .35s ease;
        }

        .skt-arrow:hover {
            background: #a9c8ef;
            border-color: #a9c8ef;
            transform: translateY(-4px);
        }

        @media (max-width: 991px) {
            .skt-testimonial-section {
                min-height: auto;
                padding: 60px 22px 50px;
            }

            .skt-testimonial-wrap {
                min-height: auto;
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .skt-quote-img {
                width: 140px;
            }

            .skt-text {
                margin-bottom: 70px;
            }

            .skt-controls {
                position: relative;
                margin-top: 35px;
                justify-content: flex-end;
            }
        }

        @media (max-width: 575px) {
            .skt-testimonial-section {
                padding: 45px 16px;
            }

            .skt-quote-img {
                width: 105px;
            }

            .skt-text {
                font-size: 28px;
                line-height: 1.28;
                margin-bottom: 55px;
            }

            .skt-author {
                font-size: 25px;
                margin-bottom: 16px;
            }

            .skt-arrow {
                width: 52px;
                height: 52px;
                font-size: 30px;
            }
        }

        /* TESTIMONIAL SESSION END  */

        /* CHOOSE SESSION STRT  */
        .skw-choose-section {
            width: 100%;
            background: #1f1b1b;
            padding: 85px 36px 95px;
            overflow: hidden;
        }

        .skw-choose-title {
            text-align: center;
            font-size: clamp(38px, 4.5vw, 56px);
            line-height: 1;
            font-weight: 700;
            color: #FFDFBF;
            margin-bottom: 75px;
        }

        .skw-choose-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid #ffdfbf;
        }

        .skw-choose-card {
            min-height: 440px;
            padding: 80px 45px 60px;
            border-right: 1px solid #ffdfbf;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(55px);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
        }

        .skw-choose-card:last-child {
            border-right: none;
        }

        .skw-choose-section.skw-show .skw-choose-card {
            opacity: 1;
            transform: translateY(0);
        }

        .skw-choose-section.skw-show .skw-choose-card:nth-child(1) {
            transition-delay: 0.15s;
        }

        .skw-choose-section.skw-show .skw-choose-card:nth-child(2) {
            transition-delay: 0.3s;
        }

        .skw-choose-section.skw-show .skw-choose-card:nth-child(3) {
            transition-delay: 0.45s;
        }

        .skw-icon-circle {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: #FFDFBF;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 38px;
            transition: 0.4s ease;
        }

        .skw-choose-card:hover .skw-icon-circle {
            transform: translateY(-8px) scale(1.05);
            background: #a9c8ef;
        }

        .skw-icon-circle img {
            width: 78px;
            height: 78px;
            object-fit: contain;
        }

        .skw-choose-card h3 {
            font-size: 36px;
            line-height: 1.05;
            font-weight: 700;
            color: #fff5eb;
            margin-bottom: 22px;
        }

        .skw-choose-card p {
            max-width: 260px;
            font-size: 18px;
            line-height: 1.5;
            font-weight: 700;
            color: #fff5eb;
            margin: 0;
        }

        @media (max-width: 991px) {
            .skw-choose-section {
                padding: 70px 20px 75px;
            }

            .skw-choose-grid {
                grid-template-columns: 1fr;
            }

            .skw-choose-card {
                min-height: 360px;
                border-right: none;
                border-bottom: 1px solid #ffdfbf;
                padding: 60px 30px 50px;
            }

            .skw-choose-card:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 575px) {
            .skw-choose-section {
                padding: 55px 14px 60px;
            }

            .skw-choose-title {
                margin-bottom: 45px;
            }

            .skw-choose-card {
                min-height: 320px;
                padding: 45px 20px 40px;
            }

            .skw-icon-circle {
                width: 110px;
                height: 110px;
                margin-bottom: 30px;
            }

            .skw-icon-circle img {
                width: 52px;
                height: 52px;
            }

            .skw-choose-card h3 {
                font-size: 30px;
            }

            .skw-choose-card p {
                font-size: 16px;
            }
        }

        /* CHOOSE SESSION END  */

        /* NEWSLETTER SESSION STRT  */
        .skn-newsletter-section {
            width: 100%;
            background: #f5f8fb;
            position: relative;
            overflow: hidden;
        }

        .skn-newsletter-main {
            min-height: 830px;
            padding: 170px 30px 80px;
            position: relative;
            overflow: hidden;
            background-image: url("images/contactimg.webp");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
        }

        .skn-newsletter-main::before {
            content: "";
            position: absolute;
            inset: 0;
            background: #f5f8fb;
            transform: translateX(0);
            z-index: 1;
            transition: transform 1.7s cubic-bezier(.65, 0, .15, 1);
        }

        .skn-newsletter-section.skn-show .skn-newsletter-main::before {
            transform: translateX(101%);
        }

        .skn-newsletter-content {
            position: relative;
            z-index: 2;
            max-width: 1180px;
            opacity: 0;
            transform: translateY(55px);
            transition: 1.1s cubic-bezier(.65, 0, .15, 1);
            transition-delay: .45s;
        }

        .skn-newsletter-section.skn-show .skn-newsletter-content {
            opacity: 1;
            transform: translateY(0);
        }

        .skn-newsletter-title {
            font-size: clamp(40px, 6.3vw, 80px);
            line-height: 1.37;
            font-weight: 500;
            color: #211f1f;
            letter-spacing: 2px;
            max-width: 1180px;
            margin-bottom: 72px;
            margin-top: 72px;
        }

        .skn-title-word {
            display: inline-block;
            opacity: 0;
            transform: translateY(40px) rotateX(70deg);
            transform-origin: bottom;
            transition: .85s cubic-bezier(.65, 0, .15, 1);
        }

        .skn-newsletter-section.skn-show .skn-title-word {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(1) {
            transition-delay: .55s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(2) {
            transition-delay: .68s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(3) {
            transition-delay: .81s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(4) {
            transition-delay: .94s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(6) {
            transition-delay: 1.07s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(7) {
            transition-delay: 1.20s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(8) {
            transition-delay: 1.33s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(9) {
            transition-delay: 1.46s;
        }

        .skn-newsletter-section.skn-show .skn-title-word:nth-child(10) {
            transition-delay: 1.59s;
        }

        .skn-line-text {
            position: relative;
            display: inline-block;
        }

        .skn-line-text::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            width: 100%;
            height: 10px;
            background: #a9c8ef;
            transform: scaleX(0);
            transform-origin: left;
        }

        .skn-newsletter-section.skn-show .skn-line-text::after {
            animation: sknLineGrow 1s cubic-bezier(.65, 0, .15, 1) forwards;
            animation-delay: 1.15s;
        }

        @keyframes sknLineGrow {
            from {
                transform: scaleX(0);
            }

            to {
                transform: scaleX(1);
            }
        }

        .skn-newsletter-form {
            width: 650px;
            max-width: 100%;
            height: 72px;
            border: 1px solid #111;
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 0 10px 0 24px;
            background: rgba(255, 255, 255, 0.25);
            opacity: 0;
            transform: translateY(35px) scale(.96);
            transition: .9s cubic-bezier(.65, 0, .15, 1);
            transition-delay: 1.45s;
        }

        .skn-newsletter-section.skn-show .skn-newsletter-form {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .skn-newsletter-form input {
            flex: 1;
            height: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-family: Georgia, serif;
            font-size: 19px;
            color: #111;
        }

        .skn-newsletter-form input::placeholder {
            color: #111;
            opacity: 1;
        }

        .skn-newsletter-form button {
            width: 118px;
            height: 52px;
            border: none;
            border-radius: 50px;
            background: #a9c8ef;
            color: #111;
            font-family: Georgia, serif;
            font-size: 19px;
            cursor: pointer;
            transition: 0.35s ease;
        }

        .skn-newsletter-form button:hover {
            background: #ffdfbf;
            transform: translateX(4px);
        }

        .skn-marquee {
            width: 100%;
            background: #a9c8ef;
            overflow: hidden;
            white-space: nowrap;
            padding: 24px 0;
            position: relative;
            z-index: 3;
            transform: translateY(100%);
            transition: 1s cubic-bezier(.65, 0, .15, 1);
            transition-delay: 1.65s;
        }

        .skn-newsletter-section.skn-show .skn-marquee {
            transform: translateY(0);
        }

        .skn-marquee-track {
            display: inline-flex;
            align-items: center;
            gap: 34px;
            animation: sknMarquee 32s linear infinite;
        }

        .skn-marquee span,
        .skn-star {
            font-size: 42px;
            line-height: 1;
            font-weight: 700;
            color: #FFDFBF;
        }

        @keyframes sknMarquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 991px) {
            .skn-newsletter-main {
                min-height: 560px;
                padding: 120px 24px 70px;
                background-position: center right;
            }

            .skn-newsletter-title {
                font-size: 62px;
                max-width: 900px;
            }

            .skn-marquee span,
            .skn-star {
                font-size: 34px;
            }
        }

        @media (max-width: 575px) {
            .skn-newsletter-main {
                min-height: 520px;
                padding: 80px 16px 55px;
                background-position: center right;
            }

            .skn-newsletter-title {
                font-size: 39px;
                line-height: 1.22;
                margin-bottom: 58px;
                margin-top: 12px;
            }

            .skn-title-word {
                transform: translateY(28px) rotateX(60deg);
            }

            .skn-line-text::after {
                height: 6px;
                bottom: -8px;
            }

            .skn-newsletter-form {
                height: 58px;
                padding-left: 18px;
            }

            .skn-newsletter-form input {
                font-size: 15px;
            }

            .skn-newsletter-form button {
                width: 95px;
                height: 42px;
                font-size: 15px;
            }

            .skn-marquee {
                padding: 18px 0;
            }

            .skn-marquee span,
            .skn-star {
                font-size: 26px;
            }
        }

        /* NEWSLETTER SESSION STRT  */

        /* FOOTER SESSION STRT  */
        .skf-footer {
            width: 100%;
            background: #211d1d;
            color: #fff;
            padding: 72px 30px 85px;
            overflow: hidden;
            margin-top: auto;
            flex-shrink: 0;
        }

        .skf-footer-top {
            display: grid;
            grid-template-columns: 1fr 260px 1fr;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }

        .skf-line {
            width: 100%;
            height: 2px;
            background: #ffdfbf;
            transform: scaleX(0);
            transition: 1.1s cubic-bezier(.65, 0, .15, 1);
        }

        .skf-left-line {
            transform-origin: right;
        }

        .skf-right-line {
            transform-origin: left;
        }

        .skf-footer.skf-show .skf-line {
            transform: scaleX(1);
        }

        .skf-logo {
            text-align: center;
            font-size: 120px;
            line-height: .85;
            font-weight: 700;
            color: #ffdfbf;
            opacity: 0;
            transform: scale(.85);
            transition: .9s cubic-bezier(.65, 0, .15, 1);
            transition-delay: .25s;
        }

        .skf-logo span {
            color: #a9c8ef;
            font-size: 95px;
            margin-right: -20px;
            font-weight: 500;
        }

        .skf-footer.skf-show .skf-logo {
            opacity: 1;
            transform: scale(1);
        }

        .skf-content {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.4fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .skf-col {
            opacity: 0;
            transform: translateY(40px);
            transition: .9s cubic-bezier(.65, 0, .15, 1);
        }

        .skf-footer.skf-show .skf-col {
            opacity: 1;
            transform: translateY(0);
        }

        .skf-footer.skf-show .skf-links {
            transition-delay: .35s;
        }

        .skf-footer.skf-show .skf-center {
            transition-delay: .5s;
        }

        .skf-footer.skf-show .skf-contact {
            transition-delay: .65s;
        }

        .skf-heading {
            font-size: 21px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 28px;
        }

        .skf-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 0;
            margin: 0;
        }

        .skf-list a {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            text-decoration: none;
            transition: .3s ease;
        }

        .skf-list a:hover {
            color: #ffdfbf;
            padding-left: 6px;
        }

        .skf-desc {
            max-width: 520px;
            margin: 0 auto 42px;
            text-align: center;
            color: #fff;
            font-size: 18px;
            line-height: 1.45;
            font-weight: 700;
        }

        .skf-socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .skf-socials a {
            width: 54px;
            height: 54px;
            border: 2px solid #ffdfbf;
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            text-decoration: none;
            transition: .35s ease;
        }

        .skf-socials a:hover {
            background: #ffdfbf;
            color: #211d1d;
            transform: translateY(-5px);
        }

        .skf-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 13px;
            padding: 0;
            margin: 0;
        }

        .skf-contact-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            font-size: 17px;
            font-weight: 700;
        }

        .skf-contact-list i {
            color: #aaa;
            font-size: 20px;
        }

        @media (max-width: 991px) {
            .skf-footer {
                padding: 60px 22px 70px;
            }

            .skf-footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
                margin-bottom: 45px;
            }

            .skf-logo {
                font-size: 95px;
            }

            .skf-logo span {
                font-size: 78px;
            }

            .skf-content {
                grid-template-columns: 1fr;
                gap: 42px;
                text-align: center;
            }

            .skf-list,
            .skf-contact-list {
                align-items: center;
            }

            .skf-contact-list li {
                justify-content: center;
            }
        }

        @media (max-width: 575px) {
            .skf-footer {
                padding: 48px 16px 58px;
            }

            .skf-logo {
                font-size: 76px;
            }

            .skf-logo span {
                font-size: 62px;
                margin-right: -13px;
            }

            .skf-desc {
                font-size: 16px;
            }

            .skf-socials a {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .skf-heading {
                font-size: 20px;
            }

            .skf-list a,
            .skf-contact-list li {
                font-size: 16px;
            }
        }

        /* FOOTER SESSION END  */

        /* SCROLL TO TOP  */
        .skb-scroll-progress {
            position: fixed;
            right: 28px;
            bottom: 28px;
            width: 80px;
            height: 80px;
            z-index: 9999;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: .45s ease;
        }

        .skb-scroll-progress.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .skb-progress-track {
            position: absolute;
            inset: 0;
        }

        .skb-progress-track svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .skb-progress-track path {
            fill: none;
            stroke: #8f8f8f;
            stroke-width: 4;
            stroke-linecap: round;
            filter: drop-shadow(0 0 2px rgba(255, 255, 255, .5));
        }

        .skb-scroll-btn {
            position: absolute;
            inset: 10px;
            background: linear-gradient(135deg, #211d1d, #4a4a4a);
            border: 2px solid #ffdfbf;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 26px;
            box-shadow:
                0 8px 25px rgba(0, 0, 0, .25),
                0 0 0 1px rgba(255, 255, 255, .15);
            transition: .4s ease;
        }

        .skb-scroll-progress:hover .skb-scroll-btn {
            background: #a9c8ef;
            border-color: #211d1d;
            color: #111;
        }

        .skb-scroll-btn i {
            transition: .4s ease;
        }

        .skb-scroll-progress:hover i {
            transform: translateY(-4px);
        }

        @media(max-width:575px) {

            .skb-scroll-progress {
                width: 65px;
                height: 65px;
                right: 16px;
                bottom: 16px;
            }

            .skb-scroll-btn {
                inset: 8px;
                font-size: 22px;
                border-radius: 18px;
            }
        }
        /* SCROLL TO TOP  */